@charset "UTF-8";
@font-face {
  font-family: "Kia-Signature";
  src: url("/assets/fonts/KiaSignatureOTFRegular.woff") format("woff"), url("/assets/fonts/KiaSignatureOTFRegular.woff2") format("woff2"), url("/assets/fonts/KiaSignatureOTFRegular.otf") format("otf"), url("/assets/fonts/KiaSignatureOTFRegular.eot") format("eot"), url("/assets/fonts/KiaSignatureOTFRegular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kia-Signature-Bold";
  src: url("/assets/fonts/KiaSignatureOTFBold.woff") format("woff"), url("/assets/fonts/KiaSignatureOTFBold.woff2") format("woff2"), url("/assets/fonts/KiaSignatureOTFBold.otf") format("otf"), url("/assets/fonts/KiaSignatureOTFBold.eot") format("eot"), url("/assets/fonts/KiaSignatureOTFBold.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kia-Signature-Light";
  src: url("/assets/fonts/KiaSignatureOTFLight.woff") format("woff"), url("/assets/fonts/KiaSignatureOTFLight.woff2") format("woff2"), url("/assets/fonts/KiaSignatureOTFLight.otf") format("otf"), url("/assets/fonts/KiaSignatureOTFLight.eot") format("eot"), url("/assets/fonts/KiaSignatureOTFLight.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Links */
a, a:visited {
  text-decoration: none;
}

a.text-dark:hover {
  color: var(--primary) !important;
}

/* Links */
/* Accordieon */
.accordion-item {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}
.accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
}
.accordion-item .accordion-body {
  padding-top: 0 !important;
}
.accordion-item .accordion-body .content {
  padding: 15px !important;
  background-color: #f1f1f1 !important;
  border-radius: 10px !important;
}

/* Accordieon */
/* Badge */
.badge > button {
  background: transparent;
  border: none;
  color: inherit;
  padding-right: 0;
}

/* Badge */
/* Btn */
.btn {
  background-color: transparent;
  border: 1px solid;
  color: var(--black);
  padding: 10px 1.8rem;
  border-radius: 0;
}
.btn-link {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.btn:hover {
  color: var(--white);
}
.btn:hover i {
  color: var(--white);
}
.btn-primary {
  border-color: #999 !important;
}
.btn-secondary {
  border-color: var(--secondary);
}
.btn-tertiary {
  border-color: var(--tertiary);
}
.btn-blue {
  border-color: var(--blue);
}
.btn-blue:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn-trans {
  background-color: transparent;
  border-color: var(--black);
}
.btn-trans:hover {
  background-color: var(--white);
  border-color: inherit;
  color: inherit;
}
.btn-slider {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}
.btn-slider:hover {
  opacity: 0.5;
  background-color: var(--white);
  color: var(--black);
}
.btn-anim {
  position: relative;
  overflow: hidden;
}
.btn-anim:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  100% {
    left: 100%;
    transition-property: left;
  }
}
/* Btn */
/* Container */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
/* Container */
/* Input */
.input-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  flex: 0 0 auto !important;
  min-width: 50px !important;
  text-align: center !important;
}
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.input-group-sm > .btn:first-child {
  border-radius: 1rem 0px 0px 1rem;
}
.input-group-sm > .btn:last-child {
  border-radius: 0px 1rem 1rem 0px;
}

/* Input */
/* Select */
.custom-select {
  appearance: button;
  -webkit-appearance: button;
  -moz-appearance: button;
  position: relative;
  cursor: pointer;
}
.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #333;
}

/* General styles for the select2 container */
.select2-container .select2-selection--single {
  height: 38px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem; /* Borde redondeado */
  background-color: #fff;
  font-size: 1rem;
  color: #495057;
}

/* Adjust the placeholder text color */
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #adb5bd; /* Color similar al placeholder de la imagen */
}

/* Remove the default select2 arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem; /* Ajuste del espacio a la derecha */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Styles for the select2 dropdown */
.select2-container .select2-dropdown {
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove default focus outline */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:hover {
  outline: none;
  border-color: var(--border-color); /* Mantener el borde del mismo color en focus/hover */
}

/* Ensure the text is vertically centered */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  padding-left: 0.5rem;
  color: #495057;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary);
  color: var(--primary-contrast);
}

