/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 2.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;
  --scholastico-color1: #3AAF00;
  --scholastico-color2: #38A900;
  --text-color-dark: #000000;
  --text-color-white: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  /*========== Opacity background ==========*/
  --opacity--bkg: rgba(255, 255, 255, 0.95);
  /*========== Smartphone menu text color ==========*/
  --clr: #222327;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  /* background-color: var(--body-color); */
  background-image: url(../img/bkg_logosSch.png);
  background-size: contain;
  /* background-size: auto auto; */
  color: var(--text-color);
  transition: .3s;
  /* For animation dark mode */
}

body::before {
  z-index: -3;
  /* Para que no interfiera la pseudoclase con el body */
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: var(--opacity--bkg);
}

.hide-scroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

/*=============== THEME ===============*/
.change-theme {
  font-size: 1.25rem;
  color: var(--text-color-white);
  cursor: pointer;
  transition: .3s;
  /* margin-top: 1rem; */

  /*  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 3;*/
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color: hsl(228, 66%, 62%);

  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 70%);

  --border-color: hsl(228, 16%, 14%);
  --body-color: hsl(228, 12%, 8%);
  --container-color: hsl(228, 16%, 12%);
}

/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/

.dark-theme .modal-data {
  background: hsl(228, 12%, 8%);
  /* box-shadow: 0px 20px 30px rgba(28, 40, 44, 0.2); */
}

.dark-theme .gallery__overflow .swiper-button-next,
.dark-theme .gallery__overflow .swiper-button-prev {
  color: var(--text-color-white);
}

/* .dark-theme .notification {
  background: #fff;
  color: var(--text-color-dark);
} */

.dark-theme header {
  background-color: #000;
  box-shadow: 0px 0px 0.8px var(--text-color-light);
}

.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev {
  color: var(--text-color-white);
}

.dark-theme .swiper-button-prev:hover,
.dark-theme .swiper-button-next:hover {
  color: var(--text-color-dark);
}

