/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --clr-text:#53555A;
  --clr-dark:#230F54;
  --clr-light:#4BAFF8;
  --clr-blue:#246BF6;
  --clr-green:#7DE8B8;
  --clr-pink:#BF3EC8;
  --clr-dark-gray:#333333;
  --clr-black:#000000;
  --clr-white:#ffffff;
  --clr-light-gray:#F3F3F3;
  --clr-light-border:#E0E0E0;
  --clr-legal:#B1B1B1;
  --gradient-pink-dark: linear-gradient(270deg, rgba(191,62,200,1) 0%, rgba(57,29,124,1) 100%);
  --gradient-pink-green: linear-gradient(270deg, rgba(125,232,184,1) 0%, rgba(191,62,200,1) 100%);
  --gradient-green-lightblue: linear-gradient(270deg, rgba(75,175,248,1) 0%, rgba(125,232,184,1) 100%);
  --gradient-dark-blue: linear-gradient(270deg, rgba(36,107,246,1) 0%, rgba(62,35,130,1) 100%);
  --gradient-blue-pink: linear-gradient(270deg, rgba(36,107,246,1) 0%, rgba(191,62,200,1) 100%);
  --gradient-blue-dark: linear-gradient(90deg, rgba(36,107,246,1) 0%, rgba(35,15,84,1) 100%);
  --gradient-lightblue-blue: linear-gradient(90deg, rgba(75,175,248,1) 0%, rgba(36,107,246,1) 100%);
  --gradient-green-lightblue: linear-gradient(90deg, rgba(125,232,184,1) 0%, rgba(36,107,246,1) 100%);
  --gradient-pink-green: linear-gradient(90deg, rgba(191,62,200,1) 0%, rgba(125,232,184,1) 100%);
  --gradient-dark-pink: linear-gradient(90deg, rgba(35,15,84,1) 0%, rgba(191,62,200,1) 100%);
}

.blue-pink {
  background: #246bf6;
  background: var(--gradient-blue-pink);
}

.green-lightblue {
  background: #4baff8;
  background: var(--gradient-green-lightblue);
}

.blue-dark {
  background: #246bf6;
  background: var(--gradient-blue-dark);
}

.lightblue-blue {
  background: #4baff8;
  background: var(--gradient-lightblue-blue);
}

.green-lightblue {
  background: #4baff8;
  background: var(--gradient-green-lightblue);
}

.pink-green {
  background: #7de8b8;
  background: var(--gradient-pink-green);
}

.dark-pink {
  background: #bf3ec8;
  background: var(--gradient-dark-pink);
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--clr-text);
}

h2, .h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin: 35px 0px;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
}

h3, .h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 3.125rem;
    line-height: 3.125rem;
  }
}

