/* @import url("https://fonts.googleapis.com/css?family=Rubik:400,500i&display=swap");  */

html,
body {
  margin: 0;
  background: #004d69;
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

a {
  color: white;
  text-decoration: none;
  transition: color 0.5s;
}

h2 {
  margin-bottom: 10px;
}

h6 {
  font-size: 16px;
  color: aqua;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 15px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: relative;
}

header img {
  width: 200px;
}

img {
  width: 100%;
}

.hidden {
  display: none !important;
  opacity: 0 !important;
}

/*.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 30%;
}
*/
.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid aqua;
  border-radius: 10px;
  padding: 20px;
}

.navbar-item {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0 10px;
}

.navbar-item.is-active {
  color: white !important;
  background-color: rgba(0, 0, 0, 0) !important;
}

.navbar-item:hover,
.navbar-item.is-active {
  color: white !important;
  background-color: rgba(0, 0, 0, 0) !important;
}

.selected-title {
  font-size: 20px;
  color: aqua;
  margin: 0 0 15px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Member Slider */
.members {
  display: flex;
  gap: 10px;
  width: 260px;
}

.members-slider {
  position: relative;
  display: flex;
  align-items: center;
  margin: 5px 0;
  width: 100%;
}

.members-slider span {
  display: block;
}

.members-slider span.ball {
  width: 10px;
  height: 10px;
  background: #76dcff;
  border-radius: 50%;
  position: absolute;
}

.members-slider span.slider {
  width: 100%;
  height: 2px;
  background: #289ad0b3;
  border-radius: 50px;
}

/* Contenedor Principal */
.contenedor-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.contenedorPrincipal-topbar {
  background-color: #0082a4;
  padding: 20px 0;
  background-color: #0082a4;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contenedorPrincipal-topbar .text-container {
  background-color: #0082a4;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contenedorPrincipal-topbar .text-container .text {
  width: 50%;
  text-align: center;
}

.contenedorPrincipal-topbar-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contenedorPrincipal-topbar-button {
  width: 100px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contenedorPrincipal-topbar-button .indicator {
  width: 10px;
  height: 10px;
  background-color: aqua;
  border-radius: 100px;
  opacity: 0;
  display: block;
}

.contenedorPrincipal-topbar-button .indicator.active {
  opacity: 1;
}

/* Contenedor Central */
.contenedor-central {
  display: flex;
  width: 100%;
  padding: 0 50px;
  border-bottom: 1px solid aqua;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contenedorCentral-info-container {
  max-width: 500px;
  /*  min-height: 246px;*/
  padding: 20px;
  margin: 60px auto;
  /*  border: 1px solid aqua;
  border-radius: 10px;
  box-shadow: 1px 5px 9px #00000020;
*/
}

.contenedorCentral-info-container-title {
  font-size: 20px;
  color: aqua;
  margin: 0 0 15px;
}

.contenedorCentral-info-container-text {
  max-height: 600px;
  overflow-y: scroll;
}

/* Video */
.text-video-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: wrap;
}

.text-field-video,
.video-container {
  background-color: #38a0bd30;
  border: 1px solid aqua;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 1px 5px 9px #00000020;
}

.text-field-video {
  width: 50vw;
  height: 310px;
  overflow-y: scroll;
}

.video-container {
  width: 400px;
  min-height: 200px;
}

.watch-text {
  color: aqua;
  font-weight: bold;
  text-align: center;
}

.choose-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 170px;
  margin-top: 20px;
}

.choose-video button {
  border: none;
  background: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.choose-video button.active {
  color: aqua;
}

video {
  width: 100%;
  display: none;
}

/* footer */
footer {
  background-color: #0082a4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer div:nth-child(2) {
  position: absolute;
  right: 0;
  padding: 0 50px 0 0;
}

footer a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer a span {
  font-size: 18px;
  text-transform: uppercase;
  color: aqua;
  font-weight: bold;
}

/* Modal */
.modal-loading {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00000078;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}

.modal-loading .loading {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #195566;
  padding: 20px;
  border-radius: 15px;
  width: fit-content;
}

.modal-loading .loading .waiting {
  width: 30px;
  height: 30px;
  animation: rotate 1.5s infinite linear;
}

.modal-loading .loading .waiting i {
  font-size: 30px;
}

/* Splide Carousel*/
.splide__slide {
    background: #2e90c5;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.splide__slide .filters__splide-item {
  list-style: none;
}

.splide__slide .filters__splide-item .slide-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.splide__slide .filters__splide-item .slide-link:active {
  cursor: grabbing;
}

.splide__slide .filters__splide-item .slide-link:hover {
  border-color: #5372f0;
}

.splide__slide .slide-link .slide-image {
  width: 30%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
   padding: 8px 16px;
}

.splide__slide .slide-link .badge {
  color: blue;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.splide__slide .slide-link .slide-title {
  font-size: 16px;
  color: #000;
  font-weight: 100;
}

.splide__slide .slide-link .slide-button {
  height: 35px;
  width: 35px;
  color: #5372f0;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 2px solid #5382f0;
  transition: 0.4s ease;
}

.splide__slide .slide-link:hover .slide-button {
  color: #fff;
  background: #5372f0;
}
.splide__number {
    bottom: -0.8rem;
    color: #19231f;
    font-family: Splide Heading,sans-serif;
    font-size: 4.5rem;
    left: 1.1rem;
    line-height: 1;
    position: absolute;
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
    z-index: 2;
}

/* Slides without the splide__slide class are hidden */
.filters__splide-item:not(.splide__slide) {
  display: none;
}

/* region country filter dropdown */
.select-button {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.675em 1em;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  background-color: white;
  cursor: pointer;
}
.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000;
  transition: transform ease-in-out 0.3s;
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #3e8e41;
}

#regionCountryInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#regionCountryInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown::-webkit-scrollbar {
  width: 7px;
}
.dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}
.dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.dropdown-content li {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown li:hover {background-color: #ddd;}

.show {display: block;}

/* miscellaneous */
* {
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  width: 0px;
}

*::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

@media screen and (max-width:600px) {
  .contenedorCentral-info-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width:700px) {
  header {
    flex-wrap: wrap;
  }

  .members {
    margin: 10px 0 0 auto;
    width: 135px;
  }

  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

@media screen and (max-width: 1000px) {

  .contenedorCentral-info-container-title {
    position: relative;
  }

  .contenedorCentral-info-container {
    margin-bottom: 200px;

  }

  footer {
    flex-direction: column;
  }

  footer div:nth-child(2) {
    position: relative;
    padding: 0 0 19px;
  }

  footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 1100px) {
  .contenedorCentral-info-container {
    width: 100%;
  }

  .contenedorCentral-info-container .text-container .text {
    width: auto;
    padding: 0 30px;
  }

  .text-video-container {
    flex-direction: column;
    padding-right: 0;
    padding-left: 0;
  }

  .text-field-video,
  .video-container {
    width: 80vw;
  }

  .video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .choose-video {
    margin-bottom: 150px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