.dark-theme .navigation {
  background: rgba(18, 19, 23, 0.9);
  /*  box-shadow: 0 0.5rem 0.9rem rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.62);*/
  /*background: transparent;*/
  /*box-shadow: 0 0rem 0.5rem rgba(255, 255, 255, 0.2);*/
  border: 1px solid rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.dark-theme .navigation ul li.active a .iconMobileMenu {
  color: var(--text-color-dark);
}

.dark-theme .navigation ul li a .txtMobileMenu {
  color: var(--text-color-white);
}

.dark-theme .popular__card:hover,
.dark-theme .accordion-open,
.dark-theme .scrollup {
  box-shadow: none;
}

.dark-theme .scroll-header {
  /*border-bottom: 2px solid var(--text-color-white);*/
  box-shadow: 0 0.2rem 0.3rem rgba(255, 255, 255, 0.05);
  /*box-shadow: none;*/
}

.dark-theme .scroll-header .nav__link,
/*Color que toma los links del Nav en el header al hacerse scroll así como boton del cambio de tema */
.dark-theme .scroll-header .change-theme {
  color: var(--text-color-white);
}

/* .dark-theme .scroll-header .nav__link:hover {
  border-bottom: 2px solid var(--text-color-white);
} */

.dark-theme .nav__link:hover {
  border-bottom: 2px solid var(--text-color-white);
}

.dark-theme .nav__link,
.dark-theme .change-theme {
  color: var(--text-color-white);
}

/* seccion inicio */
.dark-theme .containerKnowMore h1 {
  color: var(--text-color-white);
}

.dark-theme .containerKnowMore h2 {
  color: var(--text-color-white);
}

.dark-theme .btnUsKnowMore {
  color: var(--text-color-white);
}

.dark-theme .btnUsKnowMore:hover {
  color: var(--text-color-dark);
}

.dark-theme .blog-slider {
  background: #000;
}

.dark-theme .blog-slider__title {
  color: var(--text-color-white);
}

.dark-theme .blog-slider__text {
  color: var(--text-color-white);
}

.dark-theme .blog-slider__pagination .swiper-pagination-bullet {
  background: #7AD300;
}

.dark-theme .button {
  background-color: transparent;
  border: 2px solid #C8F000;
  color: #fff;
}

.dark-theme .button:hover {
  background-color: #C8F000;
  color: #000;
  box-shadow: 0 4px 12px hsla(100, 0%, 86%, .25);
}

.dark-theme .btnTblComp {
  color: var(--text-color-white);
}

.dark-theme .tblComp {
  background-color: var(--text-color-dark);
}

.dark-theme .data__unete h1 {
  color: var(--text-color-white);
}


/* ESTILOS DARK MODE SECCION TECNOLOGIA */

.dark-theme .popular__card {
  border: none;
}

/* FIN ESTILOS DARK MODE SECCION TECNOLOGIA */

.dark-theme .features__card-description {
  color: var(--text-color-white);
}

.dark-theme .featured__card {
  /*box-shadow: none;*/
  border: none;
}

.dark-theme .footer__logo {
  width: 100px;
}

.dark-theme .footer__title {
  color: var(--text-color-dark);
}

/* .dark-theme .footer__copy,
.dark-theme .footer__privacy a {
  color: var(--text-color-dark);
} */

.dark-theme .form-input::placeholder {
  color: var(--text-color-light);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(228, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 4%, 35%);
}

/*=============== ESCONDEMOS DIVS DE TITULOS PARA AYUDAR A META ===============*/
#metaTitulos {
  display: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.footer {
  /*  width: 100%;
  height: 30vh;
  color: #FFFFFF;*/
  padding: 2.5rem 0 0rem;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, #C8F000, #7AD300, #008904, #23A6D5, #23D5AB, #149279, #1abc9c);
  background-size: 400% 400%;
  position: relative;
  animation: change 30s ease-in-out infinite;
  /*padding: 10px 0;*/
}

@keyframes change {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.servicios.section {
  padding: 0rem 0 2rem;
}

.servicios .section__title {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title.titleFlota {
  margin-top: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.vehiculos.section {
  padding: 0rem 0 2rem;
}

/* .clientes.section {
  padding: 0rem 0 2rem;
} */

.value.section {
  padding: 4rem 0 3rem;
}

.vehiculos .section__title {
  text-align: center;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: #C8F000;
}

.section__title p {
  color: #C8F000;
}

/*Video at the beginning with BTN*/
.video_begin {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--text-color-dark);
  /*transition-delay: 1.5s;*/
}

.container-text-video {
  position: relative;
  /*height: 100vh;*/
  display: flex;
  justify-content: center;
  /* align-items: center; */
  z-index: 1002;
}

.wordsVideo {
  width: 90%;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  /* display: none; */
  opacity: 0;
  transition: 3s ease-in-out all;
}

.wordsVideo p {
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
}

.wordsVideo p:last-child {
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
}

.revealDataVideo {
  opacity: 1;
}

.wordsVideo span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
  letter-spacing: 0.5rem;
  position: relative;
  /* transform: translateY(-100vh); */
  /* animation: fall 3.5s forwards; */
  transform: translateY(0);
  text-shadow: 2px 1px rgba(0, 0, 0, 0.2);
}

@keyframes fall {
  100% {
    transform: translateY(0);
  }
}

/* .wordsVideo span:nth-child(2) {
  animation-delay: 0.1s;
}

.wordsVideo span:nth-child(3) {
  animation-delay: 0.2s;
}

.wordsVideo span:nth-child(4) {
  animation-delay: 0.3s;
}

.wordsVideo span:nth-child(5) {
  animation-delay: 0.4s;
}

.wordsVideo span:nth-child(6) {
  animation-delay: 0.5s;
}

.wordsVideo span:nth-child(7) {
  animation-delay: 0.6s;
}

.wordsVideo span:nth-child(8) {
  animation-delay: 0.7s;
}

.wordsVideo span:nth-child(9) {
  animation-delay: 0.8s;
}

.wordsVideo span:nth-child(10) {
  animation-delay: 0.9s;
}

.wordsVideo span:nth-child(11) {
  animation-delay: 1s;
}

.wordsVideo span:nth-child(12) {
  animation-delay: 1.1s;
}

.wordsVideo span:nth-child(13) {
  animation-delay: 1.2s;
}

.wordsVideo span:nth-child(14) {
  animation-delay: 1.3s;
}

.wordsVideo span:nth-child(15) {
  animation-delay: 1.4s;
}

.wordsVideo span:nth-child(16) {
  animation-delay: 1.5s;
}

.wordsVideo span:nth-child(17) {
  animation-delay: 1.6s;
}

.wordsVideo span:nth-child(18) {
  animation-delay: 1.7s;
}

.wordsVideo span:nth-child(19) {
  animation-delay: 1.8s;
}

.wordsVideo span:nth-child(20) {
  animation-delay: 1.9s;
}

.wordsVideo span:nth-child(21) {
  animation-delay: 2s;
}

.wordsVideo span:nth-child(22) {
  animation-delay: 2.1s;
}

.wordsVideo span:nth-child(23) {
  animation-delay: 2.2s;
}

.wordsVideo span:nth-child(24) {
  animation-delay: 2.3s;
}

.wordsVideo span:nth-child(25) {
  animation-delay: 2.4s;
}

.wordsVideo span:nth-child(26) {
  animation-delay: 2.5s;
}

.wordsVideo span:nth-child(27) {
  animation-delay: 2.6s;
}

.wordsVideo span:nth-child(28) {
  animation-delay: 2.7s;
}

.wordsVideo span:nth-child(29) {
  animation-delay: 2.8s;
}

.wordsVideo span:nth-child(30) {
  animation-delay: 2.9s;
}

.wordsVideo span:nth-child(31) {
  animation-delay: 3s;
} */



/*.video_begin.hide {
  display: none;
}*/

.btn_begin {
  width: 160px;
  height: 60px;
  position: fixed;
  /*  margin: auto;
  margin-top: 38%;*/
  top: 50%;
  /*bottom: 0;*/
  left: 50%;
  transform: translate(-50%, 200%);
  /* antes 100% */
  /*right: 0;*/
  /*  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;*/
  border: none;
  background-color: rgba(120, 120, 120, 0.05);
  color: #fff;
  /* letter-spacing: 5px; */
  backdrop-filter: blur(8px);
  cursor: pointer;
  border-radius: 20px;
  transition: 0.5s;
  z-index: 1001;
}

.begin_hide {
  /*transition-property: background-color;*/
  /*transition-delay: 3s;*/
  opacity: 0;
  animation: fadeOut 1.5s linear;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.btn_begin:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg,
      transparent 50%,
      rgba(255, 255, 255, 0.03) 58%,
      rgba(255, 255, 255, 0.16) 67%,
      transparent 68%);
  background-size: 200% 100%;
  background-position: 165% 0;
  transition: 0.7s;
}

.btn_begin:hover:after {
  background-position: -20% 0;
}

.btn_begin:hover {
  box-shadow: 15px 30px 32px rgba(0, 0, 0, 0.25);
  /*transform: translateY(-10px);*/
}

/*BUS LOADER */
.sch-bus {
  height: 80px;
  width: 140px;
  background-color: #040404;
  border-radius: 5px;
  position: relative;
  animation: schBusAnimation 0.5s linear infinite;
  /*border: 2px solid #fff;*/
}

.sch-bus:before {
  position: absolute;
  content: '';
  height: 30px;
  width: 60px;
  background: #000;
  top: 15px;
  right: -18px;
  transform: rotate(-90deg);
  border-radius: 0 0 50px 50px;
  /*border-bottom: 2px solid #fff;*/
}

@keyframes schBusAnimation {
  100% {
    transform: translateY(2px);
  }
}

.sch-bus .wheel {
  height: 25px;
  width: 25px;
  background: #000;
  border: 2px solid #454545;
  position: absolute;
  border-radius: 50px;
  margin-left: 50px;
  bottom: 53px;
  animation: wheels 0.6s linear infinite;
}

.sch-bus .wheel:before {
  position: absolute;
  content: '';
  background: #454545;
  height: 5px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.sch-bus .wheel:after {
  position: absolute;
  content: '';
  background: #454545;
  height: 5px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.sch-bus .wheel.blueW:before {
  position: absolute;
  content: '';
  background: #ffffff;
  height: 5px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.sch-bus .wheel.blueW:after {
  position: absolute;
  content: '';
  background: #ffffff;
  height: 5px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

@keyframes wheels {
  100% {
    transform: rotate(360deg);
  }
}

.sch-bus .front {
  position: absolute;
  margin: 0 122px;
}

.sch-bus .back {
  position: absolute;
  margin: 0 -5px;
}

.loading {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30000;
}

.loading .line-box {
  padding: 2px;
  width: 20%;
  height: 20px;
  border: 2px solid #C8F000;
  border-radius: 20px;
}

.loading .line-box .line {
  height: 12px;
  border-radius: 20px;
  background-image: linear-gradient(147deg, #008904 20%, #7AD300 64%, #C8F000);

  /* background: #C8F000; */
  animation: barLoading 3.5s forwards cubic-bezier(0, 0, 0, 0);
}

@keyframes barLoading {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}



/* .cover {
  position: relative;
  height: 10px;
  width: 200px;
  top: -30px;
  overflow: hidden;
}

.cover .path {
  height: 8px;
  width: 600%;
  background: #fff;
  position: absolute;
  animation: animationPath 1.5s linear infinite;
}

.path:before {
  position: absolute;
  content: '';
  height: 8px;
  width: 18px;
  background: #000;
  left: 20%;
}

.path:after {
  position: absolute;
  content: '';
  height: 8px;
  width: 18px;
  background: #000;
  right: 60%;
}

@keyframes animationPath {
  100% {
    transform: translateX(-50%);
  }
} */

.text {
  position: relative;
  text-align: center;
  bottom: -60px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-color-dark);
}

/*.dots-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: 0;
  padding: 0;
  display: flex;
  margin-top: 170px;
}

.dots-loader li {
  list-style: none;
  width: 20px;
  height: 20px;
  background: #000;
  margin: 0 5px;
  border-radius: 50%;
  animation: dotsLoader 1.4s linear infinite;
}

@keyframes dotsLoader {
  0% {
    transform: translateY();
  }
  60% {
    transform: translateY();
  }
  80% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.dots-loader li:nth-child(1) {
  animation-delay: 0;
}

.dots-loader li:nth-child(2) {
  animation-delay: -1.2s ;
} 

.dots-loader li:nth-child(3) {
  animation-delay: -1s;
} 

.dots-loader li:nth-child(4) {
  animation-delay: -.8s;
} 

.dots-loader li:nth-child(5) {
  animation-delay: -.6s;
}  */





/*=============== DIV LOADER OPTION 1 ===============*/
#preloader {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
  position: fixed;
  z-index: 2000;
}

#preloader.hide {
  display: none;
}

.loader-sch {
  position: relative;
  width: 200px;
  /*en tableta posiblemente se tenga que cambiar el tamaño*/
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  /*z-index: 30000;*/
}

.bus_hide {
  opacity: 0;
  animation: fadeBus 1s linear;
  /*fadeOut animation that is used in the video begining*/
}

@keyframes fadeBus {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.75;
  }

  50% {
    opacity: 0.50;
  }

  75% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
  }
}

.bus_show {
  animation: showBus 1s;
  /*fadeIn animation that is used in the video begining*/
  /*    -webkit-animation: showBus 5s;
  -moz-animation: showBus 5s;
  -o-animation: showBus 5s;
  -ms-animation: showBus 5s;*/
}

@keyframes showBus {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.10;
  }

  25% {
    opacity: 0.20;
  }

  35% {
    opacity: 0.30;
  }

  50% {
    opacity: 0.50;
  }

  60% {
    opacity: 0.60;
  }

  75% {
    opacity: 0.80;
  }

  100% {
    opacity: 1;
  }
}

