<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Lucida Grande';
    src: local('Font Name'),
        url(fonts/lucidagrande.ttf);
}

@font-face {
    font-family: 'Font Name';
    src: local('Font Name'),
        url(fonts/lucidagrande_bold.ttf);
}

@font-face {
    font-family: 'PT Sans';
    src: local('Font Name'),
        url(fonts/PT_Sans-Web-Regular.ttf);
}

@font-face {
    font-family: 'Font Name';
    src: local('Font Name'),
        url(fonts/PT_Sans-Web-Bold.ttf);
}

:root {
    --bg-dark-color: #373535;
    --bg-gray-color: #606163;
    --line-color: #dae0e7;
    --field-color: #ebf0f5;
    --red-color: #e40138;
    --green-color: #078B83;
    --green-light-color: #00b0ad;
    --white-color: #ffffff;
    --secondary-color: #707781;
    --secondary-2-color: #d4e5ed;

    --primary-color: #000a1a;

    --content-width: 1600px;

}

@media screen and (min-width: 1200px) and (max-width: 1600px) {

    :root {
        --content-width: 1200px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    :root {
        --content-width: 90%;
    }
}

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

    :root {
        --content-width: calc(100% - 40px);
    }

}

html {
    box-sizing: border-box;
}

*, *::after, *::before {
    box-sizing: inherit;
}

body {
    position: relative;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background-color: #f5f5f5;
    color: var(--bg-dark-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}


/* HEADER */

.header {
    width: 100%;
    padding: 37px 20px;
    /* height: 103px; */
    /* padding: 37px 0; */
}

.header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    height: 55px;
}

.header__logo {
    display: flex;
    justify-content: flex-end;
}


.logo {
    display: inline-block;
}

.logo-sm {
    display: none;
}

.header__menu {
    display: flex;
    flex-direction: row;
}

.header .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header .menu li {
    padding: 0 12px;
    text-decoration: none;
    list-style-type: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.header .menu li a {
    color: var(--bg-dark-color);
    cursor: pointer;
}

.header .menu a:hover {
    color: var(--green-color)
}

.header__phone {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--bg-dark-color);
}

.header__schedule {
    font-size: 15px;
    font-weight: 500;
    line-height: 19.5px;
    letter-spacing: -0.01em;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--bg-gray-color);
}

.header__menu-burger {
    display: none;
}

.button-menu {
    position: relative;
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: none;
    border: 1px solid #373535;
    color: var(--primary-color);
    border-radius: 8px;
    z-index: 50;
    padding: 0;
    box-shadow: 0px 8px 24px -4px rgba(78, 78, 78, 0.08);
}

.button-menu.active {
    background-color: none;
}

.button-menu::after,
.button-menu::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 40%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.button-menu span {
    position: absolute;
    height: 2px;
    width: 40%;
    background-color: var(--primary-color);
    transform: scale(1);
    left: 14px;
}

.button-menu::before {
    top: 16px;
    left: 14px;
}

.button-menu::after {
    bottom: 16px;
    left: 14px;
}

.button-menu.active::before {
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(45deg);
}

.button-menu.active::after {
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(-45deg);
}

.button-menu.active span {
    display: none;
}


@media screen and (min-width: 1200px) and (max-width: 1600px) {

    .header .menu li {
        font-size: 12px;
    }

    .header__phone {
        font-size: 16px;
        line-height: 30px;
    }

    .header__schedule {
        font-size: 12px;
        line-height: 19.5px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {

    .header__content {
        max-width: 100%;
    }

    .header .menu li {
        font-size: 10px;
        padding: 0 5px;
    }

    .header__phone {
        font-size: 13px;
        line-height: 22px;
    }

    .header__schedule {
        font-size: 8px;
        line-height: 12.5px;
    }
}

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

    .header {
        padding: 16px 10px;
    }

    .header__phone {
        font-size: 17px;
        line-height: 22px;
    }


    .header__content.open-modal .header__phone {
        font-family: "Lucida Grande";
    }

    .header__schedule {
        font-size: 13px;
        line-height: 17px;
    }

    .header__content.open-modal .header__schedule {
        font-family: "Lucida Grande";
    }

    .header__content.open-modal .header__info .header__phone {
        color: var(--white-color);
    }

    .header__content.open-modal .header__info .header__schedule {
        color: #d4e5ed;

    }

    .header__content.open-modal .header__info {
        position: relative;
        z-index: 50;
    }

    .header__logo .logo-sm {
        position: relative;
        z-index: 50;
    }

    .header__content.open-modal .header__menu {
        display: flex;
    }

    .header__menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        z-index: 20;
        overflow: hidden;
        background: #00141ee6;
        padding: 100px 20px;
        animation: menuOpasity 0.4s;
    }

    @keyframes menuOpasity {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .header__content.open-modal nav.menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
        color: #ffffff;
        padding: 0;
    }

    .header__content.open-modal nav.menu a {
        font-family: "Lucida Grande";
        color: #ffffff;
        font-size: 17px;
        font-weight: 500;
        line-height: 22px;
    }

    .header__logo .logo-sm {
        display: inline-block;
    }

    .header__logo {
        margin: 0 !important;
    }

    .header__logo .logo {
        display: none;
    }

    .header__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header__phone {
        font-size: 17px;
        line-height: 25.5px;
    }

    .header__schedule {
        text-align: center;
        font-size: 13px;
        line-height: 16.9px;
    }

    .header__menu-burger {
        display: inline-block;
    }
}

