@font-face {
    font-family: 'San Francisco Pro Display';
    src: url('../fonts/SFProDisplay-Regular.eot');
    src: url('../fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFProDisplay-Regular.woff') format('woff'),
    url('../fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'San Francisco Pro Display';
    src: url('../fonts/SFProDisplay-Semibold.eot');
    src: url('../fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFProDisplay-Semibold.woff') format('woff'),
    url('../fonts/SFProDisplay-Semibold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'San Francisco Pro Display';
    src: url('../fonts/SFProDisplay-Bold.eot');
    src: url('../fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFProDisplay-Bold.woff') format('woff'),
    url('../fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul[class] {
    list-style: none;
}
a[class] {
    text-decoration: none;
}
body {
    font-family: var(--font), serif;
    background-color: var(--bg-color);
}
.title {
    color: var(--title-color);
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}
.subtitle {
    color: var(--subtitle-color);
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
}
.container {
    width: 1216px;
    margin: 0 auto;
}
/* Header */
.header {
    padding: 30px 0;
}
.header .container {
    display: flex;
    align-items: center;
}
.header__logo {
    margin-right: auto;
    display: flex;
    align-items: center;
}
.header__logo-image {
    margin-right: 10px;
}
.header__logo-text {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
}
.header-col {
    display: flex;
}
.header-col__icon {
    width: 19px;
    min-width: 19px;
    height: 20px;
    margin-right: 20px;
}
.header-place {
    margin-left: 40px;
}
.header-phone {
    margin-left: auto;
    margin-right: 30px;
}
.primary-btn {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    background-color: var(--akcent-color);
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
}
.header__main-text {
    color: var(--text-color);
    font-size: 20px;
    font-weight: bold;
}
.header__sub-text {
    color: var(--subtitle-color);
    font-size: 16px;
    font-weight: 400;
}
.header__mobile-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    display: none;
}
.header__mobile-icon-line {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: #3A3D46;
    transition: 0.3s;
}
/* Menu */
.menu {
    background-color: var(--menu-color);
}
.menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-list {
    display: flex;
    align-items: center;
}
.menu-list__item {
    margin-right: 40px;
}
.menu-list__item:last-child {
    margin-right: 0;
}
.menu-list__item-link {
    color: #F3F1E9;
    font-weight: 500;
    font-size: 16px;
    padding: 30px 0;
    position: relative;
    display: block;
    transition: 0.3s;
}
.menu-list__item-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--akcent-color);
    border-radius: 3px 3px 0 0;
    transition: 0.3s;
}
.menu-list__item-link:hover,
.menu-list__item-link.active {
    color: var(--akcent-color);
}
.menu-list__item-link:hover:after,
.menu-list__item-link.active:after {
    width: 100%;
}
.menu__search {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.menu__search-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
}
/* Banner */
.banner {
    padding: 80px 0 100px;
    background-image: url('../img/banner-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.banner__title {
    color: #ffffff;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
}
.banner-list {
    margin-bottom: 30px;
}
.banner-list__item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--banner-text-color);
    font-size: 20px;
    font-weight: 300;
}
.banner-list__item:last-child {
    margin-bottom: 0;
}
.banner-list__item-mark {
    width: 28px;
    height: 28px;
    margin-right: 15px;
}
.banner__description {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 620px;
}
/* Attention */
.attention {
    margin: 40px 0 100px;
}
.attention .container {
    display: flex;
    padding: 30px;
    background-color: #FFF9EE;
    border-radius: 5px;
    border: 2px solid #F6E5C6;
}
.attention__icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    margin-right: 20px;
}
.attention-info__title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.attention-info__text {
    color: var(--text-color);
    font-size: 16px;
}
/* About */
.about {
    margin: 100px 0;
}
.about-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 75px;
}
.about__text {
    font-size: 18px;
    color: var(--text-color);
}
.about__image {
    max-width: 100%;
}
/* Documents */
.documents {
    margin: 100px 0;
}
.documents .container {
    display: flex;
    flex-direction: column;
}
.documents-left {
    max-width: 360px;
}
.documents__photo {
    max-width: 100%;
    margin-top: 65px;
}
.documents-list {
    margin-top: 15px;
}
.documents-list__item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.documents-row {
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.documents-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.documents-list__item:last-child {
    margin-bottom: 0;
}
.documents-list__item-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 15px;
}
/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-bottom: 40px;
}
.steps-grid__item {
    background: #F7F7FA;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.steps-grid__item-count {
    color: var(--akcent-color);
    font-size: 100px;
    font-weight: 500;
    line-height: 120px;
    margin-bottom: 10px;
}
.steps-grid__item-text {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
}
.steps-attention {
    background: #FFF9EE;
    border-radius: 0 0 5px 5px;
    border-top: 3px solid var(--akcent-color);
    padding: 40px;
}
.steps-attention__title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.steps-attention__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}
/* Questions */
.questions {
    margin: 100px 0;
}
.questions__item {
    cursor: pointer;
    border: solid #E7E7E7;
    border-width: 1px 0 1px 0;
}
.questions__item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.questions__item-question {
    color: #3A3D46;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}
.questions__item-toggle {
    width: 24px;
    height: 24px;
    position: relative;
}
.questions__item-toggle:after,
.questions__item-toggle:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3A3D46;
    border-radius: 5px;
    transition: 0.3s;
}
.questions__item-toggle:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.questions__item-answer {
    display: none;
    font-size: 16px;
    color: #3A3D46;
    transition: 0.3s;
    margin-bottom: 30px;
    overflow: hidden;
}
.questions__item.active .questions__item-question {
    color: var(--akcent-color);
}
.questions__item.active .questions__item-toggle:after {
    opacity: 0;
}
.questions__item.active .questions__item-toggle:before {
    background-color: var(--akcent-color);
}
.questions__item.active .questions__item-answer {
    display: block;
}
/* Form */
.form {
    margin: 100px 0;
}
.form .title {
    margin-bottom: 40px;
}
.form .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
}
.form__photo-wrapper {
    min-width: 300px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.form__photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-form {
    width: 100%;
    background-color: #F7F7FA;
    border-radius: 5px;
    padding: 60px 80px;
}
.form__title {
    color: var(--text-color);
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}
.form__description {
    color: var(--subtitle-color);
    font-size: 24px;
    margin-bottom: 50px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 50px);
    grid-gap: 10px 20px;
    margin-bottom: 40px;
}
.form__input {
    color: var(--text-color);
    font-size: 16px;
    padding: 10px 18px;
    border: 1px solid #E4E4E4;
    background-color: #fff;
    border-radius: 5px;
    outline: none;
}
.form__input::placeholder {
    color: #8E9098;
}
.form__textarea {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    resize: none;
    font-family: 'San Francisco Pro Display', serif;
}
.form-terms {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-terms__text {
    color: var(--subtitle-color);
    font-size: 16px;
}
.form-terms__link {
    color: var(--akcent-color);
}
/* Map */
.map {
    position: relative;
}
.map-map {
    border: none;
}
.map>.container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
}
.map .container .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    max-width: 400px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    position: absolute;
    top: 30px;
    left: 0;
    gap: 30px;
}
.map .header-place {
    margin-left: 0;
}
.map .header-phone {
    margin-left: 0;
    margin-right: 0;
}
.map .primary-btn {
    background: none;
    color: var(--akcent-color);
    border: 1px solid var(--akcent-color);
}
/* Footer */
.footer {
    background-color: var(--menu-color);
    padding: 25px 0;
}
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__copy {
    color: #F3F1E9;
    font-size: 16px;
}
.footer__social {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer__social-item-icon {
    transition: 0.3s;
    fill: var(--subtitle-color);
}
.footer__social-item-icon.facebook:hover {
    fill: #3B5998;
}
.footer__social-item-icon.youtube:hover {
    fill: #FF0000;
}
.footer__social-item-icon.ok:hover {
    fill: #F68634;
}

/* Page */
.page {
    padding-top: 30px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    gap: 25px;
    margin-bottom: 30px;
}
.breadcrumbs__item {
    position: relative;
    color: var(--akcent-color);
}
.breadcrumbs__item:before {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 5px;
    height: 5px;
    background-color: #C4C4C4;
    border-radius: 50%;
}
.breadcrumbs__item:first-child:before {
    content: none;
}
.breadcrumbs__item.active {
    color: var(--subtitle-color);
}
.page-title {
    color: var(--text-color);
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #E7E7E7;
}
.page-text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    max-width: 900px;
}
.price-attention {
    display: flex;
    align-items: center;
    padding: 40px;
    background: #F7FFEE;
    border-radius: 5px;
    margin-bottom: 40px;
}
.price-attention__icon {
    width: 71px;
    min-width: 71px;
    height: 71px;
    margin-right: 25px;
}
.price-attention__title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.price-attention__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}
.price__table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}
.price__table {
    min-width: 100%;
}
.price__table thead {
    font-weight: bold;
    color: var(--text-color);
    font-size: 16px;
}
.price__table tbody {
    font-weight: 400;
    color: #3A3D46;
    font-size: 16px;
}
.price__table td {
    padding: 20px 0;
    border-bottom: 1px solid #E7E7E7;
}
.price__table tbody tr td:last-child {
    color: var(--akcent-color);
    font-weight: bold;
}
.price-text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}
.offers {
    padding-bottom: 100px;
}
.offers .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
}
.offer {
    display: flex;
    gap: 30px;
}
.offer__image-wrapper {
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}
.offer__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer__title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.offer__price {
    color: var(--akcent-color);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}
