@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}
:root {
    --exito-red:   #da251c;
    --exito-blue:  #0e264e;
    --exito-dark:  #1f1a17;
    --exito-light: #eee;

    --x-dark:      #000;
    --dark:        #333;
    --muted:       #666;
    --faint:       #999;
    --faint-light: #bbb;
    --light:       #f4f4f4;
    --x-light:     #fff;

    --def-transition: all .25s linear;
    --def-box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;

    --space-xs: 8px;
    --space-s:  16px;
    --space-m:  32px;
    --space-l:  64px;
    --space-xl: 128px;
}

:focus-visible { outline: 3px solid #ff251c; transition: none !important; }
html { box-sizing: border-box; height: 100%; scroll-behavior: smooth; }
*,*:before,*:after { box-sizing: inherit; }
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #000;
    line-height: 1.5;
}
img,picture,video,canvas,svg { display: block; max-width: 100%; }
body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd { margin: 0; }
h1,h2,h3,h4,h5,h6 { font-weight: normal; padding: 0; }
p { font-weight: 400; padding: 0; margin: 0; }
input,button,textarea,select { font: inherit; }

/*-------------------------------------------------------------------------------------------------------------------*/
                                          /* -- scrollbar styling -- */
/*-------------------------------------------------------------------------------------------------------------------*/

/*
  Below Webkit is used to make Chrome's scrollbars look better.
  These can be used (scrollbar-width: thin; scrollbar-color: #444 transparent;)
  but this will have to be applied to every element where overflow is expected
  and it makes firefox's scrollbar look glitched/broken.
  Below Webkit only affects Chrome and only needs to be in the CSS file to work
  on every overflow.
*/
::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #888;
    cursor: grab;
}
::-webkit-scrollbar-thumb:active { cursor: grabbing; }
::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}
::-webkit-scrollbar-track:hover { background-color: #333; }
::-webkit-scrollbar-corner { background-color: transparent; }

/*-------------------------------------------------------------------------------------------------------------------*/
                                                 /* -- animations -- */
/*-------------------------------------------------------------------------------------------------------------------*/

@keyframes fade-out-up {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -24px, 0);
    }
}

@keyframes fade-out-down {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
}

@keyframes fade-out-left {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(-24px, 0, 0);
    }
}