.loader-schBus {
  position: relative;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40px;
  z-index: 3000;
}

/*.loaderGif-img {
  width: 500%;
}*/

/*=============== DIV NOTIFICATION ALERT ===============*/
.notification {
  background-color: #008904;
  width: 100%;
  padding: 2px 5px;
  /* font-size: 1rem; */
  z-index: 200;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.4s;
  /* opacity: 1; */
}

.contactSch {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contactSch a {
  color: var(--text-color-white);
  font-size: 0.8rem;
}

.contactSch i {
  color: #008904;
  background-color: var(--text-color-white);
  border-radius: 50%;
  font-size: 0.5rem;
  padding: 5px;
}

.mailSch {
  display: inline-block;
  margin-left: none;
}

.contactExtras {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__social {
  display: flex;
  column-gap: 1rem;
}

.header__social-link {
  font-size: 1.1rem;
  color: var(--text-color-white);
  transition: .3s;
}

.header__social-link:hover.header__social-link i {
  background-color: var(--text-color-white);
  color: #008904;
  border-radius: 50%;
  padding: 2px;
}

.header_theme {
  margin-left: 3rem;
}

.change-theme:hover.header_theme {
  font-size: 1.5rem;
}

/*=============== MODALS ===============*/

/* ESTILO MODAL ISO & MODAL CARD ECOS */
.row {
  display: flex;
}

.modal-eco,
.modal-iso {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -5;
  /*background-color: #000;*/
  /* z-index: 20000; */
  /* display: none; */
  opacity: 0;
}

.modal-comodidades {
  position: fixed;
  top: 0;
  left: 0;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -5;
  /*background-color: #000;*/
  /* z-index: 20000; */
  /* display: none; */
  opacity: 0;
}

/* Estilo de bloque modal comidades en resposivo */
.modal-comodidades-block {
  justify-content: center;
  /* align-items: center; */
  padding: 1rem;
  height: auto;
  overflow: hidden;
}

.modal-ecos-block,
.modal-iso-block {
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 100vh;
  overflow: hidden;
}

.modal-data,
.modal-dataIso {
  box-shadow: 0px 20px 30px rgba(28, 40, 44, 0.2);
  position: relative;
  /* max-width: 400px; */
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.modal-data.comodidades {
  background-color: var(--text-color-white);
  /* padding: 0rem 0rem 3rem; */
  box-shadow: unset;
}

#modalCrossEco,
#modalCrossIso {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#modalCrossComodidades {
  position: absolute;
  top: 35px;
  right: 45px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 3;
}

#modalCrossComodidades i,
#modalCrossEco i,
#modalCrossIso i {
  font-size: 22px;
}

#modalCrossComodidades:hover,
#modalCrossEco:hover,
#modalCrossIso:hover {
  transform: scale(1.3);
}

.modal-ecos-text,
.modal-iso-text {
  padding: 1.8rem 1.8rem;
  /* height: 400px; */
  /* overflow: scroll; */
}

.modal-eco-title,
.modal-iso-title {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 100;
  font-size: 1rem;
  animation: slideTitleModal 0.5s ease-in;
  -webkit-animation: slideTitleModal 0.5s ease-in;
}

.modal-eco-title {
  margin-top: 1rem;
}

.modal-iso-title {
  margin-top: 1rem;
  font-weight: 700;
}

.modal-iso-info {
  font-size: 0.9rem;
  text-align: center;
}

/* BTN ESR */
.contEsr {
  text-align: center;
  margin-top: 1rem;
}

.btnEsr {
  padding: 5px 10px;
  border-radius: 30px;
  border: 2px solid var(--text-color-light);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-color-light);
  max-width: 50px;
  font-size: 0.8rem;
}

.btnEsr:hover {
  background-color: var(--text-color-light);
  color: var(--text-color-white);
}

/* ESTILO MODAL POLÍTICAS */
.modal-polytics {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -5;
  /*background-color: #000;*/
  /* z-index: 20000; */
  /* display: none; */
  opacity: 0;
}

.modal-polytics-block {
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 100vh;
  /* overflow: hidden; */
}

.modal-polytics-block .modal-data {
  box-shadow: 0px 20px 30px rgba(28, 40, 44, 0.2);
  position: relative;
  max-width: 400px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

#modalCross {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#modalCross i {
  font-size: 22px;
}

#modalCross:hover {
  transform: scale(1.3);
}

.modal-cookies {
  padding: 1.8rem 2.6rem;
  /* height: 400px; */
  /* overflow: scroll; */
}

.modal-title {
  text-align: center;
  position: relative;
  /* margin-top: 1rem; */
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 100;
  font-size: 1rem;
  /* animation: slideTitleModal 0.5s ease-in;
  -webkit-animation: slideTitleModal 0.5s ease-in; */
}

/* @keyframes slideTitleModal {
  0% {
    right: 50%;
  }

  100% {
    right: 0%;
  }
} */

.modal-content {
  text-align: justify;
  position: relative;
  font-size: 0.8rem;
  /* animation: slidePModal 0.5s ease-in;
  -webkit-animation: slidePModal 0.5s ease-in; */
}

/* @keyframes slidePModal {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
} */

/* ESTILOS MODAL SHOW / HIDE ANIMATION */
.modal_show {
  animation: showModal 0.5s;
  /*fadeIn animation that is used in the video begining*/
  /*    -webkit-animation: showBus 5s;
  -moz-animation: showBus 5s;
  -o-animation: showBus 5s;
  -ms-animation: showBus 5s;*/
}

@keyframes showModal {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.10;
  }

  25% {
    opacity: 0.20;
  }

  35% {
    opacity: 0.30;
  }

  50% {
    opacity: 0.50;
  }

  60% {
    opacity: 0.60;
  }

  75% {
    opacity: 0.80;
  }

  100% {
    opacity: 1;
  }
}

.modal_hide {
  opacity: 0;
  animation: fadeModal 0.5s linear;
  /*fadeOut animation that is used in the video begining*/
}

@keyframes fadeModal {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.75;
  }

  50% {
    opacity: 0.50;
  }

  75% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
  }
}

.modal-view.show {
  display: block;
}

/* .modal-container img {
  max-width: 100%;
  position: relative;
  animation: slideModal 0.5s ease-in;
  -webkit-animation: slideModal 0.5s ease-in;
} */

/*@keyframes slideModal {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
} 
*/
.modal-close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.modal-close i {
  font-size: 22px;
  color: #fff;
}

.modal-close:hover {
  transform: scale(1.3);
}

/*=============== COTIZAR BUTTON & CHATBOT BUTTON & WHATSAPP BUTTON===============*/

.container-btnChat,
.wa-btn {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #C8F000;
  cursor: pointer;
  position: fixed;
  bottom: 180px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--text-color-white);
  -webkit-tap-highlight-color: transparent;
  z-index: 3;
}

.wa-btn {
  background-color: #25D366;
  bottom: 190px;
  right: 10px;
}

.btn_cotizar {
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff5233;
  color: var(--text-color-white);
  font-size: 30px;
  border-radius: 30px;
  position: fixed;
  bottom: 240px;
  right: 10px;
  padding: 0;
  z-index: 3;
}

.btn_cotizar a {
  display: none;
  font-size: 1rem;
  color: var(--text-color-white);
}

.container-btnChat:hover {
  border: 3px solid #C8F000;
  background-color: var(--text-color-white);
  color: var(--scholastico-color1);
}

