:root {
    --main-color: #33615e;
    --bg-second-color: #ECEBEC;
    --font-color: #fff;
    --second-font-color: #101010;
    --sticky-below: rgba(51,97,94,0.9);
    --btn-color: #393939;
    --accent-color: #bda26d;
    --two-accent-color: #053331;
    --b-radius: 8px;
}

.logo {
    width: 70px;
}

.vector-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 16px;
}

.vector-logo {
    width: 47px;
}

.vector-logo-text {
    font-size: 15px;
    color: #00cfe7;
    font-weight: 500;
}

.steklo-logo {
    width: 52px;
}

.steklo-wrap {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 2) {

    .logo {
        width: 70px;
    }
    .vector-logo {
        width: 47px;
    }
    .steklo-logo {
        width: 52px;
    }

}



body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    background: var(--bg-second-color);
    color: var(--second-font-color);
    overflow-x: hidden;
}

section {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.container {
    max-width: 1920px;
    padding-left: 3%;
    padding-right: 3%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 ,h6 {
    font-family: 'Jost', sans-serif;
    color: var(--font-color);
    margin-bottom: 0;
}

p {
    line-height: 1.2;
    margin-bottom: 0;
}

textarea {
    border-radius: 10px;
}

textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #222 !important;
}

input {

}

input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #222;
}