@keyframes fade-out-right {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(24px, 0, 0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translate3d(0, -24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translate3d(24px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translate3d(-24px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/

.navbar-wrapper {
    width: 100%;
    max-width: 1200px;
    border-radius: 0 0 12px 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
    transition: var(--def-transition);
    height: 88px;
    backdrop-filter: blur(4px);
}
.navbar-wrapper.scrolled { height: 64px; }

.navbar {
    margin: 0 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transition: var(--def-transition);
    border-radius: 12px;
    max-width: 1200px;
    width: 100%;
    height: 64px;
    padding: 0 .5em;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
}
.navbar-wrapper.scrolled .navbar {
    border-radius: 0 0 12px 12px;
    margin: 0;
}

.navbar-logo-link {
    width: max-content;
    cursor: pointer;
    border-radius: 8px;
    padding: 0 .25em;
    transition: var(--def-transition);
}

.navbar-logo {
    width: 7em;
    height: 3em;
}

.navbar-links {
    display: none;
    width: max-content;
    /*max-width: 400px;*/
    margin: 0 auto;
    align-items: center;
}

.navbar-item {
    transition: var(--def-transition);
    position: relative;
    margin: 0 16px;
}

.navbar-item:has(:focus-within) .navbar-submenu-container {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.navbar-item:has(:focus-within) .navbar-link-arrow-container { transform: rotate(180deg); }
.navbar-item:has(:focus-within) .navbar-link { box-shadow: var(--def-box-shadow); }

.navbar-link {
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    text-decoration: none;
    color: var(--dark);
    font-weight: 450;
    transition: var(--def-transition);
}
.navbar-link.current { box-shadow: var(--def-box-shadow); }

.navbar-link-arrow-container {
    margin: 3px 0 0 8px;
    transition: var(--def-transition);
}
.navbar-link-arrow-container svg {
    width:  13px;
    height: 13px;
}
.navbar-link-arrow-container svg { fill: var(--dark); }

.navbar-submenu-container {
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    transition: var(--def-transition);
    position: absolute;
    left: 50%;
    padding-top: 25px;
}

.navbar-submenu {
    background-color: #fff;
    border-radius: 5px;
    padding: .25em .5em;
    max-height: 300px;
    overflow: scroll;
    box-shadow: var(--def-box-shadow);
}

.navbar-submenu-item { margin-top: 8px; }
.navbar-submenu-item:last-of-type { margin: 8px 0; }

.navbar-submenu-link {
    display: block;
    padding: .5em;
    border-radius: 5px;
    text-wrap: nowrap;
    text-decoration: none;
    color: var(--dark);
    font-weight: 450;
    transition: var(--def-transition);
    cursor: pointer;
    user-select: none;
}
.navbar-submenu-link:focus {
    box-shadow: var(--def-box-shadow);
    color: var(--x-dark);
}

.navbar-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.hamburger input { display: none; }
.hamburger svg {
    height: 3em;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 250ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 250ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke 0.25s linear;
}
.line-top-bottom { stroke-dasharray: 12 63; }
.hamburger input:checked + svg .line { stroke: var(--exito-red); }
.hamburger input:checked + svg { transform: rotate(-45deg); }
.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.side-menu-wrapper {
    z-index: 95;
    position: fixed;
    inset: 0;
    transition: var(--def-transition);
}
.side-menu-wrapper.dim { background-color: rgba(0,0,0,.5); }

.side-menu-container {
    z-index: 96;
    position: fixed;
    right: 0;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    background-color: #fff;
    width: 280px;
    border-left: 1px solid #a0a0a0;
}
.side-menu-container.open { transform: translateX(0); }

.side-menu {
    height: 100%;
    overflow: scroll;
    padding: 3.5em .5em 1em .5em;
    user-select: none;
}

.side-menu-items-container {
    max-width: 256px;
    width: 100%;
}

.side-menu-section-title {
    font-size: 1.2em;
    padding: 10px 10px 0 5px;
    margin: 1.2em 0 0 auto;
    font-weight: 450;
    color: var(--muted);
}
.side-menu-section-title:first-of-type { margin: .8em 0 0 auto; }

.side-menu-item {
    margin: .5em 0;
    border-radius: 5px;
    transition: var(--def-transition);
}
.side-menu-item.current { box-shadow: var(--def-box-shadow); }
.side-menu-item > a {
    display: inline-block;
    margin-left: 3px;
    padding: .5em;
    width: 100%;
    height: 100%;
    color: var(--x-dark);
    text-decoration: none;
    cursor: pointer;
    font-weight: 450;
    transition: var(--def-transition);
}

.contact-us-link-top {
    text-wrap: nowrap;
    display: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 1em;
    background-color: var(--exito-blue);
    color: var(--light);
    border-radius: 30px;
    padding: .8em 1.2em;
    font-weight: 450;
    transition: var(--def-transition);
    cursor: pointer;
    text-decoration: none;
}
.contact-us-link-top.current {
    background-color: var(--x-dark);
    color: var(--light);
}
.contact-us-link-top:focus-visible, .contact-us-link-top:active { background-color: var(--x-dark); }

.hero {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
    height: calc(100vh);
    max-height: 1080px;
    min-height: 624px;
    z-index: 10;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mask-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1) 20%);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 20%, transparent 50%);
    z-index: 0;
}
.hero.darker::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    z-index: 0;
}

.hero-title-container { padding: 144px 24px 0 24px; }

.hero-title {
    position: relative;
    z-index: 15;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0,0,0,.8);
    font-size: 2.5em;
    font-weight: 450;
    color: var(--x-light);
}

.hero-title-heading {
    font-weight: 550;
    font-size: 1.25em;
}

.hero-title-separator {
    position: relative;
    z-index: 15;
    width: 60px;
    height: 4px;
    background-color: var(--exito-red);
    margin: 20px auto;
    border-radius: 5px;
}

.hero-description {
    margin: 16px auto 0 auto;
    max-width: 310px;
    text-align: center;
    position: relative;
    z-index: 15;
    font-size: 1.1em;
    font-weight: 450;
    color: var(--x-light);
    text-shadow: 0 4px 10px rgba(0,0,0,.8);
}

.main-container {
    margin: 0 auto;
    max-width: 1200px;
}

.section {
    --text: var(--x-dark);
    color: var(--text);
}
.section.rounded-top { border-radius: 30px 30px 0 0; }
.section.rounded-bot { border-radius: 0 0 30px 30px; }
.section.rounded     { border-radius: 30px; }
.section.dark  { --text: var(--x-light); }
.section.light {
    background-color: var(--x-light);
    --text: var(--x-dark);
}

.section-title {
    font-size: 2em;
    text-align: center;
    color: var(--text);
}

.back-btn-container {
    z-index: 16;
    position: absolute;
    left: 16px;
    top: 88px;
    display: flex;
    justify-content: center;
    padding-top: var(--space-s);
}

.back-btn {
    z-index: 16;
    display: flex;
    border: none;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 30px;
    padding: .5em .85em;
    font-weight: 550;
    transition: var(--def-transition);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--exito-red);
    color: var(--x-light);
}