.container-btnChat i,
.wa-btn i,
.btn_cotizar i {
  pointer-events: none;
  /* color: var(--text-color-white); */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  /*background-color: transparent; este background es como estaba antes*/
  background-color: #fff;
  z-index: 3;
  transition: .4s;
  /* For animation dark mode */
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  /*efecto para diferenciar header del contenido con una sombra*/
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  width: 24%;
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  transition: .3s;
}

.nav__logo i {
  font-size: 1rem;
}

.nav__logo:hover {
  color: var(--first-color);
}

/*Diseño responsivo de el NavBar header aplica en smartphones y Tableta*/
@media screen and (max-width: 1023px) {

  .wordsVideo {
    transform: translate(-50%, -10%);
    top: 10%;
  }

  .wordsVideo p:last-child {
    font-size: 1.2rem;
  }

  /*First Hide original header nav menu*/
  #new_menu_part1 {
    display: none;
  }

  #new_menu_part2 {
    display: none;
  }

  /*Responsive Header & Nav*/
  .header {
    top: 50px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-contenedor {
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__logo {
    position: absolute;
    margin-top: 2px;
    left: 50%;
    transform: translate(-50%);
    column-gap: none;
  }

  /* NEW RESPONSIVE MENU BAR BOTTOM FOR SMARTPHONE */
  .cont-navigation {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    margin: 0 auto;
    width: 90%;
    z-index: 3;
  }

  .navigation {
    /* width: 400px; */
    /* background: #fff; */
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0.5rem 0.9rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.25rem;
    transition: .4s;
    /* z-index: 3; */
  }

  .navigation ul {
    display: flex;
    width: 320px;
  }

  .navigation ul li {
    position: relative;
    list-style: none;
    width: 80px;
    height: 80px;
    z-index: 1;
  }

  .navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
  }

  .navigation ul li:focus {
    color: transparent;
    outline: none;
  }

  .navigation ul li a .iconMobileMenu {
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    color: var(--text-color);
  }

  .navigation ul li.active a .iconMobileMenu {
    transform: translateY(-32px);
  }

  .navigation ul li.active i {
    padding: 1rem 1rem;
    background-color: #C8F000;
    border-radius: 50%;
  }

  .navigation ul li a .txtMobileMenu {
    position: absolute;
    color: var(--clr);
    font-weight: 400;
    font-size: 0.70em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 1;
    transform: translateY(20px);
  }

  .navigation ul li.active a .txtMobileMenu {
    opacity: 1;
    transform: translateY(10px);
  }

}


/* Change background header */

.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 1px 5px var(--text-color-light);
}

.scroll-header .nav__logo {
  color: var(--first-color);
}

.scroll-header .change-theme {
  color: var(--title-color);
}


/* Active link */
.active-link {
  background-color: #C8F000;
  color: var(--text-color-white);
}


/*=============== HOME ===============*/

/*.slide-container {
          display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}*/


/* .fade {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
} */

.slides {
  display: flex;
  width: 100%;
}

.slide-images img {
  width: 100%;
  height: 100%;
}

#actual-slide {
  margin-left: 0;
  transition: all 2s;
}

.btn-slide {
  position: absolute;
  color: #000;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
  font-size: 1.5rem;
  margin-top: -5px;
}

.btn-slide:hover {
  transform: scale(1.5);
}

#prev {
  top: 50%;
  left: 10%;
}

#next {
  top: 50%;
  right: 10%;
}

.slides-circles {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -45px;
}

.slides-circles div {
  transition: all 0.5s;
  border: 3px solid #fff;
  padding: 6px;
  border-radius: 50%;
  margin-right: 15px;
  cursor: pointer;
}

.slides-circles div:hover {
  background: #fff;
}

.slide-circle-actual {
  transition: all 0.5s;
  background: #fff;
}

.form-input {
  padding: 0.6rem 1.2rem 0.6rem;
  background-color: #f4f4f4;
  border-radius: 50px;
  color: var(--text-color-dark);
  margin: .5rem .5rem;
}

.form-input::placeholder {
  color: var(--text-color-dark);
}

/*EMPIEZAAAAA NUEVO HOME*/


/*PRUEBA SERVICIOS*/

/* NUEVA UI SERVICIOS */
.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}

@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 100px auto;
    /*Margin top aplicado a reponsive*/
    /* margin: 180px auto; */
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}

.blog-slider__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
  transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
  transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
  transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
  transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
  transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
  transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
  transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
  transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
  transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
  transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 340px;
  flex-shrink: 0;
  height: 220px;
  background-image: linear-gradient(147deg, #C8F000 0%, #7AD300 34%, #008904);
  /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}

.blog-slider__content {
  /* margin-top: 30px; */
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}

.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}

.blog-slider__title span {
  color: #C8F000;
}

.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.blog-slider__button {
  display: inline-flex;
  background: #7AD300;
  /* background-image: linear-gradient(147deg, #C8F000 0%, #7AD300 34%, #008904); */
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
  .blog-slider__title {
    font-size: 20px;
  }

  .blog-slider__text {
    margin-top: 2rem;
    margin-bottom: 5px;
  }

  .blog-slider__button {
    width: 100%;
  }
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #7AD300;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

/* Aqui termina nueva UI servicios */



/*Fin de prueba de servicios*/

/* ESTILO BACKLOG VIDEO */
.videoBackLog {
  width: 100%;
}

.containerHomeVideoText {
  position: relative;
  /* margin-bottom: 3rem; */
}

.containerHomeVideoText h2 {
  text-align: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -80%);
  color: #fff;
  text-shadow: 2px 1px rgba(0, 0, 0, 0.2);
  font-weight: lighter;
  font-size: 1rem;
}

.asientosSch {
  /*padding: 40px 40px;*/
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../img/asientosSch.jpg");
  height: 75vh;
  width: 100vw;
  /* text-align: center; */
  /*filter: brightness(200%);*/
}

.asientosSch .section__title {
  color: var(--text-color-dark);
}

/*.btnAsientosSch {
  border: 2px solid #fff;
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  color: #fff;
}*/

.btnAsientosSch:hover {
  background-color: #fff;
  color: #000;
}

/*=============== UI DESPLAZAMIENTO DE IMAGEN ===============*/
.contImgFlota {
  width: 100%;
  /* height: 70vh; */
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#movingImg {
  /* width: 750px;
  height: 300px; */
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 1px 10px 25px rgba(0, 0, 0, 0.5);
}


#movingImg img {
  transition: 3s;
}

.cont-flota #descFlota {
  text-align: center;
  font-weight: 200;
}

@media screen and (max-width: 540px) {
  #movingImg {
    height: 18vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #movingImg {
    height: 25vh;
  }
}

.button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #C8F000;
  color: #000;
  padding: 5px 38px;
  border-radius: 30px;
  font-size: var(--small-font-size);
  /* Antes tamañao estaba en --normal-font-size*/
  font-weight: var(--font-medium);
  transition: .3s;
  cursor: pointer;
}

.button:hover {
  box-shadow: 0 1px 5px var(--text-color-light);
  /*background-color: #000;*/
  background-color: #C8F000;
  color: #fff;
}


/*=============== NUEVA TECNOLOGÍA ===============*/
.tabsTec {
  list-style: none;
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}


.tabsTec li {
  font-size: 1.5rem;
  font-weight: 400;
  color: #263238;
  cursor: pointer;
  position: relative;
}


.tabsTec li::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -3%;
  width: 0%;
  height: 5px;
  background: #263238;
  border-radius: 30px;
  transition: width 0.8s ease;
}

.dark-theme .tabsTec li {
  color: var(--text-color-white)
}

.dark-theme .tabsTec li::after {
  background: var(--text-color-white)
}

