

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

body {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #010101;
}
a, button {
    transition: .35s;
    color: #010101;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
.container {
    margin: 0 auto;
    max-width: 1366px;
    padding: 0 20px;
    width: 100%;
}
.header-burger {
    display: none;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
}
.header-logo {
    font-weight: 900;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
}

.header-logo svg {
    max-width: 100%;
    height: 65px;
    width: auto;
}
@media (max-width: 990px) {
    .header-logo svg {
        max-width: 100%;
        height: 35px;
        width: auto;
    }
}
.header-menu__link {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 8px;
    margin-bottom: -8px;
    border-bottom: 1px solid transparent;
}
.header-menu__link:hover,
.header-menu__link:focus {
    border-bottom: 1px solid #010101;
}
.header-menu__link:not(:last-child) {
    margin-right: 40px;
}
.header-contacts {
    display: flex;
    align-items: center;
}
.header-contacts__link {
    font-weight: 500;
    display: flex;
    align-content: center;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
    margin-left: 15px;
}
@media (max-width: 990px) {
    .header-contacts__link {
        margin-left: 0;
    }
}
.header-contacts__link.button {
    margin-left: 40px;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    height: 40px;
    width: 156px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #010101;
    border-radius: 4px;
}
.header-contacts__link:hover,
.header-contacts__link:focus {
    color: #ED3026;
}
.header-contacts__link.button:hover,
.header-contacts__link.button:focus {
    color: #fff;
    background: #010101;
}
.main {
    margin: 94px 0 150px;
}
.main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 55px;
    color: #010101;
    max-width: 580px;
}
.main-desc {
    margin-top: 24px;
    max-width: 530px;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}
.main-btn {
    margin-top: 80px;
    width: 250px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ED3026;
    border-radius: 7px;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-decoration: none;
}
.main-btn:hover {
    background: #A00800;
}
.main-img {
    min-width: 580px;
    overflow: hidden;
    object-fit: contain;
}
.features {
    background: #F9F9FA;;
    padding: 126px 0 164px;
}
.features-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    color: #000;
    max-width: 570px;
}
.features-list {
    margin-top: 80px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(6, 1fr);
}
.features-list__item {
    display: flex;
    align-items: flex-start;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #000;
}
.features-list__item img {
    margin-right: 20px;
    margin-top: 3px;
}
.solution {
    margin: 200px 0;
}
.solution-wrapper {
    display: flex;
    justify-content: space-between;
}
.solution-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    color: #000000;
    margin-bottom: 100px;
}
.solution-list__item {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}
.solution-gallery__top {
    display: grid;
    grid-template-columns: 530px 275px;
    grid-gap: 30px;
    margin-bottom: 30px;
}
.solution-gallery__bot {
    display: grid;
    grid-template-columns: 250px 250px 275px;
    grid-gap: 30px;
}
.solution-gallery img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 25px;
}
.benefits-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefits-title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: #000000;
}
.benefits-list {
    display: grid;
    grid-gap: 65px;
    grid-template-columns: 1fr 1fr 1fr;
}
.benefits-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefits-list__item img {
    height: 150px;
}
.benefits-list__item div {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
}
.benefits-list__item p {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
}
.how {
    margin-top: 170px;
    padding: 168px 0 244px;
    background: #F5F5F5;
}
.how-wrapper {
    display: flex;
    justify-content: space-between;
}
.how-aside {
    max-width: 230px;
}
.how-title {
    font-weight: 900;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 320px;
}
.how-payment {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
}
.how-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 85px;
}
.how-content__item {
    max-width: 330px;
}
.how-content__item p {
    font-size: 24px;
    line-height: 140%;
    margin-top: 42px;
}
.proposal {
    padding: 180px 0;
}
.proposal-head {
    font-weight: 500;
    font-size: 20px;
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.proposal-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.proposal-offer p {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    max-width: 770px;
}
.proposal-offer a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ED3026;
    border-radius: 50%;
    width: 65px;
    min-width: 65px;
    height: 65px;
}
.proposal-offer a:hover,
.proposal-offer a:focus {
    background: #A00800;
}
.prices-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 14px;
}
.prices-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -25px;
}
.prices-list__item {
    display: flex;
    align-items: center;
}
.prices-list__info {
    margin-left: -10px;
    margin-top: 20px;
}
.prices-list__info p {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 12px;
}
.prices-list__info div {
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
}
.faq {
    margin-top: 200px;
}
.faq-wrapper {
    display: flex;
    justify-content: space-between;
}
.faq-image {
    position: relative;
    min-width: 580px;
}
.faq-circle {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 580px;
    height: 580px;
    background: rgba(208, 212, 217, 0.28);
}
.faq-img {
    margin-top: 120px;
}
.faq-content {
    max-width: 670px;
 }