/* TITLE BLOCK */

.section-title-block {}

.title-block {
    position: relative;
    width: 100%;
    padding: 15% 8%;
}

.title-block__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.title-block__bg {
    background-color: #4c4b4d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: -5;
}

.title-block__title {
    top: 30%;
    left: 8.33%;
    font-size: 64px;
    font-weight: 600;
    line-height: 78px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    /* .title-block {
        height: 640px;
    } */

    .title-block__title {
        font-size: 56px;
        line-height: 64px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {

    /* .title-block {
        height: 480px;
    } */

    .title-block__title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media screen and (max-width: 950px) {
    .title-block__title {
        font-size: 30px;
        line-height: 40px;
        left: 2%;
    }

    .title-block {
        height: 356px;
    }
}


/* GREETING */

.section-greeting {}

.greeting {
    position: relative;
    padding: 160px 8% 192px 8%;
}

.greeting__content {
    position: relative;
    margin: 0 auto;
    max-width: var(--content-width);
}

.greeting__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    width: 74.5%;
}

.greeting__quotation-marks {
    position: absolute;
    top: -13px;
    right: calc(100% + 14px);
    width: 64px;
    height: 64px;
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .greeting__text {
        font-size: 18px;
        line-height: 26px;
    }

    .greeting__quotation-marks {
        position: absolute;
        top: -13px;
        right: calc(100% + 14px);
        width: 48px;
        height: 48px;
    }
}

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

    .greeting {
        padding: 48px 2% 48px 2%;
    }

    .greeting__text {
        font-size: 16px;
        line-height: 20px;
        width: 100%;
    }

    .greeting__quotation-marks {
        position: static;
        margin-bottom: 16px;
        width: 32px;
        height: 32px;
    }
}


/* REASONS */

.section-reasons {}

.reasons {
    position: relative;
    width: 100%;
    padding: 40px 8% 64px 8%;
}

.reasons__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.reasons__bg {
    background-color: #4c4b4d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: -5;
}

.reasons__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.reasons__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 4rem;
}

.reasons__cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: var(--content-width);
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    border-right: solid 1px #ffffff;
    padding: 20px;
}

.card:last-child {
    border: none;
    padding-bottom: 1rem;
}

.card__img {}

.card__title {
    font-size: 2.1em;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 12px;
}

.card__subtitle {
    font-family: Inter;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.reasons__button {
    margin-top: 24px;
    height: 80px;
    width: max-content;
    padding: 0 3rem;
    cursor: pointer;

    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: rgba(228, 1, 56, 1);
    color: #ffffff;
    border: none;
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .reasons {
        font-size: 12px;
    }
}

@media screen and (max-width: 950px) {
    .reasons__title {
        margin-bottom: 32px;
    }

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

    .card {
        border-right: none;
        border-bottom: solid 1px #ffffff;
    }

    .card__title {
        font-size: 24px;
        line-height: 30px;
    }

    .card__subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .reasons__button {
        font-size: 20px;
        line-height: 25px;
        height: 65px;
    }
}

.section-gallery {}

.gallery-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0 102px;
}

.gallery-projects__title {
    font-size: 58px;
    font-weight: 700;
    line-height: 71px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 55px;
}

.gallery-projects__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: var(--content-width);
}

.gallery-projects__items {
    max-width: 85%;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px 48px;
    vertical-align: top;
}

.gallery-item__image {
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
    height: 390px;
}

.gallery-item__title {
    color: #373535;
    font-size: 34px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 0.5rem;
}

.slick-arrow {
    position: absolute;
    width: 7%;
    height: 7%;
    top: 50%;
    transform: translateY(-100%);
    cursor: pointer;
}