.tabsTec li.active::after {
  width: 104%;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.container-tabs {
  width: 65%;
  margin: 6.5rem auto 0;
}

/* Para smartphone y tablet */
@media screen and (max-width: 1024px) {
  .container-tabs {
    width: 100%;
    margin-top: 0rem;
    /* padding: 1rem; */
  }

  .tabsTec li {
    font-size: 0.8rem;
  }
}

.container-tecno {
  /* position: relative; */
  width: 100%;
  /* max-width: 1024px; */
  /* min-height: 100vh; */
  padding: 1.5rem;
  /* Antes 2 rem */
  /* background-color: #fafafa; */
  /* background-color: #fff; */
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}


.container-tecno.active {
  display: block;
  animation: fade 1s ease;
}

@media (max-width: 480px) {
  .container-tecno {
    padding: 1.5rem;
  }
}

.myBusPreview,
.moviTecPreview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.myBusPreview a,
.moviTecPreview a {
  width: 15%;
  /* padding: 1rem 2rem; */
}

.appContext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1.2rem;
  margin-right: auto;
  /* align-items: center; */
  /* text-align: left; */
}

.appContext h2 {
  color: var(--text-color-dark);
  font-weight: 700;
}

.dark-theme .appContext h2 {
  color: var(--text-color-white);
}

.appContext p:last-child {
  color: #23A6D5;
}

.line-tecno {
  width: 100%;
  height: 3px;
  background-color: var(--text-color-light);
}

.myBusData,
.moviTecData {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.myBusData img,
.moviTecData img {
  width: 50%;
}

.myBusInfo,
.moviTecInfo {
  text-align: left;
}

.myBusInfo h4,
.moviTecInfo h4 {
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 1rem;
}

.myBusInfo p:first-child,
.moviTecInfo p:first-child {
  margin-top: 1rem;
}

.myBusCompatibility {
  margin-top: 1.5rem;
}

.myBusInfo p:last-child,
.moviTecInfo p:last-child {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text-color-dark);
}

.dark-theme .myBusInfo p:last-child,
.dark-theme .moviTecInfo p:last-child {
  color: var(--text-color-white);
}

/*=============== TECNOLOGÍA ===============*/
.tec__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  text-align: center;
}

.tec__title span {
  color: #C8F000;
}

.appColegios__container, 
.appEmpresas__container {
  padding: 2.5rem 0 5rem;
  /* width: 100%; */
}

.popular__card {
  width: 290px;
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
  background: transparent;
  /* Aqui empieza efecto de glasmorfismo*/
  /* box-shadow: 0 8px 12px 0 rgba(31, 38, 135, 0.37); */
  /* backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.popular__img {
  width: 200px;
  /* Ajusta el tamaño de imagen adecuado dentro del div contenedor   */
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* .popular__card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
} */

/* Swiper class */
.swiper-wrapper {
  margin-bottom: -30px;
}

/* .swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.bxs-chevron-left,
.bxs-chevron-right {
  pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-image: linear-gradient(147deg, #008904 20%, #7AD300 64%, #C8F000);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--text-color-white);
  transition: .4s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  font-size: 1.8rem;
}

.swiper-button-prev {
  left: calc(50% - 3rem);
}

.swiper-button-next {
  right: calc(50% - 3rem);
} */

/* ESTILOS CONTAINER APPS */
.container__tecM {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: nowrap; */
  padding: 3rem;
}

.tecBloque1 {
  /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
  border-radius: 50px;
  background: transparent;
  text-align: center;
  padding: 1rem 3rem;
}

.tecBloque1 img {
  width: 50%;
}

.imgMovTec {
  border-radius: 50px;
}

@media only screen and (max-width: 540px) {
  .container__tecM {
    flex-wrap: wrap;
    /* padding: 2rem; */
  }

  .tecBloque1 {
    margin-right: 0rem;
    padding: 0.2rem 0rem;
  }

  .tecBloque1 img {
    width: 80%;
  }

  .imgMovTec {
    border-radius: 20px;
  }

  /* NUEVA SECCION TECNOLOGÍA */
  .myBusPreview a,
  .moviTecPreview a {
    width: 55%;
    /* padding: 1rem 2rem; */
  }

  .appContext h2 {
    font-size: 1.1rem;
  }

  .appContext p {
    font-size: 0.9rem;
  }

  .myBusInfo h4,
  .moviTecInfo h4 {
    font-size: 1.1rem;
  }

  .myBusInfo p,
  .moviTecInfo p {
    font-size: 0.9rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .tecBloque1 img {
    width: 100%;
  }

  .imgMovTec {
    border-radius: 20px;
  }
}

@media only screen and (min-width: 1023px) {

  .myBusData img,
  .moviTecData img {
    width: 20%;
  }
}

/*=============== UNETE -- FAMILIA ===============*/
.container-familia {
  height: 150px;
  width: 100%;
  background-color: transparent;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.container-familia span.plus {
  margin-left: 1rem;
}

.container-familia span {
  color: var(--text-color-white);
  font-size: 2.5rem;
  font-weight: 800;
}

.container-familia .number {
  color: var(--text-color-white);
  font-size: 3rem;
  font-weight: 600;
}

.container-familia p {
  margin-left: 0.3rem;
  color: var(--text-color-white);
  font-size: var(--normal-font-size);
  z-index: 100;
}

.counter {
  display: flex;
  align-items: center;
}


.data__unete {
  margin-left: 1rem;
  height: 100px;
  width: 40vw;
  background: transparent;
  text-align: right;
}

.data__unete img {
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .data__unete img {
    width: 70%;
  }
}

.data__unete h1 {
  font-size: 0.9rem;
  font-weight: 100;
  color: #202020;
}

.container-familia .data__vehiculos,
.container-familia .data__colab,
.container-familia .data__viajes {
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  height: 100px;
  border-radius: 0 100px 100px 0;
  background-image: linear-gradient(180deg, #008904 0%, #7AD300 64%, #C8F000);
}

.data__vehiculos {
  width: 55vw;
}

.data__colab {
  width: 75vw;
}

.data__viajes {
  width: 95vw;
}

/*=============== NOSOTROS -- VALUE ===============*/

.us__title {
  font-size: 2rem;
  color: var(--title-color);
  margin-bottom: 2.5rem;
}

.us__title span {
  font-size: 2rem;
}

/* INICIO SECTION  */
.container__inicio {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.containerKnowMore {
  width: 50%;
  text-align: start;
}

.containerKnowMore img {
  width: 35%;
}

.containerKnowMore span {
  font-size: 3rem;
  color: #C8F000;
}

.containerKnowMore h1 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  color: #222220;
}

.containerKnowMore h2 {
  font-weight: 300;
  margin-bottom: 2rem;
  color: #222220;
}

.containerKnowMore span {
  font-size: 4rem;
  font-weight: 800;
}

.btnUsKnowMore {
  padding: 5px 30px;
  border-radius: 30px;
  border: 2px solid #C8F000;
  font-size: 1.2rem;
  cursor: pointer;
  color: #222220;
}

.btnUsKnowMore:hover {
  background-color: #C8F000;
}

.btnUsKnowMore i {
  transform: translateY(15%);
}

.circleEffect {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}

.circleText {
  width: 300px;
  height: 300px;
  position: relative;
  animation: circleTxt 8s linear infinite;
}

@media only screen and (max-width: 768px) {
  .container__inicio {
    flex-direction: column;
    justify-content: center;
  }

  .containerKnowMore {
    width: 100%;
    text-align: center;
  }

  .circleText {
    margin-top: 4rem;
  }
}

@keyframes circleTxt {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.circleText span {
  position: absolute;
  left: 50%;
  transform-origin: 0 150px;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 1.3rem;
}

.circleText span:nth-child(1) {
  color: #008904;
}

.circleText span:nth-child(2) {
  color: #008904;
}

.circleText span:nth-child(3) {
  color: #008904;
}

.circleText span:nth-child(4) {
  color: #008904;
}

.circleText span:nth-child(5) {
  color: #008904;
}

.circleText span:nth-child(6) {
  color: #008904;
}

.circleText span:nth-child(7) {
  color: #008904;
}

.circleText span:nth-child(8) {
  color: #008904;
}

.circleText span:nth-child(9) {
  color: #008904;
}

.circleText span:nth-child(10) {
  color: #7AD300;
}

.circleText span:nth-child(11) {
  color: #7AD300;
}

.circleText span:nth-child(12) {
  color: #7AD300;
}

.circleText span:nth-child(13) {
  color: #7AD300;
}

.circleText span:nth-child(14) {
  color: #7AD300;
}

.circleText span:nth-child(15) {
  color: #7AD300;
}

.circleText span:nth-child(16) {
  color: #7AD300;
}

.circleText span:nth-child(17) {
  color: #7AD300;
}

.circleText span:nth-child(18) {
  color: #7AD300;
}

.circleText span:nth-child(19) {
  color: #7AD300;
}

.circleText span:nth-child(20) {
  color: #7AD300;
}

.circleText span:nth-child(21) {
  color: #C8F000;
}

.circleText span:nth-child(22) {
  color: #C8F000;
}

.circleText span:nth-child(23) {
  color: #C8F000;
}

.circleText span:nth-child(24) {
  color: #C8F000;
}

.circleText span:nth-child(25) {
  color: #C8F000;
}

.circleText span:nth-child(26) {
  color: #C8F000;
}

.circleText span:nth-child(27) {
  color: #C8F000;
}

.circleText span:nth-child(28) {
  color: #C8F000;
}

.circleText span:nth-child(29) {
  color: #C8F000;
}

.circleText span:nth-child(30) {
  color: #C8F000;
}

.circleText span:nth-child(31) {
  color: #C8F000;
}

.circleText span:nth-child(32) {
  color: #C8F000;
}

/* END INICIO SECTION */

.valoresCenter {
  text-align: center;
}

.valores {
  color: #C8F000;
}

/*=============== VEHÍCULOS ===============*/
.vehiculos {
  position: relative;
  overflow: hidden;
}

@keyframes carButton {
  0% {
    /*box-shadow: 0 0 12px var(--scholastico-color1);*/
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }

  50% {
    /*box-shadow: 0 0 24px var(--scholastico-color1);*/
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  }
}

/*=============== CAR FEATURES ===============*/

.features__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}

.features__card-description {
  font-size: var(--smaller-font-size);
  color: var(--text-color-dark);
}

.popularCar__button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}

.popularCar__button i {
  font-size: 1.25rem;
}

.swiper-pagination-bullet {
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #C8F000;
}


/*.shape-smaller {
  width: 180px;
  height: 180px;
  filter: blur(64px);
}
*/


/* ===============CAR FEATURED SELECTION=============== */
.featured__container {
  padding-top: 1rem;
}

.featured__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
}

.li__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.li__item p {
  margin-top: 5px;
  display: none;
  pointer-events: none;
}

#txtFilterTodos {
  display: block;
}

