/* Variables */
:root {
    --color-foreground: #111C4E;
    --color-background: #fff;
    --color-highlight: #3DAE2A;
    --color-light-bg: #E2F0F6;
    --color-light-green: #F2FAF0;
    --color-dark-highlight: #e2ecde;
    --color-bright: #51c73e;
    --font-body: "Red Hat Display", sans-serif;
    --font-heading: "Outfit", sans-serif;
    --transition: 0.3s ease;
    --items: 3;
    --duration: 12s;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    line-height: 1.5;
    font-family: var(--font-body);
    letter-spacing: .015em;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    width: 100dvw;
    overflow-x: hidden;
    color: var(--color-foreground);
    scroll-behavior: smooth;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
}

body {
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}

/* Spacing */
.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.sm-pad-all {
    padding: 2rem;
}

.sm-pad-bottom {
    padding-bottom: 2rem;
}

.sm-pad-right {
    padding-right: 2rem;
}

.md-pad-top {
    padding-top: 5rem;
}

.md-pad-bottom {
    padding-bottom: 5rem;
}

.md-pad-right {
    padding-right: 5rem;
}

.lg-pad-bottom {
    padding-bottom: 8rem;
}

.lg-pad-right {
    padding-right: 8rem;
}

.sm-mar-bottom {
    margin-bottom: 1rem;
}

.md-mar-bottom {
    margin-bottom: 3rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.abs-center {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-wrapper {
    max-width: 1728px;
    margin-left: auto;
    margin-right: auto;
}

.page-padding {
    padding-left: 3rem;
    padding-right: 3rem;
}

.md-page-wrapper {
    max-width: 1600px;
}

.sm-page-wrapper {
    max-width: 1200px;
}

.bg-shadow {
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.bg-light-green {
    background: var(--color-light-green);
}

.bg-highlight {
    background: var(--color-highlight);
}

/* Layout */
.pos-rel {
    position: relative;
}

.grid {
    display: grid;
}

.grid--2-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
}

.grid--3-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
}

.grid--4-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
}

.grid--6-col {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0;
}

.grid--7-col {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 0;
}

.grid--12-col {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: 2rem;
    column-gap: 0;
}

.grid-col--span3 {
    grid-column: span 3;
}

.grid-col--span4 {
    grid-column: span 4;
}

.grid-col--span5 {
    grid-column: span 5;
}

.grid-col--span7 {
    grid-column: span 7;
}

.grid-col--span12 {
    grid-column: span 12;
}

