@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
:root {
    --color-white: #FFFFFF;
    --color-cream: #FFE2CC;
    --color-cream_dark: #EFD4BE;
    --color-black: #232323;
    ---color-grey: #BDA999;
}


/* Normalize */

*,
*::after,
*::before {
    margin: unset;
    padding: unset;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    outline: unset;
}

a {
    text-decoration: unset;
    color: var(--color-black);
}

ul {
    list-style: none;
}

section {
    display: flex;
    width: 100%;
    justify-content: center;
}

section .container {
    padding-left: 90px!important;
    padding-right: 90px!important;
    width: 100%;
    max-width: 1760px!important;
}

@media screen and (max-width: 1366px) {
    section .container {
        padding-left: 60px!important;
        padding-right: 60px!important;
    }
}

@media screen and (max-width: 1024px) {
    section .container {
        padding-left: 36px!important;
        padding-right: 36px!important;
    }
}

@media screen and (max-width: 768px) {
    section .container {
        padding-left: 24px!important;
        padding-right: 24px!important;
    }
}

@media screen and (max-width: 500px) {
    section .container {
        padding-left: 18px!important;
        padding-right: 18px!important;
    }
}


/* Hero */

.hero {
    background-color: var(--color-black);
    height: calc(var(--vh, 1vh) * 100);
    max-height: 980px;
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1620px;
    padding: 0 20px;
    z-index: 1;
}

.hero--img__bg {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: radial-gradient(85.79% 39.31% at 80.63% 90.61%, rgba(255, 226, 204, 0.50) 0%, rgba(255, 226, 204, 0.00) 100%);
}

.hero--img {
    display: flex;
    width: calc(40% - 40px);
    margin-top: auto;
    position: relative;
    left: 100px;
}

.hero--img img {
    width: 100%;
    max-width: 615px;
    height: 100%;
    object-fit: contain;
}

.hero--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 63%;
}

.hero--content__head {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 48px;
}

.hero--content__head img {
    width: 60px;
    height: 48px;
    margin-right: 12px;
}

.hero--content__head span {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    margin-right: auto;
}

.hero--content__head p {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    margin-left: auto;
}

.hero--content__title {
    color: var(--color-white);
    font-size: 78px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.hero--content__title b {
    color: var(--color-cream);
}

.hero--content__story {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 48px;
}

.hero--content__story--year {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 36px;
    border: 1px solid var(--color-white);
    border-radius: 60px;
    margin-right: 12px;
}

.hero--content__story--year span {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    /* 26.4px */
}

.hero--content__story--year p {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.hero--content__story--done {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 36px;
    border: 1px solid var(--color-cream);
    border-radius: 60px;
}

.hero--content__story--done span {
    color: var(--color-cream);
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    /* 26.4px */
}

.hero--content__story--done span small {
    font-size: 12px;
    position: relative;
    top: -6px;
    left: 2px;
}

.hero--content__story--done p {
    color: var(--color-cream);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.hero--content__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 36px;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    /* 19.8px */
    border-radius: 60px;
    background: var(--color-cream);
    transition: .3s all ease-in-out;
    border: 1px solid var(--color-cream);
    cursor: pointer;
    z-index: 4;
}

.hero--content__btn:hover {
    background-color: unset;
    color: var(--color-white);
}

.hero--burger {
    position: absolute;
    top: 64px;
    right: 64px;
    cursor: pointer;
    transition: .3s all ease-in-out;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: unset;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black);
    border: 8px solid #b7a89d;
}

.hero--burger:hover {
    background-color: var(--color-cream);
}

.hero--burger svg {
    width: 28px;
    height: 28px;
    fill: var(--color-cream);
}

.hero--burger:hover svg {
    fill: var(--color-black);
}

.hero--burger__bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    transition: .3s all ease-in-out;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

.hero.open .hero--burger__bg {
    display: block;
    opacity: 1;
    pointer-events: inherit;
}

.hero.open .hero--burger__menu {
    right: 0;
}

.hero--burger__menu {
    height: calc(var(--vh, 1vh) * 100);
    width: 702px;
    background-color: var(--color-black);
    z-index: 4;
    position: fixed;
    right: -100%;
    border-left: 4px solid var(--color-cream);
    transition: .3s all ease-in-out;
}

.hero--burger__menu--bg {
    opacity: 0.3;
    background: #FFE2CC;
    filter: blur(40px);
    position: absolute;
    right: -100%;
    z-index: 3;
    height: calc(var(--vh, 1vh) * 100);
    width: 702px;
    transition: .3s all ease-in-out;
}

.hero.open .hero--burger__menu--bg {
    right: 0;
}

.hero--burger__menu--head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 135px;
    padding: 78px 64px 0 97px;
}

.burger_logo {
    width: 68px;
    height: 56px;
    opacity: 0.5;
}

.burger_btn {
    margin-left: auto;
    cursor: pointer;
}

.burger_btn svg {
    width: 64px;
    height: 64px;
    padding: 4px 4px;
    border-radius: 40px;
    opacity: 0.5;
    transition: .3s all ease-in-out;
}

.burger_btn svg:hover {
    border: 8px solid var(--color-cream);
    opacity: unset;
}

.hero--burger__menu--nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero--burger__menu--nav a {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    transition: .3s all ease-in-out;
    justify-content: space-between;
    padding: 0 97px;
}

.hero--burger__menu--nav a svg {
    width: 30px;
    height: 26px;
    opacity: 0;
    position: relative;
    right: -25px;
    transition: .3s all ease-in-out;
}

.hero--burger__menu--nav a span {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 0;
}

.hero--burger__menu--nav a::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: .3s all ease-in-out;
    background: linear-gradient(270deg, #FFE2CC 0%, rgba(255, 226, 204, 0.00) 100%);
}

.hero--burger__menu--nav a:hover span {
    color: var(--color-cream);
}

.hero--burger__menu--nav a:hover::after {
    opacity: 0.3;
}

.hero--burger__menu--nav a:hover svg {
    opacity: 1;
}

.hero--head_mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    display: none;
}

