.hero-section {
    position: relative;
    height: 200px;
}

.hero-section::before {
    background: linear-gradient(270deg, #FFF 51.44%, rgba(255, 255, 255, 0.00) 100%);
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 70%;
    z-index: 2;
}

.hero-overlay {
    background: linear-gradient(90deg, #012C6C 0%, rgba(1, 44, 108, 0.00) 100%);
    margin-top: -100px;
    z-index: 2;
    position: relative;
    padding: 7px 0;
}

.hero-image {
    display: block;
    height: 200px;
    object-fit: cover;
}

.hero-title {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 65px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 65px */
}


.assistance {
    padding: 60px 0 30px;
}

.section-title {
    text-align: center;
    width: 100%;
    font-size: 45px;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    text-align: center;
    max-width: 730px;
    line-height: 140%;
    margin: 0 auto;
}

.support {
    padding: 30px 0;
}

.support-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.support-info {
    max-width: 445px;
}

.support-info-title {
    font-size: 22px;
    line-height: 130%;
}

.support-info-subtitle {
    margin: 10px 0 20px;
    font-size: 14px;
    line-height: 140%;
}

.support-info ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
    gap: 20px;
}

.support-info-item {
    width: 100%;
    display: block;
    width: 100%;
    padding-left: 12px;
    position: relative;
    font-size: 14px;
}

.support-info-item::before {
    height: 100%;
    width: 2px;
    content: '';
    background: #EC6F2A;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 0;
}

.support-contact {
    box-shadow: 10px 10px 50px 0px #0000001A;
    border-radius: 9px;
    background: #fff;
    padding: 30px 30px 60px;
}

.support-contact-title {
    color: #EC6F2A;
    font-size: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.support-contact-subtitle {
    margin: 0 auto 30px;
    font-size: 18px;
    text-align: center;
    max-width: 480px;
}

.support-contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
}

.support-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.support-contact-item a {
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sms-policy {
    padding: 30px 0;
}

.sms-policy__grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.sms-policy__block {
    background: #467190;
    padding: 10px;
}

.sms-policy__block_left {
    max-width: 445px;
    width: 100%;
}

.sms-policy__caption {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 15px;
}

.sms-policy__list {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sms-policy__list li {
    width: 100%;
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 140%;
}

.sms-policy__list kbd {
    font-weight: 700;
    background: #EC6F2A;
    border-radius: 20px;
    padding: 2px;
    font-family: 'Montserrat';
}

.sms-policy-insert {
    padding-left: 12px;
    position: relative;
    font-size: 14px;
}

.sms-policy-insert::before {
    position: absolute;
    left: 0;
    height: 100%;
    width: 2px;
    background: #EC6F2A;
    border-radius: 8px;
    content: '';
}

.immediate-assistance {
    margin: 30px 0 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 30%, rgba(70, 113, 144, 1) 100%);
}

.assistance-container {
    display: flex;
    position: relative;
    z-index: 10;
}

.assistance-content {
    padding: 10px 0;
    margin-right: 30px;
    max-width: 445px;
    width: 100%;

}

.assistance-title {
    font-size: 22px;
}

.assistance-text {
    margin: 10px 0 20px;
    font-size: 14px;
}

.btn-call {
    color: #fff;
    padding: 10px 33px;
    background: #EC6F2A;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
}

.btn-call b {
    text-decoration: underline;
    font-size: 14px;
    text-decoration-color: rgba(255, 255, 255, 0.432);
    font-weight: 600;
}

.assistance-image {
    background: #EC6F2A;
    width: 100%;
}

.assistance-image img {
    object-fit: cover;
    max-height: 180px;
    border-bottom-left-radius: 420px;
    display: flex;
        object-position: 0 20%;
}

.main-background {
    position: absolute;
    left: 0;
    bottom: 0;
}

main {
    padding-bottom: 150px;
    position: relative;
}



@media (max-width: 1100px) {
    .hero-title {
        font-size: 45px;
    }

    .section-title {
        font-size: 40px;
    }

    .support-grid {
        flex-wrap: wrap;
    }

    .support-info {
        max-width: 100%;
        order: 2;
    }

    .support-contact {
        order: 1;
    }

}

@media (max-width: 800px) {
    .section-title {
        font-size: 35px;
    }

    .section-description {
        font-size: 16px;
    }

    .support-info-title {
        font-size: 20px;
    }

    .support-contact-title {
        font-size: 30px;
    }

    .support-contact-subtitle {
        font-size: 16px;
    }

    .support-contact-item a {
        font-size: 18px;
    }

    .sms-policy__grid {
        flex-wrap: wrap;
    }

    .sms-policy__block_left {
        max-width: 100%;
    }

    .sms-policy__caption {
        font-size: 20px;
    }

    #assistance-title {
        font-size: 18px;
    }

    .assistance-text {
        font-size: 12px;
    }
}

@media (max-width: 650px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .support-contact-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .support-contact-subtitle {
        max-width: 100%;
        font-size: 14px;
    }

    .support-contact {
        padding: 15px 15px 30px;
    }

    .support-contact-items {
        gap: 10px;
    }

    .support-contact-item {
        gap: 8px;

    }

    .support-contact-item a {
        font-size: 14px;
    }

    .support-info-title {
        font-size: 18px;
    }

    main {
        padding-bottom: 100px;
    }

    .btn-call {
        padding: 6px 15px;
        font-size: 12px;
    }

    #assistance-title {
        margin-bottom: 10px;
    }

    .assistance-image {
        display: none;
    }
}

@media (max-width: 550px) {
    .support-contact-item a {
        gap: 6px;
        font-size: 12px;
    }

    .support-contact-item a svg {
        width: 15px;
        height: auto;
    }

    .sms-policy__list li {
        font-size: 12px;
    }

    .assistance {
        padding: 45px 0 20px;
    }

    .hero-title {
        font-size: 35px;
    }

    .hero-overlay {
        margin-top: -70px;
    }

    .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 14px;
    }
    .hero-section,.hero-image{
        height: 150px;
    }
        main {
        padding-bottom: 60px;
    }
}