.back-btn:focus-visible, .back-btn:active {
    background-color: var(--x-light);
    color: var(--x-dark);
}

.back-btn-icon-container {
    pointer-events: none;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.back-btn-icon {
    fill: var(--x-light);
    width:  16px;
    height: 16px;
    transition: var(--def-transition);
}
.back-btn-icon.reversed { transform: rotateY(180deg); }

.back-btn-icon:focus-visible .back-btn-icon, .section-link:active .back-btn-icon { fill: var(--exito-red); }


.section-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: var(--space-s);
}

.section-link {
    display: flex;
    border: none;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 30px;
    padding: .5em .85em;
    font-weight: 550;
    transition: var(--def-transition);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.section-link.red {
    background-color: var(--exito-red);
    color: var(--x-light);
}
.section-link.red:focus-visible, .section-link.red:active {
    background-color: var(--x-light);
    color: var(--x-dark);
}

.section-link.blue {
    background-color: var(--exito-blue);
    color: var(--x-light);
}
.section-link.blue:focus-visible, .section-link.blue:active { background-color: var(--x-dark); }

.section-link-icon-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.section-link-icon {
    fill: var(--x-light);
    width:  16px;
    height: 16px;
    transition: var(--def-transition);
}

.section-link:focus-visible .section-link-icon, .section-link:active .section-link-icon { fill: var(--exito-red); }

.swiper-fade-wrapper {
    position: relative;
    width: 100%;
}

.swiper-fade-wrapper::before,
.swiper-fade-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    z-index: 5;
    pointer-events: none;
}

.swiper-fade-wrapper::before { left: 0; }
.swiper-fade-wrapper::after { right: 0; }

.swiper-fade-wrapper.dark::before { background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .8) 50%, rgba(0, 0, 0, 0) 100%); }
.swiper-fade-wrapper.dark::after  { background: linear-gradient(to left,  rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .8) 50%, rgba(0, 0, 0, 0) 100%); }

.swiper-fade-wrapper.light::before { background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%); }
.swiper-fade-wrapper.light::after  { background: linear-gradient(to left,  rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%); }

.swiper-slide {
    height: auto !important;
    margin: 10px;
}
.swiper-slide.insights, .swiper-slide.testimonials, .swiper-slide.prod { width: 280px !important; }
.swiper-slide.products {
    width: 100%;
    max-width: 544px !important;
    margin: 8px;
}

.swiper-pagination {
    margin: 0 auto;
    padding: 5px 0;
    position: static !important;
}

.swiper-pagination-bullets { transform: unset !important; }

.swiper-pagination-bullet {
    background-color: var(--faint-light) !important;
    margin: 0 2px !important;
    transition: var(--def-transition);
}

.swiper-pagination-bullet-active {
    background-color: var(--exito-red) !important;
    margin: 0 2px !important;
    transition: var(--def-transition);
}

