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

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

:root {
    --red_text: #D91212;
    --black_text: #000000;
}

header {
    padding: 0 30px;
    position: relative;

    @media (max-width: 767px) {
        padding: 0 20px;
    }

    a.brand {
        font-family: 'Onest', sans-serif;
        font-style: normal;
        font-weight: 900;
        font-size: 20px;
        line-height: 145%;
        letter-spacing: -0.005em;
        color: #000000;
        text-decoration: none;

        @media (max-width: 575px) {
            font-size: 16px;
        }
    }

    .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 500px;

        a {
            white-space: pre;
        }

        @media (max-width: 991px) {
            display: none;
        }
    }

    .hamburger {
        display: none;
        cursor: pointer;

        @media (max-width: 991px) {
            display: block;
        }


    }

    .mobile_menu {
        display: none;
        height: 0;
    }

    .mobile_menu.active {
        display: none;

        @media (max-width: 991px) {
            display: flex;
            flex-direction: column;
            position: absolute;
            left: 0;
            top: 67px;
            transition: .5s ease all;
            -webkit-transition: .5s ease all;
            -moz-transition: .5s ease all;
            -ms-transition: .5s ease all;
            -o-transition: .5s ease all;
            background-color: white;
            width: 100%;
            height: auto;
            padding: 0 30px 30px 30px;
            z-index: 2;
        }

        li {
            list-style: none;
        }

        a {
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 145%;
            letter-spacing: -0.005em;
            color: #000000;
            text-decoration: none;
        }

        ul {
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px 0;
            margin-bottom: 10px;
        }

        a.login {
            background: linear-gradient(90deg, #2D9D84 0%, #D00A0B 0.28%, #FF5858 98.7%, #FF1415 100%);
            text-decoration: none;
            font-family: 'Onest', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 145%;
            letter-spacing: -0.005em;
            color: #FFFFFF;
            padding: 2px 16px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
            width: fit-content;
        }

    }

    a.login {
        background: linear-gradient(90deg, #2D9D84 0%, #D00A0B 0.28%, #FF5858 98.7%, #FF1415 100%);
        text-decoration: none;
        font-family: 'Onest', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: -0.005em;
        color: #FFFFFF;
        padding: 2px 16px;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }

    .nav {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    ul#menu-main-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 370px;
        gap: 0 32px;

        li {
            list-style: none;
        }

        a {
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 145%;
            letter-spacing: -0.005em;
            color: #000000;
            text-decoration: none;

        }

        li.active a {
            font-weight: 700;
            text-decoration: underline;
        }
    }

}


h1 {
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #000000;

    @media (max-width: 1200px) {
        font-size: 50px;
    }

    @media (max-width: 1024px) {
        font-size: 40px;
    }

    @media (max-width: 767px) {
        font-size: 35px;
    }
}

h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 120%;
    color: #000000;

    @media (max-width: 1200px) {
        font-size: 40px;
    }

    @media (max-width: 1024px) {
        font-size: 35px;
    }

    @media (max-width: 767px) {
        font-size: 30px;
    }

}

h3 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: black;

    @media (max-width: 767px) {
        font-size: 20px;
    }

}

p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgba(0, 0, 0, 0.55);

    @media (max-width: 767px) {
        font-size: 16px;
    }
}

.red_btn {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    padding: 12px 16px;
    background: linear-gradient(180deg, #D91212 0%, #FED9D9 100%);
    border: 1px solid #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    display: block;
    width: fit-content;
}

.white_btn {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    padding: 12px 16px;
    background: white;
    border: 1px solid #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    display: block;
    width: fit-content;
}


.tranaparent_btn {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.group_btn {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 30px;

    @media (max-width: 1200px) {
        padding: 70px 30px;
    }

    @media (max-width: 767px) {
        padding: 50px 20px;
    }
}


.flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
    display: flex;
}

.red_text {
    color: var(--red_text);
}

img {
    max-width: 100%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.hidden {
    display: none;
    visibility: hidden;
}

footer {
    padding: 100px 30px;
    background: url('../../assets/img/global/footer_bg.png')no-repeat center bottom/cover;
    position: relative;
    border-top: 1px solid rgb(90, 90, 90);

    @media (max-width: 1200px) {
        padding: 70px 30px;
    }

    @media (max-width: 767px) {
        padding: 50px 20px;
    }

    .menu {
        display: flex;
        align-items: start;
        gap: 24px 0;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        z-index: 2;

        >div {
            width: 130px;
        }
    }

    .flex {
        gap: 30px;

        >div {
            width: calc(50% - 15px);

            @media (max-width: 767px) {
                width: 100%;
                max-width: 100%;
            }
        }
    }

    a {

        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: -0.005em;
        color: rgba(0, 0, 0, 0.55);
        text-decoration: none;

        @media (max-width: 767px) {
            color: white;
        }
    }

    h3 {
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: -0.005em;
        color: #000000;
        margin-bottom: 24px;

        @media (max-width: 767px) {
            color: white;
        }
    }

    h2 {

        font-family: 'Onest', sans-serif;
        font-style: normal;
        font-weight: 900;
        font-size: 24px;
        line-height: 145%;
        letter-spacing: -0.02em;
        color: #000000;
        margin-block-end: 8px;
    }

    li {
        list-style: none;
        margin-bottom: 8px;
    }

    li:last-of-type {
        margin-bottom: 0;
    }

    .footer_content {
        max-width: 562px;
        position: relative;
        z-index: 2;

        p {
            margin-bottom: 40px;
        }

        .soc_med {
            display: flex;
            align-items: center;
            gap: 0 24px;
            margin-bottom: 40px;
        }

        .email {
            display: flex;
            align-items: center;
            gap: 0 15px;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            background: #FFFFFF;
            border: 1px solid #D91212;
            max-width: 390px;
            padding: 13px;
            justify-content: space-between;

            input {
                border: none;
            }

        }

    }

    &::before {
        content: "";
        background: url('../../assets/img//global/footer_buble.png')no-repeat center bottom;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 200px;
        left: 0;

        @media (max-width: 767px) {
            background-color: #d91212;
            height: 273px;
        }

        @media (max-width: 430px) {
            height: 490px;
        }
    }

}

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