#txtFilterCamiones {
  display: block;
}

.featured__item {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  padding: 1rem 1.8rem;
  border-radius: .75rem;
  box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
  color: var(--text-color-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured__item:hover {
  background-color: #C8F000;
}

.featured__item img {
  width: 1.5rem;
}

/* Checar estas lineas se agrego para quitar clicks en span si funciona se quitaran lineas en js */
.featured__item span {
  pointer-events: none;
}

.featured__item span,
.featured__item img {
  opacity: .6;
  transition: .3s;
}

.featured__item:hover span,
.featured__item:hover img {
  opacity: 1;
}

.active-eco {
  background-color: #C8F000;
}

.featured__item.active-eco span {
  opacity: 1;
}

.text-eco {
  display: block;
}

/* Desde aqui empieza contenedor tabla comparativa */
.contTblComp {
  width: 90%;
  max-width: 1000px;
  /* Antes 900px */
  margin: auto;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 3px;
  /*Pequeño espacio entre items de flex-wrap */
  /* si estan apretados los elementos el último lo baja */
}

.dark-theme .tblComp {
  border: none;
  box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.tblComp {
  width: 33%;
  background-color: var(--text-color-white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
  padding: 40px;
  /* Antes 60px */
  text-align: center;
  flex-grow: 1;
  position: relative;
  /* Se agrego propiedad position */
  /* overflow: hidden; */
}

.tblComp:hover {
  background-image: linear-gradient(147deg, #008904 20%, #7AD300 64%, #C8F000);
  border: none;
  color: #f1f1f2 !important;
  transition: 0.5s all;
  transform: scale(1.1);
  z-index: 4;
  cursor: pointer;
}

.tblComp.eTransit:hover {
  background-image: linear-gradient(147deg, #0a59d8 20%, #0087f7 64%, #00d7fb);
}

.tblComp:hover .btnTblComp {
  background: var(--text-color-white);
  border: none;
}

.dark-theme .tblComp:hover .btnTblComp {
  background: var(--text-color-dark);
  color: var(--text-color-white);
}

.brandEco {
  width: 20%;
  margin-bottom: 10px;
}

.tblComp>h2 {
  color: #C8F000;
  display: block;
  margin-bottom: 20px;
  font-size: 30px;
}

.tblComp>h2.eTransit {
  color: #00d7fb;
}

.imgEco {
  /* width: 80%; Con nuevas imágenes en 80 */
  width: 100%;
  margin-bottom: 20px;
}

/* .tblComp img {
    width: 100%;
    margin-bottom: 35px;
} */

.eco__cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4rem;
  margin-bottom: 2rem;
}

.eco__data {
  text-align: center;
}

.eco__number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.eco__info1 {
  font-size: .625rem;
  font-weight: 400;
}

.btnTblComp {
  display: inline-block;
  width: 150px;
  padding: 12px;
  border: 2px solid #C8F000;
  color: var(--text-color);
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  margin: auto;
}

.btnTblComp.eTransit {
  border: 2px solid #00d7fb;
}

@media screen and (min-width:1023px) {
  .eco__cont {
    column-gap: 1.5rem;
    /*Antes 3*/
  }
}

@media screen and (max-width:1024px) {
  .tblComp {
    width: 45%;
    max-width: none;
    /* flex-direction: column; */
    margin-bottom: 40px;
    /* flex-grow: initial; */
  }
}

@media screen and (max-width:700px) {
  .tblComp {
    width: 45%;
    padding: 30px;
  }
}

@media screen and (max-width:550px) {
  .tblComp {
    width: 85%;
    padding: 20px;
  }
}

/* SUBSECTION COTIZAR SERVICIO  */
.titleCotizar {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--h2-font-size);
  /* font-size: 2.25rem; */
  color: var(--title-color);
  margin-bottom: 3rem;
}

.titleCotizar span {
  color: #C8F000;
}

.slider_cotizar_cont {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 60vh;
}

.left-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  transition: transform .5s ease-in-out;
}

.left-slide>div {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.left-slide h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
  color: var(--text-color-dark);
}

/* BTN COTIZAR */
.left-slide a {
  margin-top: 1rem;
  padding: 5px 30px;
  border-radius: 30px;
  background-color: var(--text-color-white);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-color-dark);
}

.left-slide a:hover {
  background-color: var(--text-color-dark);
  color: var(--text-color-white);
}

.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  width: 65%;
  transition: transform .5s ease-in-out;
}

.right-slide>div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

.slider_cotizar_cont .action-buttons button {
  background-color: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 15px 15px;
  transition: color .2s ease-in;
  position: absolute;
  left: 17%;
  top: 85%;
  z-index: 100;
}

.slider_cotizar_cont .action-buttons button i {
  font-size: 2rem;
}

.slider_cotizar_cont .action-buttons button:hover {
  color: #222;
}

.slider_cotizar_cont .action-buttons .down-button {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transform: translateX(-100%);
}

.slider_cotizar_cont .action-buttons .up-button {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  /* transform: translateY(-100%); */
}

@media screen and (max-width: 821px) {
  .left-slide h1 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    margin-top: -10px;
    /* margin-top: 10px; */
    /* margin-top: -30px;
    color: var(--text-color-dark); */
  }

  .left-slide a {
    /* margin-top: 1rem; */
    padding: 5px 20px;
    /* border-radius: 30px; */
    /* background-color: var(--text-color-white); */
    font-size: 0.8rem;
    /* cursor: pointer;
    color: var(--text-color-dark); */
  }

  .slider_cotizar_cont .action-buttons button {
    font-size: 8px;
    padding: 4px 15px;
  }
}