.swiper-pagination-container { margin: 10px auto 0 auto; }

.swiper-pagination-buttons-container {
    max-width: 150px;
    margin: 4px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-btn {
    width: max-content;
    height: max-content;
    border-radius: 50%;
    padding: 0;
    margin: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.swiper-btn.dark .swiper-btn-icon { fill: var(--dark); }
.swiper-btn.light .swiper-btn-icon { fill: var(--light); }

.swiper-btn.dark:focus-visible .swiper-btn-icon, .swiper-btn.light:focus-visible .swiper-btn-icon { transform: scale(0.9); }
.swiper-btn.dark:active .swiper-btn-icon, .swiper-btn.light:active .swiper-btn-icon { transform: scale(0.9); }

.swiper-btn.dark:active .swiper-btn-icon, .swiper-btn.light:active .swiper-btn-icon { fill: var(--exito-red); }

.swiper-btn[class*="prev-btn-"] { display: none; }
.swiper-btn[class*="next-btn-"] { display: none; }

.swiper-btn-icon {
    width:  24px;
    height: 26px;
    transition: var(--def-transition);
}

footer { background: var(--x-dark); }

.footer-sections-container {
    margin: 20px auto 0 auto;
    max-width: 1200px;
}

.footer-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(30, 30, 30,  0) 0%,
            rgba(30, 30, 30, .8) 20%,
            rgba(30, 30, 30,  1) 40%,
            rgba(30, 30, 30,  1) 60%,
            rgba(30, 30, 30, .8) 80%,
            rgba(30, 30, 30,  0) 100%
    );
}
.footer-separator.bottom { margin-top: 10px; }

.footer-section {
    padding: 16px 0;
    margin: 0 16px;
}
.footer-section.contact-details {
    height: 150px;
    overflow: hidden;
    transition: height .5s linear;
}
.footer-section.contact-details.show { height: 320px; }

.footer-section-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: 450;
    color: var(--light);
}

.footer-content { padding: 16px 8px; }

.footer-content-title {
    text-wrap: nowrap;
    font-weight: 450;
    text-align: center;
    font-size: 1.1em;
    color: var(--faint-light);
}
.footer-content-title a {
    text-decoration: none;
    color: var(--faint-light);
    transition: var(--def-transition);
}
.footer-content-title a:focus, .footer-content-title a:active { color: var(--x-light); }
.footer-content-title.link:first-of-type { padding: 0 0 4px 0; }
.footer-content-title.link { padding: 4px 0; }
.footer-content-title.link:last-of-type { padding: 4px 0 0 0; }

.footer-content-item {
    font-weight: 450;
    text-align: center;
    color: var(--light);
    font-size: 1.5em;
}
.footer-content-item.hours { font-size: 1.5em; }
.footer-content-item.contact {
    font-size: 1.3em;
    margin-top: 5px;
}
.footer-content-item.address {
    color: var(--faint-light);
    font-size: 1.1em;
}

.footer-contact-button-container {
    display: flex;
    justify-content: center;
    width: 225px;
    margin: 20px auto 0 auto;
}

.footer-contact-button {
    border: none;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 30px;
    padding: .5em .85em;
    font-weight: 550;
    transition: var(--def-transition);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--exito-red);
    color: var(--x-light);
}
.footer-contact-button:focus-visible, .footer-contact-button:active {
    background-color: var(--x-light);
    color: var(--x-dark);
}

@keyframes fade-out-down-contact-footer {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 150px, 0);
    }
}

.footer-contact-details-container { animation: fade-in-up .3s; }

.footer-address-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.footer-address-link {
    text-wrap: nowrap;
    display: flex;
    font-size: 1.3em;
    background-color: var(--exito-red);
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    padding: .5em .85em;
    font-weight: 550;
    transition: var(--def-transition);
    cursor: pointer;
}

.footer-address-icon-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.footer-address-icon {
    fill: var(--x-light);
    width:  26px;
    height: 26px;
    transition: var(--def-transition);
}