/* Select */
/* Field to input */
.info-to-field {
  position: relative;
}

.info-to-field > button {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 0.8rem;
}

.info-to-field[aria-editing=true] > button,
.info-to-field[aria-editing=true] > span {
  display: none;
}

/* Field to input */
/* Colored icons */
.fa-whatsapp.colored {
  color: #25D366 !important;
}

/* Colored icons */
/* Bgs */
.bg-dark {
  background-color: var(--darkBlue) !important;
}
.bg-gray {
  background-color: var(--gray);
}

/* Bgs */
.text-white {
  color: var(--white);
}
.text-black {
  color: var(--black);
}

.fw-800 {
  font-weight: 800;
}

/* Box */
.box-icon {
  padding-top: 25px;
  padding-bottom: 25px;
}
.box-icon i {
  font-size: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.box-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  margin: 30px auto;
}
.box-icon h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.box-icon p {
  font-size: 0.9rem;
}
.box-image img {
  width: 80%;
  height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

a.box-icon:hover {
  transform: scale(120%);
}

/* Box */
/* Modal */
.modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal .modal-content .modal-header {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.modal .modal-content .modal-header .btn-close {
  color: var(--primary-contrast);
}
.modal .modal-content .modal-body .btn-close {
  position: absolute;
  top: -2px;
  right: 12px;
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal .modal-content img.logo {
  max-height: 75px;
  margin-bottom: 30px !important;
}
.modal-left .modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-left#modalMobileMenu .modal-dialog {
  max-width: 300px;
}
.modal-left .modal-content {
  height: 100%;
  border-radius: 0px 15px 15px 0px;
}
.modal-left .modal-header {
  border-top-left-radius: 0px;
}
.modal-left.show .modal-dialog {
  transform: translateX(0) !important;
}
.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-right .modal-content {
  height: 100%;
  border-radius: 15px 0px 0px 15px;
}
.modal-right .modal-header {
  border-top-right-radius: 0px;
}
.modal-right.show .modal-dialog {
  transform: translateX(0) !important;
}

/* Modal */
/* Orders */
.order-6 {
  order: 6;
}

/* Orders */
/* Card */
.card {
  border-radius: 15px;
  overflow: hidden;
}
.card.card-colored {
  border-color: var(--primary);
}

/* Card */
/* Steps */
.steps .step-progress-bar .step-bar {
  --gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.steps .step-progress-bar .step-bar > li {
  font-size: 0.8rem;
  color: #6C757E;
}
.steps .step-progress-bar .step-bar > li.active {
  color: #222;
  font-weight: 500;
}
.steps .step-progress-bar .step-bar > li:after {
  content: "·";
  display: inline-block;
  color: var(--primary);
  margin-left: var(--gap);
}
.steps .step-progress-bar .step-bar > li:last-child:after {
  content: "";
}
.steps .step {
  display: none;
}
.steps .step.active {
  display: block;
}

/* Steps */
/* Check inputs */
.no-grow {
  flex-grow: 0;
  flex-shrink: 0; /* Esto asegura que el elemento tampoco se reduzca si hay poco espacio */
  flex-basis: auto; /* Mantiene el tamaño automático del contenido */
}

.btn-input > input {
  display: none;
}
.btn-input > input + label {
  border: var(--primary) 1px solid;
  border-radius: 8px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--primary);
  transition: ease-in-out 0.3s all;
}
.btn-input > input + label.light {
  border-color: var(--bs-border-color);
  color: var(--bs-gray);
}
.btn-input > input + label.light.dark {
  color: #222;
}
.btn-input > input + label:before, .btn-input > input + label:after {
  display: none;
}
.btn-input > input:hover + label, .btn-input > input:checked + label {
  background: var(--primary);
  color: var(--primary-contrast);
}
.btn-input > input:hover + label:before, .btn-input > input:hover + label:after, .btn-input > input:checked + label:before, .btn-input > input:checked + label:after {
  display: none;
}
.btn-input > label {
  display: flex;
}

.grid-buttons {
  --gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--gap);
}
.grid-buttons-c2 > .btn-input {
  width: calc(50% - var(--gap));
  max-width: calc(50% - var(--gap));
}
.grid-buttons-c3 > .btn-input {
  width: calc(33.3% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c3 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
.grid-buttons-c4 > .btn-input {
  width: calc(25% - (var(--gap)));
}
@media (max-width: 767px) {
  .grid-buttons-c4 > .btn-input {
    width: calc(50% - (var(--gap)));
  }
}
.grid-buttons-c5 > .btn-input {
  width: calc(20% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c5 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
/* Check inputs */
/* Form loader */
form .loader.full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  gap: 10px;
}
form .loader.full > i {
  color: var(--primary);
  font-size: 1.3rem;
}
form .loader.show {
  display: flex;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.form-step h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Form loader */
/* Empty */
.empty-msg:empty:after {
  content: attr(data-empty);
  text-align: center;
  width: 100%;
  display: block;
  color: #99abb4 !important;
  font-style: italic;
}

/* Empty */
.img-thumbnail {
  border-radius: 0.75rem;
  border: 2px solid var(--gray);
}

.img-full {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Search */
.fsticky {
  position: sticky;
  top: 85px;
}

.search > .filters-applied {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search > .filters-applied:empty {
  display: none;
}
/* Search */
/* Product Card */
.product-card {
  position: relative;
  display: block;
  border-radius: 10px;
  /* HTML:  clip-path: polygon(0 45%, 45% 0, 100% 0, 0 100%); */
}
.product-card:hover {
  color: #222;
}
.product-card img.brand {
  height: 50px;
  margin: 0px auto;
  margin-bottom: 8px;
  max-width: 100%;
  object-fit: contain;
}
.product-card img.img-fluid,
.product-card img.img-thumbnail {
  object-fit: contain;
}
.product-card .img-thumbnail {
  height: 350px;
  width: 100%;
}
.product-card .info {
  display: flex;
  flex-direction: column;
}
.product-card .info .name {
  flex: 1;
}
.product-card .info .desc {
  font-size: 1.02rem;
  font-weight: bold;
}
.product-card .info .price {
  font-weight: 800;
  font-size: 1.2rem;
}
.product-card .info .price > small {
  text-decoration: line-through;
}
.product-card .ribbon {
  background-color: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) translate(-25%, -35%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

/* Product Card */
/* Product view */
#product .descrip {
  font-size: 0.9rem;
  margin: 2rem 0;
}
#product .category {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}
#product .sku {
  color: var(--grayDark);
  font-weight: 800;
}
#product .price {
  color: var(--secondary);
}
#product form .vProductCounter [data-action=sub] {
  border-right: 0;
}
#product form .vProductCounter [data-action=add] {
  border-left: 0;
}
#product form .vProductCounter input {
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  border-left: 0;
  border-right: 0;
}
#product .gallery {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
#product .gallery .item {
  flex: 0 0 34%;
  scroll-snap-align: start;
}
#product .gallery .item img {
  object-fit: cover;
  width: 200px;
}