.offer__info {
    color: var(--subtitle-color);
    font-size: 16px;
    font-weight: 400;
}
.scheme {
    padding-top: 50px;
}
.scheme__image {
    max-width: 100%;
}
.process {
    padding-top: 60px;
}
.process__title {
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
}
.process__text {
    margin-top: 60px;
}
.process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 80px;
    max-width: 1000px;
}
.process-list__item {
    display: flex;
    align-items: center;
}
.process-list__item-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 20px;
}
.process-list__item-text {
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
}
.buy {
    padding-top: 100px;
}
.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
}
.buy-all__link {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    background-color: var(--akcent-color);
    border-radius: 5px;
}
.buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 45px;
}
.buy-grid__item-image-wrapper {
    width: 130px;
    min-width: 130px;
    height: 130px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}
.buy-grid__item-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buy-grid__item-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    color: var(--akcent-color);
}
.buy-grid__item-price {
    margin-bottom: 10px;
    color: var(--subtitle-color);
    font-size: 20px;
    font-weight: 500;
}
.buy-grid__item-info {
    color: var(--subtitle-color);
    font-size: 14px;
    font-weight: 400;
}
.lists__title {
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
}
.lists-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-auto-flow: column;
}
.lists-list__item {
    margin-bottom: 10px;
    padding-left: 20px;
}
.lists-list__item-link {
    color: var(--akcent-color);
    font-size: 16px;
    font-weight: 400;
}
.lists-list__item::before {
    content: "\2022";
    color: var(--akcent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.attention.help .attention__icon {
    width: 105px;
    min-width: 105px;
    height: 105px;
}
.scheme {
    margin-bottom: 60px;
    width: 100%;
}
.how .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.how-info {
    flex: 1;
    max-width: 900px;
}
.how-info__item {
    display: none;
}
.how-info__item.active {
    display: block;
}
.how-title {
    color: var(--text-color);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.how-text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;;
}
.how-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}
.how-btn {
    text-align: right;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--akcent-color);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px dashed var(--akcent-color);
}
.how-btn.active {
    padding: 10px 27px;
    border-radius: 5px;
    border: 1px solid var(--subtitle-color);
    color: var(--text-color);
}
.header-col-info .header__phone {
    color: var(--subtitle-color);
    font-size: 16px;
    font-weight: 400;
}
.header-col-info .header__phone a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* Adaptive */
@media screen and (max-width: 1256px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media screen and (max-width: 1120px) {
    .header__mobile-icon {
        display: flex;
    }
    .header .header-col {
        display: none;
    }
    .header .primary-btn {
        display: none;
    }
    .header.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background-color: #fff;
    }
    .header.active .header-col {
        display: block;
        margin-left: 0;
        margin-top: 40px;
    }
    .header.active .primary-btn {
        display: block;
        margin-top: 40px;
    }
    .header.active .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .header.active .header__mobile-icon {
        position: fixed;
        top: 42px;
        right: 20px;
    }
    .map>.container {
        position: initial;
    }
    .map .container .container {
        position: relative;
        left: 0;
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        gap: 0;
        margin-bottom: 50px;
    }
    .map .header-col {
        margin-left: 0;
        margin-top: 40px;
    }
    .map .primary-btn {
        margin-top: 40px;
    }
}
@media screen and (max-width: 930px) {
    .menu .container {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }
    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .menu-list__item-link {
        padding: 20px 0;
    }
    .about-row {
        flex-direction: column-reverse;
    }
    .documents .container {
        flex-direction: column;
    }
    .form .container {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 830px) {
    .documents-row {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 600px) {
    .banner {
        padding: 60px 0;
    }
    .banner__title {
        font-size: 40px;
    }
    .attention__icon {
        display: none;
    }
    .attention {
        margin-bottom: 50px;
    }
    .about, .documents, .questions, .form {
        margin: 50px 0;
    }
    .form-form {
        padding: 30px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form__textarea {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 3;
    }
}
@media screen and (max-width: 400px) {
    .banner__title {
        font-size: 32px;
    }
    .form-terms {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
}