.footer-bottom-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-container {
    margin: 0 auto;
    padding: 0 8px;
    text-wrap: nowrap;
    color: var(--faint);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 450;
}
.footer-copyright-icon {
    font-size: 1.5em;
    font-weight: 550;
    margin-right: 4px;
}

.dev-signature-container {
    text-align: center;
    text-wrap: nowrap;
    padding: 0 8px;
    margin: 0 auto;
}
.dev-signature-p1 {
    font-weight: 450;
    color: var(--faint);
    margin-right: 2px;
}
.dev-signature-p2 {
    text-decoration: none;
    cursor: pointer;
}
.dev-signature-p3 {
    font-size: larger;
    color: white;
}
.dev-signature-p4 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
.dev-signature-p5 {
    font-style: italic;
    color: #ff8800;
    margin-right: 4px;
}

.hero-scroll-indicator-container {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    transition: opacity .25s linear;
}

.scroll-indicator {
    backdrop-filter: blur(2px);
    --color: #fff;
    --sizeX: 30px;
    --sizeY: 50px;
    position: relative;
    width: var(--sizeX);
    height: var(--sizeY);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.scroll-indicator::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scroll-anim 2s infinite;
    box-sizing: border-box;
}

@keyframes scroll-anim {
    0% {
        opacity: 0;
        height: 6px;
    }
    40% {
        opacity: 1;
        height: 10px;
    }
    80% {
        transform: translate(0, 20px);
        height: 10px;
        opacity: 0;
    }
    100% {
        height: 3px;
        opacity: 0;
    }
}