.h-flex--expand {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.align-top {
    align-items: flex-start;
}

.v-flex {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}

.v-flex--top {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 1rem;
}

.v-flex--center {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

/* Text */
.txt-highlight {
    color: var(--color-highlight);
}

.txt-background {
    color: var(--color-background);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: .025em;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 1rem 0;
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.md-h2 {
    font-size: 2.15rem;
}

.sm-h2 {
    font-size: 1.65rem;
    letter-spacing: normal;
    max-width: 80%;
}

.uppercase {
    text-transform: uppercase;
}

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

.body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.heading {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

ul, ol {
    margin: 1rem;
}

.w-full {
    width: 100%;
    max-width: unset;
}

/* Modal */
.hide { display: none; }

.modal-wrapper {
    background: #000000d1;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    border: 1px solid #888;
    width: 80dvw;
    max-width: 50rem;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    padding: 5rem 3rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Header */
header {
    background: var(--color-highlight);
    position: relative;
    z-index: 999;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.5s ease;
    z-index: 1000;
  will-change: transform;
}

#header.is-hidden {
  transform: translateY(-110%);
}

#header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
}

.main-menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.menu--item {
    font-weight: 600;
    color: var(--color-background);
    text-decoration: none;
    padding: 1.5rem 1rem;
    font-size: .85rem;
    letter-spacing: .035rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu--item:hover, .nosotros #nosotros, .rastreo #rastreo, .sucursales #sucursales, .servicios-logisticos #servicios-logisticos, .logistica-verde #logistica-verde, .blog #blog, .contacto #contacto {
    transform: scale(1.05);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.main-logo {
    width: 6rem;
}

.login {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    text-decoration: none;
}

.login-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-color: var(--color-background);
    mask: url("/assets/icon-login.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/icon-login.svg") no-repeat center / contain;
}

/* Footer */
footer {
    background: var(--color-highlight);
    color: var(--color-background);
    font-size: .8125rem;
    font-weight: 600;
}

footer ul {
    list-style-type: none;
}

.copyright {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: var(--color-background);
}

.copyright p {
    font-size: .725rem;
    font-weight: 600;
    margin: 0;
}

.copyright ul li {
    display: inline-block;
    text-transform: uppercase;
    font-size: .65rem;
    letter-spacing: .025em;
    margin: 0;
    position: relative;
    font-family: var(--font-heading);
    padding: 0 1rem;
}

.copyright ul li:after {
    content: '';
    background: var(--color-background);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.copyright ul li:last-of-type {
    padding-right: 0;
}

.copyright ul li:last-of-type:after {
    content: none;
}

.footer-nav h3 {
    font-weight: 700;
}

.footer-nav ul li {
    padding: .25rem 0;
    margin-bottom: .25rem;
}

.no-mar-top {
    margin-top: 0;
}

ul.col-2 {
    column-count: 2;
    gap: 5rem;
}

.footer-tools--link {
    color: var(--color-background);
    text-decoration: none;
}

.footer-tools--link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Slideshow */
.hero-slider {
    background: var(--color-highlight);
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.slide {
    width: 100%;
    height: 100%;
    min-height: 900px;
    max-height: 80dvh;
    margin: 0 auto;
    background-size: cover !important;
}

.slider-content {
    background: var(--color-light-bg);
    padding: 5rem;
    align-self: end;
    border-radius: 0 2.5rem 0 0;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 2rem;
    grid-column-start: 2;
    grid-column-end: 6;
}

.slider-content:before {
    content: '';
    background: #e2f0f6;
    width: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
}

.txt-wrapper {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: .5rem;
}

.slider-bg {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.slider-bg img {
    max-width: 48rem;
    height: auto;
    width: 100%;
    margin: 0 auto;
}

.btn {
    border: none;
    border-radius: 5rem;
    padding: 1rem 3rem;
    color: var(--color-background);
    text-decoration: none;
    font-weight: 700;
    font-size: .825rem;
    display: inline-block;
    font-family: var(--font-body);
    letter-spacing: .025em;
    text-transform: uppercase;
}

.btn:hover {
    text-decoration: none;
    animation: bounce 1s ease;
}

.primary-btn {
    background: var(--color-highlight);
}

.secondary-btn {
    background: var(--color-foreground);
}

.outline-btn {
    background-color: transparent;
    border: 1px solid;
    border-color: var(--color-background);
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.outline-btn:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    color: var(--color-background);
}

/* Search form */
.search-title {
    color: var(--color-highlight);
    grid-column: span 8;
        padding: 2rem 5rem 2rem 0;
}

.search-title h2 {
    font-size: 2rem;
}

.search-form {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
}

.search-form button {
    grid-column: span 4;
    border-radius: 0;
    position: relative;
}

.search-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-highlight);
    padding: 0 1rem;
}

.search-form input:focus-visible {
    outline: none;
}

/* Home - Section */
.title-icon {
    margin: 1rem auto;
    width: 1.625rem;
}

.v-flex--center {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.col-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 32dvw;
    padding: 3rem 0 3rem 8rem;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.col-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.col-overflown {
    grid-column-start: 4;
    grid-column-end: 13;
    padding: 8rem 16rem;
    position: relative;
}

.col-overflown .txt-wrapper {
    max-width: 34rem;
}

.col-overflown:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
}

.col-overflown.bg-highlight:after {
    background: var(--color-highlight);
}

.txt-first .col-overlay {
    right: 0;
    left: auto;
    padding: 3rem 8rem 3rem 0;
}

.txt-first .col-overflown {
    grid-column-start: 1;
    grid-column-end: 9;
}

.txt-first .col-overflown:after {
    content: none;
}

.txt-first .col-overflown:before {
    content: '';
    width: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
}

.txt-first .col-overflown.bg-highlight:before {
    background: var(--color-highlight);
}

.blend-dark {
    mix-blend-mode: darken;
}

.h-flex--center.md-gap {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.md-gap {
    gap: 5rem;
}

.sm-gap {
    gap: 2rem;
}

.xsm-gap {
    gap: .5rem;
}

.sm-gap--2-1 {
    gap: 1rem 2rem;
}

.md-mar-top {
    margin-top: 3rem;
}

.sm-mar-top {
    margin-top: 2rem;
}

.xsm-mar-top {
    margin-top: 1rem;
}

.xsm-mar-bottom {
    margin-bottom: 1rem;
}

.border-4r {
    border-radius: 4px;
}

.border-12r {
    border-radius: 12px;
}

.primary-border {
    border: 1px solid var(--color-highlight);
}

.border-right {
    border: none;
    border-right: 1px solid var(--color-foreground);
}

.max-w-8r {
    max-width: 8rem;
    width: 100%;
}

.max-w-10r {
    max-width: 10rem;
    width: 100%;
}

.max-w-12r {
    max-width: 12rem;
    width: 100%;
}

.max-w-14r {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 14rem;
    height: 100%;
    object-fit: contain;
}

.max-w-18r {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 18rem;
    height: 100%;
    object-fit: contain;
}

.max-w-20r {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 18rem;
    height: 100%;
    object-fit: contain;
}

.max-w-40r {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 18rem;
    height: 100%;
    object-fit: contain;
}

h3.subtitle {
    font-weight: 700;
    font-family: var(--font-heading);
    margin-top: 1rem;
}

.link-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-color: var(--color-background);
    mask: url("/assets/icon-link.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/icon-link.svg") no-repeat center / contain;
}

.filter-icon {
    width: 1rem;
}

.pointer {
    cursor: pointer;
}

.all-green-hover {
    transition: all ease .3s;
}

.all-green-hover:hover {
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
    color: var(--color-highlight);
    box-shadow: 0 45px 20px -43px rgba(0,0,0,0.1);
}

.all-green-hover:hover .link-icon {
    background-color: var(--color-highlight);
}

.w-half {
    max-width: 50%;
}

.lg-mar-top {
    margin-top: 8rem;
}

.bg-white {
    background: var(--color-background);
}

.bg-foreground {
    background: var(--color-foreground);
}

.opacity-25 {
    opacity: .25;
}

.sticky-bottom {
    position: sticky;
}

.overlay-top {
    margin-top: -8rem;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}

.video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

/* Logo marquee */
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  gap: 3rem;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
}

.marquee__content img {
  height: auto;
  width: 100%;
  max-width: 8rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__inner {
    animation: none;
  }
}

.marquee__inner {
  will-change: transform;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-bg img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    opacity: .1;
}

.form-container {
    grid-column-start: 6;
    grid-column-end: 12;
}

form label {
    color: inherit;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

form input {
    width: 100%;
    border: none;
    height: 50px;
    color: var(--color-foreground);
    font-size: 1rem;
    padding: 0 1rem;
}

form textarea {
    width: 100%;
    border: none;
    height: 10rem;
    background: var(--color-background);
    color: var(--color-foreground);
    font-size: 1rem;
}

form input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    border: none;
    background: var(--color-background);
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    padding: 0;
}

form input[type="checkbox"]:checked::after {
    content: "✓";
    font-size: 0.8rem;
    color: var(--color-foreground);
    line-height: 1;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.h-flex--center {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]:focus {
  outline: none; 
  box-shadow: none; 
}

form {
    gap: 1rem !important;
    padding: 1rem;
}

.col-2 {
    grid-column: span 2;
}

button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transition: opacity 0.2s ease;
}

button.active {
  opacity: 1;
  cursor: pointer;
  animation: bounce 1s infinite alternate;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

form button:hover {
    background: var(--color-foreground);
    border: 1px solid var(--color-foreground);
    color: var(--color-background);
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100%;
    height: 1px;
    display: block;
    background: var(--color-foreground);
    margin: 3rem 0;
    opacity: .25;
}

.sm-icon {
    width: 2rem;
    height: 2rem;
}

.md-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.h-flex {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

a, button {
    cursor: pointer;
    text-decoration: none;
}

.sm-h3 {
    font-size: 1rem;
}

.bold {
    font-weight: 700;
}

.xxs-mar-bot {
    margin-bottom: .5rem;
}

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

.menu-toggle {
  display: none; /* hidden on desktop */
  width: 1.25rem;
  height: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-background);
  margin: 0 0 5px;
  transition: var(--transition);
  border-radius: 5px;
}

.menu-toggle span:last-of-type {
    margin-bottom: 0;
}

.mobile-drawer {
  position: fixed;
  right: 0;
  top: 110px;
  height: calc(100vh - 110px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: var(--color-highlight);
  z-index: 999;
  width: 100dvw;
  padding: 30px 20px;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.section-bg .img-bg {
    height: 100%;
}

.section-bg-overflown {
    height: 90% !important;
}

.neg-index {
    z-index: -1;
}

.border-white {
    border-color: var(--color-background);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lg-mar-bottom {
    margin-bottom: 5rem;
}

.head-tools {
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    transition: background ease-in-out .3s;
    cursor: pointer;
}

.head-tools:hover a, .head-tools .menu--item:hover {
    text-decoration: none !important;
}

button#loginBtn:hover {
    background: var(--color-foreground);
}

body:has(.modal-login.open), body:has(.modal-psw.open) {
    overscroll-behavior: none;
}

.modal-login, .modal-psw {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}

.modal-login.modal.open, .modal-psw.open {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 999999;
}

button#loginBtn {
    background: none;
    border: none;
    outline: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 2.5rem 0 1.5rem;
}

.rastreo-form {
    padding: 0;
}

.rastreo-form button {
    grid-column: span 4;
    border-radius: 0;
    height: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    align-items: center;
    font-size: 1rem;
    transition: all .3s ease-in-out;
    border: none !important;
}

.rastreo-form button:after {
    content: '';
    background: var(--color-highlight);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    transition: all .3s ease-in-out;
}

.rastreo-form button:hover {
    gap: 2rem;
}

.rastreo-form button:hover:after {
    background: var(--color-foreground);
}

.rastreo-form input {
    border-bottom: 1px solid var(--color-highlight);
}

.rastreo-form button span {
    width: 1rem;
}

.lg-h2 {
    font-size: 5rem;
    line-height: 1;
    max-width: 50rem;
}

ul.no-bullet {
    list-style-type: none;
}

.check-bullet {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
        min-width: 1.75rem;
    min-height: 1.75rem;
    background: var(--color-highlight);
    border-radius: 50px;
    position: relative;
}

.check-bullet:after {
    content: "✓";
    color: var(--color-background);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -60%);
    font-size: 35px;
    text-shadow: -2px 4px 2px rgba(0, 0, 0, 0.15);
}

.check-bullet.bg-bright {
    background: var(--color-bright);
}

.v-align-center {
    align-items: center;
}

.lg-pad-right {
    padding-right: 5rem;
}

.max-w60 {
    max-width: 60rem;
}

.max-w80 {
    max-width: 80%;
}

.section-lg-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.lg-pad-left {
    padding-left: 5rem;
}

.bg-left {
    background-position: left center;
}

.bg-50w {
    background-size: 50% !important;
    background-repeat: no-repeat;
}

.grid-half-right {
    grid-column-start: 6;
    grid-column-end: 13;
}

.full-height {
    height: 100%;
}

.slider-content.grid-col--span5.grid-half-right.full-height {
    background: var(--color-highlight);
    justify-content: center;
}

.slider-content.grid-col--span5.grid-half-right.full-height:before {
    content: none;
}

.txt-wrapper.txt-background {
    max-width: 35rem;
}

.fade-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar {
  background: var(--color-light-green);
  color: var(--color-foreground);
  padding: .5rem 1rem;
  display: block;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-size: .825rem;
  letter-spacing: .035rem;
  text-transform: uppercase;
  height: 40px;
}

.announcement-inner {
  position: relative;
  height: 100%;
}

.announcement-message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  animation: fadeCycle var(--duration) ease-in-out infinite;
  animation-fill-mode: both;
  animation-delay: calc((var(--duration) / var(--items)) * var(--i));
  white-space: nowrap;
}

a.highlight {
    color: var(--color-highlight);
    font-weight: 500;
    cursor: pointer;
}

/* Whatsapp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  z-index: 9999;
}

.whatsapp-icon {
  width: 60%;
  height: 60%;
}

.whatsapp-float:hover {
  animation: bounce 1.2s ease infinite;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeCycle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.collaps-btn {
    border-bottom: 1px solid var(--color-foreground);
    width: 100%;
    border-radius: 3px 3px 0 0;
    font-family: var(--font-heading);
    height: 70px;
    font-weight: 500;
    letter-spacing: .025em;
    text-transform: uppercase;
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    transition: background-color .3s ease;
    text-align: left;
}

.collaps-btn::after {
    content: "";
    background-image: url(/assets/icon-plus-blue.svg);
    width: .85rem;
    height: .85rem;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
}

.collaps-btn.active::after {
    background-image: url(/assets/icon-minus-blue.svg);
}

.collaps-btn.active, .collaps-btn.active + .collaps-content {
    background-color: var(--color-dark-highlight);
}

.collaps-btn.active {
    border-bottom: 1px solid var(--color-dark-highlight);
}

.collaps-content {
    display: none;
    font-weight: 400;
    padding: 1rem 1.5rem;
    margin: -1rem 0 1rem;
    width: 100%;
    text-align: left;
    border-radius: 0 0 4px 4px;
    transition: background-color .3s ease;
}

.full-width {
    width: 100%;
}

.flex-half {
    flex: 1 0 50%;
}

.btn.tertiary-btn {
    color: var(--color-foreground);
    display: flex;
    flex-flow: row nowrap;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.sm-txt {
    font-size: .9rem;
}

.max-w-80 {
    max-width: 80%;
}

.more-info-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.more-info-container.is-open {
  max-height: 1000px;
  opacity: 1;
}

.more-info-container.is-open {
  scroll-margin-top: 80px; 
}

.skew-bg:before {
    content: "";
    width: 10rem;
    height: 100%;
    position: absolute;
    right: calc(100% - 1px);
    top: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
    background: inherit;
}

.more-info-close {
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 2rem;
    transform: rotate(45deg);
}

.btn.tertiary-btn:hover {
    animation: none;
}

.tertiary-btn span:after {
    content: '';
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: -3px;
    left: 0;
    background: var(--color-foreground);
    transition: width .3s ease;
}

.tertiary-btn:hover span:after {
    width: 100%;
}

.bg-auto {
    background-size: auto;
}

.dropdown {
  float: left;
  overflow: hidden;
  display: flex;
  height: 100%;
}

.dropdown img {
    width: .65rem;
    display: inline-block;
    margin-left: -.5rem;
}

.dropdown .dropbtn {
  background: none;
  border: none;
  outline: none;
  position: relative;
  top: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-highlight);
  box-shadow: -5px 3px 18px -9px inset rgba(0, 0, 0, 0.15), 0px 12px 14px 0px rgba(0,0,0,0.2);
  z-index: 1;
  left: 0;
  width: 100%;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  top: 100%;
}

.bg-contain {
    background-size: contain;
}

.dropdown-content a {
    float: none;
    font-weight: 600;
    color: var(--color-background);
    text-decoration: none;
    padding: 1.5rem 1rem;
    font-size: .85rem;
    letter-spacing: .035rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-style: normal;
}

.dropdown-content a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.v-divider {
    width: 1px;
    height: 1.25rem;
    background: var(--color-background);
}

.loginBtn {
    height: 100%;
    display: flex;
    padding: 0 1rem;
}

.loginBtn:hover {
    background: rgba(0,0,0,0.15);
}

.align-bottom {
    align-items: end;
}

.countup, .countup-txt {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3rem;
}

.hide-overflow {
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 16rem;
    overflow: hidden;
}

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

.blog article {
    border-color: var(--color-background);
    background: var(--color-background);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.article-content {
    padding: 2rem 2rem 4rem 2rem;
    text-align: left;
}

.article-content h3 {
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: .025em;
    text-transform: uppercase;
    color: inherit;
    margin-bottom: .5rem;
}

.article-content a {
    color: inherit;
    text-decoration: none;
    transition: all .3 ease;
}

.article-content .more-btn {
    display: block;
    align-items: flex-start;
    padding: 0;
    margin-top: 2rem;
    color: var(--color-foreground);
    text-decoration: none;
    border: none;
    font-weight: 700;
    font-size: .825rem;
    font-family: var(--font-body);
    letter-spacing: .025em;
    text-transform: uppercase;
}

.blog article:hover {
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
    color: var(--color-highlight);
    box-shadow: 0 45px 20px -43px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.more-btn span:after {
    content: '';
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: -3px;
    left: 0;
    background: var(--color-highlight);
    transition: width .3s ease;
}

.blog article:hover .article-content .more-btn span:after {
    width: 100%;
}

.blog article:hover .article-content .more-btn {
    color: var(--color-highlight);
}

.more-articles h3, .featured-articles h3 {
    padding-bottom: 1rem;
}

.more-articles .grid {
    border-top: 1px solid #f0f3ff;
    padding-top: 2rem;
}

.featured-articles #posts-featured {
    background: var(--color-light-bg);
    padding: 1.5rem;
}

.featured-articles article {
    margin-bottom: 1rem; 
}

.featured-articles article a {
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: stretch;
}

.featured-articles article .article-content p {
    display: none;
}

.featured-articles .image-container {
    height: auto;
    flex: 0 0 35%;
}

.featured-articles .article-content {
    padding: 1.5rem;
}

.featured-articles .article-content h3 {
    font-size: .925rem;
}

.featured-articles .article-content .more-btn {
    margin-top: .5rem;
}

.no-overflow {
    overflow: hidden;
}

.locations p, .locations p a {
    color: inherit;
}

.max-h-40r {
    max-height: 40rem;
}

.card-link {
    color: inherit;
}

.post.bg-contain {
    min-height: 40rem;
    background-repeat: no-repeat;
        background-size: 50% auto;
    background-clip: content-box;
    background-position: left center;
}

.v-flex--bottom {
    display: flex;
    align-items: flex-end;
}

article a {
    color: inherit;
}

.min-h-30r {
    min-height: 30rem;
}

.md-icon {
    width: 1.5rem;
}

.dots{
  display: inline-flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.dot{
  width: .5rem;
  height: .5rem;
  border-radius: 50rem;
  background: var(--color-foreground);
  opacity: .5;
}

.dot.is-on { 
    background: var(--color-highlight); 
    opacity: 1;
}

.steps{
  margin-top: 1rem;
  padding-top: 1rem;
}

.rail{
  height: 2px;
  width: 100%;
  background: var(--color-dark-highlight);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}

.rail .fill{
  height: 100%;
  width: 0%;
  background: var(--color-highlight);
  border-radius: inherit;
  transition: width .35s ease;
}

.step {
  text-align: center;
  padding: 12px 10px 8px;
  border-radius: 16px;
}

.icon{
  width: clamp(78px, 10vw, 120px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.step.is-done .icon img,
.step.is-active .icon img{
    filter: grayscale(0);
}
.step.is-active .label{
  color: var(--color-foreground);
  font-weight: 650;
}
.step.is-pending{
  opacity: .65;
}

@media (max-width: 760px){
  .wrap{ padding: 22px 14px 16px; }
  .steps{ padding-top: 14px; }
}

@media (max-width: 420px){
  .rail{ display:none; }
  .step{ background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
}

.tracking-msg {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.3;
    display: block;
    color: var(--color-foreground);
    font-weight: 500;
}

.error-msg {
    color: red;
}

table { width: 100%; }

thead {
    background: var(--color-foreground);
    color: var(--color-background);
    outline: 1px solid var(--color-foreground);
}

th {
    padding: .5rem .25rem;
}

tbody {
    background: var(--color-background);
    outline: 1px solid var(--color-foreground);
}

td { 
    text-align: center;
    padding: .5rem .25rem;
}

.max-w-1200 {
    max-width: 1200px;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.slide.grid.grid--12-col.v-flex-mb {
    background: black;
    position: relative;
}

.bg-video {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.onsite-logo {
    width: 16rem;
    display: block;
    margin: 1rem auto;
}

.login-form input {
    background: var(--color-light-bg);
}

.login-form input[type="checkbox"] {
    background: none;
    border: 1px solid var(--color-foreground);
}

.login-form {
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
}

.modal-login .modal-content, .modal-psw .modal-content {
    width: auto;
    min-width: 40rem;
    max-width: 90dvw;
}

.login-form button {
    background: var(--color-foreground);
    width: 15rem;
}

.other-login {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.other-login span {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .8125rem;
}

.register-link {
    color: var(--color-highlight);
    text-decoration: none;
}

a.dropbtn.menu--item.heading img {
    margin-left: .5rem;
}

.recent-posts article .image-container {
    height: 24rem;
}

.article-list-title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.filter-title {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.footer-nav {
    justify-content: flex-end;
    gap: 5rem;
    align-items: flex-start;
}

.footer-submenu {
    padding: 0;
    margin: 1rem 0;
}

.blog-filters {
    display: none;
    flex-flow: row wrap;
    gap: .5rem;
    height: auto;
    overflow-x: scroll;
    margin: 1rem 0;
}

.blog-filters.open {
    display: flex;
}

button.filter-btn.active
 {
    background: var(--color-foreground);
    color: white;
    animation: none;
}

.filter-btn {
    border: none;
    outline: none;
    border-radius: 3px;
    padding: .85rem 1rem;
    box-shadow: none !important;
    height: auto;
    width: auto;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: .85rem;
}

a { cursor: pointer; }

.footer-submenu a:target, .footer-submenu a:target-current, .footer-submenu a:current, .footer-submenu a:-webkit-any-link {
    color: white;
}

.footer-submenu li a {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-icon {
    width: 1rem;
}