.gallery-projects .slick-prev {
    left: -10%;
}

.gallery-projects .slick-next {
    right: -10%;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .gallery-item__title {
        font-size: 30px;
        line-height: 40px;
    }

    .gallery-item__image {
        width: 100%;
        object-fit: cover;
        border-radius: 22px;
        height: 276px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .gallery-item__title {
        font-size: 24px;
        line-height: 30px;
    }

    .gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px 48px;
        vertical-align: top;
    }

    .gallery-item__image {
        height: 252px;
    }
}

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

    .gallery-item__image {
        height: 385px;
    }

    .gallery-projects__title {
        margin-bottom: 48px;
    }

    .gallery-projects__items {
        max-width: 100%;
    }

    .gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px 48px;
    }

    .gallery-item__title {
        font-size: 16px;
        line-height: 20px;
    }

    .slick-arrow {
        top: auto;
        width: 64px;
        height: 64px;
        cursor: pointer;
        transform: translateY(100%);
    }

    .gallery-projects .slick-prev {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .gallery-projects .slick-next {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.section-for-designers {}

.for-designers {
    position: relative;
    color: #ffffff;
    padding: 100px 0;
}

.for-designers__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.for-designers__bg {
    background-color: #4c4b4d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: -5;
}

.for-designers__comments {
    width: 77%;
    margin: 0 auto;
}

.for-designers .comment {
    margin-top: 60px;
    position: relative;
    padding-bottom: 100px;
    padding: 0 12%;
}

.for-designers .comment__text::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    top: 0;
    left: 0;
    transform: translateX(-110%) translateY(-80%);
    background-image: url(images/svg/quotation-marks-white.svg);
    background-repeat: no-repeat;
}

.for-designers .comment__text {
    position: relative;
    font-size: 34px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.user-info {
    display: flex;
    flex-direction: row;
    margin-left: 45%;
}

.user-info__photo {
    width: 212px;
    height: 212px;
    margin-right: 17px;
    border-radius: 50%;
}

.user-info__text {
    display: flex;
    flex-direction: column;
}

.user-info__name {
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 40px;
}

.user-info__last-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.user-info__profession {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.user-info__city {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.for-designers__comments .slick-prev {
    left: -10%;
}

.for-designers__comments .slick-next {
    right: -10%;
}


@media screen and (min-width: 950px) and (max-width: 1200px) {
    .user-info {
        display: flex;
        flex-direction: row;
        margin-left: 20%;
    }
}

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

    .for-designers {
        padding: 0 20px;
    }

    .for-designers__comments {
        width: 98%;
        margin: 0 auto;
    }

    .for-designers .comment {
        position: relative;
        padding-bottom: 100px;
        padding: 0;
    }

    .for-designers .comment__text {
        position: relative;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 32px;
    }

    .for-designers .comment__text::before {
        position: static;
        display: block;
        width: 32px;
        height: 32px;
        top: 0;
        left: 0;
        transform: none;
        background-image: url(images/svg/quotation-marks-white.svg);
        background-repeat: no-repeat;
        background-size: contain;
        margin-bottom: 16px;
    }

    .user-info {
        margin-left: 0;
        margin-bottom: 160px;
    }

    .user-info__photo {
        width: 96px;
        height: 96px;
        margin-right: 24px;
    }

    .user-info__name {
        font-size: 24px;
        line-height: 30px;
        margin: 0;
    }

    .user-info__last-name {
        font-size: 24px;
        line-height: 30px;
    }

    .user-info__profession {
        font-size: 16px;
        line-height: 20px;
    }

    .user-info__city {
        font-size: 16px;
        line-height: 20px;
    }

    .for-designers__comments .slick-prev {
        left: 0;
        bottom: 64px;
        transform: none;
        z-index: 10;
    }

    .for-designers__comments .slick-next {
        right: 0;
        bottom: 64px;
        transform: none;
    }
}

/* GALLERY FURNITURE */

.section-gallery-furniture {}

.gallery-furniture {
    padding: 70px 0 100px 0;
}

.gallery-furniture__title {
    font-size: 58px;
    font-weight: 700;
    line-height: 71px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 55px;
}

.gallery-furniture__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: var(--content-width);
    margin: 0 auto;
}

.gallery-furniture-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24%;
    margin-bottom: 48px;
    color: #373535;
}

.gallery-furniture-item__img {
    width: 100%;
    margin-bottom: 11px;
    border-radius: 16px;
}

.gallery-furniture-item__title {
    font-size: 34px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-transform: uppercase;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .gallery-furniture-item__title {
        font-size: 26px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .gallery-furniture-item__title {
        font-size: 22px;
    }
}

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

    .gallery-furniture {
        padding: 64px 0 64px 0;
    }

    .gallery-furniture__title {
        font-size: 32px;
        line-height: 40px;
    }

    .gallery-furniture-item__title {
        font-size: 18px;
        line-height: 23px;
    }

    .gallery-furniture-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 48%;
        margin-bottom: 48px;
    }

}