.scroll-indicator-arrow-container {
    padding: 6px 0 0 0;
    margin-left: -3px;
    margin-top: 48px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator-arrow {
    margin-top: -6px;
    position: relative;
    border: solid var(--color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    animation: scroll-arrow-anim 2s infinite;
}

@keyframes scroll-arrow-anim {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(45deg);
    }

    50% {
        opacity: 1;
        transform: translateY(10px) rotate(45deg);
    }

    100% {
        opacity: 0;
        transform: translateY(10px) rotate(45deg);
    }
}

.loader-modal {
    background-color: transparent;
    outline: none;
    border: none;
    overflow: hidden;
}
.loader-modal::backdrop { background-color: rgba(0, 0, 0, .9); }

.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted #ccc;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted var(--exito-red);
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes rotationBack {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.social-media {
    margin: 16px auto 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-link {
    border-radius: 50%;
    max-width: max-content;
}

.social-media-link.facebook { margin-right: 12px; }
.social-media-link.linkedin { margin-left:  12px; }

.social-media-icon {
    width:  40px;
    height: 40px;
    transition: var(--def-transition);
    border-radius: 50%;
}
.social-media-icon.footer {
    width:  32px;
    height: 32px;
}

.social-media-icon.facebook {
    fill: var(--x-light);
    background-color: var(--exito-blue);
    border: 2px solid var(--x-light);
}

.social-media-link:hover .social-media-icon.facebook {
    fill: var(--exito-blue);
    background-color: var(--x-light);
    border: 2px solid var(--exito-blue);
}

.social-media-icon.linkedin {
    border-radius: 5px;
    fill: var(--x-light);
    background-color: var(--exito-blue);
    border: 2px solid var(--x-light);
}
.social-media-link:hover .social-media-icon.linkedin {
    fill: var(--exito-blue);
    background-color: var(--x-light);
    border: 2px solid var(--exito-blue);
}

/*-------------------------------------------------------------------------------------------------------------------*/
                                                    /* -- utils -- */
/*-------------------------------------------------------------------------------------------------------------------*/

/* --- padding --- */

.pt-xs { padding-top: var(--space-xs); }
.pt-s  { padding-top: var(--space-s);  }
.pt-m  { padding-top: var(--space-m);  }
.pt-l  { padding-top: var(--space-l);  }
.pt-xl { padding-top: var(--space-xl); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-s  { padding-bottom: var(--space-s);  }
.pb-m  { padding-bottom: var(--space-m);  }
.pb-l  { padding-bottom: var(--space-l);  }
.pb-xl { padding-bottom: var(--space-xl); }

.py-xs { padding-top: var(--space-s); padding-bottom: var(--space-xs); }
.py-s  { padding-top: var(--space-s); padding-bottom: var(--space-s);  }
.py-m  { padding-top: var(--space-m); padding-bottom: var(--space-m);  }
.py-l  { padding-top: var(--space-l); padding-bottom: var(--space-l);  }
.py-xl { padding-top: var(--space-l); padding-bottom: var(--space-xl); }

.px-xs { padding-left: var(--space-s); padding-right: var(--space-xs); }
.px-s  { padding-left: var(--space-s); padding-right: var(--space-s);  }
.px-m  { padding-left: var(--space-m); padding-right: var(--space-m);  }
.px-l  { padding-left: var(--space-l); padding-right: var(--space-l);  }
.px-xl { padding-left: var(--space-l); padding-right: var(--space-xl); }

.p-xs { padding: var(--space-xs); }
.p-s  { padding: var(--space-s);  }
.p-m  { padding: var(--space-m);  }
.p-l  { padding: var(--space-l);  }
.p-xl { padding: var(--space-xl); }

/* --- margin --- */

.mt-xs { margin-top: var(--space-xs); }
.mt-s  { margin-top: var(--space-s);  }
.mt-m  { margin-top: var(--space-m);  }
.mt-l  { margin-top: var(--space-l);  }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-s  { margin-bottom: var(--space-s);  }
.mb-m  { margin-bottom: var(--space-m);  }
.mb-l  { margin-bottom: var(--space-l);  }
.mb-xl { margin-bottom: var(--space-xl); }

.my-xs { margin-top: var(--space-s); margin-bottom: var(--space-xs); }
.my-s  { margin-top: var(--space-s); margin-bottom: var(--space-s);  }
.my-m  { margin-top: var(--space-m); margin-bottom: var(--space-m);  }
.my-l  { margin-top: var(--space-l); margin-bottom: var(--space-l);  }
.my-xl { margin-top: var(--space-l); margin-bottom: var(--space-xl); }

.mx-xs { margin-left: var(--space-s); margin-right: var(--space-xs); }
.mx-s  { margin-left: var(--space-s); margin-right: var(--space-s);  }
.mx-m  { margin-left: var(--space-m); margin-right: var(--space-m);  }
.mx-l  { margin-left: var(--space-l); margin-right: var(--space-l);  }
.mx-xl { margin-left: var(--space-l); margin-right: var(--space-xl); }

.m-xs { margin: var(--space-xs); }
.m-s  { margin: var(--space-s);  }
.m-m  { margin: var(--space-m);  }
.m-l  { margin: var(--space-l);  }
.m-xl { margin: var(--space-xl); }

#exitoEnvironmental, #exitoInstruments, #exitoMonitoring { scroll-margin-top: 48px; }
#formMessage { scroll-margin-top: 184px; }

.text-align-left   { text-align: left; }
.text-align-center { text-align: center; }
.text-align-right  { text-align: right; }

.fw-450 { font-weight: 450; }
.fw-550 { font-weight: 550; }

.pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

.no-tap-highlight { -webkit-tap-highlight-color: transparent; }
.text-decoration-none { text-decoration: none; }
.hidden { display: none !important; }
.invisible { opacity: 0; }
.select-none { user-select: none; }

.lock-body { overflow: hidden; }

.text-highlight-red { color: var(--exito-red); }
.text-highlight-red.large { font-size: 1.2em; }
.uppercase { text-transform: uppercase; }

/*-------------------------------------------------------------------------------------------------------------------*/
                             /* -- Mobile first approach using new breakpoints -- */
/*-------------------------------------------------------------------------------------------------------------------*/

@media (min-width: 375px) {}
@media (min-width: 480px) {}

@media (min-width: 576px) {
    .hero {
        --some: 40%;
        mask-image:
                linear-gradient(to top,   rgba(0,0,0,0), rgba(0,0,0,1) 20%),
                linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) var(--some)),
                linear-gradient(to left,  rgba(0,0,0,0), rgba(0,0,0,1) var(--some));
        mask-composite: intersect;
    }
    .hero-title-separator {
        width: 70px;
        margin: 25px auto;
    }
    .hero-description {
        margin: 20px auto 0 auto;
        font-size: 1.2em;
    }
}

@media (min-width: 768px) {
    .hero {
        --some: 40%;
        mask-image:
                linear-gradient(to top,   rgba(0,0,0,0), rgba(0,0,0,1) 20%),
                linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) var(--some)),
                linear-gradient(to left,  rgba(0,0,0,0), rgba(0,0,0,1) var(--some));
        mask-composite: intersect;
    }
    .hero-title { font-size: 3em; }
    .hero-description { font-size: 1.3em; }

    /*.navbar { grid-template-columns: repeat(3, 1fr); }*/
    /*.contact-us-link-top { display: block; }*/
    /*.navbar-links { display: flex; }*/
    /*.hamburger { display: none; }*/

    .swiper-pagination-buttons-container { justify-content: space-between; }
    .swiper-btn[class*="prev-btn-"] { display: block; }
    .swiper-btn[class*="next-btn-"] { display: block; }

    .input-section {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .footer-sections-container {
        display: flex;
        justify-content: space-evenly;
    }
    .footer-section {
        width: 100%;
        max-width: 250px;
    }

    .footer-separator.first { display: none; }
    .footer-separator:not(.footer-separator.bottom) {
        margin: auto 0;
        width: 2px;
        height: 340px;

        background: linear-gradient(180deg,
        rgba(30, 30, 30,  0) 0%,
        rgba(30, 30, 30, .8) 20%,
        rgba(30, 30, 30,  1) 40%,
        rgba(30, 30, 30,  1) 60%,
        rgba(30, 30, 30, .8) 80%,
        rgba(30, 30, 30,  0) 100%
        );
    }
    .footer-copyright-container { margin: 0; }
    .dev-signature-container { margin: 0; }
}

@media (min-width: 816px) {
    .navbar { grid-template-columns: repeat(3, 1fr); }
    .contact-us-link-top { display: block; }
    .navbar-links { display: flex; }
    .hamburger { display: none; }
}

@media (min-width: 992px) {
    .hero-title { font-size: 4em; }
    .hero-description { font-size: 1.4em; }
}

@media (min-width: 1036px) {}
@media (min-width: 1200px) {}

@media (hover: hover) {
    .navbar-logo-link:hover { box-shadow: var(--def-box-shadow); }
    .hamburger:hover svg .line { stroke: var(--exito-red); }

    .navbar-item:hover .navbar-submenu-container {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-item:hover .navbar-link-arrow-container { transform: rotate(180deg); }
    .navbar-item:hover .navbar-link { box-shadow: var(--def-box-shadow); }
    .navbar-submenu-link:hover {
        box-shadow: var(--def-box-shadow);
        color: var(--x-dark);
    }

    .contact-us-link-top:hover {
        background-color: var(--x-dark);
        color: var(--x-light);
    }
    .swiper-btn:hover .swiper-btn-icon { fill: var(--exito-red); }

    .back-btn:hover {
        background-color: var(--x-light);
        color: var(--x-dark);
    }
    .back-btn:hover .back-btn-icon { fill: var(--exito-red); }

    .section-link.red:hover {
        background-color: var(--x-light);
        color: var(--x-dark);
    }
    .section-link.blue:hover { background-color: var(--x-dark); }
    .section-link:hover .section-link-icon { fill: var(--exito-red); }

    .message-btn:hover { background-color: var(--x-dark); }
    .message-btn:hover .message-btn-icon { fill: var(--exito-red); }

    .side-menu-item:hover { box-shadow: var(--def-box-shadow); }

    .footer-contact-button:hover {
        background-color: var(--x-light);
        color: var(--x-dark);
    }
    .footer-address-link:hover {
        background-color: var(--x-light);
        color: var(--x-dark);
    }
    .footer-address-link:hover .footer-address-icon { fill: var(--exito-red); }

    .footer-content-title a:hover { color: var(--x-light); }
}