/**************************************************************************************/
/*
     Fonts
    
 * Font Mapping Explanation:
 * 
 * In this stylesheet, the following font-weight values correspond to specific Montserrat fonts as used in the Figma design:
 * 
 * font-weight: 800;  Montserrat-ExtraBold
 * font-weight: 700;  Montserrat-Bold
 * font-weight: 600;  Montserrat-SemiBold 
 * font-weight: 500;  Montserrat-Medium
 * font-weight: 400;  Montserrat-Regular
 *
 * Ensure to use the appropriate font-weight to match the design specifications from Figma.

*/
/**************************************************************************************/

@font-face {
    font-family: 'Montserrat';
    src: url('../../main-2024/font/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../main-2024/font/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../main-2024/font/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../main-2024/font/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../main-2024/font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
}


/**************************************************************************************/
/*
    Reset
*/
/**************************************************************************************/
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, dfn, del, p, blockquote, fieldset, input, textarea, select, article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, button, canvas, video {
    margin: 0;
    padding: 0;
}

/**************************************************************************************/
/*
    Desktop Global
*/
/**************************************************************************************/

:root {
    --amenida-dark-green: #004C45;
    --amenida-green: #008271;
    --amenida-grey: #7E858B;
    --amenida-dark-grey: #354B46;
    --amenida-light-green: #48A780;
    --amenida-white: #FFFFFF;
}

* {
    transition: all 0.2s ease-in;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-rendering: optimizeLegibility !important;
    color-rendering: optimizeQuality !important;
    -webkit-font-smoothing: antialiased !important;
    scroll-behavior: smooth !important;
}

.wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto;
    padding: 0px 84px;
}

body {
}

main {
}

h1 {
    color: var(--amenida-white);
    font-family: Montserrat;
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 52px */
    letter-spacing: 2.6px;
}

h2 {
    color: var(--amenida-white);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.05em;
}

p {
    color: var(--Dark, #242425);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    letter-spacing: 0.4px;
}

a, button, .button {
    cursor: pointer !important;
}

.green-button {
    background: var(--amenida-green);
    color: var(--amenida-white);
    border: 1px solid var(--amenida-white);
    padding: 20px 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 111.111% */
    letter-spacing: 0.9px;
}

    .green-button:hover {
        background: var(--amenida-light-green);
        cursor: pointer;
    }

.whith-button {
    background: var(--amenida-white);
    color: var(--amenida-green);
    border: 2px solid var(--amenida-green);
    padding: 20px 30px;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

    .whith-button:hover {
        background: linear-gradient(0deg, rgba(72, 167, 128, 0.20) 0%, rgba(72, 167, 128, 0.20) 100%), var(--amenida-white);
        cursor: pointer;
    }

.FAQ-button {
    background: var(--amenida-white);
    color: var(--amenida-green);
    border: 2px solid var(--amenida-green);
    border-radius: 50px;
    padding: 20px 30px;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.8px;
}

    .FAQ-button:hover {
        background: linear-gradient(0deg, rgba(72, 167, 128, 0.20)0%, rgba(72, 167, 128, 0.20)100%), var(--amenida-white);
        cursor: pointer;
    }

/* List Styles */
ul, ol {
    color: var(--Dark, #333);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.32px;
}

button.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F3F3F3;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    z-index: 70;
    border: none;
    display: none;
    transition: none;
}

    button.back-to-top img {
        width: 24px;
        height: 24px;
    }

    button.back-to-top:hover {
        background: #008271;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    }

        button.back-to-top:hover img {
            filter: brightness(0) saturate(100%) invert(98%) sepia(6%) saturate(47%) hue-rotate(7deg) brightness(114%) contrast(100%);
            /* width: 24px; */
            /* height: 24px; */
        }

@media (min-width: 1440px) {

    .wrapper {
        width: 100%;
        max-width: 100.00vw;
        margin: 0.00vw auto;
        padding: 0.00vw 5.83vw;
    }

    body {
    }

    main {
    }

    h1 {
        color: var(--amenida-white);
        font-family: Montserrat;
        font-size: 3.61vw;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 3.61vw */
        letter-spacing: 0.18vw;
    }

    h2 {
        color: var(--amenida-white);
        font-family: Montserrat;
        font-size: 1.67vw;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0.05em;
    }

    p {
        color: var(--Dark, #242425);
        font-family: Montserrat;
        font-size: 1.39vw;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 1.94vw */
        letter-spacing: 0.03vw;
    }

    a, button, .button {
        cursor: pointer !important;
    }

    .green-button {
        background: var(--amenida-green);
        color: var(--amenida-white);
        border: 0.07vw solid var(--amenida-white);
        padding: 1.39vw 2.08vw;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Montserrat';
        text-transform: uppercase;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.39vw; /* 111.111% */
        letter-spacing: 0.06vw;
    }

        .green-button:hover {
            background: var(--amenida-light-green);
            cursor: pointer;
        }

    .whith-button {
        background: var(--amenida-white);
        color: var(--amenida-green);
        border: 0.14vw solid var(--amenida-green);
        padding: 1.39vw 2.08vw;
        font-size: 1.11vw;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.06vw;
        text-transform: uppercase;
    }

        .whith-button:hover {
            background: linear-gradient(0deg, rgba(72, 167, 128, 0.20) 0%, rgba(72, 167, 128, 0.20) 100%), var(--amenida-white);
            cursor: pointer;
        }

    .FAQ-button {
        background: var(--amenida-white);
        color: var(--amenida-green);
        border: 0.14vw solid var(--amenida-green);
        border-radius: 3.47vw;
        padding: 1.39vw 2.08vw;
        font-size: 1.11vw;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.06vw;
    }

        .FAQ-button:hover {
            background: linear-gradient(0deg, rgba(72, 167, 128, 0.20)0%, rgba(72, 167, 128, 0.20)100%), var(--amenida-white);
            cursor: pointer;
        }

    /* List Styles */
    ul, ol {
        color: var(--Dark, #333);
        font-family: Montserrat;
        font-size: 1.11vw;
        font-style: normal;
        font-weight: 400;
        line-height: 180%; /* 2.00vw */
        letter-spacing: 0.02vw;
    }

    button.back-to-top {
        position: fixed;
        bottom: 2.22vw;
        right: 2.22vw;
        width: 3.33vw;
        height: 3.33vw;
        border-radius: 50%;
        background: #F3F3F3;
        box-shadow: 0.00vw 0.14vw 0.69vw 0.00vw rgba(0, 0, 0, 0.10);
        z-index: 70;
        border: none;
    }

        button.back-to-top img {
            width: 1.4vw;
            height: 1.4vw;
        }

        button.back-to-top:hover {
            background: #008271;
            box-shadow: 0.00vw 0.14vw 0.69vw 0.00vw rgba(0, 0, 0, 0.10);
        }

            button.back-to-top:hover img {
                filter: brightness(0) saturate(100%) invert(98%) sepia(6%) saturate(47%) hue-rotate(7deg) brightness(114%) contrast(100%);
            }
}
/*desktop style*/
@media (max-width: 1440px) {
    .wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* Tablet Styles */
@media (max-width: 1040px) {

    .subhead {
        font-size: 25px;
    }

    h1 {
        font-family: Montserrat;
        font-size: 52px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 52px */
        letter-spacing: 2.6px;
    }

    h2 {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 33.6px */
        letter-spacing: 0.48px
    }
}


/* Mobile Styles */
@media (max-width: 834px) {
    .green-button {
    }
}