/* Aqui tengo que checar estas clases */

.featured__content {
  grid-template-columns: 228px;
  row-gap: 2.5rem;
  justify-content: center;
}

.featured__card {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 0.9rem rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.featured__card .shape__smaller {
  position: absolute;
  inset: 0;
  margin: auto;
}

.featured__title,
.featured__subtitle,
.featured__img {
  position: relative;
}

.featured__title {
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.featured__subtitle {
  font-size: var(--normal-font-size);
  color: #808080;
  font-weight: 400;
}

.featured__img {
  width: 180px;
  margin: 1.5rem 0;
  transition: .3s;
}

.featured__price {
  font-size: var(--h3-font-size);
}

.featured__button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}

.featured__button i {
  font-size: 1.25rem;
}

.featured__card:hover .featured__img {
  transform: translateX(-.25rem);
}

/* HASTA AQUI CHECAR CLASES */

/*=============== CONTACT ===============*/


/*=============== FORM ===============*/

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  width: 100px;
  display: inline-flex;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer__logo__mer {
  width: 25%;
  display: inline-flex;
  column-gap: .25rem;
  margin-top: .75rem;
}

.footer__logo__esr,
.footer__logo__iso {
  width: 90px;
  display: block;
  column-gap: .25rem;
  margin-top: .75rem;
  cursor: pointer;
}

.footer__description,
.footer__link {
  color: var(--text-color-white);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  transition: 0.5s;
}

.footer__content,
.footer__links {
  display: grid;
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color-white);
}

.footer__links {
  row-gap: .5rem;
}

.footer__link {
  color: var(--text-color-white);
  transition: .15s;
}

.footer__link:hover {
  font-size: 1rem;
  border-bottom: 2px solid #C8F000;
  color: #C8F000;
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.25rem;
  color: var(--text-color-white);
  transition: .3s;
}

.footer__social-link:hover {
  font-size: 2rem;
  color: #C8F000;
}

.footer__info,
.footer__privacy {
  display: flex;
}

.footer__info {
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  /* text-align: center; */
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-white);
}

.footer__privacy {
  justify-content: center;
  column-gap: 1.25rem;
}

#btnCookies,
#btnPrivacy {
  cursor: pointer;
}

/*=============== SCROLL REVEAL ===============*/
/*CLASES NECESARIAS PARA FUNCION SCROLL REVEAL*/
.reveal {
  /*overflow: hidden;*/
  opacity: 0;
  transform: scale(0.9);
  transition: 1s ease-in-out all;
}

.izquierda {
  transform: translateX(-18px);
}

.derecha {
  transform: translateX(18px);
}

.visible {
  opacity: 1;
  transform: scale(1) translateX(0);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 8%, 64%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 64%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 1px 5px var(--text-color-light);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.3rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
  color: #C8F000;
  font-weight: 800;
  font-size: 1.5rem;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 8rem;
}

/*=============== RESPONSIVE DESIGN ===============*/
/* For small devices ... POSIBLEMENTE CAMBIAR VALOR A 375 .. SI NO 350 */
@media screen and (max-width: 375px) {

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section {
    padding: 3.5rem 0 1rem;
  }
}

/*Galaxy Fold*/
@media screen and (max-width: 320px) {
  .logos__container {
    gap: 2rem 1rem;
  }

  .popular__card {
    width: 230px;
    padding: .5rem .5rem .75rem;
  }

  .asientosSch {
    height: 80vh;
  }

  .footer__content {
    gap: 2.5rem;
  }

}

/* For old small smartphones  */
@media screen and (max-width: 370px) {
  .featured__item {
    padding: 1.2rem 1.5rem;
    width: 15px;
    height: 20px;
  }
}