.faq-title {
    margin-top: 12px;
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 34px;
}
.faq-desc {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 100px;
}
.faq-cont {
    border: 1px solid #DBDEE7;
    border-radius: 6px;
}
.faq-q {
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
}
.faq-q svg {
    transition: .35s;
}
.faq-item.active .faq-q svg {
    transform: rotate(180deg);
}
.faq-a {
    font-size: 18px;
    line-height: 30px;
    max-height: 0;
    height: auto;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
}
.faq-a.active {
    max-height: 500px;
    padding-top: 10px;
    transition: max-height 0.35s ease-in-out;
    padding: 0 20px 28px;
}
.faq-item:not(:last-child) {
    border-bottom: 1px solid #DBDEE7;
}
.contacts {
    margin-top: 215px;
}
.contacts-cont {
    display: flex;
    justify-content: space-between;
}
.contacts-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 25px;
}
.contacts-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 20px;
}
.contacts-wrapper > .contacts-title {
    display: none;
}
.contacts-links {
    display: flex;
    align-items: flex-end;
}
.contacts-links__phone span {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 10px;
}
.contacts-links__phone a {
    text-decoration: none;
    font-size: 19px;
    line-height: 23px;
}
.contacts-links__phone a:hover,
.contacts-links__phone a:focus {
    color: #ED3026;
}
.contacts-links__socials {

}
.contacts-links__socials a {
    text-decoration: none;
}
.contacts-links__socials a:first-child {
    margin-right: 40px;
}
.contacts-links__socials a svg path {
    transition: .35s;
}
.contacts-links__socials a:hover svg path {
    fill: #ED3026;
}
.contacts-form {
    display: flex;
    flex-direction: column;
    width: 650px;
}
.contacts-form input {
    width: 100%;
    border: 1px solid #DBDEE7;
    border-radius: 9px;
    padding: 16px 28px;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 36px;
    color: #000;
}
.contacts-form input::placeholder {
    color: #000;
}
.contacts-form button {
    margin-top: 62px;
    width: 390px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    border: none;
    background: #ED3026;
    border-radius: 7px;
    cursor: pointer;
}
.contacts-form button:hover {
    background: #A00800;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.footer-logo {
    font-weight: 900;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}
.footer-menu__link {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
}
.footer-menu__link:hover,
.footer-menu__link:focus {
    color: #ED3026;
}
.footer-menu__link:not(:last-child) {
    margin-right: 40px;
}
.footer-bot a,
.footer-bot span {
    text-decoration: none;
    font-weight: 500;
    font-size: 10px;
    line-height: 26px;
    opacity: 0.7;
}
.footer-bot span {
    margin-left: 100px;
}
.header-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .6s;
    transform: translateY(-100%);
}
.header-close {
    position: absolute;
    top: 24px;
    right: 24px;
}
.header-menu__bot {
    border-top: 1px solid #DBDEE7;
    height: 145px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}