/* ADVANTAGES */

.section-advantages {}

.advantages {
    position: relative;
    color: #ffffff;
}

.advantages__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.advantages__bg {
    background-color: #4c4b4d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: -5;
}

.advantages__items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: var(--content-width);
    margin: 0 auto;
    padding: 10% 0;
}

.advantages__items hr {
    height: 215px;
    border: solid 1px #ffffff;
}

.advantages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 19%;
    height: 284px;
    padding-top: 32px;
    height: 274px;
}

.advantages-item:last-child {
    border: none;
}

.advantages-item__img {
    height: 55.5%;
    width: 100%;
}

.advantages-item__img img {
    max-width: 90%;
    height: 100%;
}

.advantages-item__title {
    width: auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 32px;
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .advantages-item__title {
        font-size: 17px;
    }
}

@media screen and (max-width: 950px) {
    .advantages__items {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: none;
    }

    .advantages-item {
        width: 90%;
        height: auto;
        padding: 0;
    }

    .advantages__items hr {
        height: 1px;
        width: 42%;
        margin: 32px 0;
    }
}

/* REWIEWS */

.section-reviews {}

.reviews {
    padding: 70px 0 80px 0;
}

.reviews__title {
    font-family: PT Sans;
    font-size: 58px;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 72px;
}

.reviews__items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: var(--content-width);
    margin: 0 auto;
}

.reviews-item {
    width: 32%;
    padding-left: 70px;
}

.reviews-item__user-info {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 70px;
}

.reviews-item__date {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #aaacae;

}