.hero--head_mobile__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.hero--head_mobile--info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero--head_mobile--info span {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.hero--head_mobile--info p {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.hero--logo_mobile {
    width: 42px;
    height: 34px;
}

.hero--btn_mobile {
    width: 48px;
    height: 48px;
}

.hero--btn_mobile svg {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 2220px) {
    .hero--img img {
        max-width: 600px;
    }
}

@media screen and (max-width: 1840px) {
    .hero--img {
        left: 70px;
    }
}

@media screen and (max-width: 1770px) {
    .hero--img {
        left: 30px;
    }
}

@media screen and (max-width: 1690px) {
    .hero--img {
        left: 0;
    }
}

@media screen and (max-width: 1639px) {
    .hero--content__head {
        max-width: 850px;
    }
}

@media screen and (max-width: 1638px) {
    .hero--content__title {
        font-size: 72px;
        text-transform: uppercase;
    }
    .hero--img {
        position: unset;
    }
}

@media screen and (max-width: 1600px) {
    .hero--content__title {
        font-size: 67px;
    }
}

@media screen and (max-width: 1450px) {
    .hero--content__title {
        font-size: 62px;
    }
    .hero--img {
        width: calc(45% - 60px);
    }
    .hero--content {
        width: 60%;
    }
}

@media screen and (max-width: 1470px) {
    .hero--content__title {
        font-size: 60px;
    }
}

@media screen and (max-width: 1366px) {
    .hero {
        max-height: 600px;
    }
    .hero--burger {
        top: 48px;
        right: 48px;
    }
    .hero--burger svg {
        width: 24px;
        height: 24px;
        fill: var(--color-cream);
    }
    .hero--burger__menu,
    .hero--burger__menu--bg {
        width: 476px;
    }
    .hero--burger__menu--nav a span {
        font-size: 24px;
        padding: 11px 0;
    }
    .hero--img img {
        max-width: 400px;
    }
    .burger_logo {
        width: 40px;
        height: 34px;
    }
    .burger_btn svg {
        width: 48px;
        height: 48px;
    }
    .burger_btn svg:hover {
        border: 3px solid var(--color-cream);
        opacity: unset;
    }
    .hero--content__story--done span small {
        font-size: 8px;
        top: -5px;
        left: 2px;
    }
    .hero--burger__menu--head {
        padding: 55px 48px 0 64px;
    }
}

@media screen and (max-width: 1366px) {
    .hero--content__head {
        margin-bottom: 24px;
    }
    .hero--content__head img {
        width: 45px;
        height: 36px;
    }
    .hero--content__head span {
        font-size: 22px;
    }
    .hero--content__head p {
        font-size: 22px;
    }
    .hero--content__story--year span,
    .hero--content__story--done span {
        font-size: 18px;
    }
    .hero--content__story--year p,
    .hero--content__story--done p {
        font-size: 16px;
    }
    .hero--content__btn {
        font-size: 16px;
        padding: 16px 24px;
    }
    .hero--content__story {
        margin-bottom: 36px;
    }
    .hero--content__title {
        font-size: 52px;
    }
    .hero--img {
        width: 40%;
        position: relative;
        left: 70px;
    }
    .hero--content {
        width: 60%;
    }
    .hero--content__story--year {
        padding: 8px 24px;
    }
    .hero--content__story--done {
        padding: 8px 24px;
    }
    .hero--content__head {
        max-width: 615px;
    }
    .hero--burger {
        width: 64px;
        height: 64px;
    }
    .hero--burger__menu--head {
        margin-bottom: 51px;
    }
    .hero--burger__menu--nav a {
        padding: 0 64px;
    }
    .hero--burger__menu--nav a svg {
        width: 18px;
        height: 16px;
        right: -16px;
    }
}

@media screen and (max-width: 1300px) {
    .hero--img {
        left: 60px;
    }
}

@media screen and (max-width: 1250px) {
    .hero--img {
        left: 40px;
    }
}

@media screen and (max-width: 1250px) {
    .hero--img {
        width: 40%;
    }
    .hero--content {
        width: 60%;
    }
    .hero--img img {
        max-width: 400px;
    }
}

@media screen and (max-width: 1200px) {
    .hero--burger {
        top: 48px;
        right: 48px;
    }
}

@media screen and (max-width: 1250px) {
    .hero--img {
        position: unset;
    }
}

@media screen and (max-width: 1110px) {
    .hero--burger {
        top: 48px;
        right: 48px;
    }
}

@media screen and (max-width: 1050px) {
    .hero {
        max-height: unset;
    }
    .hero--img {
        width: 50%;
    }
    .hero--img img {
        max-width: 100%;
    }
    .hero--content {
        width: 50%;
    }
    .hero--head_mobile--info span {
        font-size: 16px;
    }
    .hero--head_mobile--info p {
        font-size: 16px;
    }
    .hero--content__head span,
    .hero--content__head span {
        font-size: 16px;
    }
    .hero--burger__menu--head {
        margin-bottom: 138px;
    }
    .hero--content__story--done span small {
        font-size: 8px;
        top: -4px;
        left: 2px;
    }
    .hero--content__head {
        max-width: 400px;
    }
    .hero--content__head p {
        font-size: 16px;
    }
}

@media screen and (max-width: 950px) {
    .hero--btn_mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border: 6px solid #b7a89d;
        transition: .3s all ease-in-out;
        border-radius: 50%;
    }
    .hero--btn_mobile svg {
        width: 18px;
        height: 14px;
        fill: var(--color-cream);
    }
    .hero--btn_mobile:hover {
        background-color: var(--color-cream);
    }
    .hero--btn_mobile:hover svg {
        fill: var(--color-black);
    }
    .hero {
        max-height: unset;
    }
    .hero .container {
        flex-direction: column;
        padding: 20px 20px 0;
    }
    .hero--content {
        width: 100%;
    }
    .hero--img {
        width: 100%;
        justify-content: center;
    }
    .hero--img img {
        max-width: 458px;
    }
    .hero--head_mobile {
        display: flex;
        margin-bottom: 36px;
    }
    .hero--content__head {
        display: none;
    }
    .hero--burger {
        display: none;
    }
    .hero--content__title {
        margin-bottom: 36px;
    }
    .hero--img {
        position: relative;
        top: 30px;
        margin-top: unset;
    }
    .hero--head_mobile--info {
        max-width: 605px;
    }
}

@media screen and (max-width: 768px) {
    .hero--content__title {
        font-size: 48px;
    }
    .hero .container {
        padding: 16px 24px 0;
    }
    .hero--content__story--year p,
    .hero--content__story--done p {
        font-size: 12px;
    }
    .hero--img img {
        max-width: 410px;
    }
    .hero--head_mobile--info {
        max-width: 570px;
    }
    .hero--burger__menu--head {
        padding: 23px 30px 0 24px;
        margin-bottom: 170px;
    }
    .hero--burger__menu--nav a {
        padding: 0 36px;
    }
}

@media screen and (max-width: 600px) {
    .hero {
        min-height: 950px;
    }
    .hero--content__title {
        margin-bottom: 16px;
        max-width: 276px;
    }
    .hero--head_mobile {
        margin-bottom: 16px;
    }
    .hero--img img {
        position: relative;
        top: 30px;
    }
    .hero--content__story {
        margin-bottom: unset;
    }
    .hero--content__btn {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }
    .hero--img {
        top: -25px;
        left: 30px;
    }
    .hero--head_mobile--info span,
    .hero--head_mobile--info p {
        font-size: 20px;
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 550px) {
    .hero--burger__menu,
    .hero--burger__menu--bg {
        width: 350px;
    }
}

@media screen and (max-width: 450px) {
    .hero--img img {
        max-width: 328px;
    }
}


/* Gallery */

.services {
    background-color: var(--color-black);
    padding: 120px 0;
}

.services .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
}

.services__title {
    color: var(--color-white);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    /* 70.4px */
    text-transform: uppercase;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-cream);
}