.header-menu__bot span {
    font-size: 18px;
    line-height: 32px;
}
.header-menu__bot .contacts-links__socials {
    margin: 0;
}
.header-nav {
    height: calc(100% - 145px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}
.header-nav__link {
    font-weight: 500;
    font-size: 36px;
    line-height: 52px;
    text-decoration: none;
}
.header-nav__link:hover,
.header-nav__link:focus {
    color: #ED3026;
}
.header-nav__link:not(:last-child) {
    margin-bottom: 24px;
}
.modal {
    background: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}
.modal-content {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 70px 55px;
}
.modal-close {
    position: absolute;
    top: 15px;
    cursor: pointer;
    right: 15px;
    z-index: 999;
}
.modal-title {
    font-weight: 900;
    font-size: 36px;
    line-height: 64px;
    margin-bottom: 34px;
}
.popup {
    background: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}
.popup-content {
    width: 310px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
.popup-text {
    margin: 15px 0 40px;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
}
.popup-btn {
    background: #ED3026;
    border-radius: 6px;
    width: 100px;
    height: 45px;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
    color: #fff;
    border: none;
}
@media (max-width: 1200px) {
    .features-list {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 65px;
    }
    .solution-wrapper {
        flex-direction: column;
    }
    .solution-list {
        display: grid;
        grid-template-columns: 120px 320px;
        grid-gap: 30px 50px;
        margin-bottom: 70px;
    }
    .solution-list__item {
        margin-bottom: 0;
    }
    .solution-list__item:nth-child(1) {
        order: 2;
    }
    .solution-list__item:nth-child(2) {
        order: 4;
    }
    .solution-list__item:nth-child(3) {
        order: 1;
    }
    .solution-list__item:nth-child(4) {
        order: 3;
    }
    .solution-gallery__top, .solution-gallery__bot {
        display: flex;
        grid-template-columns: none;
        width: calc(100% - 30px);
    }
    .solution-gallery__top img:nth-child(1) {
        width: 60%;
        height: 275px;
    }
    .solution-gallery__top img:nth-child(2) {
        width: 40%;
        height: 275px;
    }
    .solution-gallery__bot img:nth-child(1), .solution-gallery__bot img:nth-child(2) {
        width: calc(30% - 15px);
        height: 275px;
    }
    .solution-gallery__bot img:nth-child(3) {
        width: 40%;
        height: 275px;
    }
    .how-wrapper {
        flex-direction: column;
    }
    .how-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin-bottom: 160px;
    }
    .how-title, .how-payment {
        margin-bottom: 0;
        max-width: 230px;
        display: flex;
        align-items: center;
    }
    .prices-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .prices-list__info {
        max-width: 250px;
    }
    .contacts-wrapper > .contacts-title {
        display: block;
        margin-bottom: 70px;
        max-width: 610px;
    }
    .contacts-info > .contacts-title {
        display: none;
    }
    .contacts-form button {
        width: 100%;
    }
    .contacts-links {
        flex-direction: column;
        align-items: flex-end;
    }
    .contacts-links__socials {
        margin-left: 0;
        margin-top: 70px;
    }
    .header-menu__link:not(:last-child), .footer-menu__link:not(:last-child) {
        margin-right: 14px;
    }
    .header-contacts__link.button {
        margin-left: 20px;
        width: 120px;
    }
    .faq-image {
        order: 1;
        min-width: 1px;
    }
    .faq-circle {
        width: 280px;
        height: 280px;
        left: auto;
        right: 0;
        top: 160px;
    }
    .faq-img {
        position: absolute;
        top: 220px;
        right: 25px;
        width: 260px;
        height: 260px;
        margin-top: 0;
        z-index: -1;
    }
    .faq-desc {
        max-width: 530px;
    }
    .main-wrapper {
        position: relative;
    }
    .main-img {
        position: absolute;
        top: 106px;
        right: -20px;
        width: 450px;
        min-width: 450px;
        height: 450px;
        z-index: -1;
    }
    .main {
        margin: 94px 0 300px;
    }
}
@media (max-width: 992px) {
    .header-burger {
        display: block;
    }
    .header .header-menu, .header .header-contacts {
        display: none;
    }
    .main-btn {
        font-size: 20px;
        line-height: 34px;
    }
    .features {
        margin: 120px 0;
    }
    .solution {
        margin: 150px 0 130px;
    }
    .solution-title {
        margin-bottom: 50px;
    }
    .benefits-title {
        width: 100%;
        text-align: left;
    }
    .benefits-list__item div {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 18px;
        white-space: nowrap;
    }
    .benefits-list__item p {
        font-size: 18px;
        line-height: 22px;
    }
    .how {
        margin-top: 150px;
        padding: 170px 0 140px;
    }
    .how-content__item {
        max-width: 305px;
    }
    .proposal {
        padding: 140px 0;
    }
    .proposal-offer p {
        max-width: 700px;
    }
    .faq {
        margin-top: 150px;
    }
    .faq-title {
        margin-top: 0;
    }
    .faq-cont {
        background: #fff;
    }
    .contacts {
        margin-top: 150px;
    }
    .contacts-form {
        width: 600px;
    }
    .contacts-links__phone a {
        white-space: nowrap;
    }
    .footer {
        margin-top: 150px;
    }
    .footer .header-menu {
        display: flex;
        flex-direction: column;
        flex-basis: 30%;
        margin-top: -2px;
    }
    .footer-wrapper {
        align-items: flex-start;
    }
    .footer .header-contacts__link.button {
        margin-left: 0;
        margin-bottom: 14px;
        order: -1;
    }
    .footer .header-contacts {
        flex-basis: 30%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-menu__link:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .benefits-list {
        grid-gap: 24px 36px;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
    }
    .main-img {
        position: static;
        order: -1;
    }
    .main {
        margin: 50px 0 200px;
    }
    .main-title {
        max-width: 100%;
        margin-top: 70px;
    }
    .main-desc {
        margin-top: 70px;
    }
    .main-btn {
        margin-top: 60px;
        width: 320px;
    }
    .features {
        padding: 40px 0;
    }
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }
    .solution {
        margin: 120px 0;
    }
    .benefits-list__item img {
        height: 105px;
        width: 105px;
    }
    .benefits-list__item div {
        margin-bottom: 12px;
    }
    .how {
        margin-top: 120px;
        padding: 120px 0;
    }
    .how-aside {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 70px;
    }
    .how-title {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .how-content__item p {
        font-size: 20px;
    }
    .proposal-offer p {
        max-width: 80%;
    }
    .proposal {
        padding: 85px 0;
    }
    .prices-list__item img {
        width: 130px;
        height: 130px;
    }
    .faq {
        margin-top: 120px;
    }
    .faq-wrapper {
        flex-direction: column;
    }
    .faq-image {
        order: -1;
        display: flex;
        justify-content: center;
    }
    .faq-circle {
        top: 0;
        right: 50%;
        width: 450px;
        height: 450px;
        transform: translateX(50%);
    }
    .faq-img {
        margin: 100px 0 80px;
        position: static;
        width: 430px;
        height: 430px;
    }
    .faq-desc {
        margin-bottom: 70px;
    }
    .contacts {
        margin-top: 120px;
    }
    .contacts-form button {
        margin-top: 30px;
    }
    .footer-bot {
        display: flex;
        justify-content: space-between;
    }
    .modal-title {
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 26px;
    }
    .modal-content {
        padding: 80px 30px;
    }
    .modal .contacts-form {
        width: 100%;
    }
    .solution-gallery__top, .solution-gallery__bot {
        flex-wrap: wrap;
        width: 100%;
        grid-gap: 0;
        justify-content: space-between;
    }
    .solution-gallery__top {
        margin-bottom: 24px;
    }
    .solution-gallery__top img:nth-child(1) {
        width: 48%;
        height: 275px;
    }
    .solution-gallery__top img:nth-child(2) {
        width: 48%;
        height: 275px;
    }
    .solution-gallery__bot img:nth-child(1), .solution-gallery__bot img:nth-child(2) {
        width: 48%;
        height: 275px;
    }
    .solution-gallery__bot img:nth-child(3) {
        margin-top: 24px;
        width: 100%;
        height: 275px;
    }
}
@media (max-width: 576px) {
    .main-desc br {
        display: none;
    }
    .solution-gallery__top {
        margin-bottom: 20px;
    }
    .solution-gallery__top img:nth-child(1) {
        height: 110px;
    }
    .solution-gallery__top img:nth-child(2) {
        height: 110px;
    }
    .solution-gallery__bot img:nth-child(1), .solution-gallery__bot img:nth-child(2) {
        height: 170px;
    }
    .solution-gallery__bot img:nth-child(3) {
        margin-top: 20px;
        height: 170px;
    }
    .main {
        margin: 20px 0 60px;
    }
    .main-img {
        width: 250px;
        min-width: 250px;
        height: 250px;
    }
    .main-title {
        margin-top: 30px;
        font-size: 28px;
        line-height: 115%;
    }
    .main-desc {
        margin-top: 40px;
        font-size: 18px;
        line-height: 140%;
    }
    .main-btn {
        margin-top: 40px;
        width: 100%;
    }
    .features-title {
        font-size: 22px;
        line-height: 130%;
    }
    .features-list {
        margin-top: 40px;
        grid-gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    .features {
        margin: 0 0 50px 0;
    }
    .main-desc br {
        display: none;
    }
    .main-desc {
        margin-top: 30px;
    }
    .features-list__item img {
        margin-right: 15px;
    }
    .features-list__item {
        font-size: 16px;
        line-height: 120%;
    }
    .solution-title {
        margin-bottom: 30px;
        font-size: 26px;
        line-height: 130%;
        max-width: 100%;
    }
    .solution-list {
        margin-bottom: 60px;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 12px;
    }
    .solution-list__item {
        font-size: 18px;
        line-height: 22px;
    }
    .solution-list__item:nth-child(1) {
        order: 1;
    }
    .solution-list__item:nth-child(2) {
        order: 2;
    }
    .solution-list__item:nth-child(3) {
        order: 3;
    }
    .solution-list__item:nth-child(4) {
        order: 4;
    }
    .solution {
        margin-top: 0;
        margin-bottom: 60px;
    }
    .benefits-title {
        text-align: center;
        font-size: 28px;
        line-height: 130%;
    }
    .benefits-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }
    .benefits-list__item {
        max-width: 260px;
    }
    .how {
        margin-top: 100px;
        padding: 100px 0;
    }
    .how-title {
        font-size: 28px;
        line-height: 130%;
    }
    .how-payment {
        font-size: 16px;
        line-height: 140%;
    }
    .how-aside {
        margin-bottom: 50px;
    }
    .how-content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 45px;
    }
    .how-content__item {
        max-width: 260px;
    }
    .how-content__item img {
        width: 50px;
        height: 50px;
    }
    .how-content__item p {
        margin-top: 15px;
        font-size: 18px;
        line-height: 140%;
    }
    .proposal-head {
        font-size: 10px;
        line-height: 37px;
        margin-bottom: 8px;
    }
    .proposal-offer p {
        font-size: 20px;
        line-height: 130%;
    }
    .prices-title {
        margin-bottom: 18px;
    }
    .prices-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .faq {
        margin-top: 90px;
    }
    .faq-circle {
        width: 280px;
        height: 280px;
    }
    .faq-img {
        margin: 50px 0 60px;
        width: 270px;
        height: 270px;
    }
    .faq-title {
        font-size: 28px;
        line-height: 130%;
    }
    .faq-desc {
        font-size: 14px;
        line-height: 140%;
        max-width: 280px;
        margin-bottom: 60px;
    }
    .faq-q, .faq-a {
        font-size: 14px;
        line-height: 18px;
    }
    .contacts {
        margin-top: 100px;
    }
    .contacts-wrapper > .contacts-title {
        font-size: 24px;
        line-height: 130%;
        margin-bottom: 30px;
    }
    .contacts-cont {
        flex-direction: column;
    }
    .contacts-info {
        margin-right: 0;
        margin-top: 70px;
        order: 1;
    }
    .contacts-form {
        width: 100%;
    }
    .contacts-links {
        flex-direction: row;
        justify-content: space-between;
    }
    .contacts-links__socials {
        margin-top: 0;
    }
    .footer {
        margin-top: 100px;
        padding: 80px 0 60px;
    }
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        margin-bottom: 40px;
    }
    .footer-menu__link:not(:last-child) {
        margin-bottom: 4px;
    }
    .footer .header-menu {
        align-items: center;
    }
    .footer .header-contacts {
        align-items: center;
        margin-top: 60px;
    }
    .footer .header-contacts__link.button {
        width: 200px;
    }
    .footer-wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .solution-list {
        display: none;
    }
    .solution-gallery {
        display: none;
    }
}