/* Product view */
/* Cart */
.cartIcon {
  position: relative;
}
.cartIcon > span {
  position: absolute;
  top: 0;
  right: 6px;
  background-color: #222;
  color: var(--primary-contrast);
  padding: 1px 4px;
  border-radius: 7.5px;
  font-size: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-view, .cart-checkout {
  position: relative;
}
.cart-view .cart-loader, .cart-checkout .cart-loader {
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  gap: 10px;
  transition: ease-in-out 0.2s all;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
}
.cart-view .cart-loader.show, .cart-checkout .cart-loader.show {
  opacity: 1;
  display: flex;
}
.cart-view .cart-content .header, .cart-checkout .cart-content .header {
  font-size: 0.8rem;
}
.cart-view .cart-content .item, .cart-checkout .cart-content .item {
  gap: 5px;
  border-bottom: 1px solid var(--bs-border-color);
}
.cart-view .cart-content .item:last-child, .cart-checkout .cart-content .item:last-child {
  border-bottom: none;
}
.cart-view .cart-content .item .image, .cart-checkout .cart-content .item .image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cart-view .cart-content .item .name, .cart-checkout .cart-content .item .name {
  font-size: 0.9rem;
}
.cart-view .cart-content .item .price, .cart-checkout .cart-content .item .price {
  font-size: 0.8rem;
}
.cart-view .cart-resume, .cart-checkout .cart-resume {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--bs-border-color);
}
.cart-view .cart-resume > div:last-child, .cart-checkout .cart-resume > div:last-child {
  font-weight: bold;
}
.cart-view .cart-actions, .cart-checkout .cart-actions {
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}