.services__cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.services__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 64px 64px 64px;
    background-color: #303030;
    width: calc(100% / 3);
    margin-right: 24px;
}

.services__item:last-child {
    margin-right: unset;
}

.services__item--tetle {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.services__item ul {
    margin-bottom: 24px;
}

.services__item ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-white);
    position: relative;
}

.services__item ul li::before {
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 2px;
    background-color: var(--color-white);
    left: -15px;
    top: 7px;
}

.services__item .cream_color--wrap ul li::before {
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 2px;
    background-color: var(--color-black);
    left: -15px;
    top: 7px;
}

.services__item--price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.services__item--btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid var(--color-cream);
    color: var(--color-cream);
    font-size: 18px;
    font-weight: 600;
    margin-right: auto;
    transition: .3s all ease-in-out;
    cursor: pointer;
}

.services__item--btn:hover {
    background-color: var(--color-cream);
    color: var(--color-black);
}

.services__item--price span {
    display: flex;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
}

.services__cards .no-color {
    background-color: unset;
}

.services__cards .cream_color {
    background-color: var(--color-cream);
}

.services__cards .cream_color .services__item--tetle {
    color: var(--color-black);
}

.services__cards .cream_color ul li {
    color: var(--color-black);
}

.services__cards .cream_color .services__item--price .services__item--btn {
    border-color: var(--color-black);
    color: var(--color-black);
}

.services__cards .cream_color .services__item--price span {
    color: var(--color-black);
}

.services__cards .cream_color .services__item--price .services__item--btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

