@font-face {
  font-family: "FiestasDeOctubreTITULAR";
  src: url("../fonts/FiestasDeOctubreTITULAR.eot");
  src: url("../fonts/FiestasDeOctubreTITULAR.eot") format("embedded-opentype"),
    url("../fonts/FiestasDeOctubreTITULAR.woff2") format("woff2"),
    url("../fonts/FiestasDeOctubreTITULAR.woff") format("woff"),
    url("../fonts/FiestasDeOctubreTITULAR.ttf") format("truetype"),
    url("../fonts/FiestasDeOctubreTITULAR.svg#FiestasDeOctubreTITULAR")
      format("svg");
}

/*clases*/
:root {
  --main-color: #7942bc;
  --active-color: #ff831e;
  --back-color: #06f502;
  --white-color: #ffffff;
  --dark-color: #270f50;
}

/*clases*/

body {
  background-color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  color: var(--white-color);
}

.navbar-toggler {
  border: var(--bs-border-width) solid var(--back-color);
}
.navbar-toggler-icon {
  background-image: url("../img/menu.svg");
}

.navbar {
  background-color: rgba(121, 66, 188, 0.1);
  backdrop-filter: blur(24px) brightness(0.6) saturate(1.2);
}

.navbar-brand {
  position: relative;
}
.navbar-brand img {
  display: block;
  width: 66%;
}

.custom-top-margin {
  margin-top: 125px;
}

.nav-item {
  width: auto;
}

.nav-link {
  background-color: var(--back-color);
  border-radius: 50px;
  color: var(--dark-color);
  margin: 0 8px;
  font-size: 1.3em;
  padding: 20px 24px !important;
}
.nav-link:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.nav-link.extra-btn {
  background-color: var(--active-color);
  border-radius: 50px;
  color: var(--white-color);
  font-weight: 600;
}
.nav-link.extra-btn:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}

@media all and (max-width: 991px) {
  .nav-link,
  .nav-link.extra-btn {
    display: inline-block;
    margin: 8px 0;
  }
  .nav-item {
    text-align: center;
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  position: relative;
  width: 100%;
}

.img-desk {
  display: block;
}
.img-mob {
  display: none;
}
@media all and (max-width: 991px) {
  .img-desk {
    display: none;
  }
  .img-mob {
    display: block;
  }
}

.title-wrapper {
  position: relative;
  width: 100%;
}
.title-wrapper img {
  position: relative;
  display: block;
  margin: 0 auto;
}

.show-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.show-wrapper img {
  width: 100%;
}
.cartelera-bg {
  width: 100%;
  background-image: url("../img/cartelera-bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media all and (max-width: 991px) {
  .title-wrapper img {
    width: 100%;
  }
}

.custom-cta-orange {
  text-align: center;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 800;
  text-decoration: none;
  color: var(--white-color);
  background-color: var(--active-color);
  padding: 10px 20px;
  border-radius: 24px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-cta-green {
  text-align: center;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 800;
  text-decoration: none;
  color: var(--white-color);
  background-color: var(--back-color);
  padding: 10px 20px;
  border-radius: 24px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-cta-green:hover,
.custom-cta-orange:hover {
  background-color: var(--dark-color);
}
.custom-socials {
  display: flex;
  justify-content: center;
}
.custom-socials .col-6 a {
  text-align: center;
  display: inline-block;
}

.social-link {
  border-radius: 50px;
  color: var(--white-color);
  margin: 0 8px;
  font-size: 2.5em;
  padding: 20px 24px !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-link.icon-orange {
  background-color: var(--active-color);
}
.social-link.icon-green {
  background-color: var(--back-color);
}

.social-link:hover {
  background-color: var(--dark-color);
}

.prefooter-bg {
  background-image: url("../img/prefooter-bg.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.prefooter-logos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.prefooter-logos img {
  display: block;
  width: 20%;
}
.prefooter-margin {
  margin-bottom: 300px;
}
@media all and (max-width: 991px) {
  .prefooter-logos img {
    width: 44%;
  }
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-list a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 1em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-list a:hover {
  color: var(--back-color);
}

.custom-social-footer {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.custom-social-footer li {
  display: inline-block;
}
.custom-social-footer a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 1.8em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-social-footer a:hover {
  color: var(--back-color);
}