/* Cart */
/* Carousel */
.slider-rounded-bullets .carousel-indicators > button {
  background: none;
  border-radius: 50%;
  border: 1px solid var(--white);
  height: 15px;
  width: 15px;
}
.slider-rounded-bullets .carousel-indicators .active {
  background-color: var(--white) !important;
}

/* Carousel */
/* Header */
header {
  background-color: var(--white);
  color: var(--primary);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
header #topBar {
  background-color: var(--primary);
  padding: 13px;
}
header .navbar {
  position: relative;
  padding: 20px 0 0 20px;
}
@media (max-width: 767px) {
  header .navbar {
    padding: 12px 20px;
  }
}
header .navbar .navbar-brand {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  header .navbar .navbar-brand {
    top: 15px;
    transform: translate(-50%, 0);
  }
}
header .navbar .navbar-brand > img {
  height: 25px;
}
header .navbar .navbar-toggler {
  border: none;
  outline: none;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar i {
  font-size: 2rem;
}
@media (max-width: 767px) {
  header .navbar .nav {
    flex-direction: column;
    margin-top: 0.5rem;
    text-align: center;
  }
}
header .navbar .nav .nav-item .nav-link:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
header .navbar .nav .nav-item .dropdown-menu.show {
  border-radius: 0;
  display: flex;
  transform: translate(-208px, 0);
  width: 100vw;
}
@media (max-width: 767px) {
  header .navbar .nav .nav-item .dropdown-menu.show {
    flex-direction: column;
    text-align: center;
    transform: translate(-20px, 0);
  }
}
header .navbar .nav .nav-item .dropdown-item {
  border-bottom: 2px solid var(--white);
}
header .navbar .nav .nav-item .dropdown-item:hover {
  background-color: var(--white);
  border-bottom: 2px solid var(--primary);
}
header a, header a:visited, header .nav-link {
  border-bottom: 2px solid var(--white);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 25px 17px;
}
header a:hover, header a:visited:hover, header .nav-link:hover {
  color: var(--primary);
}

/* Header */
/* Footer */
footer {
  font-size: 0.9rem;
  color: var(--white);
}
footer a {
  color: var(--white);
}
footer a:visited, footer a:hover {
  color: var(--white);
}
footer p {
  margin-bottom: 0;
  font-size: 14px;
}
footer .logo {
  height: auto;
  width: auto;
  max-height: 90px;
  max-width: 70px;
  display: block;
}
footer .externals {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 1.2rem;
  line-height: 40px;
  font-family: "Kia-Signature-Bold", sans-serif;
}
footer .socials {
  display: flex;
  gap: 20px;
  justify-content: start;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
footer .socials i {
  color: var(--white);
  font-size: 25px;
}
footer .kt-light {
  font-family: "Kia-Signature-Light", sans-serif;
}
@media (max-width: 767px) {
  footer .kt-light {
    font-size: 0.8rem;
  }
}

/* Footer */
/* Body */
html, body {
  min-height: 100%;
}
html main, body main {
  min-height: 100%;
}

* {
  font-family: "Kia-Signature", sans-serif;
  color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Kia-Signature-Bold", sans-serif;
  letter-spacing: 0;
}

p {
  font-family: "Kia-Signature-Light", sans-serif;
  line-height: 1.3;
  margin-bottom: 20px;
}

ul {
  font-family: "Kia-Signature-Light", sans-serif;
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.5rem;
  }
  p, ul {
    font-size: 19px;
  }
}
#beforeAfter {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#beforeAfter .before-after-outer {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#beforeAfter .before-after-outer .before-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#beforeAfter .before-after-outer .before-after-wrap .img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
#beforeAfter .before-after-outer .before-after-wrap .img-wrap.is-before {
  z-index: 1;
}
#beforeAfter .before-after-outer .before-after-wrap .img-wrap.is-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}
#beforeAfter .before-after-outer .before-after-wrap .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
#beforeAfter .before-after-outer .before-after-wrap .dragger {
  position: absolute;
  z-index: 900;
  width: 4px;
  height: 100%;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
}
#beforeAfter .before-after-outer .before-after-wrap .dragger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#videoModal .modal-content {
  overflow: visible;
}
#videoModal .modal-content .btn-close {
  background: var(--black);
  border-radius: 5px;
  color: var(--white);
  opacity: 1;
  position: absolute;
  height: 2rem;
  width: 5rem;
  right: -50px;
  top: -15px;
  z-index: 1;
}
@media (max-width: 767px) {
  #videoModal .modal-content .btn-close {
    right: 0;
    top: -30px;
  }
}
#videoModal .modal-content .modal-body {
  padding: 0;
}