@media screen and (max-width: 1700px) {
    .services__item--price {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .services__item--price span {
        margin: 0 0 12px 0;
    }
}

@media screen and (max-width: 1560px) {
    .services__item--price {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .services__item--price span {
        margin-bottom: 14px;
    }
    .services__title {
        font-size: 48px;
        padding-bottom: 36px;
        margin-bottom: 36px;
    }
    .services__item--tetle {
        font-size: 24px;
    }
    .services__item ul {
        margin-bottom: 56px;
    }
    .services__item ul li {
        font-size: 14px;
    }
    .services__item {
        padding: 48px 0 48px 48px;
    }
}

@media screen and (max-width: 1366px) {
    .services {
        padding: 100px 0;
    }
    .services__item--price span {
        font-size: 16px;
    }
    .services__item--btn {
        font-size: 16px;
        padding: 12px 16px;
    }
}

@media screen and (max-width: 1220px) {
    .services__cards {
        flex-wrap: wrap;
    }
    .services__item {
        width: calc(50% - 12px);
        margin: unset;
    }
    .services__item:nth-child(2) {
        margin-right: unset;
        margin-left: 24px;
    }
    .services__cards .cream_color {
        width: 100%;
        margin-top: 24px;
    }
    .cream_color--wrap {
        width: 100%;
    }
    .services__cards .cream_color {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-direction: unset;
        padding-right: 48px;
    }
    .services__cards .cream_color ul {
        margin-bottom: unset;
    }
    .services__cards .cream_color .services__item--price {
        margin-left: auto;
    }
    .services__cards .cream_color .services__item--price span {
        margin-left: auto;
        margin-right: 70px;
    }
    .services__cards .cream_color .services__item--price .services__item--btn {
        margin-right: unset;
        margin-left: auto;
    }
    .services__item--price span {
        font-size: 16px;
    }
    .services__item--btn {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .services {
        padding: 80px 0;
    }
}

@media screen and (max-width: 900px) {
    .services__item {
        padding: 36px 36px;
    }
    .services__cards .cream_color {
        padding-right: 36px;
    }
}

@media screen and (max-width: 768px) {
    .services .container {
        padding: 0 24px;
    }
    .services__title {
        font-size: 24px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .services__item {
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
        margin-bottom: 16px;
    }
    .services__item:last-child {
        margin-bottom: unset;
    }
    .services__item:nth-child(2) {
        margin-right: unset;
        margin-left: unset;
    }
    .services__item--tetle {
        font-size: 20px;
    }
    .services__item--price {
        align-items: center;
    }
    .services__item--btn {
        width: 100%;
    }
    .services__item--price span {
        margin-bottom: 16px;
    }
    .services__item ul li {
        font-size: 14px;
        width: max-content;
        margin: 0 auto;
        text-align: center;
    }
    .services__cards .cream_color {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .cream_color--wrap {
        margin-bottom: 56px;
    }
    .services__cards .cream_color .services__item--price span {
        margin-left: auto;
        margin-right: auto;
    }
    .services__cards .cream_color .services__item--price .services__item--btn {
        margin-right: auto;
        margin-left: auto;
    }
    .services__item--btn {
        min-width: 255px;
    }
}

@media screen and (max-width: 500px) {
    .cream_color--wrap {
        margin: 0 auto 56px;
    }
    .services__item ul {
        width: 100%;
    }
    .services__item ul li {
        width: 100%;
        margin: unset;
        text-align: left;
    }
    .services__item--tetle {
        text-align: left;
        width: 100%;
    }
}


/*questions*/

.questions {
    background-color: var(--color-black);
    padding: 90px 0 0;
}

.questions .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
    align-items: flex-start;
}

.questions__wrap {
    display: flex;
    flex-direction: column;
    width: calc(60% - 50px);
    margin-top: 30px;
    padding: 0 0 60px;
}

.questions__img {
    width: calc(40% - 50px);
}

.questions__img img {
    width: 100%;
    height: auto;
}

.questions__title {
    display: flex;
    justify-content: flex-start;
    color: var(--color-white);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    /* 70.4px */
    text-transform: uppercase;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-cream);
    margin-bottom: 28px;
}

.rud--question__info {
    display: flex;
    flex-direction: column;
}

.rud--question__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rud--question__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    border-radius: 24px;
}

.rud--question__block:last-child {
    margin-bottom: unset;
}

.rud--question__title {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 24px 24px;
    border-bottom: 2px solid var(--color-cream);
    transition: .3s all ease-in-out;
}

.rud--quastion__arrow {
    width: 22px;
    height: 11px;
    min-width: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    transition: .3s all ease-in-out;
    background-color: unset;
    margin-left: auto;
}

.rud--quastion__arrow svg {
    width: 22px;
    height: 11px;
    stroke: var(--color-cream);
    transition: .3s all ease-in-out;
}

.rud--question__title.open .rud--quastion__arrow svg:hover {
    fill: var(--color-black);
}

.rud--question__block:hover .rud--question__title .rud--quastion__arrow svg {
    stroke: var(--color-cream);
}

.rud--question__block.open .rud--question__title .rud--quastion__arrow svg {
    stroke: var(--color-black);
}

.rud--question__block.open .rud--question__title svg {
    transform: rotate(180deg);
    fill: var(--color-black);
}

.rud--question__block:not(.open) .rud--question__title:hover {
    background: #3E3D3D;
}

.rud--question__block.open .rud--question__title span {
    color: var(--color-black);
}

.rud--question__block.open .rud--question__title {
    background-color: var(--color-cream);
}

.rud--question__title span {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    transition: .3s all ease-in-out;
    z-index: 2;
    margin-right: 30px;
}

.rud--question__sub-title {
    width: 100%;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: none;
    padding: 24px 24px 36px 24px;
    border-bottom: 2px solid var(--color-cream);
}

@media screen and (max-width: 1520px) {
    .questions__title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1366px) {
    .questions {
        padding: 100px 0;
    }
    .questions__title {
        font-size: 48px;
        padding-bottom: 36px;
        margin-bottom: 36px;
    }
    .questions__wrap {
        width: calc(65% - 40px);
        padding: unset;
        margin: 20px 0 0;
    }
    .questions__img {
        width: calc(35% - 40px);
    }
    .rud--question__title {
        padding: 16px 24px;
    }
    .rud--question__title span {
        font-size: 16px;
    }
    .rud--question__sub-title {
        font-size: 14px;
        padding: 16px 24px 24px;
    }
}

@media screen and (max-width: 1170px) {
    .questions__img {
        display: none;
    }
    .questions__wrap {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .questions__wrap {
        margin: unset;
    }
    .rud--question__title {
        padding: 16px 24px;
    }
}

@media screen and (max-width: 768px) {
    .questions {
        padding: 80px 0;
    }
    .questions .container {
        padding: 0 24px;
    }
    .questions__title {
        font-size: 24px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .form--name input,
    .form--phone input {
        font-size: 14px;
    }
    .consult--modal .container {
        padding: 36px 24px 48px!important;
    }
}

@media screen and (max-width: 630px) {
    .consult--modal .container {
        margin-top: auto;
        position: relative;
        z-index: 1;
    }
    .consult--modal__filter {
        width: 100%;
        height: 485px;
        top: 100%;
        left: 0%;
        transform: translate(0, 0);
        z-index: 3;
    }
    .modal_close {
        position: absolute;
        width: 60px!important;
        height: 42px!important;
        left: calc(50% - 25px)!important;
        top: -45px!important;
        border-radius: 64px 64px 0 0!important;
        z-index: 0!important;
        background-color: var(--color-cream)!important;
    }
    .modal_close svg {
        width: 14px!important;
        height: 14px!important;
        stroke: var(--color-black)!important;
        bottom: -3px;
    }
    .modal_close:hover {
        background-color: var(--color-black)!important;
    }
    .modal_close:hover svg {
        stroke: var(--color-cream)!important;
    }
}

.reviews {
    padding: 120px 0;
}

.reviews .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
}

.reviews__slider {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow: hidden;
}

.reviews__slider-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 500px;
}

.reviews__slider--item {
    display: flex;
    justify-content: space-between;
}

.reviews__slider--item iframe {
    width: 100%;
    height: 100%;
}

.reviews__title {
    color: var(--color-black);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    /* 70.4px */
    text-transform: uppercase;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-black);
    width: 100%;
}

.reviews__slider--item img {
    width: 100%;
    height: auto;
    max-width: 377px;
}

.rud--slider__prev {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 24px;
    top: 50%;
    z-index: 2;
    transform: rotate(180deg) translateY(50%);
    cursor: pointer;
    transition: .3s all ease-in-out;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
}

.rud--slider__next {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 64px;
    height: 64px;
    right: 24px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;
    border-radius: 50%;
    transition: .3s all ease-in-out;
    background-color: var(--color-white);
}

.rud--slider__next:hover {
    background-color: var(--color-cream);
}

.rud--slider__prev:hover {
    background-color: var(--color-cream);
}

.rud--slider__prev svg,
.rud--slider__next svg {
    width: 11px;
    height: 22px;
}

@media screen and (max-width: 1520px) {
    .reviews__slider-wrapper {
        height: 400px;
    }
}

@media screen and (max-width: 1366px) {
    .reviews {
        padding: 100px 0;
    }
    .reviews__title {
        font-size: 48px;
        padding-bottom: 36px;
        margin-bottom: 36px;
    }
    .rud--slider__prev {
        width: 48px;
        height: 48px;
        left: 16px;
    }
    .rud--slider__next {
        width: 48px;
        height: 48px;
        right: 16px;
    }
    .reviews__slider-wrapper {
        height: 376px;
    }
    .rud--slider__prev svg,
    .rud--slider__next svg {
        width: 8px;
        height: 17px;
    }
}

@media screen and (max-width: 1024px) {
    .reviews__title {
        font-size: 42px;
    }
    .reviews__slider-wrapper {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
    .reviews .container {
        padding: 0 24px;
    }
    .reviews__title {
        font-size: 24px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .reviews__slider-wrapper {
        height: 560px;
        max-height: 560px;
    }
}

@media screen and (max-width: 600px) {
    .reviews__slider-wrapper {
        height: 500px;
    }
    .rud--slider__prev {
        left: 16px;
    }
    .rud--slider__next {
        right: 16px;
    }
}

.meetings {
    padding: 120px 0 150px;
    background-color: var(--color-cream);
    overflow: hidden;
}

.meetings .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
    position: relative;
}

.meetings__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 61%;
}

.meetings__title {
    display: flex;
    color: var(--color-black);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--color-black);
    width: 100%;
}

