* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --font-family: 'Inter', sans-serif;
    --color-primary-blue: #028090;
    /* --color-primary-light-blue:#99DDD3; */
    --color-primary-light-blue: #E6F7F5;
    --color-primary-hover-blue: #006c7b;
    --color-text-gray: #6B7C78;
    --color-text-darkblue: #1F2D3D;
    --color-accent-blue: #00A896;
    --color-text-blue: #99DDD3;
    --color-text-blue-2: #CCEEE9;
    --color-footer-blue: #033B52;
    --color-faq-bg: #E6F6F4;
    --color-star-gold: #FFCD29;
    --color-timeslot-border: #028090;
    --color-timeslot-bg: #02809026;
    --color-timeslot-bg-hover: #02809042;



    --color-secondary: #50E3C2;
    --color-background: #F5F5F5;
    --color-text: #333333;
    --color-accent: #FF6F61;
    --color-muted: #999999;
}

.cursor-pointer {
    cursor: pointer;
}

/* BACKGROUND COLORS */

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

.bg--primary-lightblue {
    background-color: var(--color-primary-light-blue);
}

.bg--footer-blue {
    background-color: var(--color-footer-blue);
    font-family: var(--font-family);
}

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

/* TEXT COLORS */

.text--gray {
    color: var(--color-text-gray);
}

.text--accent-blue {
    color: var(--color-accent-blue);
}

.text--gastro-blue {
    color: var(--color-text-blue);
}

.text--gastro-blue-2 {
    color: var(--color-text-blue-2);
}

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

.text-star-gold {
    color: var(--color-star-gold);
}

/* FONT SIZES */
.fs--12 {
    font-size: 12px;
}

.fs--14 {
    font-size: 14px;
}

.fs--48 {
    font-size: clamp(28px, calc(1.5rem + 3vw), 48px);
}

.fs--72 {
    /* font-size: calc(2.5rem + 1.5vw) !important; */
    /* font-size: 21px; */
    font-size: clamp(21px, calc(1.3rem + 3vw), 72px);
}

.fs--74 {
    /* font-size: calc(2.75rem + 1.5vw) !important; */
    /* font-size: clamp(18px, calc(1.1rem + 3.25vw), 2.75rem) !important; */
    font-size: clamp(21px, calc(0.6rem + 4vw), 72px);


}

/* FONTS */

.font--inter {
    font-family: var(--font-family);
}

/* PADDING SPACING */

.pt--6 {
    padding-top: 5.5rem;
}

/* WIDTHS */

.w--15 {
    width: 20% !important;
}

.w--35 {
    width: 35% !important;
}

.w--60 {
    width: 69% !important;
}

.w--90 {
    width: 80% !important;
}


@media (min-width: 992px) {
    .w-lg-35 {
        width: 35% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-65 {
        width: 65% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }
}

@media (min-width: 1200px) {
    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-65 {
        width: 65% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }
}

@media (min-width:424px) {
    .flex-xs-row {
        flex-direction: row !important;
    }

    .w--xs-75 {
        width: 75% !important;
    }
}


/* OTHER CUSTOM CLASSES */

.ls--1-5 {
    letter-spacing: 1.5px;
}

.ls--2 {
    letter-spacing: 2px;
}

.gap--6 {
    gap: 6rem;
}

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

.start-12 {
    left: 0% !important;
}

@media (min-width: 1100px) {
    .start-12 {
        left: 12% !important;
    }
}

.m-sm {
    margin: 0.2rem;
}