label {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

a:hover {
    text-decoration: none;
    color: var(--font-color);
}

ul {
    margin: 0;
}

li {
    list-style: none;
}

.main-btn {
    display: flex;
    width: 280px;
    height: 60px;
    background: var(--main-color);
    color: var(--font-color);
    border-radius: var(--b-radius);
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    box-shadow: 1px 1px 5px rgba(0,0,0,.25);
}

.main-btn:hover {
    color: var(--font-color);
}

.second-title {
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 500;
}

.ttc {
    text-align: center;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-response {
    margin-bottom: 75px;
}

/*------------------------------*/
/*----------- HEADER -----------*/
/*------------------------------*/

.header-section {
    background: transparent;
    height: 70px;
    display: flex;
    align-items: center;
}

.uk-sticky {
    transition: .5s ease-in-out;
}

.uk-sticky-below {
    background: var(--sticky-below);
    transition: .5s ease-in-out;
}

.nav-bar {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-bar__item {
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    position: relative;
}

.nav-bar__item:hover:after {
    animation: .3s links ease-in-out;
    position: absolute;
    content: '';
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
}

@keyframes links {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.mobile-menu-btn {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.mobile-menu-btn__item {
    display: flex;
    height: 2px;
    width: 40px;
    background: var(--font-color);
    margin-right: 10px;
    font-family: 'Jost', sans-serif;
}

.mobile-menu-btn__item:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0;
    margin-left: auto;
    animation: 10s menuLine ease-in-out infinite;
}

@keyframes menuLine {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}

.mobile-menu.uk-open>.uk-offcanvas-bar {
    background: var(--main-color);
    width: 100%;
    height: 100vh;
}

.uk-offcanvas-close {
    color: #fff;
}

.mobile-menu-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/*------------------------------*/
/*---------- HERO-SEC ----------*/
/*------------------------------*/

.hero-section {
    height: 100vh;
    max-height: 960px;
    position: relative;
    margin-top: -70px;
    background: url("../img/main-bg2.jpg") no-repeat top center / cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
}

.arrow-one {
    position: absolute;
    display: flex;
    top: 20%;
    left: 2%;
    z-index: 0;
    transition: 1.5s ease-in-out;
    opacity: .5;
    width: 300px;
}

.arrows {
    animation: 5s arrows infinite ease-in-out;
}

@keyframes arrows {
    50% {
        transform: rotateX(-25deg);
    }
}

.arrow-two {
    position: absolute;
    display: flex;
    width: 300px;
    bottom: 0;
    right: 2%;
    z-index: 0;
    transition: 1.5s ease-in-out;
    opacity: .6;
    animation: 7s arrowTwo infinite ease-in-out;
}

@keyframes arrowTwo {
    50% {
        transform: rotateY(-25deg);
    }
}

.main-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 1s ease-in-out;
}

.main-offer__title {
    color: var(--font-color);
    text-transform: uppercase;
    text-align: center;
    transition: 1s ease-in-out;
    font-weight: 300;
}

.main-offer__description {
    color: var(--font-color);
    font-size: 3vw;
    text-transform: uppercase;
    text-align: center;
    transition: 1s ease-in-out;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 32px;
}

.main-offer__additional {
    color: var(--font-color);
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 32px;
}

.main-offer-benefits {
    padding: 16px 32px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    height: 80px;
    align-items: center;
    transform: scaleX(0);
    transform-origin: left;
    transition: .7s ease-in-out;
    margin-bottom: 32px;
}

.main-offer-benefits__item {
    display: flex;
    color: var(--font-color);
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.icon-phone {
    display: flex;
    margin-left: 8px;
    transition: .5s ease-in-out;
    transform: rotateZ(-110deg);
    transform-origin: center;
}

.main-btn:hover>.icon-phone {
    animation: 1s ring infinite ease-in-out;
}

@keyframes ring {
    5% {
        transform: rotateZ(-115deg);
    }
    10% {
        transform: rotateZ(-105deg);
    }
    15% {
        transform: rotateZ(-115deg);
    }
    20% {
        transform: rotateZ(-105deg);
    }
    25% {
        transform: rotateZ(-115deg);
    }
    30% {
        transform: rotateZ(-105deg);
    }
    35% {
        transform: rotateZ(-115deg);
    }
    40% {
        transform: rotateZ(-105deg);
    }
    45% {
        transform: rotateZ(-115deg);
    }
    50% {
        transform: rotateZ(-105deg);
    }
    55% {
        transform: rotateZ(-110deg);
    }
}

/*------------------------------*/
/*-------- SECOND-SEC ----------*/
/*------------------------------*/

.logos-section {
    padding-top: 100px;
}

.logos-column {
    display: flex;
    justify-content: space-between;
}

.logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
}

.logos__img {
    display: flex;
    width: 40%;
}

.logos__text {
    text-align: center;
    margin-top: 16px;
}

.second-section {
    background: var(--bg-second-color);
    overflow: hidden;
}

.kinds-row {
    margin-top: 75px;
}

.kinds-docs {
    display: flex;
    justify-content: center;
    position: relative;
    transition: 1s ease-in-out;
}

.kinds-docs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3%;
    border-radius: 10px;
}

.kinds-docs__item__icon {
    display: flex;
    width: 55px;
}

.kinds-docs__item__text {
    color: var(--second-font-color);
    margin-top: 32px;
    text-align: center;

}

.kinds-docs__item__price {
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
}

.kinds-docs__item__price:last-child {
    margin-top: 8px;
}

.modal-services-title {
    color: #333;
    font-size: 20px;
    margin-top: 32px !important;
    margin-bottom: 16px;
}

.modal-services-list {
    padding: 0;
}

.modal-services-list__item {
    padding: 16px 0;
    border-bottom: 1px solid var(--main-color);
    font-weight: 400;
}

/*------------------------------*/
/*------- DISCOUNT-SEC ---------*/
/*------------------------------*/

.discount-form {
    box-shadow: 2px 2px 10px rgba(0,0,0,.3);
    transition: .5s ease-in-out;
    padding: 48px 32px;
    border-radius: 10px;
    background: rgba(255,255,255,.8);
    overflow: hidden;
    position: relative;
}

.discount-form__arrow-top {
    display: flex;
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: 0;
    width: 25%;
    transform: scale(1);
    animation: 5s arrowTop infinite ease-in-out;
}

@keyframes arrowTop {
    50% {
        transform: scale(1.05);
    }
}

.arrow-black-top {
    transition: 1.5s ease-in-out;
}

.discount-form__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.discount-form__title__item {
    color: var(--second-font-color);
    text-transform: uppercase;
    display: flex;
}

.discount-form__quiz__header {
    display: flex;
    align-items: end;
    margin-top: 32px;
    font-size: 18px;
}

.discount-form__quiz__header__title {
    color: var(--second-font-color);
    width: 37%;
}

.discount-form__quiz__header__numb {
    margin-left: 16px;
    font-family: 'Jost', sans-serif;
    color: #999;
    width: 25%;
}

.discount-percent {
    display: flex;
    margin-left: 8px;
}

.percent {
    animation: .3s percents ease-in-out;
}

@keyframes percents {
    60% {
        transform: scale(1.3);
    }
}

.discount-form__quiz__header__discount {
    color: var(--second-font-color);
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.discount-form__quiz {
    display: flex;
    justify-content: space-between;
    transition: .5s ease-in-out;
    position: relative;
}

.discount-form__quiz__answers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
    margin-bottom: auto;
    transition: .5s ease-in-out;
}

.quiz-result-text {
    margin-top: 24px;
    font-size: 18px;
    color: var(--bs-success);
    position: absolute;
    top: 100%;
    animation: .5s result forwards ease-in-out;
}

@keyframes result {
    100% {
        top: 0;
    }
}

.discount-form__quiz__answers__item {
    cursor: pointer;
    user-select: none;
    display: flex;
    width: 49%;
    border-radius: 10px;
    border: 1px solid rgba(51,97,94,0.3);
    padding: 16px 16px;
    align-items: center;
    margin-top: 16px;
    background: #e9e9e9;
}

.discount-form__title__item_personal {
    margin-left: 8px;
    margin-right: 8px;
}

.discount-form__quiz__answers__item.answer-step {
    width: 49%;
}

.discount-form__quiz__answers__item:last-child {
    margin-right: 0;
}

.discount-form__quiz__img {
    display: flex;
    width: 50%;
    justify-content: end;
}

.discount-form__quiz__img__item {
    display: flex;
    width: auto;
}

.discount-btns {
    margin-top: 16px;
    display: flex;
    width: 100%;
}

.discount-btn-next {
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    user-select: none;
    width: 49%;
}

.discount-btn-next__icon {
    display: flex;
    margin-left: 8px;
}

.discount-btn-prev {
    display: flex;
    align-items: center;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    margin-right: 32px;
    user-select: none;
    justify-content: end;
    width: 49%;
}

.discount-btn-prev__icon {
    display: flex;
    margin-right: 8px;
}

.quiz-input {
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid rgba(51,97,94,0.3);
    padding: 16px 16px;
}

.discount-form__quiz__answers__item.choise {
    border: 1px solid var(--main-color);
    background: rgba(51, 97, 94, 0.35);
}

.quiz-input:focus {
    border: 1px solid var(--main-color);
}

.quiz-input.active, .discount-form__quiz__answers__item.active {
    opacity: 0;
    animation: .3s inputs forwards ease-in-out;
}

@keyframes inputs {
    100% {
        opacity: 1;
    }
}

.quiz-error {
    margin-left: 16px;
}

/*------------------------------*/
/*------- THIRD-BIG-SEC --------*/
/*------------------------------*/

.big-section {
    background: url("../img/big-bg.jpg") no-repeat center center / cover;
    overflow: hidden;
    position: relative;
}

.arrow-green-down {
    position: absolute;
    display: flex;
    width: 15%;
    opacity: .8;
    right: 5%;
    top: 40%;
    z-index: 99;
    transition: 2s ease-in-out;
}

.arrow-green-down_anim {
    animation: 5s arrowTwo infinite ease-in-out;
}

.third-sec-title {
    color: var(--font-color);
    width: 60%;
}

.security {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.security__subtitle {
    display: flex;
    color: var(--font-color);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 32px;
}

.security__bullet {
    margin-top: 16px;
    display: flex;
    width: 100%;
    align-items: center;
}

.security__bullet__icon {
    border-radius: 10px;
    display: flex;
    width: 50px;
    height: 50px;
    background: #ebebeb;
    align-items: center;
    justify-content: center;
}

.security__bullet__icon__circle {
    border-radius: 50%;
    background: #446D65;
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: end;
}

.security__bullet__icon__circle__inside {
    border-radius: 50%;
    background: #A7C3BD;
    display: flex;
    width: 12px;
    height: 12px;
    animation: 5s bullet infinite ease-in-out;
    transform-origin: left center;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
}

@keyframes bullet {
    50% {
        transform: rotateZ(270deg);
    }
}

.security__bullet__text {
    color: var(--font-color);
    width: calc(100% - 60px);
    margin-left: 16px;
}

.docs-img {
    display: flex;
    margin-left: auto;
    border-radius: 10px;
    width: 75%;
}

/*------------------------------*/
/*-------- FOUR SECTION --------*/
/*------------------------------*/

.four-section {
    background: var(--bg-second-color);
    position: relative;
    overflow: hidden;
}

.arrow-black-left {
    position: absolute;
    display: flex;
    opacity: .9;
    top: 40%;
    right: 5%;
    width: 20%;
    transition: 1.5s ease-in-out;
}

.left-side-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.left-side-block__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    margin-right: 50px;
}

.left-side-block__info__title {
    color: var(--second-font-color);
}

.left-side-block__info__text {
    color: var(--second-font-color);
    display: flex;
    flex-direction: column;
}

.left-side-block__img {
    border-radius: 10px;
    display: flex;
}

.right-side-block__info {
    margin-right: 0;
    margin-left: 50px;
}

/*------------------------------*/
/*---------- FIVE-SEC ----------*/
/*------------------------------*/

.five-section {
    background: url("../img/big-bg.jpg") no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

.arrow-green-top {
    position: absolute;
    display: flex;
    transition: 1.5s ease-in-out;
    right: 20%;
    width: 27%;
    opacity: .8;
}

.arrow-green-right {
    position: absolute;
    display: flex;
    transition: 1.5s ease-in-out;
    right: 5%;
    width: 30%;
    opacity: .8;
}

.arrows-five {
    animation: 5s arrowsGreen infinite ease-in-out;
}

@keyframes arrowsGreen  {
    50% {
        transform: rotateY(30deg);
    }
}

.rules-bullet {
    padding: 5%;
}

.rules-bullet__text {
    margin-left: 32px;
}

.sub-title {
    width: 100%;
}

.timeline__bullet {
    margin-bottom: 50px;
    padding: 2.3%;
    display: flex;
    width: 100%;
    align-items: center;
}

.timeline__bullet__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    color: var(--font-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.timeline-lines {
    content: '';
    position: absolute;
    display: flex;
    width: 1px;
    height: 170px;
    bottom: -170px;
    background: var(--font-color);
    transform: scaleY(0);
    transform-origin: top;
}

.timeline-lines.active {
    animation: 1s timeline forwards ease-in-out;
}

@keyframes timeline {
    100% {
        transform: scaleY(1);
    }
}

.timeline-line6 {
    width: 0;
    height: 0;
}

.timeline__bullet__info {
    display: flex;
    flex-direction: column;
    width: 60%;
    color: var(--font-color);
    margin-left: 32px;
}

.timeline__bullet__info__title {
    margin-bottom: 16px;
}

.timeline__bullet__info__text {
    color: #c9c9c9;
}

/*------------------------------*/
/*---------- SIX-SEC -----------*/
/*------------------------------*/

.attentions {
    display: flex;
    justify-content: center;
}

.attention-bullet {
    display: flex;
    width: 30%;
    align-items: center;
}

.attention-bullet:nth-child(2) {
    margin-left: 4%;
    margin-right: 4%;
}

.attention-bullet__icon {
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-left: auto;
}

.attention-bullet__icon__img {
    display: flex;
    width: 35px;
    height: 35px;
}

.attention-bullet__text {
    display: flex;
    width: 60%;
    margin-left: 32px;
}

.faq-title {
    margin-top: 100px;
    margin-bottom: 100px;
}

.faq-accordion>li {
    border-bottom: 1px solid var(--second-font-color);
    padding-top: 16px;
    padding-bottom: 32px;
}

.uk-accordion-title {
    font-weight: 500;
}

.uk-accordion-title:hover {
    color: #000;
}

.uk-accordion-title:focus {
    color: #000;
}

.uk-accordion-content {
    color: #333;
}

.arrow-black-six-top {
    right: 7%;
    opacity: .8;
}

.arrow-black-six-down {
    right: 0;
    width: 27%;
    opacity: .8;
}

/*------------------------------*/
/*------- FOOTER SECTION -------*/
/*------------------------------*/

footer {
    background: url("../img/main-bg2.jpg") no-repeat center center / cover;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.hide-btn {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    opacity: 0;
}

.footer-container {
    position: relative;
}

.footer-title {
    color: var(--font-color);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contacts-info  {
    color: #fff;
    margin-bottom: 50px;
}

.contacts-info>a:hover {
    color: #fff;
}

.contacts-info__title {
    font-weight: 300;
    margin-bottom: 16px;
}

.contacts-info__description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.footer-btn {
    width: 100%;
}

.copyright {
    color: var(--font-color);
}

@media screen and (min-width: 1920px) {
    .main-offer__description {
        font-size: 57px;
    }
}

@media screen and (min-width: 1800px) {
    .discount-form__arrow-top {
        width: 25%;
    }
}

@media screen and (min-width: 1920px) {
    .hero-bg-letters__item {
        font-size: 1000px;
    }
}

@media screen and (max-width: 1200px) {
    .nav-bar__item {
        margin-bottom: 32px;
    }

    .mobile-menu-logo {
        margin-top: 64px;
    }
}

@media screen and (max-width: 1024px) {
    .discount-form__quiz__header__title {
        width: 90%;
    }

    .discount-form__quiz__answers {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {

    .left-side-block {
        flex-direction: column;
    }

    .left-side-block__info {
        width: 100%;
        margin-bottom: 50px;
        margin-right: 0 ;
    }

    .right-side-block__info {
        margin-right: 0;
        margin-left: 0;
    }

    .timeline__bullet {
        padding: 5%;
    }

    .attentions {
        flex-direction: column;
    }

    .attention-bullet {
        width: 100%;
        padding: 5%;
    }

    .attention-bullet:nth-child(2) {
        margin-right: 0;
        margin-left: 0;
    }

    .attention-bullet__icon {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px){
    .main-offer__description {
        font-size: 30px;
    }

    .arrows {
        opacity: .6;
    }

    .arrow-one, .arrow-two {
        opacity: .5;
    }

    .logos-column {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logos {
        width: 80%;
        margin-bottom: 32px;
    }

    .logos__img {
        width: 25%;
    }

    .main-offer-benefits {
        background: rgba(255,255,255,.1);
    }

    .kinds-docs__item:first-child {
        margin-bottom: 50px;
    }

    .third-sec-title {
        width: 100%;
    }

    .discount-form__quiz__answers__item {
        width: 49%;
    }

    .docs-img {
        margin-top: 50px;
        width: 100%;
    }

    .arrow-black-left {
        width: 63%;
    }

    .timeline__bullet__info {
        width: 75%;
    }
}

@media screen and (max-width: 600px){

    .mb-response {
        margin-bottom: 50px;
    }

    .main-offer-benefits {
        flex-direction: column;
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .main-offer-benefits__item {
        margin: 16px 0;
        font-weight: 400;
    }

    .kinds-row {
        margin-top: 50px;
    }

    .arrow-green-down {
        width: 40%;
    }

    .faq-title {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .security__bullet__icon__circle__inside {
        transform-origin: right center;
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -ms-transform-origin: right center;
        -o-transform-origin: right center;
    }
}

@media screen and (max-width: 500px){
    .main-offer__description {
        font-size: 25px;
    }

    .kinds-docs {
        flex-direction: column;
        align-items: center;
    }

    .kinds-docs__item:nth-child(2) {
        margin: 48px 0;
    }

    .discount-form__quiz__answers__item {
        width: 100%;
    }
}

@media screen and (max-width: 410px){
    .main-offer__title {
        font-size: 20px;
    }
    .main-offer__description {
        font-size: 23px;
    }
    .main-offer__additional {
        font-size: 20px;
    }
}

@media screen and (max-width: 380px){
    .main-offer__description {
        font-size: 20px;
    }

    .main-offer-benefits {
        flex-direction: column;
        height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .main-offer-benefits__item {
        margin: 8px 0;
        font-weight: 400;
    }
}

@media screen and (max-width: 330px){
    .hero-section {
        padding-top: 70px;
    }

    .main-offer__description {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .main-offer__additional {
        margin-bottom: 16px;
    }

    .main-offer-benefits {
        margin-bottom: 16px;
    }

    .kinds-docs__item {
        padding: 3%;
    }
}