.meetings__subtitle {
    display: flex;
    color: var(--color-black);
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}

.meetings__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-right: 62px;
}

.meetings__list--item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-top: 2px solid var(---color-grey);
}

.meetings__list--item:last-child {
    border-bottom: 2px solid var(---color-grey);
}

.meetings__list--item span {
    display: flex;
    width: 50%;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    padding: 16px 24px;
    border-right: 2px solid var(---color-grey);
}

.meetings__list--item small {
    width: 50%;
    display: flex;
    align-items: flex-start;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 16px 24px;
    background-color: var(--color-cream_dark);
}

.meetings__list--mark {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    border: 2px solid var(--color-black);
    padding: 10px 24px;
    transition: .3s all ease-in-out;
    width: max-content;
}

.meetings__list__underlist {
    display: flex;
    align-items: flex-start;
    padding: 16px 24px;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    border-bottom: 2px solid var(---color-grey);
    width: calc(100% - 62px);
    margin-bottom: 24px;
}

.meetings__location {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-black);
    margin-right: 10px;
    border-radius: 50%;
}

.meetings__list--mark:hover {
    background-color: var(--color-black);
}

.meetings__list--mark:hover .meetings__location {
    background-color: var(--color-cream);
}

.meetings__list--mark:hover .meetings__list--mark__info span {
    color: var(--color-cream);
}

.meetings__list--mark:hover .meetings__list--mark__info p {
    color: var(--color-cream);
}

.meetings__location svg {
    width: 13px;
    height: 16px;
    fill: var(--color-cream);
    transition: .3s all ease-in-out;
}

.meetings__list--mark:hover svg {
    fill: var(--color-black);
}

