/* IMPORT CUSTOM WEB COMPONENTS */
@import "css/design-system/button.css";

/* IMPORT VARIABLES */
@import "css/variables.css";
@import "css/components/navbar.css";
@import "css/components/carousel.css";
@import "css/animations/animations.css";
@import "css/components/cookie-modal.css";

/* IMPORT PAGE STYLES */

    /* Page styles will be imported dynamically based on the current page from the 'router-outlet' */

/* OUTLET CONTAINER ANIMATION */
#outlet {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

#outlet.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOVE THESE TO THEIR PLACES */


.no-transition .carousel-item {
    transition: none !important;
}
.no-transition .carousel-inner {
    transition: none !important;
}

.divider {
    width: 175px;
    height: 8px;
    background-color: #FCA37C;
    border-radius: 16px;
}

.button-line {
    background-color: #FCA37C;
    width: 32px;
    height: 2px;
    display: none;

    position: absolute;
    right: 0;
    bottom: 50%;
    transform: translate(100%, 50%);
    z-index: 1;
}

@media (min-width: 992px) {
    .button-line {
        display: block;
    }
}

.sections-arrow-wrapper {
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sections-arrow-wrapper.disabled {
    display: none;
}

.sections-arrow {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.references {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(11px, 2vw, 12px);
    color: #053252;
}

.helvetica {
    font-family: Helvetica, Arial, sans-serif;
}

.open-sans {
    font-family: "Open Sans", Arial, sans-serif;
}

.fs-30 {
    font-size: clamp(22px, 4vw, 30px);
}

.fs-28 {
    font-size: clamp(21px, 3.8vw, 28px);
}

.fs-26 {
    font-size: clamp(20px, 3.5vw, 26px);
}

.fs-22 {
    font-size: clamp(18px, 3vw, 22px);
}

.fs-20 {
    font-size: clamp(17px, 2.8vw, 20px);
}

.fs-18 {
    font-size: clamp(16px, 2.5vw, 18px);
}

.fs-16 {
    font-size: clamp(14px, 2.2vw, 16px);
}

.fs-12 {
    font-size: clamp(11px, 2vw, 12px);
}


.text-blue {
    color: #053252;
}

.text-orange {
    color: #FF8141;
}