section {
  /* Error */
  /* Error */
}
section:first-child {
  margin-top: 48px;
}
@media (max-width: 767px) {
  section:first-child {
    margin-top: 42px;
  }
}
section.fullheight {
  height: 100vh;
  min-height: 100vh;
}
@media (max-width: 767px) {
  section.fullheight {
    margin-top: 56.3px;
    height: calc(100vh - 56.3px);
    min-height: calc(100vh - 56.3px);
  }
}
section .title {
  line-height: 2;
  text-align: center;
}
section.error {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.error.error404 {
  background-color: #f7f7f7;
  background-image: url(/assets/img/error404.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section #sliderHome .content-text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section #sliderHome .content-text h1 {
  color: var(--white) !important;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  section #sliderHome .content-text h1 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1024px) {
  section #sliderHome .content-text h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  section #sliderHome .content-text h1 {
    font-size: 5rem;
  }
}
section #sliderHome .content-text span {
  color: var(--white);
  font-size: 1rem;
}
@media (min-width: 768px) {
  section #sliderHome .content-text span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  section #sliderHome .content-text span {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  section #sliderHome .content-text span {
    font-size: 3rem;
  }
}

/* Body */
/* Home */
.index section,
.vision section,
.chile section,
.ecuador section,
.ecuador_galapagos section,
.ecuador_quito section,
.paraguay section,
.peru section,
.colombia section {
  width: 100%;
  padding: 50px 0;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 767px) {
  .index section,
  .vision section,
  .chile section,
  .ecuador section,
  .ecuador_galapagos section,
  .ecuador_quito section,
  .paraguay section,
  .peru section,
  .colombia section {
    background-position: center bottom -135px;
  }
}
.index section#main h1,
.vision section#main h1,
.chile section#main h1,
.ecuador section#main h1,
.ecuador_galapagos section#main h1,
.ecuador_quito section#main h1,
.paraguay section#main h1,
.peru section#main h1,
.colombia section#main h1 {
  color: var(--primary);
}
.index section#countries a,
.vision section#countries a,
.chile section#countries a,
.ecuador section#countries a,
.ecuador_galapagos section#countries a,
.ecuador_quito section#countries a,
.paraguay section#countries a,
.peru section#countries a,
.colombia section#countries a {
  position: relative;
  display: block;
  width: 100%;
}
.index section#countries a:hover,
.vision section#countries a:hover,
.chile section#countries a:hover,
.ecuador section#countries a:hover,
.ecuador_galapagos section#countries a:hover,
.ecuador_quito section#countries a:hover,
.paraguay section#countries a:hover,
.peru section#countries a:hover,
.colombia section#countries a:hover {
  opacity: 0.8;
}
.index section#countries a .content-text,
.vision section#countries a .content-text,
.chile section#countries a .content-text,
.ecuador section#countries a .content-text,
.ecuador_galapagos section#countries a .content-text,
.ecuador_quito section#countries a .content-text,
.paraguay section#countries a .content-text,
.peru section#countries a .content-text,
.colombia section#countries a .content-text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* Fix para Safari */
  -webkit-transform: translate(-50%, -50%);
  margin: 0;
  display: block;
}
.index section#countries a .content-text h2,
.vision section#countries a .content-text h2,
.chile section#countries a .content-text h2,
.ecuador section#countries a .content-text h2,
.ecuador_galapagos section#countries a .content-text h2,
.ecuador_quito section#countries a .content-text h2,
.paraguay section#countries a .content-text h2,
.peru section#countries a .content-text h2,
.colombia section#countries a .content-text h2 {
  color: var(--white) !important;
  font-size: 3rem;
}
@media (min-width: 768px) {
  .index section#countries a .content-text h2,
  .vision section#countries a .content-text h2,
  .chile section#countries a .content-text h2,
  .ecuador section#countries a .content-text h2,
  .ecuador_galapagos section#countries a .content-text h2,
  .ecuador_quito section#countries a .content-text h2,
  .paraguay section#countries a .content-text h2,
  .peru section#countries a .content-text h2,
  .colombia section#countries a .content-text h2 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .index section#countries a .content-text h2,
  .vision section#countries a .content-text h2,
  .chile section#countries a .content-text h2,
  .ecuador section#countries a .content-text h2,
  .ecuador_galapagos section#countries a .content-text h2,
  .ecuador_quito section#countries a .content-text h2,
  .paraguay section#countries a .content-text h2,
  .peru section#countries a .content-text h2,
  .colombia section#countries a .content-text h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .index section#countries a .content-text h2,
  .vision section#countries a .content-text h2,
  .chile section#countries a .content-text h2,
  .ecuador section#countries a .content-text h2,
  .ecuador_galapagos section#countries a .content-text h2,
  .ecuador_quito section#countries a .content-text h2,
  .paraguay section#countries a .content-text h2,
  .peru section#countries a .content-text h2,
  .colombia section#countries a .content-text h2 {
    font-size: 2rem;
  }
}
.index section#vision h2,
.vision section#vision h2,
.chile section#vision h2,
.ecuador section#vision h2,
.ecuador_galapagos section#vision h2,
.ecuador_quito section#vision h2,
.paraguay section#vision h2,
.peru section#vision h2,
.colombia section#vision h2 {
  font-weight: bold;
}
.index section#vision img,
.vision section#vision img,
.chile section#vision img,
.ecuador section#vision img,
.ecuador_galapagos section#vision img,
.ecuador_quito section#vision img,
.paraguay section#vision img,
.peru section#vision img,
.colombia section#vision img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.index section#map .map-content,
.vision section#map .map-content,
.chile section#map .map-content,
.ecuador section#map .map-content,
.ecuador_galapagos section#map .map-content,
.ecuador_quito section#map .map-content,
.paraguay section#map .map-content,
.peru section#map .map-content,
.colombia section#map .map-content {
  max-width: 600px;
}
.index section#video img,
.vision section#video img,
.chile section#video img,
.ecuador section#video img,
.ecuador_galapagos section#video img,
.ecuador_quito section#video img,
.paraguay section#video img,
.peru section#video img,
.colombia section#video img {
  object-fit: cover;
}
@media (max-width: 767px) {
  .index section#video img,
  .vision section#video img,
  .chile section#video img,
  .ecuador section#video img,
  .ecuador_galapagos section#video img,
  .ecuador_quito section#video img,
  .paraguay section#video img,
  .peru section#video img,
  .colombia section#video img {
    height: 300px;
  }
}
.index section#video .play,
.vision section#video .play,
.chile section#video .play,
.ecuador section#video .play,
.ecuador_galapagos section#video .play,
.ecuador_quito section#video .play,
.paraguay section#video .play,
.peru section#video .play,
.colombia section#video .play {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.index section#video .play .icon,
.vision section#video .play .icon,
.chile section#video .play .icon,
.ecuador section#video .play .icon,
.ecuador_galapagos section#video .play .icon,
.ecuador_quito section#video .play .icon,
.paraguay section#video .play .icon,
.peru section#video .play .icon,
.colombia section#video .play .icon {
  border: 2px solid var(--white);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index section#video .play .icon i,
