.hero_section{
    display: flex;
    max-width: 1440px;
    margin: auto;
    flex-direction: column;
    position: relative;
}

.hero_background{
    display: flex;
    position: absolute;
    width: 100vw;
    max-width: 1440px;
    height: 49.653vw;
    max-height: 715px;
    margin-top: 10vw;
    left: 50%;
    transform: translateX(-50%);
}

.header_container{
    display: flex;
    padding: 16px 32px;
    max-height: 120px;
    box-sizing: border-box;
}

.header{
    display: flex;
    width: 94.444vw;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
}

.header a{
    max-height: 48px;
}

.sbit{
    height: 48px;
}

.sbit_mobile{
    display: none;
}

.navbar{
    display: flex;
    gap: 3.333vw;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    color: #545454;
}

.navbar_mobile, .menu_mobile{
    display: none;
}

.options{
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.options div a{
    border-bottom: 0.139vw solid transparent;
}

.options div a:hover{
    color: #ba282d;
    border-color: #ba282d;
}

.clicked{
    color: #ba282d;
}

.language{
    display: flex;
    align-items: flex-start;
}

.pl{
    color: #ba282d;
}

.language img{
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .hero_background{
        width: 100%;
        height: 100%;
        max-height: none;
        margin-top: 125px;
        background-repeat: no-repeat;
    }

    .header_container{
        padding: 36px 16px;
        max-height: none;
    }

    .header{
        width: 100%;
    }

    .header a{
        display: flex;
        height: 48px;
        align-items: center;
    }

    .header .button{
        display: none;
    }
    
    .sbit{
        display: none;
    }

    .sbit_mobile{
        display: initial;
        width: 37px;
        height: 36px;
    }

    .navbar{
        display: none;
    }

    .navbar_mobile{
        display: flex;
        height: 48px;
        width: 48px;
        align-items: center;
        justify-content: center;
    }

    .menu_mobile{
        display: flex;
        flex-direction: column;
        position: fixed;
        overflow-y: scroll;
        background-color: #f8f8f8;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 3;
    }

    .menu_mobile .mm_square{
        position: absolute;
        max-width: 420px;
        transform: rotate(55deg) translate(35vw, -80vw);
    }

    .mm_container{
        display: flex;
        flex-direction: column;
        z-index: 0;
        padding: 0 16px;
        gap: 48px;
    }

    .mm_top{
        display: flex;
        justify-content: space-between;
        padding: 36px 0;  
    }

    .mm_top a{
        display: flex;
        height: 48px;
        align-items: center;
    }

    .mm_logo{
        width: 37px;
        height: 36px;
        justify-content: center;
    }

    .mm_close{
        width: 48px;
        height: 48px;
    }

    .mm_logo img{
        width: 100%;
        height: 100%;
    }

    .mm_bottom{
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .mm_sites{
        display: flex;
        flex-direction: column;
        gap: 32px;
        font-size: 31px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.31px;
    }

    .mm_sites a{
        color: #202020;
    }

    .mm_contact{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mm_contact img{
        width: 24px;
        height: 24px;
    }

    .mm_info{
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-weight: 700;
    }

    .mm_red{
        color: #BA282D;
        font-size: 16px;
    }

    .mm_phone{
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
        color: #202020;
    }

    .navbar_mobile img{
        width: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 1440px) {    
    .hero_background{
        margin-top: 144px;
    }

    .navbar{
        gap: 48px;
        font-size: 16px;
    }

    .options{
        gap: 32px;
    }

    .options div a{
        border-width: 2px;
    }
}