.solution-mob {
    display: none;
}

@media (max-width: 576px) {
    .solution-mob {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .solution-mob__item img {
        border-radius: 10px;
        max-width: 100%;
        height: 210px;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .solution-mob__item p {
        font-size: 22px;
        text-align: center;
        font-weight: 600;
    }
    .solution-title {
        text-align: center;
    }
    .benefits-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .how {
        padding: 50px 0;
        margin-top: 60px;
        margin-bottom: 30px;
    }
    .benefits-list {
        grid-gap: 30px;
    }
    .faq-img {
        margin: 30px 0 40px;
    }
    .faq-desc {
        max-width: 100%;
        font-size: 15px;
        margin-bottom: 40px;
    }
    .faq-q, .faq-a {
        font-size: 15px;
    }
    .contacts {
        margin-top: 40px;
    }
    .contacts-wrapper > .contacts-title {
        font-size: 22px;
    }
    .contacts-info {
        margin-top: 30px;
    }
    .footer {
        margin-top: 70px;
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .footer-bot a, .footer-bot span {
        font-size: 12px;
        line-height: 1.6;
    }
    .footer-bot span {
        text-align: right;
    }
    .footer .header-contacts {
        margin-top: 40px;
    }
    .footer-bot span {
        margin: 0;
    }
    .footer-menu__link {
        font-size: 15px;
    }
    .faq-title {
        margin-bottom: 25px;
        font-size: 26px;
    }
    .how-payment {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    .how-title {
        margin: 0 auto 30px auto;
        text-align: center;
    }
    .how-content {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
    .how-content__item p {
        font-size: 14px;
    }
    .how-aside {
        margin-bottom: 40px;
    }
    .how-content__item img {
        height: 35px;
        width: 35px;
    }
}

.about_product_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 60px;
}

.about_product {
    margin-top: 200px;
}

.about_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 50px;
}

.about_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
}

.about_text_sm {
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 140%;
}

.about_text_sm span {
    font-weight: 700;
    margin: 0 0 10px 0;
    display: block;
    font-size: 22px;
}

.about_product_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_product_right {
    display: grid;
    grid-template-columns: 360px 360px;
    grid-gap: 60px;
}

.about_product_tarif {
    padding: 25px 35px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background: #F7F7F7;
    border-radius: 20px;
}

.tarif_title {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.tarif_text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 140%;
}

.tarif_text_xl {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.tarif_text_sm {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 400;
}

.red {
    background: #DA3229;
}

.red p {
    color: #fff!important;
}

@media (max-width: 1130px) {
    .about_product_wrap {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    .about_title {
        margin-bottom: 20px;
    }
    .about_product {
        margin-top: 60px;
    }
    .about_product_right {
        grid-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 990px) {
    .about_product_right {
        grid-template-columns: 1fr;
    }
    .tarif_text {
        margin-bottom: 25px;
    }
    .about_product_wrap {
        grid-gap: 20px;
    }
    .about_product_tarif {
        padding: 25px;
    }
    .about_product_container {
        grid-gap: 30px;
    }
}

.about_product_tarif {
    transition: .3s;
}

.about_product_tarif:hover {
    background: #DA3229!important;
}

.about_product_tarif:hover p {
    color: #fff!important;
}

.ws {
    display: none;
}

@media (max-width: 990px) {
    .social_box {
        margin-left: auto;
        margin-right: 15px;
        display: flex;
        align-content: center;
    }
    .ws {
        margin-left: 17px;
        display: flex;
        align-content: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    header {
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        box-sizing: border-box;
        background: #fff;
        z-index: 999;
    }
    .header-wrapper {
        padding: 14px 0;
    }
    .main {
        margin-top: 20px;
    }
}

.social_box {
    display: none;
}

@media (max-width: 990px) {
    .main-img {
        display: block;
        max-width: 100%;
        height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    .social_box {
        display: block;
    }
    .header-dropdown {
        z-index: 9999999;
    }
    .header-contacts__link:last-child {
        margin-top: 10px;
    }
}



.mob {
    display: none!important;
}

@media (max-width: 576px) {
    .mob {
        display: flex!important;
    }
    .contacts-links__phone {
        flex-direction: column;
    }
    .desk {
        display: none!important;
    }
}

.header {
    margin-bottom: 0px!important;
}