h4, .h4 {
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  h5, .h5 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

h6, .h6 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  h6, .h6 {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.txt--primary {
  color: var(--clr-blue);
}

.txt--green {
  color: var(--clr-green);
}

.txt--pink {
  color: var(--clr-pink);
}

.txt--dark {
  color: var(--clr-dark);
}

.txt--white {
  color: var(--clr-white) !important;
}

.txt--light {
  color: var(--clr-legal);
}

.txt--light-blue {
  color: var(--clr-light);
}

.txt--blue {
  color: var(--clr-blue);
}

.text-center {
  text-align: center;
}

.small {
  font-size: 0.875rem;
}

.per {
  font-size: 1.8rem;
}

.sub-title {
  background-image: linear-gradient(0deg, #246bf6 0%, #bf3ec8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sub-title {
    margin-bottom: 80px;
    margin-top: 70px;
  }
}

.highlight {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .highlight {
    font-size: 3.125rem;
    line-height: 3.125rem;
  }
}

.highlight-md {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .highlight-md {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

.info-text {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .info-text {
    font-size: 1.25rem;
    line-height: 1.4rem;
  }
}

.banner-rutas {
  background-color: var(--clr-light-gray);
  text-align: center;
}
.banner-rutas__picture {
  margin: auto;
}
.banner-rutas__acceso {
  margin: 50px 15px;
}
.banner-rutas__acceso h3 {
  margin-bottom: 30px;
}
.banner-rutas .highlight {
  margin-bottom: 40px;
}

.intro {
  padding: 100px 0px 50px 0px;
  background: none;
}
@media (min-width: 992px) {
  .intro {
    text-align: center;
    background: url("../imgs/home-bg-top.svg") no-repeat, url("../imgs/linea-home.svg") no-repeat;
    background-position: top left, 0px 700px;
    background-size: 200px, contain;
    padding: 100px 0px;
  }
}
.intro__body {
  margin: 50px 0px 120px 0px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .intro__body {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
  }
}
@media (min-width: 992px) {
  .intro__column {
    flex: 1;
  }
}
.intro__column h5 {
  color: var(--clr-light);
}
.intro__column p {
  color: var(--clr-text);
}
.intro video {
  max-width: 960px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.banner-bus {
  background: linear-gradient(90deg, #23a6dc 0%, #7de8b8 100%);
  color: var(--clr-white);
  padding-top: 40px;
  height: 500px !important;
}
@media (min-width: 992px) {
  .banner-bus {
    height: 600px !important;
  }
}
@media (max-width: 576px) {
  .banner-bus {
    height: 700px !important;
  }
}
.banner-bus__img {
  background: url(../imgs/bus.png) no-repeat;
  background-position: center right;
  /*background-size: 500px;*/
  background-size: 60%;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .banner-bus__img {
    background-size: auto;
    background-position: center right;
  }
}
@media (max-width: 576px) {
  .banner-bus__img {
    background-size: 500px;
    background-position: bottom right;
  }
}
.banner-bus .container {
  height: 100%;
  align-items: center;
}
@media (max-width: 576px) {
  .banner-bus .container {
    display: block;
  }
}
@media (min-width: 768px) {
  .banner-bus .container {
    display: flex;
  }
}
.banner-bus p {
  margin: 30px 0px;
  color: var(--clr-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.preguntas {
  padding: 80px 0px;
}

.modalidades {
  background: #230f54;
  background-image: url(../imgs/gradient-modalidades.png), linear-gradient(0deg, #571aa4 0%, #230f54 100%);
  padding-bottom: 150px;
  background-position: right 15px;
  background-repeat: no-repeat;
}
.modalidades .container {
  border-top: 1px solid var(--clr-light-border);
  padding-top: 80px;
}
.modalidades__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 80px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .modalidades__card {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  }
}
.modalidades__card .card {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}
.modalidades__card .card img {
  margin: 0px auto 25px auto;
}
.modalidades__card .card__title {
  font-size: 1.875rem;
  color: var(--clr-blue);
  font-weight: 700;
  border-bottom: 1px solid var(--clr-light-border);
  padding-bottom: 25px;
  text-align: center;
}
.modalidades__card .card__text {
  margin-top: 30px;
  text-align: center;
}

.empezar__content {
  padding: 60px 0px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid var(--clr-light-border);
}

.otros-servicios {
  padding: 80px 0px;
}
.otros-servicios .logos__grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}
@media (min-width: 480px) {
  .otros-servicios .logos__grid {
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  }
}

.h-empresas {
  background: url("../imgs/empresas.jpg");
  background-position: bottom center;
}

.conductores {
  margin: 80px 0px 50px 0px;
}
.conductores .highlight {
  margin-bottom: 25px;
}
.conductores .ofrecemos {
  padding: 80px 0px;
}
.conductores .ofrecemos__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  margin-top: 50px;
}
@media (min-width: 992px) {
  .conductores .ofrecemos__grid {
    gap: 6rem;
  }
}
.conductores .ofrecemos__column img {
  margin: auto;
}
.conductores .ofrecemos__column p {
  line-height: 1.25rem;
  margin-top: 20px;
}
.conductores .ofrecemos__column p span {
  font-weight: 700;
}

.requisitos {
  padding: 80px 0px;
}
.requisitos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 3rem;
  margin-top: 50px;
}
.requisitos__column span {
  font-size: 5rem;
  color: var(--clr-blue);
  font-weight: 300;
}

.h-conductores {
  background: url("../imgs/conductores.jpg");
  background-position: center center;
}
@media (max-width: 768px) and (orientation: portrait) {
  .h-conductores {
    background: url("../imgs/conductores-vert.jpg");
    background-position: top center;
  }
}

.rutas {
  padding: 80px 0px;
  background-color: var(--clr-dark);
  text-align: left;
  display: grid;
  grid-template-columns: 85%;
  justify-content: end;
}
.rutas__section {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.rutas__section:nth-child(2) .car {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.rutas__section:nth-child(3) .car {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.rutas__section:nth-child(4) .car {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.rutas__section:nth-child(5) .car {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.rutas__section:nth-child(6) .car {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.rutas__section:nth-child(7) .car {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.rutas__section p {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 1.875rem;
  line-height: 1.8rem;
}
@media (min-width: 768px) {
  .rutas__section p {
    font-size: 3.125rem;
    line-height: 3rem;
  }
}
.rutas__line {
  height: 2px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .rutas__line {
    height: 4px;
  }
}
.rutas__ver {
  margin-top: 80px;
}
.rutas__ver p {
  font-size: 1rem;
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .rutas__ver p {
    font-size: 1.563rem;
    line-height: 1.8rem;
  }
}

.car {
  bottom: 0;
  position: absolute;
  -webkit-animation: linear infinite;
          animation: linear infinite;
  -webkit-animation-name: run;
          animation-name: run;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  width: 70px;
}
@media (min-width: 768px) {
  .car {
    width: auto;
  }
}

@-webkit-keyframes run {
  0% {
    left: 0;
    transform: scale(0.1);
  }
  3% {
    transform: scale(1);
  }
  98% {
    left: calc(100% + 100px);
  }
  100% {
    right: -100px;
  }
}

@keyframes run {
  0% {
    left: 0;
    transform: scale(0.1);
  }
  3% {
    transform: scale(1);
  }
  98% {
    left: calc(100% + 100px);
  }
  100% {
    right: -100px;
  }
}
@media (min-width: 768px) {
  @-webkit-keyframes run {
    0% {
      left: 0;
      transform: scale(0.1);
    }
    3% {
      transform: scale(1);
    }
    98% {
      left: calc(100% + 100px);
    }
    100% {
      right: -100px;
    }
  }
  @keyframes run {
    0% {
      left: 0;
      transform: scale(0.1);
    }
    3% {
      transform: scale(1);
    }
    98% {
      left: calc(100% + 100px);
    }
    100% {
      right: -100px;
    }
  }
}
.app {
  padding-top: 80px;
}

.nosotros__info {
  padding: 90px 0px;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .nosotros__info {
    font-size: 1.875rem;
    line-height: 2.1rem;
  }
}

@media (min-width: 768px) {
  .travel--nosotros {
    background: url(../imgs/nosotros-gradient-bottom.png) bottom right no-repeat;
  }
}

.h-nosotros-ch {
  background: url("../imgs/nosotros-header.jpg");
  background-position: center center;
}
@media (max-width: 768px) and (orientation: portrait) {
  .h-nosotros-ch {
    background: url("../imgs/nosotros-header-vert.jpg");
    background-size: cover;
  }
}

.h-nosotros-arg {
  background: url("../imgs/nosotros-arg.jpg");
  background-position: center center;
}
@media (max-width: 768px) and (orientation: portrait) {
  .h-nosotros-arg {
    background: url("../imgs/nosotros-mobile-arg.jpg");
    background-size: cover;
  }
}

.header-comunidad {
  margin: 80px 0px;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .header-comunidad {
    font-size: 1.875rem;
    line-height: 2.1rem;
  }
}
.header-comunidad .mapa-santiago {
  margin: 100px 0px;
}
.header-comunidad .mapa-santiago img {
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin: auto;
}

.ticket {
  padding: 100px 20px;
  background: url("../imgs/ticket-bg-mobile.png") no-repeat;
  background-size: cover !important;
}
@media (min-width: 768px) {
  .ticket {
    background-position: center bottom;
    background: url("../imgs/ticket-bg.png") no-repeat;
  }
}
.ticket__card {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  max-width: 400px;
  margin: 80px auto;
}
.ticket__card__logos {
  display: flex;
  text-align: center;
  justify-content: center;
}
.ticket__card__logos img {
  margin: 0px 3px;
}
.ticket__card__title {
  font-weight: 700;
  color: var(--clr-blue);
  font-size: 1.5rem;
}
.ticket__card__price {
  font-size: 3rem;
  font-weight: 300;
  padding: 0px !important;
}
@media (min-width: 768px) {
  .ticket__card__price {
    font-size: 5rem;
  }
}
.ticket__card__price:before {
  content: "$";
  color: var(--clr-legal);
  font-size: 2rem;
  vertical-align: 15%;
}
@media (min-width: 768px) {
  .ticket__card__price:before {
    font-size: 3rem;
  }
}
.ticket__card__price.price-after:after {
  content: "+ IVA";
  color: var(--clr-legal);
  font-size: 1rem;
  vertical-align: 50%;
}
@media (min-width: 768px) {
  .ticket__card__price.price-after:after {
    vertical-align: 70%;
  }
}
.ticket__card__price sup {
  font-size: 2rem;
}
.ticket__card ul {
  list-style: none;
  padding: 0px;
  text-align: center;
  font-size: 0.875rem;
}
.ticket__card ul li {
  padding: 15px 0px;
}

.convenios {
  background: none;
  background-color: var(--clr-dark);
  padding-top: 30px;
}
@media (min-width: 768px) {
  .convenios {
    padding-top: 0px;
  }
}
@media (min-width: 768px) {
  .convenios {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%), url("../imgs/convenios.jpg") no-repeat;
    background-size: cover;
    background-position: left;
    height: 900px;
  }
}
.convenios__text {
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: var(--clr-white);
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}
.convenios__text h5 {
  display: none;
}
@media (min-width: 768px) {
  .convenios__text {
    font-size: 2.5rem;
    line-height: 2.3rem;
    max-width: 550px;
    text-align: right;
  }
  .convenios__text h5 {
    display: block;
  }
}
.convenios__picture {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .convenios__picture {
    display: none;
  }
}
.convenios__picture h5 {
  margin-bottom: 40px;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  .convenios__picture h5 {
    display: none;
  }
}
.convenios__picture img {
  border-radius: 30px;
  margin: auto;
}
@media (min-width: 768px) {
  .convenios .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.mapa-santiago [data-tab-content] {
  display: none;
}
.mapa-santiago .active[data-tab-content] {
  display: block;
}
.mapa-santiago .tabs {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
.mapa-santiago .tabs li {
  border-bottom: 1px solid var(--clr-light-border);
}
.mapa-santiago .tabs li:nth-child(3) {
  width: 100%;
}
.mapa-santiago .tab {
  cursor: pointer;
  padding: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.mapa-santiago .tab.active {
  color: var(--clr-blue);
  border-top: 1px solid var(--clr-light-border);
  border-left: 1px solid var(--clr-light-border);
  border-right: 1px solid var(--clr-light-border);
  border-bottom: 1px solid var(--clr-white);
}
.mapa-santiago .tab:hover {
  color: var(--clr-blue);
}
.mapa-santiago .tab-content {
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 40px;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0px 20px;
  position: relative;
}

.down-button {
  position: absolute;
  z-index: 100;
  width: 40px;
  bottom: 40px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-animation: linear infinite;
          animation: linear infinite;
  -webkit-animation-name: downbutton;
          animation-name: downbutton;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
@media (min-width: 768px) {
  .down-button {
    bottom: 60px;
    width: 50px;
  }
}

@-webkit-keyframes downbutton {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes downbutton {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header-sec {
  height: 100vh;
  background-size: cover;
  color: var(--clr-white);
}
.header-sec__content {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .header-sec__content {
    margin-bottom: 0px;
  }
}
.header-sec .container {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (min-width: 768px) {
  .header-sec .container {
    align-items: center;
  }
}

.header-nodo {
  height: 550px;
  color: var(--clr-white);
  position: relative;
}
.header-nodo.santiago {
  background: #230f54;
  background: url("../imgs/santiago.svg") no-repeat, linear-gradient(90deg, #230f54 0%, #571aa4 100%);
  background-position-y: 60px;
  background-size: cover;
}
.header-nodo.buenos-aires {
  background: #230f54;
  background: url("../imgs/buenos-aires.svg") no-repeat, linear-gradient(90deg, #230f54 0%, #571aa4 100%);
  background-position-y: 0px;
  background-size: cover;
}
.header-nodo__content {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .header-nodo__content {
    margin-top: 0px;
  }
}
.header-nodo__bottom {
  position: absolute;
  bottom: 0;
  height: 100px;
  background-color: var(--clr-white);
  width: 100%;
}
.header-nodo__img {
  position: absolute;
  right: 0px;
  bottom: 0;
  margin: auto;
  z-index: 1;
  max-width: 400px;
}
@media (min-width: 768px) {
  .header-nodo__img {
    max-width: 600px;
  }
}
.header-nodo .container {
  display: flex;
  align-items: flex-start;
  height: 100%;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .header-nodo .container {
    align-items: center;
  }
}

.banner-form {
  text-align: center;
  padding: 100px 0px;
  color: var(--clr-white);
}
@media (min-width: 768px) {
  .banner-form {
    padding: 150px 0px;
  }
}
.banner-form .highlight {
  margin-bottom: 30px;
}
.banner-form .info-text {
  margin-bottom: 50px;
}

.border-bottom {
  border-bottom: 1px solid var(--clr-light-border);
}

.border-top {
  border-top: 1px solid var(--clr-light-border);
}

.hidden-sm {
  display: none;
}
@media (min-width: 768px) {
  .hidden-sm {
    display: block;
  }
}

.footer__contact {
  background: var(--clr-dark);
  background-repeat: no-repeat;
  background-position: -50px;
}
.footer__contact h6 {
  color: var(--clr-white);
  margin: 30px 0px;
}
.footer__contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__contact__grid {
    grid-template-columns: 1fr 15rem 15rem;
  }
}
.footer__contact .container {
  background-image: url(../imgs/gradient-contacto-mobile.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .footer__contact .container {
    background-image: url(../imgs/gradient-contacto.svg);
    background-position: 0px top;
    max-width: 1300px;
    padding: 60px 20px 60px 100px;
    background-size: auto 100%;
  }
}
.footer__list {
  color: var(--clr-white);
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer__list li {
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.footer__list li a {
  color: var(--clr-white);
  text-decoration: none;
}
.footer__list li a:hover {
  color: var(--clr-light);
}
.footer__list li span {
  font-weight: bold;
  font-size: 0.875rem;
  color: var(--clr-light);
}
.footer__info {
  font-size: 0.875rem;
  color: var(--clr-text);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "logo" "nav" "language" "content" "legales";
}
@media (min-width: 768px) {
  .footer__info {
    grid-template-areas: "logo logo logo" "nav nav language" "content content content" "legales legales legales";
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__language {
  grid-area: language;
}
.footer__language div {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__language div {
    justify-content: flex-end;
    margin-top: 30px;
  }
}
.footer__nav {
  grid-area: nav;
}
.footer__nav__list {
  list-style: none;
  padding: 0px;
}
@media (min-width: 768px) {
  .footer__nav__list {
    display: flex;
  }
}
.footer__nav__list li {
  margin: 30px 0px;
}
@media (min-width: 768px) {
  .footer__nav__list li {
    padding-right: 30px;
  }
}
.footer__nav__list a {
  color: var(--clr-text);
  text-decoration: none;
}
.footer__nav .lang-container-footer .lang__item--active {
  color: var(--clr-text);
}
.footer__nav .lang-container-footer .lang__item {
  width: 60px;
}
.footer__nav .lang-container-footer .lang__item:hover {
  color: var(--clr-text);
}
.footer__logo {
  padding: 30px 0px;
  grid-area: logo;
}
.footer__content {
  grid-area: content;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 12rem;
    margin-bottom: 30px;
  }
  .footer__content .reserved {
    display: block !important;
  }
}
.footer__content .reserved {
  display: none;
}
.footer__redes {
  justify-self: end;
  padding: 25px 0px;
}
@media (min-width: 768px) {
  .footer__redes {
    border: none;
    padding: 0px;
  }
}
.footer__redes ul {
  display: flex;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer__redes ul img {
  padding-left: 15px;
}
.footer__redes ul li:first-child {
  flex: 1;
}
.footer__app {
  /*border-bottom: 1px solid var(--clr-light-border);
  border-top: 1px solid var(--clr-light-border);
  padding: 25px 0px;*/
  justify-self: end;
}
@media (min-width: 768px) {
  .footer__app {
    border: none;
    padding: 0px;
  }
  .footer__app ul {
    display: flex;
  }
  .footer__app ul li {
    padding-left: 15px;
  }
}
.footer__app ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer__app ul li {
  margin-bottom: 15px;
}
.footer__app ul li a {
  margin-right: 10px;
}
.footer__app ul li:nth-child(2) {
  display: flex;
}
.footer__legales {
  padding: 20px 0px;
  grid-area: legales;
}
.footer__legales .reserved {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .footer__legales .reserved {
    display: none;
  }
}
.footer__legales a {
  margin-top: 15px;
  color: var(--clr-text);
  font-size: 0.688rem;
  margin-right: 30px;
  display: inline-block;
}

.border-b--light {
  border-bottom: 1px solid var(--clr-light-border);
}

.accordion {
  background: #FFF;
  border-radius: 5px;
  padding: 30px 0px;
  /* .accordion__list.open .accordion__question .glyphicon {
     transform: rotate(180deg);
   }*/
}
.accordion ul {
  margin: 0px;
  padding: 0px;
}
.accordion .accordion__list {
  list-style: none;
}
.accordion .accordion__list:last-child .accordion__answer p {
  padding: 0px;
}
.accordion .accordion__list.open .accordion__answer {
  max-height: 200px;
}
.accordion .accordion__question {
  border-top: 1px solid #EEE;
  padding: 30px 0px;
  cursor: pointer;
  position: relative;
  display: flex;
  color: var(--clr-dark-gray);
}
.accordion .accordion__question h6 {
  flex: 1;
}
.accordion .accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.8s all;
}
.accordion .accordion__answer p {
  font-weight: 300;
  color: var(--clr-text);
  padding: 10px 0px 25px 0px;
}
@media (min-width: 768px) {
  .accordion .answer--telephone {
    display: flex;
    align-items: center;
  }
}
.accordion .answer--telephone .number {
  font-size: 2.5rem;
  color: var(--clr-light);
  font-weight: 700;
}
@media (min-width: 768px) {
  .accordion .answer--telephone .number {
    margin-left: 40px;
  }
}

/*cerrar*/
.threebar {
  cursor: pointer;
  right: 0;
  display: flex;
  margin-top: 15px;
}

.threebar .cross {
  width: 20px;
  height: 2px;
  background-color: var(--clr-green);
  border-radius: 2px;
  position: relative;
  align-self: flex-start;
  transition: all 0.4s ease-in-out;
}

.threebar .cross:nth-child(1) {
  transform: rotate(135deg);
  right: -16px;
}

.threebar .cross:nth-child(2) {
  transform: rotate(-135deg);
  left: -17px;
}

.accordion__list.open .accordion__question .threebar .cross:nth-child(1) {
  transform: rotate(45deg);
  right: -10px;
}

.accordion__list.open .accordion__question .threebar .cross:nth-child(2) {
  transform: rotate(-45deg);
  left: -10px;
}

.btn {
  display: inline-block;
  border-radius: 40px;
  padding: 0.8rem 2.5rem !important;
  border: none;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2rem;
}
.btn--primary {
  background: #246bf6;
  background: linear-gradient(0deg, #246bf6 0%, #bf3ec8 100%);
  color: var(--clr-light-gray) !important;
}
.btn--secondary {
  background-color: var(--clr-dark);
  color: var(--clr-white) !important;
}
.btn--green {
  background: #4baff8;
  background: linear-gradient(180deg, #4baff8 0%, #7de8b8 100%);
  color: var(--clr-white) !important;
}
.btn--sm {
  font-size: 0.875rem !important;
  padding: 0.4rem 1.5rem !important;
}

.navigation {
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 80px;
  transition: background-color 0.3s ease;
}
.navigation.navbarHeight {
  background-color: var(--clr-dark);
}
@media (min-width: 992px) {
  .navigation.navbarHeight {
    height: 90px;
  }
}
@media (max-width: 992px) {
  .navigation.open nav #logo {
    width: 150px;
    right: 0px;
    top: 25px;
  }
}

.nav-primary {
  position: relative;
  height: 100%;
  max-width: 1140px;
  margin: auto;
}
@media (min-width: 992px) {
  .nav-primary {
    height: 90px;
    padding: 15px;
  }
}
.nav-primary .logo {
  position: absolute;
  margin: auto;
  z-index: 1000;
  width: 88px;
  top: 15px;
  left: 15px;
  display: block;
  transition: width 0.5s, left 0.5s;
}
@media (min-width: 992px) {
  .nav-primary .logo {
    width: 150px;
  }
  .nav-primary .logo.small {
    width: 100px;
  }
}

.menu {
  display: block;
  width: 100%;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  height: 100%;
}
.menu input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
.menu input:checked ~ label span {
  opacity: 1;
  transform: rotate(-45deg) translate(-2px, -1px);
  background: var(--clr-white);
}
.menu input:checked ~ label span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.menu input:checked ~ label span:nth-last-child(3) {
  transform: rotate(45deg) translate(0, -1px);
}
.menu input:checked ~ .menu__nav {
  transform: none;
}
.menu span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: var(--clr-white);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.menu span:first-child {
  transform-origin: 0% 0%;
}
.menu span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.nav-toggle-label {
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 1000;
  cursor: pointer;
}
@media (min-width: 992px) {
  .nav-toggle-label {
    display: none;
  }
}

.menu__nav {
  width: 100%;
  height: 100vh;
  padding: 50px;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  margin: 0px;
  background: #230f54;
  background: linear-gradient(90deg, #230f54 0%, #571aa4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .menu__nav {
    background: none;
    transform: none;
    padding: 0px;
    justify-content: flex-end;
    height: auto;
    flex-direction: row;
  }
  .menu__nav .menu__list {
    display: flex;
    align-items: center;
  }
}
.menu__nav .menu__list {
  list-style: none;
  text-align: center;
  margin: 0px;
  padding: 0px;
  width: 250px;
}
@media (min-width: 992px) {
  .menu__nav .menu__list {
    width: auto;
  }
}
.menu__nav .menu__list li {
  padding: 15px 0px;
}
@media (min-width: 992px) {
  .menu__nav .menu__list li {
    margin: 15px 0px;
    padding: 0px 15px;
  }
}
.menu__nav .menu__list li a {
  font-weight: 700;
  color: var(--clr-white);
  text-decoration: none;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .menu__nav .menu__list li a {
    font-size: 1rem;
  }
}
.menu__nav .nav--line {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px 0px !important;
}
@media (min-width: 992px) {
  .menu__nav .nav--line {
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0px 20px !important;
  }
}

.dropbtn {
  color: white;
  background: transparent;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
}
.dropbtn.chile {
  background-image: url("../imgs/chile.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 80px;
}
.dropbtn.argentina {
  background-image: url("../imgs/argentina.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 80px;
}
.dropbtn img {
  margin-left: 5px;
}

/* Dropdown button on hover & focus */
/*.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}*/
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  border-radius: 5px;
  min-width: 80px;
  z-index: 1;
  right: -10PX;
  width: 80PX;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: var(--clr-dark);
  padding: 10px;
  text-decoration: none;
  display: block;
  font-size: 1rem !important;
}

#myDropdown a {
  display: flex;
  font-size: 1rem !important;
}
#myDropdown a span {
  margin-right: 3px;
  font-size: 0.8rem;
  height: 100%;
  background: none;
  padding: 0px;
}

.show {
  display: block;
}

#swiper-home {
  width: 100%;
  height: 100vh;
}
#swiper-home .swiper-pagination-bullet-active {
  background-color: var(--clr-white) !important;
}
#swiper-home .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid var(--clr-white);
}
#swiper-home .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: var(--clr-white);
}
@media (max-width: 768px) and (orientation: portrait) {
  #swiper-home .swiper-slide {
    background-position: bottom center;
  }
}
#swiper-home .swiper-slide .container {
  display: flex;
  height: 100%;
  align-items: center;
}
@media (max-width: 576px) {
  #swiper-home .swiper-slide .container {
    align-items: flex-end;
  }
  #swiper-home .swiper-slide .container .swiper-content {
    margin-bottom: 100px;
  }
}
#swiper-home .swiper-slide.img--1 {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%), url(../imgs/header-viapool.jpg);
  background-position: right bottom;
}
@media (max-width: 768px) and (orientation: portrait) {
  #swiper-home .swiper-slide.img--1 {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%), url(../imgs/header-viapool-vert.jpg);
    background-position: center bottom;
  }
}
#swiper-home .swiper-slide.img--2 {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%), url(../imgs/header-viapool-2.jpg);
}

#swiper-comunidad {
  height: 500px;
}
#swiper-comunidad .swiper-pagination-bullet-active {
  background-color: var(--clr-white) !important;
}
#swiper-comunidad .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid var(--clr-white);
}
@media (min-width: 768px) {
  #swiper-comunidad {
    height: 700px;
  }
}
#swiper-comunidad .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#swiper-comunidad .swiper-slide.img-comunidad-1 {
  background-image: url(../imgs/nodo-1.jpg);
}

/*.button-form {
    cursor: pointer;
}

  .disabled {
    display:none;
  }
  .banner-form {
      &__fields {
        border: none;
        transition:transform 0.2s ease-in-out;
        position: relative;
        margin-bottom: 50px;
        padding-top: 30px;

        label {
            position: absolute;
            left: 0;
            font-size: 1.875rem;
            pointer-events: none;
            transition: .5s;
            text-align: center;
            right: 0;
            margin: auto;
            font-weight: font-weight(light);

        }

        input {
            width: 100%;
            display: inline-block;
            padding: 12px 0px;
            box-sizing: border-box;
            border: none;
            background-color: transparent;
            border-bottom: 1px solid var(--clr-white);
            font-size: 1em;
            font-family:inherit;
            text-align: center;
            font-size: 1.875rem;
            color: #fff;
            font-weight: font-weight(light);

            &:focus-visible,  &:focus {
                outline: none !important;
            }

            &:focus + label, &:not(:placeholder-shown) + label {
                transform: translateY(-2rem) scale(0.6);
            }
          }
      }
  }
*/
.app {
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 94%, rgba(172, 172, 172, 0.5021358885) 100%);
}
.app__grid {
  display: grid;
  grid-auto-flow: row;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .app__grid {
    grid-auto-flow: column;
  }
}
.app__column {
  text-align: center;
  font-size: 1.25rem;
  color: var(--clr-blue);
  font-weight: 700;
}
.app__column p {
  margin-bottom: 30px;
  line-height: 1.5rem;
}
.app__column img {
  margin: auto;
  width: 150px;
}
.app__mobile img {
  margin: auto;
}

.travel {
  padding: 60px 0px;
}
.travel__grid {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  grid-template-columns: 1fr;
  grid-template-areas: "headerTravel" "pictureTravel" "listTravel";
}
@media (min-width: 768px) {
  .travel__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "pictureTravel headerTravel" "pictureTravel listTravel";
  }
}
.travel__header {
  grid-area: headerTravel;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .travel__header {
    text-align: left;
  }
}
.travel__picture {
  margin: 0px auto 50px auto;
  grid-area: pictureTravel;
}
@media (min-width: 768px) {
  .travel__picture {
    margin: 0px;
  }
}
.travel__list {
  text-align: center;
  grid-area: listTravel;
}
@media (min-width: 768px) {
  .travel__list {
    text-align: left;
  }
}
.travel__list .travel__icon {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--clr-blue);
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .travel__list .travel__icon {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
}
.travel__list .travel__icon img {
  margin: 0 auto 15px auto;
}
@media (min-width: 768px) {
  .travel__list .travel__icon img {
    width: 90px;
    margin: 0 10px 0px 0px;
  }
}
.travel__list ul {
  list-style: none;
  padding: 0px;
  margin: 0px 0px 40px 0px;
}
@media (min-width: 992px) {
  .travel__buttons {
    display: flex;
    align-items: center;
  }
}
.travel__app {
  margin-top: 15px;
  display: flex;
}
@media (max-width: 768px) {
  .travel__app {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .travel__app {
    margin-top: 0px;
    margin-left: 20px;
  }
}
.travel__app img {
  margin-right: 5px;
}

.travel__picture {
  position: relative;
}
.travel__picture #swiper-mobile {
  max-width: 320px;
  margin: auto;
}
.travel__picture #swiper-mobile .swiper-slide img {
  transform: translateZ(0);
}
@media (max-width: 480px) {
  .travel__picture #swiper-mobile {
    max-width: 280px;
  }
}

/*.travel__picture {
  height: 782px;
  width: 420px;
  background: url('https://www.viapool.com/imgs/Pantallas-Chile-01.png') #000000;
  animation: sprite 6s infinite;
  transition: opacity 3s;
  background-size: contain;
  opacity: 0;
}

@keyframes sprite {
  0% { 
      background: url('https://www.viapool.com/imgs/Pantallas-Chile-01.png') #000000;
      opacity: 1;
      background-size: contain;
  }

  33% { 
      background: url('https://www.viapool.com/imgs/Pantallas-Chile-02.png') #000000;
      opacity: 1;
      background-size: contain;
  }

  66% { 
      background: url('https://www.viapool.com/imgs/Pantallas-Chile-03.png') #000000;
      opacity: 1;
      background-size: contain;
  }

  100% { 
      background: url('https://www.viapool.com/imgs/Pantallas-Chile-01.png') #000000;
      opacity: 1;
      background-size: contain;
  }
}*/
.benefits {
  background-color: var(--clr-dark);
  padding: 80px 0px 80px 0px;
}
@media (min-width: 768px) {
  .benefits {
    padding: 80px 0px 0px 0px;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.benefits__column {
  align-self: center;
  color: var(--clr-white);
}
@media (min-width: 768px) {
  .benefits__column:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
  .benefits__column:nth-child(8) {
    grid-column: 1;
    grid-row: 4;
  }
}/*# sourceMappingURL=main.css.map */