.vision section#video .play .icon i,
.chile section#video .play .icon i,
.ecuador section#video .play .icon i,
.ecuador_galapagos section#video .play .icon i,
.ecuador_quito section#video .play .icon i,
.paraguay section#video .play .icon i,
.peru section#video .play .icon i,
.colombia section#video .play .icon i {
  font-size: 1.5rem;
  color: var(--white);
}
.index section#video .play span,
.vision section#video .play span,
.chile section#video .play span,
.ecuador section#video .play span,
.ecuador_galapagos section#video .play span,
.ecuador_quito section#video .play span,
.paraguay section#video .play span,
.peru section#video .play span,
.colombia section#video .play span {
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--white);
}
.index section#featuresList ul,
.vision section#featuresList ul,
.chile section#featuresList ul,
.ecuador section#featuresList ul,
.ecuador_galapagos section#featuresList ul,
.ecuador_quito section#featuresList ul,
.paraguay section#featuresList ul,
.peru section#featuresList ul,
.colombia section#featuresList ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 19px;
  text-align: center;
  padding-left: 0;
}
.index section#featuresList ul li,
.vision section#featuresList ul li,
.chile section#featuresList ul li,
.ecuador section#featuresList ul li,
.ecuador_galapagos section#featuresList ul li,
.ecuador_quito section#featuresList ul li,
.paraguay section#featuresList ul li,
.peru section#featuresList ul li,
.colombia section#featuresList ul li {
  color: var(--white);
  padding-bottom: 1rem;
}
.index section#sliders .centered,
.vision section#sliders .centered,
.chile section#sliders .centered,
.ecuador section#sliders .centered,
.ecuador_galapagos section#sliders .centered,
.ecuador_quito section#sliders .centered,
.paraguay section#sliders .centered,
.peru section#sliders .centered,
.colombia section#sliders .centered {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .index section#sliders .centered,
  .vision section#sliders .centered,
  .chile section#sliders .centered,
  .ecuador section#sliders .centered,
  .ecuador_galapagos section#sliders .centered,
  .ecuador_quito section#sliders .centered,
  .paraguay section#sliders .centered,
  .peru section#sliders .centered,
  .colombia section#sliders .centered {
    width: 80%;
  }
}
.index section#sliders .centered .slider-before .descrip,
.index section#sliders .centered .slider-after .descrip,
.vision section#sliders .centered .slider-before .descrip,
.vision section#sliders .centered .slider-after .descrip,
.chile section#sliders .centered .slider-before .descrip,
.chile section#sliders .centered .slider-after .descrip,
.ecuador section#sliders .centered .slider-before .descrip,
.ecuador section#sliders .centered .slider-after .descrip,
.ecuador_galapagos section#sliders .centered .slider-before .descrip,
.ecuador_galapagos section#sliders .centered .slider-after .descrip,
.ecuador_quito section#sliders .centered .slider-before .descrip,
.ecuador_quito section#sliders .centered .slider-after .descrip,
.paraguay section#sliders .centered .slider-before .descrip,
.paraguay section#sliders .centered .slider-after .descrip,
.peru section#sliders .centered .slider-before .descrip,
.peru section#sliders .centered .slider-after .descrip,
.colombia section#sliders .centered .slider-before .descrip,
.colombia section#sliders .centered .slider-after .descrip {
  display: none;
}
.index section#sliders .centered .slider-before .descrip.active,
.index section#sliders .centered .slider-after .descrip.active,
.vision section#sliders .centered .slider-before .descrip.active,
.vision section#sliders .centered .slider-after .descrip.active,
.chile section#sliders .centered .slider-before .descrip.active,
.chile section#sliders .centered .slider-after .descrip.active,
.ecuador section#sliders .centered .slider-before .descrip.active,
.ecuador section#sliders .centered .slider-after .descrip.active,
.ecuador_galapagos section#sliders .centered .slider-before .descrip.active,
.ecuador_galapagos section#sliders .centered .slider-after .descrip.active,
.ecuador_quito section#sliders .centered .slider-before .descrip.active,
.ecuador_quito section#sliders .centered .slider-after .descrip.active,
.paraguay section#sliders .centered .slider-before .descrip.active,
.paraguay section#sliders .centered .slider-after .descrip.active,
.peru section#sliders .centered .slider-before .descrip.active,
.peru section#sliders .centered .slider-after .descrip.active,
.colombia section#sliders .centered .slider-before .descrip.active,
.colombia section#sliders .centered .slider-after .descrip.active {
  display: block;
}
.index section#sliders .centered .slider-before .descrip ul > li,
.index section#sliders .centered .slider-after .descrip ul > li,
.vision section#sliders .centered .slider-before .descrip ul > li,
.vision section#sliders .centered .slider-after .descrip ul > li,
.chile section#sliders .centered .slider-before .descrip ul > li,
.chile section#sliders .centered .slider-after .descrip ul > li,
.ecuador section#sliders .centered .slider-before .descrip ul > li,
.ecuador section#sliders .centered .slider-after .descrip ul > li,
.ecuador_galapagos section#sliders .centered .slider-before .descrip ul > li,
.ecuador_galapagos section#sliders .centered .slider-after .descrip ul > li,
.ecuador_quito section#sliders .centered .slider-before .descrip ul > li,
.ecuador_quito section#sliders .centered .slider-after .descrip ul > li,
.paraguay section#sliders .centered .slider-before .descrip ul > li,
.paraguay section#sliders .centered .slider-after .descrip ul > li,
.peru section#sliders .centered .slider-before .descrip ul > li,
.peru section#sliders .centered .slider-after .descrip ul > li,
.colombia section#sliders .centered .slider-before .descrip ul > li,
.colombia section#sliders .centered .slider-after .descrip ul > li {
  padding-bottom: 1rem;
}
.index section#sliders hr,
.vision section#sliders hr,
.chile section#sliders hr,
.ecuador section#sliders hr,
.ecuador_galapagos section#sliders hr,
.ecuador_quito section#sliders hr,
.paraguay section#sliders hr,
.peru section#sliders hr,
.colombia section#sliders hr {
  border-top: 1px solid var(--black);
  opacity: 0.5;
}
.index section #sliderBefore .carousel-item img,
.index section #sliderAfter .carousel-item img,
.vision section #sliderBefore .carousel-item img,
.vision section #sliderAfter .carousel-item img,
.chile section #sliderBefore .carousel-item img,
.chile section #sliderAfter .carousel-item img,
.ecuador section #sliderBefore .carousel-item img,
.ecuador section #sliderAfter .carousel-item img,
.ecuador_galapagos section #sliderBefore .carousel-item img,
.ecuador_galapagos section #sliderAfter .carousel-item img,
.ecuador_quito section #sliderBefore .carousel-item img,
.ecuador_quito section #sliderAfter .carousel-item img,
.paraguay section #sliderBefore .carousel-item img,
.paraguay section #sliderAfter .carousel-item img,
.peru section #sliderBefore .carousel-item img,
.peru section #sliderAfter .carousel-item img,
.colombia section #sliderBefore .carousel-item img,
.colombia section #sliderAfter .carousel-item img {
  object-fit: cover;
  height: 500px;
}
@media (max-width: 767px) {
  .index section #sliderBefore .carousel-item img,
  .index section #sliderAfter .carousel-item img,
  .vision section #sliderBefore .carousel-item img,
  .vision section #sliderAfter .carousel-item img,
  .chile section #sliderBefore .carousel-item img,
  .chile section #sliderAfter .carousel-item img,
  .ecuador section #sliderBefore .carousel-item img,
  .ecuador section #sliderAfter .carousel-item img,
  .ecuador_galapagos section #sliderBefore .carousel-item img,
  .ecuador_galapagos section #sliderAfter .carousel-item img,
  .ecuador_quito section #sliderBefore .carousel-item img,
  .ecuador_quito section #sliderAfter .carousel-item img,
  .paraguay section #sliderBefore .carousel-item img,
  .paraguay section #sliderAfter .carousel-item img,
  .peru section #sliderBefore .carousel-item img,
  .peru section #sliderAfter .carousel-item img,
  .colombia section #sliderBefore .carousel-item img,
  .colombia section #sliderAfter .carousel-item img {
    height: inherit;
  }
}

/* Home */

/*# sourceMappingURL=main.css.map */