/* For medium devices BUT ESPECIFICALLY FOR SWIPER CARD SLIDE IN MOBILES */
@media screen and (max-width: 576px) {

  .containerKnowMore h1 {
    font-size: 1.7rem;
  }

  /* .featured__item {
    width: 42px;
    height: 42px;
  } */

  .popular__card {
    width: 200px;
    padding: .5rem .5rem .75rem;
  }

  .popular__img {
    width: 160px;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__logo {
    width: 16%;
  }

  .valoresCenter {
    text-align: left;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }

}

@media screen and (min-width: 767px) {
  .modal-container {
    max-width: 600px;
  }

  .modal-container img {
    width: 600px;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__logo {
    width: 14%;
  }

  .asientosSch {
    height: 40vh;
  }

  .featured__content {
    grid-template-columns: repeat(2, 228px);
    /*row-gap:  2.5rem;*/
    column-gap: 2rem;
  }

  .featured__filters {
    column-gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {

  /*For words video and btn Video*/
  .btn_begin {
    top: 70%;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .modal-container {
    max-width: 500px;
  }

  /*  .modal-container img {
    width: 600px;
  }*/

  .notification {
    /* border: 2px solid #000; */
    /* border-radius: 10px; */
    background-color: #026305;
    /* color: var(--text-color-white); */
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 3px 40px;

    /* padding: 0px 40px; */
  }

  .contactSch {
    width: none;
    display: unset;
    align-items: unset;
    justify-content: unset;
  }

  .contactExtras {
    width: unset;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .contactSch a {
    font-size: 0.8rem;
  }

  .contactSch i {
    font-size: 1rem;
  }

  .mailSch {
    margin-left: 3rem;
  }

  .change-theme:hover {
    font-size: 2rem;
  }

  .container-btnChat {
    bottom: 90px;
  }

  .wa-btn {
    bottom: 85px;
  }

  .btn_cotizar {
    height: inherit;
    width: inherit;
    padding: 0.5rem 0.8rem;
    bottom: 135px;
  }

  .btn_cotizar a {
    margin-left: 2px;
    display: block;
  }

  .izquierdaBackLog {
    top: 15%;
    left: 30%;
    transform: translate(-30%, -15%);
  }

  .izquierdaBackLogText2 {
    top: 50%;
    left: 15%;
    transform: translate(-15%, -50%);
    /* text-align: center; */
  }

  .visible {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  /* .visible {
    opacity: 1;
    transform: scale(1) translateX(0);
  } */

  /* .izquierdaBackLog {
    top: 15%;
    left: 15%;
    transform: translate(-15%,-15%);
  }

  .visible {
    opacity: 1;
    transform: scale(1) translateX(0);
  }   */

  .nav__logo {
    width: 10%;
  }

  .section {
    padding: 7.5rem 0 1rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  /*Escondemos el nav responsive menu y botón de tema, contacto y ventas*/
  /* NEW MENU */
  .navigation {
    display: none;
  }

  /*  .btn-theme-resp {
    display: none;
  }*/

  .nav__list {
    display: flex;
    column-gap: 2.4rem;
    /*Antes en 4rem*/
  }

  .nav__link {
    color: var(--text-color-dark);
  }

  .nav__link:hover {
    border-bottom: 2px solid var(--text-color-dark);
  }

  .nav__link i {
    display: none;
  }

  .nav__link span {
    font-size: 0.9rem;
  }

  .active-link {
    border-bottom: 2px solid #C8F000;
    background-color: transparent;
  }

  .dark-theme .active-link {
    border-bottom: 2px solid #C8F000;
    background-color: transparent;
  }

  .scroll-header .nav__link {
    /*Color que toma los links del Nav en el header al hacerse scroll así como boton del cambio de tema */
    color: var(--text-color-dark);
  }

  .scroll-header .nav__link span {
    font-size: 0.85rem;
  }

  .scroll-header .nav__link:hover {
    border-bottom: 2px solid #C8F000;
  }

  /* EN NUEVO HOME (INICIO) SECCION DE BACKLOG */




  /* Contenedor de TEXTO en video de HOME */
  .containerHomeVideoText h2 {
    font-size: 3rem;
  }

  .asientosSch {
    /*    padding: 40px 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/asientosSch.jpg");*/
    /*    max-width: 100%;
    max-height: 100%;*/
    height: 500px;
    width: 100%;
    /*object-fit: contain;*/
  }

  .appColegios__container, 
  .appEmpresas__container {
    padding-top: 3rem;
  }

  .popular__card {
    width: 280px;
    padding: .75rem .75rem 2rem;
  }

  .valoresCenter {
    text-align: left;
  }

  .titleCotizar {
    font-size: 2.25rem;
  }

  /* estilos sección tecnología */
  .tec__title {
    font-size: 2.25rem;
  }

  .featured__container {
    padding-bottom: 2.5rem;
  }

  .featured__item {
    width: 52px;
    height: 52px;
  }

  .featured__item img {
    width: 2rem;
  }

  .featured__content {
    grid-template-columns: repeat(3, 248px);
    column-gap: 4rem;
  }

  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links {
    row-gap: 1rem;
  }

  .footer__info {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }

  .footer__logo__mer {
    width: 50%;
  }

  .footer__logo__esr,
  .footer__logo__iso {
    /* display: block; */
    width: 100px;
  }

  .show-scroll {
    bottom: 3rem;
    right: 3rem;
  }

}

/*Laptops con 1040px*/
@media screen and (min-width: 1040px) {

  /*SCROLL REVEAL*/
  /*  .izquierda {
    transform: translateX(-100px);
  }

  .derecha {
    transform: translateX(100px);
  }*/

  .container {
    margin-left: auto;
    margin-right: auto;
  }

}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.5;
  }
}

@media screen and (min-width: 3840px) {
  body {
    zoom: 2;
  }
}



/*Disney slider*/

/* Arrows */
/*.responsive .slick-prev {
  left: -200px;
  z-index: 1;
  padding: 60px 200px 60px 20px;
  border: 1px solid red;
  opacity: 0;
}
.responsive .slick-next {
  right: -200px;
  z-index: 1;
  padding: 60px 200px 60px 20px;
  border: 1px solid red;
  opacity: 0;
}
*/

/*slider arrows*/
/* .slick-prev {
  display: none;
  left: -20px;
  z-index: 10;
  padding: 60px 200px 60px 30px;
}
.slick-next {
  opacity: 0;
  display: none;
  right: -20px;
  z-index: 10;
  padding: 60px 50px 60px 20px;
} */

/* .slick-prev:hover {
  text-shadow: #000 1px 1px 2px;
  opacity: 1;
}
.slick-next:hover {
  text-shadow: #000 1px 1px 2px;
  opacity: 1;
} */

/* .slick-arrow {
  display: none;
} */

.container-general {
  margin-top: 50px;
}

/* Slick Center */
.cl img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: rgb(0 0 0) 0px 16px 10px -10px;
}

.cl {
  padding: 5px;
  position: relative;
}

@media (min-width: 768px) {
  .cl {
    padding: 10px;
  }
}

/* Dots Slider */
.slick-dots li button:before {
  color: #969eab;
  left: 0;
  top: 0;
  opacity: 1;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
}

.slick-dots li.slick-active button:before {
  color: #f9f9f9;
}

.slick-dots {
  display: block;
  list-style: none;
  position: absolute;
  text-align: center;
  bottom: 0px;
  margin: 0;
  padding: 20px;
  right: 8px;
  width: 100%;
}

.slick-slide[aria-hidden=true] .card:before {
  content: "";
  background: linear-gradient(#1b1d24, #1e1f2a) 0 0/cover;
  width: 100%;
  display: block;
  position: absolute;
  opacity: .5;
  border-radius: 4px;
  z-index: 2;
}

@media screen and (min-width: 300px) {
  .films {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 15px;
  }
}

/*MODAL CONTENT DETAILS & ECO GALLERY RESPONSIVE DESIGN*/
.title_eco_comodidades {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: var(--text-color);
  /* margin-left: 1rem;
  margin-top: 1rem; */
  font-weight: 200;
  text-transform: uppercase;
  z-index: 3;
}

.txtComodidades {
  transform: unset;
  -webkit-transform: unset; 
  -moz-transform: unset;     
  width:100px;
  padding: 0;
  margin: 0;
  color: #C8F000;
}

.txtComodidades p {
  font-size: 1rem;
  font-weight: 500;
}

.comodidades_data {
  /* background-color: transparent; */
  background-color: hsla(0, 0%, 95%, .1);
  backdrop-filter:  blur(50px);
  padding: 0.2rem;
  /* position: absolute;
  right: 1rem;
  top: 4rem; */
  color: var(--text-color);
  margin-right: unset;
}

.comodidades_data p {
  margin-left: 0.8rem;
  font-size: 0.8rem;
}

.pin {
  background: #C8F000;
  border-radius: 50%;
  position: absolute;
  width: 0.5em;
  height: 0.5em;
}


.pin::before {
  content: '';
  background: #C8F000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
}

.pin.eTransit {
  background: #00d7fb;
}

.pin.eTransit::before {
  content: '';
  background: #00d7fb;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
}

@keyframes pulse {
  100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2.5);
  }
}

.caracDesc {
  color: #C8F000;
}

.content_comodidades {
  padding: 1rem 0rem 1rem;
}

.container_vehiculo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* display: grid;
  align-content: center;
  justify-content: center; */
  margin-bottom: 1rem;
}

.container_vehiculo img {
  max-width: 100%;
  height: auto;
}

.vehiculo_main {
  position: relative;
  width: 300px;
  height: 200px;
  /* border-radius: 1rem; */
  /* margin-left: auto;
  margin-right: auto;
  overflow: hidden; */
  /* border-radius: 3rem; */
}

.pruebaImg {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: transform .3s;
  /* border-radius: 3rem; */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  /* grid-template-columns: 50px repeat(8, 1fr); */
  gap: 30px;
  padding: 0rem 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 1rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {

}

/* For medium devices */
@media screen and (min-width: 768px) {
  .vehiculo_main {
    width: 620px;
    height: 350px;
  }
}

/* For tablets */
@media screen and (min-width: 768px) {
  .container_vehiculo {
    justify-content: start;  
    flex-direction: row;
  }

  .txtComodidades {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg); 
    -moz-transform: rotate(-90deg);   
    /* width:100px; */
  }
  
  .txtComodidades p {
    font-size: 1.8rem;
    font-weight: 800;
  }
  

  .comodidades_data {
    margin-left: 2rem;
  }
}

/* For large & laptop devices */
@media screen and (min-width: 1024px) {
  .modal-comodidades-block {
    justify-content: center;
    /* align-items: center; */
    padding: 1rem;
    height: 100vh;
    overflow: hidden;
  }

  .container_vehiculo {
    flex-direction: row;
    justify-content: space-between;  
    /* display: grid;
    align-content: center;
    justify-content: center; */
    margin-bottom: 1rem;
  }

  .vehiculo_main {
    width: 750px;
    height: 400px;
    /* scale: 0.95; */
  }

  .comodidades_data {
    margin-left: unset;
    margin-right: 5rem;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* grid-template-columns: 50px repeat(8, 1fr); */
    gap: 30px;
    padding: unset;
  }
}