* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: auto;
    background: #000000;
    color: #ffffff;
}
body.lock {
    overflow: hidden;
    height: 100vh;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {text-decoration: none;
}

.wrapper {
    max-width: 1920px;
    padding: 0 50px;
    margin: 0 auto;
    position: relative;
}
.burger {
    position: absolute;
    right: 20px;
    top: 20px;
    flex-wrap: wrap;
    background: none;
    border: none;
    display: none;
    gap: 5px;
    width: 24px;
}
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}
.burger.active span:first-child {
    transform: rotate(45deg);
    top: 7px;
    transition: all 0.3s;
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transition: all 0.3s;
}
.burger.active span:last-child {
    transform: rotate(-45deg);
    top: -7px;
    transition: all 0.3s;
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 60px;
}
.header_logo {
    height: 65px;
    width: auto;
}
.header_menu {
    width: 100%;
}
.header_menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}
.header_menu ul li a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
}
.header_menu ul li a:hover {
    text-decoration: underline;
}
.languages {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.line_1 {
    border-right: 1px solid #ffffff;
    height: 20px;
    margin-top: 6px;
}
.lang-btn {
    background: transparent;
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-btn.active {
    text-decoration: underline;
}
.btn-wrapper {
    padding: 0px;
    display: flex;
}
.header_btn {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #ffffff;
    background: #7A0923;
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s;
}
.header_btn:hover {
    background: #47090E;
    transition: all 0.3s;
}

.promo_bg {
    position: absolute;
    left: 0;
    z-index: -1;
    overflow: hidden;
    height: 100%;
    width: 100%;
    
}
.promo_bg img {
    object-position: center;
}
.promo_wrap {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo_title {
    font-family: 'Inter', sans-serif;
    font-size: 96px;
    font-weight: 900;
    max-width: 1220px;
    color: #E8E8E8;
}
.promo_button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo_btn {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    color: #ffffff;
    background: #000000;
    border: none;
    border-radius: 30px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s;
}
.promo_btn:hover {
    background: #ffffff;
    color: #000000;
    transition: all 0.3s;
}

.about_title {
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
}
.about_wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.about_wrap p {
    max-width: 1370px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}
.about {
    position: relative;
    margin-top: 160px;
}
.about_logo {
    margin-top: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.line-2 {
    border-bottom: 1px solid #78132B;
    width: 100%;
    left: 0;
    margin-top: 220px;
}

.services_title {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}
.services_wrap {
    padding: 40px 140px;
    display: block;
    max-width: 1340px;
    max-height: auto;
    margin: 0 auto;
    background: rgba(120, 0, 40, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 1px rgba(255,255,255,0.2);
}
.services_text {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #51061D;
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin: 20px;
}
.line-3 {
    border-bottom: 1px solid #78132B;
    width: 100%;
    left: 0;
    margin-top: 80px;
}

.contacts_title {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
}
.contacts_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    margin-left: 140px;
}
.contacts_info {
    display: flex;
    justify-content: center;
    align-items: right;
    max-width: 560px;
    flex-direction: column;
}
.form_question {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
}
.contacts_info p {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
}
.contacts_text {
    margin-top: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
}
.form_title {
    padding: 0px 100px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.form_group form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.form_group {
    margin: 0 auto;
    max-width: 500px;
    background: #78132B;
    border-radius: 60px;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
}
.submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 18px 85px;
    background: #000000;
    border-radius: 45px;
    max-width: 240px;
    border: none;
}
.submit_btn:hover {
    background: #ffffff;
    color: #000000;
    transition: all 0.3s;
    cursor: pointer;
}
.form_group input {
    color: #000000;
    background: #ffffff;
    padding-left: 20px;
    border-radius: 45px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    max-width: 400px;
    height: 52px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}
.form_group input::placeholder {
    color: #8B8B8B;
}

.map_bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 390px;
    z-index: -1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.footer_bg {
    position: absolute;
    max-height: 240px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    max-width: none;
}
.footer_wrap {
    margin-top: 480px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal_info {
    max-width: 380px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
}
.footer_VaPol {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.footer_menu ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}
.footer_menu ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    margin-top: 10px;
}
.footer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_logo img {
    height: 86px;
    width: auto;
}
.social_sites {
    max-width: 180px;
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.social_sites p, 
.social_sites a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin: 0;
    padding: 0;
}
.social_sites a {
    text-decoration: none;
    margin-bottom: 10px;
}
.social_sites a:hover {
    text-decoration: underline;
}
.social_icons {
    margin-top: 10px;
    max-width: 120px;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 20px;
}
.telegram, 
.whatsapp {
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease;
}
.whatsapp:hover,
.telegram:hover {
    opacity: 0.8;
}
.footer_offer {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin-left: 0;
    padding: 0;
}
.footer_offer a {
    color: white;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.footer_offer a:hover {
    opacity: 0.8;
}
.line-4 {
    border-right: 1px solid #ffffff;
    height: 12px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(6px);
}
.modal_content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    margin: 5% auto;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        inset 0 1px 2px rgba(255,255,255,0.4);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    color: white;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}
.close {
    color: #ffffff;
}
.close:hover {
    opacity: 0.7;
}
.modal_body {
    text-align: center;
    padding: 20px 0;
}
.modal_body h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}
.modal_body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal_body input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background: white;
    color: #333;
}
.modal_body input::placeholder {
    color: #8b8b8b;
}
.modal_body button {
    background: #fcfcfc;
    border: none;
    border-radius: 25px;
    color: rgb(0, 0, 0);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s ease;
}
.modal_body button:hover {
    background: #000000;
    color: #ffffff;
}


@media screen and (max-width: 1440px) {
    .wrapper {
        max-width: 1430px;
    }
    .promo_bg {
        max-height: 474px;
        width: 100%;
        max-width: none;
    }
    .promo_title {
        font-size: 76px;
        max-width: 930px;
    }
    .about_wrap p {
        max-width: 1150px;
        font-size: 26px;
    }
    .about_logo {
        margin-top: 70px;
        max-height: 290px;
        max-width: auto;
    }
    .map_bg {
        max-height: 292px;
        width: 100%;
        max-width: none;
    }
    .footer_bg {
        max-height: 240px;
        width: 100%;
        max-width: none;
    }
    .form_group {
        margin-right: 100px;
    }
    .footer_wrap {
        margin-top: 390px;
    }
}

@media screen and (max-width: 1300px) {
    .wrapper {
        max-width: 1020px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .promo_bg {
        width: 100%;
        max-width: none;
        max-height: 400px;
    }
    .header_logo img {
        height: 50px;
        width: auto;
    }
    .header_menu ul {
        gap: 20px;
    }
    .header_menu ul li a {
        font-size: 20px;
    }
    .languages {
        gap: 10px;
    }
    .line_1 {
        height: 16px;
        margin-top: 6px;
    }
    .lang-btn {
        font-size: 20px;
    }
    .header_btn {
        font-size: 20px;
        line-height: 24px;
        padding: 14px 28px;
    }
    .promo_title {
        font-size: 66px;
        max-width: 820px;
    }
    .promo_btn {
        font-size: 24px;
        line-height: 29px;
        padding: 18px 32px;
    }
    .about_title {
        font-size: 30px;
    }
    .about_wrap p {
        max-width: 990px;
        font-size: 24px;
    }
    .about_logo {
        margin-top: 60px;
        max-height: 260px;
        max-width: auto;
    }
    .line-2 {
        margin-top: 200px;
    }
    .services_title {
        font-size: 30px;
    }
    .services_wrap {
        padding: 30px 60px;
        max-width: 920px;
    }
    .services_text {
        padding: 8px 16px;
        font-size: 20px;
    }
    .contacts_title {
        font-size: 30px;
    }
    .contacts_wrap{
        margin-left: 0;
    }
    .contacts_info {
        max-width: 420px;
        margin-left: 20px;
    }
    .form_question {
        font-size: 22px;
    }
    .contacts_info p {
        font-size: 22px;
    }
    .contacts_text {
        margin-top: 10px;
        font-size: 22px;
    }
    .form_title {
        padding: 0px 60px;
        font-size: 20px;
    }
    .form_group {
        max-width: 460px;
        border-radius: 45px;
        min-height: 420px;
        padding: 10px 30px;
    }
    .submit_btn {
        margin-top: 40px;
        font-size: 18px;
        padding: 12px 50px;
        max-width: 150px;
    }
    .form_group input {
        padding-left: 12px;
        font-size: 12px;
        max-width: 360px;
        height: 35px;
        margin-bottom: 15px;
    }
    .map_bg {
        width: 100%;
        max-width: none;
        max-height: 240px;
    }
    .footer_wrap {
        margin-top: 340px;
    }
    .footer_bg {
        width: 100%;
        max-width: none;
        max-height: 220px;
    }
    .legal_info {
        max-width: 300px;
        font-size: 14px;
        margin-top: 10px;
    }
    .footer_VaPol {
        gap: 15px;
    }
    .footer_menu ul li a {
        font-size: 16px;
    }
    .footer_menu ul{
        gap: 15px;
    }
    .footer_logo img {
        height: 60px;
    }
    .social_sites {
        max-width: 160px;
        margin-top: 30px;
    }
    .social_sites p, 
    .social_sites a {
        font-size: 14px;
        font-weight: 300;
    }
    .social_icons {
        margin-top: 10px;
        max-width: 100px;
    }
    .telegram, 
    .whatsapp {
        width: 30px;
        height: 30px;
    }
    .footer_offer {
        margin-top: 8px;
        gap: 16px;
        margin-left: 120px;
    }
    .footer_offer a {
        font-size: 14px;
    }
    .line-4 {
        border-right: 1px solid #ffffff;
        height: 10px;
    }
}

@media screen and (max-width: 992px) {
    .wrapper {
        max-width: 760px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .header_logo img {
        height: 46px;
    }
    .header_menu ul {
        gap: 12px;
    }
    .header_menu ul li a {
        font-size: 18px;
    }
    .languages {
        gap: 6px;
    }
    .line_1 {
        height: 16px;
        margin-top: 6px;
    }
    .lang-btn {
        font-size: 18px;
    }
    .header_btn {
        font-size: 18px;
        line-height: 22px;
        padding: 10px 20px;
    }
    .promo_bg {
        width: 100%;
        max-width: none;
        max-height: 300px;
    }
    .promo_title {
        font-size: 50px;
        max-width: 640px;
    }
    .promo_btn {
        font-size: 20px;
        line-height: 24px;
        padding: 18px 32px;
    }
    .about_title {
        font-size: 28px;
    }
    .about_wrap p {
        max-width: 670px;
        font-size: 22px;
    }
    .about_logo img {
        margin-top: 100px;
        max-height: 300px;
        max-width: auto;
    }
    .line-2 {
        margin-top: 120px;
    }
    .services_title {
        font-size: 28px;
    }
    .services_wrap {
        padding: 30px 30px;
        max-width: 700px;
    }
    .services_text {
        padding: 8px 16px;
        font-size: 16px;
    }
    .contacts_title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    .contacts_wrap {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0px;
    }
    .contacts_info {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 400px;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .form_question {
        font-size: 18px;
    }
    .contacts_info p {
        font-size: 18px;
    }
    .contacts_text {
        margin-top: 20px;
        font-size: 18px;
    }
    .form_group {
        max-width: 460px;
        border-radius: 45px;
        min-height: 420px;
        padding: 40px 80px;
        margin: 0 auto;
    }
    .form_title {
        padding: 0px 30px;
        font-size: 22px;
    }
    .submit_btn {
        margin-top: 40px;
        font-size: 20px;
        padding: 14px 50px;
        max-width: 220px;
        margin-bottom: 20px;
    }
    .form_group input {
        padding-left: 12px;
        font-size: 14px;
        max-width: 400px;
        height: 46px;
        margin-bottom: 15px;
    }
    .contacts_info p,
    .contacts_text,
    .form_question {
        text-align: center;
    }
    .map_bg {
        width: 100%;
        max-width: none;
        max-height: 220px;
    }
    .footer_wrap {
        margin-top: 320px;
    }
    .footer_bg {
        width: 100%;
        max-width: none;
        max-height: 185px;
    }
    .legal_info {
        max-width: 180px;
        font-size: 12px;
        margin-top: 5px;
    }
    .footer_VaPol {
        gap: 15px;
    }
    .footer_menu ul li a {
        font-size: 12px;
    }
    .footer_menu ul{
        gap: 12px;
        margin-top: 0px;
    }
    .footer_logo img {
        height: 44px;
    }
    .social_sites {
        max-width: 130px;
        margin-top: 10px;
    }
    .social_sites p, 
    .social_sites a {
        font-size: 12px;
    }
    .telegram, 
    .whatsapp {
        width: 30px;
        height: 30px;
    }
    .footer_offer {
        margin-top: 8px;
        gap: 10px;
    }
    .footer_offer a {
        font-size: 12px;
    }
    .line-4 {
        height: 10px;
    }
}

@media screen and (max-width: 760px) {
    html, 
    body {
        overflow-x: hidden;
    }
    body {
        margin: 0;
    }
    .wrapper {
        max-width: 375px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .header_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    .burger {
        display: flex;
        z-index: 1001;
        color: #ffffff;
    }
    .burger.active {
        position: fixed;
        margin-top: 40px;
    }
    .burger span {
        width: 24px;
        height: 2px;
        background: #fff;
    }
    .header_logo img {
        order: 2;
        height: 54px;
        margin-top: 40px;
    }
    .languages {
        order: 3;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    .line_1 {
        height: 14px;
        margin-top: 6px;
    }
    .lang-btn {
        font-size: 16px;
    }
    .header_menu {
        background: #000000;
        padding: 130px 30px 24px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        display: flex;
        flex-wrap: wrap;
        transform: translateX(-1000%);
        transition: all 0.3s;
    }
    .header_menu.active {
        transform: translateX(0%);
        transition: all 0.3s;
    }
    .header_menu ul {
        display: block;
        justify-content: center;
        gap: 0px;
        flex-wrap: wrap;
    }
    .header_menu ul li {
        width: 100%;
        max-height: 25px ;
        margin-bottom: 20px;
    }
    .header_menu ul li a {
        font-size: 18px;
    }
    .btn-wrapper {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    .header_btn {
        font-size: 16px;
        line-height: 19px;
        padding: 12px 26px;
    }
    .promo_bg {
        width: 100%;
        max-width: none;
        max-height: 210px;
    }
    .promo_wrap {
        margin-top: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .promo_title {
        font-size: 28px;
        max-width: 350px;
    }
    .promo_btn {
        margin-top: 30px;
        font-size: 18px;
        line-height: 22px;
        padding: 12px 30px;
    }
    .about_title {
        font-size: 26px;
    }
    .about_wrap p {
        max-width: 350px;
        font-size: 16px;
    }
    .about {
        margin-top: 80px;
    }
    .about_logo img {
        margin-top: 170px;
        max-height: 200px;
        max-width: auto;
    }
    .line-2 {
        margin-top: 120px;
    }
    .services_title {
        margin-top: 60px;
        font-size: 26px;
    }
    .services_wrap {
        padding: 20px 20px;
        max-width: 350px;
        border-radius: 45px;
    }
    .services_text {
        padding: 10px 20px;
        font-size: 14px;
        margin: 10px;
    }
    .contacts_title {
        margin-top: 60px;
        font-size: 26px;
        margin-bottom: 60px;
    }
    .contacts_wrap {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0px;
    }
    .contacts_info {
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 350px;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .form_question {
        font-size: 16px;
    }
    .contacts_info p {
        font-size: 16px;
    }
    .contacts_text {
        margin-top: 10px;
        font-size: 16px;
    }
    .form_title {
        padding: 0px 30px;
        font-size: 18px;
    }
    .form_group {
        max-width: 340px;
        border-radius: 30px;
        min-height: 420px;
        padding: 10px 30px;
    }
    .submit_btn {
        margin-top: 30px;
        font-size: 16px;
        padding: 14px 50px;
        max-width: 220px;
        margin-bottom: 20px;
    }
    .form_group input {
        padding-left: 12px;
        font-size: 10px;
        min-width: 160px;
        height: 40px;
        margin-bottom: 15px;
    }
    .contacts_info p,
    .contacts_text,
    .form_question {
        text-align: center;
    }
    .map_bg {
        width: 100%;
        max-width: none;
        max-height: 200px;
    }
    .footer_bg {
        width: 100%;
        max-width: none;
        max-height: 390px;
    }
    .footer_wrap {
        margin-top: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .legal_info {
        max-width: 350px;
        font-size: 12px;
        margin-top: 10px;
    }
    .footer_VaPol {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer_menu ul li a {
        font-size: 12px;
    }
    .footer_menu ul{
        display: flex;
        list-style: none;
        gap: 12px;
        margin: 0;
        padding: 0;
    }
    .footer_logo img {
        height: 44px;
    }
    .social_sites {
        max-width: 300px;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social_sites p, 
    .social_sites a {
        font-size: 12px;
    }
    .social_icons {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .telegram, 
    .whatsapp {
        width: 30px;
        height: 30px;
    }
    .footer_offer {
        margin-left: 0;
        margin-top: 8px;
        display: flex;
        justify-content: center;
        gap: 4px;
        align-items: center;
    }
    .footer_offer a {
        font-size: 10px;
    }
    .line-4 {
        height: 9px;
    }
}