.reviews-item__name {
    font-size: 34px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.reviews-item__city {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.reviews-item__rewiew {}

/* .reviews-item__quotation-marks {
    width: 48px;
    height: 48px;
} */

.reviews-item__message {
    position: relative;
    background-color: #e6e7e8;
    padding: 22px 12px 16px 30px;
    border-radius: 8px;
    margin-bottom: 8px;
    padding-bottom: 30px;
}

.reviews-item__message::after {
    content: '';
    position: absolute;
    left: 38px;
    top: 0;
    border: 18px solid transparent;
    border-bottom: 30px solid #e6e7e8;
    transform: translateY(-88%) rotate(-12deg);
}

.reviews-item__message::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    background-image: url(images/svg/quotation-marks-gray.svg);
    left: -20px;
    top: 0;
    transform: translateX(-100%) translateY(-50%);
}

.reviews-item__text {
    height: calc(5 * 23px);
    overflow-y: scroll;
    scroll-behavior: smooth;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-right: 12px;
}

.reviews-item__img {
    width: 50%;
}

.reviews-item__text::-webkit-scrollbar {
    width: 10px;
    margin: 0 16px;
}

.reviews-item__text::-webkit-scrollbar-track {
    background: #bdbfc1;
    border-radius: 2px;
}

.reviews-item__text::-webkit-scrollbar-thumb {
    background: #737476;
    border-radius: 2px;
    width: 8px;
}



@media screen and (min-width: 950px) and (max-width: 1200px) {

    .reviews-item__date {
        font-size: 17px;
        line-height: 20px;
    }

    .reviews-item__name {
        font-size: 28px;
        line-height: 30px;
    }

    .reviews-item__city {
        font-size: 16px;
        line-height: 20px;
    }

    .reviews-item__text {
        height: calc(7 * 18px);
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 950px) {
    .reviews__items {
        flex-direction: column;
    }

    .reviews-item {
        width: 100%;
        margin-bottom: 32px;
    }

    .reviews-item__user-info {
        margin-bottom: 38px;
    }

    .reviews-item__date {
        font-size: 16px;
        line-height: 20px;
    }

    .reviews-item__name {
        font-size: 24px;
        line-height: 30px;
    }

    .reviews-item__city {
        font-size: 16px;
        line-height: 20px;
    }

    .reviews-item__text {
        height: calc(7 * 18px);
        font-size: 14px;
        line-height: 18px;
    }

}

.section-video-block {}

.video-block {
    position: relative;
    color: #ffffff;
}

.video-block__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.video-block__content {
    display: flex;
    justify-content: space-between;
    width: var(--content-width);
    margin: 0 auto;
    padding: 148px 0 284px
}

.video-block__info {
    width: 49%;
}

.video-block__title {
    font-size: 58px;
    font-weight: 600;
    line-height: 71px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 50px;
}

.video-block__subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 50px;
    padding-right: 20%;
}

.video-block__link {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    padding-right: 1.5rem;
}

.video-block__link::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 1px;
    border: 1px solid #ffffff;
    right: 0;
    bottom: 15px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.video-block__link::after {
    position: absolute;
    content: '';
    width: 10px;
    border: 1px solid #ffffff;
    right: 0;
    top: 15px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.video-block__videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

.video-block__video {
    width: 60%;
    object-fit: cover;
    margin: 0 auto;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .video-block__video {
        width: 80%;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {
    .video-block__video {
        width: 90%;
    }
}

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

    .video-block__content {
        padding: 64px 0;
    }

    .video-block__content {
        flex-direction: column;
    }

    .video-block__info {
        width: 100%;
        margin-bottom: 32px;
    }

    .video-block__videos {
        width: 100%;
    }

    .video-block__video {
        width: 100%;
    }

    .video-block__title {
        font-size: 32px;
        line-height: 40px;
    }

    .video-block__subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .video-block__link {
        font-size: 16px;
        line-height: 20px;
    }

    .video-block__link::before {
        bottom: 12px;
    }

    .video-block__link::after {
        top: 12px;
    }

}


.section-application {}

.application {
    position: relative;
    color: #ffffff;
    padding: 282px 0 267px;
}

.application__content {
    width: var(--content-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.application__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.application__bg {
    background-color: #4c4b4d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: -5;
}

.application__title {
    font-size: 68px;
    font-weight: 600;
    line-height: 83px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0 0 42px 0;
}

.application__subtitle {
    font-family: Inter;
    font-size: 44px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    width: 70%;
    padding: 0;
    margin-bottom: 100px;
}

.application__subtitle a {
    text-decoration: underline;
    color: #ffffff;
}

.application__form {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.application__form input {
    height: 80px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    border: none;
    padding-left: 3rem;
    font-family: Inter;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 16px;
}

.application__form button {
    height: 80px;
    background: #00b0ad;
    font-family: Inter;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    width: 50%;
    margin: 144px auto 0 auto;
    cursor: pointer;
}

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

    .application {
        position: relative;
        color: #ffffff;
        padding: 64px 0;
    }

    .application__title {
        font-size: 32px;
        line-height: 40px;
    }

    .application__subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .application__form {
        width: 100%;
    }

    .application__form input {
        height: 63px;
        width: 100%;
        font-size: 18px;
        line-height: 23px;
    }

    .application__form button {
        width: 100%;
        margin-top: 24px;
        font-size: 18px;
    }
}

.footer {
    background: #384044;
    color: #ffffff;
    padding: 67.5px 0;
}

.footer a {
    color: #ffffff;
}

.footer__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: var(--content-width);
}

.footer__left {
    width: 65%;
}

.footer__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}

.footer__info {
    display: flex;
    flex-wrap: wrap;
}

.note {
    width: 49%;
    margin-bottom: 20px;
}

.note__title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 8px;
    color: #d4e5ed;
}

.note__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.footer__menu {}

.menu {
    display: flex;
    flex-direction: row;
}

.footer__menu ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer__menu li {
    text-decoration: none;
    list-style-type: none;
    font-family: Inter;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-right: 24px;
    margin-bottom: 16px;
    cursor: pointer;
}

.menu {}

.footer__arrow {}

.arrow {}

.arrow-up {
    cursor: pointer;
}



@media screen and (min-width: 1200px) and (max-width: 1600px) {

    .footer {
        padding: 50px 0;
    }

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

    /* .footer__logo {
        position: absolute;
        right: 0;
        bottom: 0;
    } */

    .footer__menu {
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 950px) and (max-width: 1200px) {

    .footer {
        padding: 50px 0;
    }

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

    .note__title {
        font-size: 15px;
        line-height: 19.5px;
    }

    .note__text {
        font-size: 17px;
        line-height: 25.5px;
    }

    .footer__menu {
        margin-bottom: 25px;
    }

    .footer__menu li {
        font-size: 15px;
    }
    
}

@media screen and (max-width: 950px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
    }

    .footer__left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer__info {
        align-items: center;
    }

    .note {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

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

    .footer__menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer__logo {
        position: static;
        margin-top: 40px;
    }
}</pre></body></html>