.meetings__list--mark__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.meetings__list--mark__info span {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.meetings__list--mark__info p {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.meetings__carusel--wrap {
    width: 39%;
    height: auto;
    position: relative;
    aspect-ratio: 1 / 1;
}

.meetings__carusel {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.meetings__carusel--item {
    width: 100%;
}

.meetings__carusel--item iframe {
    width: 100%;
    height: 100%;
}

.meetings__carusel--item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.meetings__carusel .meetings__carusel-wrapper .reviews__slider--item iframe {
    z-index: 1;
}

.meetings__carusel__prev {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
    z-index: 2;
    width: 64px;
    height: 64px;
    transition: .3s all ease-in-out;
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meetings__carusel__prev:hover {
    background-color: var(--color-cream);
}

.meetings__carusel__next {
    display: flex;
    position: absolute;
    top: 50%;
    left: 24px;
    z-index: 2;
    width: 64px;
    height: 64px;
    transform: rotate(180deg) translateY(50%);
    transition: .3s all ease-in-out;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.meetings__carusel__next:hover {
    background-color: var(--color-cream);
}

.meetings__carusel__prev svg,
.meetings__carusel__next svg {
    width: 10px;
    height: 18px;
}

.consultation--btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(35, 35, 35, 0.20);
    border-radius: 50%;
    transition: .3s all ease-in-out;
    cursor: pointer;
    z-index: 3;
    right: 50%;
    transform: translate(50%, -70%);
}

.consultation--btn__wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    border: 3px solid var(--color-black);
    height: 250px;
    border-radius: 200px;
    background-color: var(--color-black);
    transition: .3s all ease-in-out;
}

.consultation--btn:hover {
    background-color: unset;
}

.consultation--btn:hover .consultation--btn__wrap {
    background-color: var(--color-cream);
    border-color: var(--color-black);
}

.consultation--btn:hover .consultation--btn__wrap span {
    color: var(--color-black);
}

.consultation--btn:hover .consultation--btn__wrap .arrow--consultation {
    transform: rotate(180deg);
}

.consultation--btn:hover .consultation--btn__wrap .arrow--consultation__bottom {
    transform: rotate(360deg);
}

.consultation--btn:hover .consultation--btn__wrap .arrow--consultation svg {
    fill: var(--color-black);
}

.consultation--btn:hover .consultation--btn__wrap .arrow--consultation__bottom svg {
    fill: var(--color-black);
}

.consultation--btn span {
    color: #FFFBF9;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin: 24px 0;
    padding: 0 20px;
}

.arrow--consultation,
.arrow--consultation__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow--consultation__bottom {
    transform: rotate(180deg);
}

.arrow--consultation svg,
.arrow--consultation__bottom svg {
    width: 18px;
    height: 16px;
    fill: #fff;
}

@media screen and (max-width: 1500px) {
    .consultation--btn {
        transform: translate(50%, -30%);
    }
}

@media screen and (max-width: 1366px) {
    .meetings {
        padding: 100px 0;
    }
    .meetings__title {
        font-size: 48px;
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
    .meetings__subtitle {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .meetings__list--item span,
    .meetings__list--item small,
    .meetings__list__underlist {
        font-size: 16px;
    }
    .meetings__list--mark__info span,
    .meetings__list--mark__info p {
        font-size: 14px;
    }
    .meetings__carusel__prev,
    .meetings__carusel__next {
        width: 48px;
        height: 48px;
        z-index: 3;
    }
    .meetings__carusel__next svg,
    .meetings__carusel__prev svg {
        width: 8px;
        height: 16px;
    }
    .meetings__info {
        width: 64%;
    }
    .meetings__carusel--wrap {
        width: 36%;
    }
    .consultation--btn {
        width: 250px;
        height: 250px;
    }
    .consultation--btn__wrap {
        width: 200px;
        height: 200px;
    }
    .meetings__list__underlist {
        margin-bottom: 36px;
    }
    .consultation--btn span {
        font-size: 16px;
        padding: 0 32px;
    }
    .meetings__carusel__prev {
        right: 16px;
    }
    .meetings__carusel__next {
        left: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .meetings__info {
        width: 60%;
    }
    .meetings__carusel--wrap {
        width: 40%;
    }
}

@media screen and (max-width: 1024px) {
    .meetings {
        padding: 100px 0;
    }
    .meetings .container {
        flex-direction: column;
    }
    .meetings__info {
        width: 100%;
        margin-bottom: unset;
        order: 3;
    }
    .meetings__carusel--wrap {
        width: calc(100% + 36px);
        margin-bottom: 136px;
    }
    .js-meetings__mobile--title {
        width: 100%;
    }
    .meetings__carusel {
        width: 100%;
        order: 2;
    }
    .meetings__carusel--item.swiper-slide-active {
        opacity: 1;
    }
    .meetings__carusel--item {
        transition: .3s all ease-in-out;
        opacity: 0.5;
    }
    .meetings__carusel--item img {
        max-height: 600px;
    }
    .meetings__list {
        padding-right: unset;
    }
    .meetings__list__underlist {
        width: 100%;
    }
    .consultation--btn {
        right: 60px;
        transform: translate(0, -50%);
    }
    .consultation--btn span {
        padding: 0;
    }
    .meetings__carusel--wrap {
        aspect-ratio: unset;
        max-height: 600px;
    }
    .meetings__carusel--item {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

@media screen and (max-width: 970px) {
    .consultation--btn {
        width: 240px;
        height: 240px;
    }
    .consultation--btn__wrap {
        width: 190px;
        height: 190px;
    }
}

@media screen and (max-width: 768px) {
    .meetings {
        padding: 70px 0 60px;
    }
    .meetings .container {
        padding: 0 24px;
    }
    .meetings__title {
        font-size: 24px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .meetings__subtitle {
        font-size: 18px;
        margin-bottom: 16px;
        padding-left: 16px;
    }
    .meetings__list {
        padding-right: unset;
    }
    .meetings__list--item {
        flex-direction: column;
    }
    .meetings__list--item span {
        width: 100%;
        font-size: 14px;
        padding: 16px 16px;
        border-right: unset;
        border-bottom: 2px solid var(---color-grey);
    }
    .meetings__list--item small {
        font-size: 14px;
        width: 100%;
        background-color: unset;
        padding: 16px 16px;
    }
    .meetings__list__underlist {
        font-size: 14px;
        padding: 16px 16px;
        margin-bottom: 24px;
    }
    .meetings__carusel--wrap {
        max-height: unset;
    }
}

@media screen and (max-width: 600px) {
    .js-meetings__mobile--title {
        order: 2;
    }
    .meetings__carusel--item img {
        max-height: 454px;
    }
    .meetings__carusel--wrap {
        width: 100%;
        margin-bottom: 195px;
    }
    .consultation--btn {
        right: 50%;
        transform: translate(50%, -30%);
    }
}

.gallary {
    padding: 117px 0;
    position: relative;
}

.gallary .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
}

.gallary--bg {
    position: absolute;
    width: 100%;
    max-width: 652px;
    height: 900px;
    max-height: 900px;
    background-color: var(--color-cream);
    right: 0;
    top: 120px;
    z-index: 0;
}

.gallary__title {
    color: var(--color-black);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    /* 70.4px */
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    padding-bottom: 48px;
    margin-bottom: 48px;
    width: 100%;
    border-bottom: 2px solid var(--color-black);
}

.gallary__cards {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: calc(100% + 24px);
    margin: 0 -12px;
}

.gallary__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: calc((100% / 2) - 24px);
    margin: 0 12px 24px;
    transition: .3s all ease-in-out;
}

.gallary__item a {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallary__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s all ease-in-out;
}

.gallary__item--info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    bottom: 24px;
    left: 24px;
}

.gallary__item--text {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 8px 16px;
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.gallary__sub--item {
    padding: 8px 16px;
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 24px;
}

.gallary__item--info--title {
    margin-bottom: 12px;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
}

.gallary__sub--item span {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.gallary__sub--item small {
    color: var(--color-black);
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: -7px;
    left: -2px;
}

.gallary__item--bg {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.40);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: .3s all ease-in-out;
}

.gallary__item:hover .gallary__item--bg {
    opacity: 1;
    pointer-events: inherit;
}

.gallary__item--bg span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.gallary__item:hover .gallary__item--bg {
    display: flex;
}

@media screen and (max-width: 1366px) {
    .gallary {
        padding: 100px 0;
    }
    .gallary--bg {
        width: 469px;
        height: 900px;
        top: 100px;
    }
    .gallary__title {
        font-size: 48px;
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
    .gallary__item--info--title {
        font-size: 24px;
    }
    .gallary__sub--item span {
        font-size: 14px;
    }
    .gallary__item--text {
        font-size: 14px;
    }
    .gallary--bg {
        width: 469px;
    }
}

@media screen and (max-width: 1080px) {
    .gallary--bg {
        width: 341px;
        height: 900px;
    }
}

@media screen and (max-width: 1024px) {
    .gallary--bg {
        width: 341px;
    }
}

@media screen and (max-width: 900px) {
    .gallary--bg {
        top: 205px;
    }
}

@media screen and (max-width: 860px) {
    .gallary--bg {
        width: 241px;
    }
}

@media screen and (max-width: 768px) {
    .gallary {
        padding: 80px 0;
    }
    .gallary .container {
        padding: 0 24px;
    }
    .gallary--bg {
        width: 281px;
        top: 140px;
    }
    .gallary__title {
        font-size: 24px;
        padding-bottom: 16px;
    }
    .gallary__item {
        width: 100%;
        margin: 0 0 16px 0;
    }
    .gallary__item--info--title {
        font-size: 18px;
    }
    .gallary__cards {
        width: 100%;
        margin: unset;
    }
    .gallary__sub--item {
        padding: 4px 8px;
    }
    .gallary__sub--item small {
        top: -3px;
        left: -2px;
    }
    .gallary__item--text {
        font-size: 12px;
        padding: 4px 8px;
        right: 16px;
        bottom: 12px;
    }
    .gallary__item--text span {
        font-size: 12px;
    }
    .gallary__item--info {
        left: 16px;
        bottom: 12px;
    }
    .gallary__sub--item span {
        font-size: 12px;
    }
}

.footer {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 296px 0;
    position: relative;
}

.footer img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(35, 35, 35, 0.8);
    margin: auto 0;
    padding: 90px 0;
    position: relative;
}

.footer--wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
}

.under_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
    position: absolute;
    bottom: 56px;
}

.under_footer--phone {
    display: flex;
    align-items: center;
}

.footer--wrapper form .form--name__wrap label input:focus,
.footer--wrapper form .form--name__wrap label input:hover {
    border-color: var(--color-cream);
}

.footer--wrapper form .form--phone__wrap label input:focus,
.footer--wrapper form .form--phone__wrap label input:hover {
    border-color: var(--color-cream);
}

.footer--wrapper form .form--phone__wrap label input.error {
    border-color: red;
}

.under_footer--phone span {
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.under_footer--phone small {
    color: var(--color-white);
    margin-left: 14px;
}

.under_footer--phone a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-left: 14px;
    transition: .3s all ease-in-out;
}

.under_footer--phone a:hover {
    opacity: 0.6;
}

.under_footer--socials {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.under_footer--socials a:hover {
    transform: translateY(-5px);
}

.under_footer--socials a {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    margin-left: 8px;
    transition: .3s all ease-in-out;
}

.under_footer--socials a svg {
    width: 100%;
    height: 100%;
}

.under_footer--location {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.under_footer--location span {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-right: 14px;
}

.under_footer--location small {
    color: var(--color-white);
    margin-right: 14px;
}

.under_footer--location a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    transition: .3s all ease-in-out;
}

.under_footer--location a:hover {
    opacity: 0.6;
}

.footer__title {
    color: var(--color-white);
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 56px;
}

.footer--wrapper form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.form--item {
    width: calc((100% / 3) - 30px);
    margin: 0 15px;
}

.form--name__wrap,
.form--phone__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form--btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: 60px;
    background: var(--color-cream);
    border: unset;
    margin-top: 27px;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    transition: .3s all ease-in-out;
    border: 1px solid var(--color-cream);
    cursor: pointer;
}

.form--btn:hover {
    background-color: var(--color-black);
    border: 1px solid var(--color-cream);
    color: var(--color-cream);
}

.form--name__wrap label,
.form--phone__wrap label {
    width: 100%;
    border: unset;
}

.form--name input,
.form--phone input {
    display: flex;
    border-radius: 60px;
    border: 1px solid var(--color-white);
    background-color: unset;
    padding: 16px 24px;
    font-size: 18px;
    width: 100%;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
}

.form--name input::placeholder,
.form--phone input::placeholder {
    color: rgba(256, 256, 256, 0.5);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    opacity: 0.5;
}

.form--name__wrap span,
.form--phone__wrap span {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-left: 24px;
    margin-bottom: 8px;
}

.consult--modal__bg {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.consult--modal.open {
    opacity: 1;
    pointer-events: inherit;
}

.consult--modal .consult {
    z-index: 4;
    position: relative;
    padding: 76px 0;
}

.consult--modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: .3s all ease-in-out;
}

.consult--modal .container {
    width: 100%;
    max-width: 625px;
    background-color: var(--color-black);
    padding: 48px 48px;
    border-top: 4px solid var(--color-cream);
    z-index: 4;
    position: relative;
}

.consult--modal__filter {
    width: 625px;
    height: 485px;
    opacity: 0.3;
    background: #FFE2CC;
    filter: blur(40px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.consult--wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.consult--wrap__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    width: 100%;
}

.consult--title {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    /* 35.2px */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.consult--wrap__title--info span {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    /* 22px */
    text-transform: uppercase;
}

.consult--wrap form .form--btn {
    width: 100%;
    margin: unset;
    margin-top: 36px;
}

.modal_close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    margin-left: auto;
    cursor: pointer;
    background-color: var(--color-black);
    transition: .3s all ease-in-out;
    border-radius: 50%;
    border: 1px solid var(--color-cream);
}

.modal_close svg {
    width: 20px;
    height: 21px;
    stroke: var(--color-cream);
    transition: .3s all ease-in-out;
}

.modal_close:hover {
    background-color: var(--color-cream);
}

.modal_close:hover svg {
    stroke: var(--color-black);
}

.consult--wrap form .form--name {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.consult--wrap form span {
    display: flex;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
    margin-left: 24px;
}

.form--name--title {
    display: block;
    margin-bottom: 8px;
}

@media screen and (max-width: 1366px) {
    .modal_close {
        width: 48px;
        height: 48px;
    }
    .modal_close svg {
        width: 20px;
        height: 21px;
        stroke: var(--color-cream);
        transition: .3s all ease-in-out;
    }
    .under_footer {
        bottom: 36px;
    }
    .footer__title {
        font-size: 48px;
        margin-bottom: 36px;
    }
    .form--item span {
        font-size: 14px;
    }
    .form--btn {
        font-size: 16px;
    }
    .form--phone input::placeholder,
    .form--name input::placeholder {
        font-size: 16px;
    }
    .footer {
        padding: 150px 0;
    }
    .footer .container {
        padding: 64px 0;
    }
    .under_footer--socials a {
        width: 28px;
        height: 28px;
    }
    .under_footer--phone span,
    .under_footer--location span {
        font-size: 14px;
    }
    .under_footer--location a {
        font-size: 14px;
    }
    .under_footer--phone a {
        font-size: 14px;
    }
    .form--name__wrap span,
    .form--phone__wrap span {
        margin-bottom: 11px;
    }
}

@media screen and (max-width: 1024px) {
    .footer {
        padding: 235px 0;
    }
    .footer--wrapper form {
        margin: 0 -12px;
        width: calc(100% + 24px);
    }
    .form--item {
        width: calc((100% / 3) - 24px);
        margin: 0 12px;
    }
    .footer--wrapper form .form--btn {
        margin-top: 25px;
    }
}

@media screen and (max-width: 830px) {
    .under_footer {
        flex-direction: column;
        align-items: center;
    }
    .under_footer--socials {
        margin-left: unset;
        order: 1;
        margin-bottom: 16px;
    }
    .under_footer--phone {
        order: 2;
        margin-bottom: 16px;
    }
    .under_footer--location {
        margin-left: unset;
        order: 3;
    }
    .footer__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .footer img {
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        background: url('/assets/images/fotter_bg.webp');
        background-size: cover;
        background-position: center;
        padding: 80px 0 230px 0;
    }
    .footer img {
        display: none;
    }
    .footer .container {
        padding: 48px 0;
    }
    .footer--wrapper {
        padding: 0 24px;
    }
    .under_footer {
        padding: 0 24px;
    }
    .footer--wrapper form {
        flex-direction: column;
        margin: unset;
        width: 100%;
    }
    .form--item {
        width: 100%;
        margin: unset;
        margin-bottom: 22px;
    }
    .form--phone__wrap {
        margin-bottom: 36px!important;
    }
    .footer--wrapper form .form--btn {
        margin-top: unset!important;
        margin-bottom: unset;
    }
    .form--name__wrap span,
    .form--phone__wrap span {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 444px) {
    .footer__title {
        max-width: 200px;
    }
}

@media screen and (max-width: 1366px) {
    .consult--title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .consult--wrap__title--info span {
        font-size: 16px;
    }
    .consult--wrap__title {
        margin-bottom: 48px;
    }
    .consult--wrap form span {
        font-size: 14px;
    }
    .form--name input,
    .form--phone input {
        font-size: 16px;
    }
    .modal_close {
        width: 48px;
        height: 48px;
    }
    .consult--modal .container {
        padding: 36px 36px;
    }
    .form--btn {
        padding: 16px 24px;
        font-size: 16px;
        margin-top: 29px;
    }
}

@media screen and (max-width: 768px) {
    .form--name input,
    .form--phone input,
    .form--name input::placeholder,
    .form--phone input::placeholder {
        font-size: 14px;
    }
}

input.error {
    border-color: red;
}

.form--success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-color: var(--color-black);
    pointer-events: none;
    padding: 0 20px;
    transition: .3s all ease-in-out;
}

.form--success span {
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
    text-align: center;
}

.form--success p {
    font-size: 32px;
    color: var(--color-white);
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.done .form--success {
    opacity: 1;
    pointer-events: inherit;
}

@media screen and (max-width: 1366px) {
    .form--success span {
        font-size: 48px;
    }
    .form--success p {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .form--success span {
        font-size: 24px;
    }
    .form--success p {
        font-size: 18px;
    }
}

@media screen and (max-width: 630px) {
    .consult--modal__filter {
        width: 100%;
        top: 55%;
        left: 0%;
        transform: translate(0, 0);
        z-index: 3;
    }
}

.page--socials {
    position: fixed;
    z-index: 5;
    right: 32px;
    bottom: 64px;
    transition: .3s all ease-in-out;
}

.page--socials.opacity {
    opacity: 0;
}

.page--socials.open .page--socials--list {
    opacity: 1;
    pointer-events: inherit;
    transform: translateY(0);
}

.page--socials--btn {
    padding: 12px;
    border: 8px solid var(--color-cream);
    border-radius: 50%;
    background-color: var(--color-black);
    cursor: pointer;
}

.page--socials--btn svg {
    width: 39px;
    height: 36px;
}

.page--socials--list {
    padding: 20px 16px;
    background-color: var(--color-black);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 8px solid var(--color-cream);
    position: absolute;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: .5s all ease-in-out;
}

.page--social:not(:last-child) {
    margin-bottom: 12px;
}

.page--social {
    opacity: 0.4;
    transition: .3s all ease-in-out;
}

.page--social:hover {
    opacity: 1;
}

.page--social svg {
    width: 32px;
    height: 32px;
}

.page--socials--bg {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
}

.page--socials--bg.open {
    opacity: 1;
    pointer-events: inherit;
}

@media screen and (max-width: 1366px) {
    .page--socials--btn svg {
        width: 26px;
        height: 24px;
    }
    .page--social svg {
        width: 24px;
        height: 24px;
    }
    .page--socials--list {
        padding: 16px 14px;
    }
}

@media screen and (max-width: 1024px) {
    .page--socials {
        bottom: 32px;
        right: 32px;
    }
}

@media screen and (max-width: 600px) {
    .page--socials {
        bottom: 24px;
        right: 24px;
    }
}




.footer-politics{
    padding: 5px 0px;
    text-align: center;
    background-color: rgba(35, 35, 35);
}

.politics{
    color: #fff;
    font-size: 14px;
}