@charset "UTF-8";
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.ttf") format("ttf"), url("../fonts/Manrope-Regular.eot") format("eot");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Manrope-Medium.woff") format("woff"), url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.ttf") format("ttf"), url("../fonts/Manrope-Medium.eot") format("eot");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Manrope-Semibold.woff") format("woff"), url("../fonts/Manrope-Semibold.woff2") format("woff2"), url("../fonts/Manrope-Semibold.ttf") format("ttf"), url("../fonts/Manrope-Semibold.eot") format("eot");
}

@font-face {
    font-family: "Ibarra Real Nova";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/IbarraRealNova-Regular.woff") format("woff"), url("../fonts/IbarraRealNova-Regular.woff2") format("woff2"), url("../fonts/IbarraRealNova-Regular.ttf") format("ttf"), url("../fonts/IbarraRealNova-Regular.eot") format("eot");
}

@font-face {
    font-family: "Ibarra Real Nova";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/IbarraRealNova-Semibold.woff") format("woff"), url("../fonts/IbarraRealNova-Semibold.woff2") format("woff2"), url("../fonts/IbarraRealNova-Semibold.ttf") format("ttf"), url("../fonts/IbarraRealNova-Semibold.eot") format("eot");
}

@font-face {
    font-family: "Ibarra Real Nova";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/IbarraRealNova-Bold.woff") format("woff"), url("../fonts/IbarraRealNova-Bold.woff2") format("woff2"), url("../fonts/IbarraRealNova-Bold.ttf") format("ttf"), url("../fonts/IbarraRealNova-Bold.eot") format("eot");
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

html {
    font-size: clamp(12px, 1vw + 0.5rem, 16px);
}

body {
    font-family: "Manrope", sans-serif;
    color: #1d1d1d;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: 1540px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

section {
    position: relative;
}

.button {
    padding: 0.75rem 1.5rem;
    background-color: #1d1d1d;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: rgb(3.5, 3.5, 3.5);
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #1d1d1d;
    font-family: inherit;
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: rgb(165.75, 165.75, 165.75);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    padding: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
}

.header__logo {
    width: 100%;
    max-width: 120px;
}

@media (max-width: 768px) {
    .header__logo {
        max-width: 80px;
    }
}

.header__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(10px, 10px + (80 - 10) * (100vw - 375px) / (1920 - 375), 80px);
}

.header__menu ul li a {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 12px + (14 - 12) * (100vw - 375px) / (1920 - 375), 14px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

@media (max-width: 992px) {
    .header__menu {
        display: none;
    }
}

.header__burger {
    display: none;
}

@media (max-width: 992px) {
    .header__burger {
        display: block;
    }
}

.header-mobile {
    padding-top: 10px;
    padding-bottom: 50px;
    display: none;
}

.header-mobile__menu ul li a {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #9c8272;
}

.block-1 {
    margin-bottom: clamp(40px, 40px + (50 - 40) * (100vw - 375px) / (1920 - 375), 50px);
    padding-top: clamp(80px, 80px + (154 - 80) * (100vw - 375px) / (1920 - 375), 154px);
}

.block-1__video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 755px;
    max-height: 755px;
}

@media (max-width: 768px) {
    .block-1__video video {
        min-height: 500px;
        max-height: 500px;
    }
}

.block-1__video-mob {
    display: none;
}

@media (max-width: 768px) {
    .block-1__video-mob {
        display: block;
    }

    .block-1__video-desktop {
        display: none;
    }
}

.block-2 {
    margin-bottom: clamp(40px, 40px + (77 - 40) * (100vw - 375px) / (1920 - 375), 77px);
}

.block-2__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 0.84px solid #8c8c8c;
    border-bottom: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-2__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-2__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 570px;
    padding: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(16px, 16px + (40 - 16) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    border-right: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-2__title {
        max-width: 100%;
        border-right: none;
    }
}

.block-2__title h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
}

.block-2__text {
    width: 100%;
    max-width: 940px;
    padding: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

@media (max-width: 992px) {
    .block-2__text {
        padding: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
        max-width: 100%;
    }
}

.block-2__text p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    margin-bottom: 10px;
}

.block-2__text p:last-child {
    margin-bottom: 0;
}

.block-3 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-3__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 17px;
}

@media (max-width: 992px) {
    .block-3__gallery {
        display: none;
    }
}

.block-3__gallery-slider-block {
    display: none;
}

@media (max-width: 992px) {
    .block-3__gallery-slider-block {
        display: block;
    }
}

.block-3__gallery-slider-dots {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
}

.block-3__gallery-slider-dots .swiper-pagination-bullet-active {
    background: #9c8272;
}

.block-3__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-3__image img {
    width: 100%;
}

.block-4 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-4__content p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    text-align: center;
    color: #1d1d1d;
    line-height: normal;
    max-width: 700px;
    margin: 0 auto 10px;
}

.block-4__button {
    margin-top: 30px;
    text-align: center;
}

.block-4__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #252525;
    display: inline-block;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 16px 35px;
}

.block-5 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-5__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .block-5__gallery {
        display: none;
    }
}

.block-5__image {
    width: 100%;
}

.block-5__image:first-child {
    max-width: 23.97351%; /* 362/1510 */
}

@media (max-width: 768px) {
    .block-5__image:first-child {
        max-width: 100%;
    }
}

.block-5__image:nth-child(2) {
    max-width: 49.337748%; /* 745/1510 */
}

@media (max-width: 768px) {
    .block-5__image:nth-child(2) {
        max-width: 100%;
    }
}

.block-5__image:last-child {
    max-width: 23.97351%; /* 362/1510 */
}

@media (max-width: 768px) {
    .block-5__image:last-child {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .block-5__image img {
        width: 100%;
    }
}

.block-5__gallery-slider-block {
    display: none;
}

@media (max-width: 768px) {
    .block-5__gallery-slider-block {
        display: block;
    }
}

.block-5__gallery-slider-dots {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
}

.block-5__gallery-slider-dots .swiper-pagination-bullet-active {
    background: #9c8272;
}

.block-6 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-6 h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (36 - 20) * (100vw - 375px) / (1920 - 375), 36px);
}

.block-6__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 0.84px solid #8c8c8c;
    border-bottom: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-6__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-6__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 49.337748%; /* 745/1510 */
    padding: clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px) clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px) clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    border-right: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-6__image {
        max-width: 100%;
        border-right: none;
        max-width: 100%;
    }
}

.block-6__text {
    width: 100%;
    max-width: 50.662252%; /* 765/1510 */
    padding: clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px) clamp(20px, 20px + (80 - 20) * (100vw - 375px) / (1920 - 375), 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .block-6__text {
        padding: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
        max-width: 100%;
    }
}

.block-6__text h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 20px;
}

.block-6__text p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    margin-bottom: 15px;
}

.block-6__button {
    margin-top: 30px;
}

@media (max-width: 992px) {
    .block-6__button {
        margin-top: 15px;
    }
}

.block-6__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #252525;
    display: inline-block;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 16px 35px;
}

.collage {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.collage__inner {
    display: grid;
    gap: 13px;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
    grid-template-rows: repeat(6, 1fr); /* дробим на 6 рядов */
}

@media (max-width: 992px) {
    .collage__inner {
        display: none;
    }
}

/* Левый большой блок: занимает все 6 рядов */
.tile--left {
    grid-column: 1;
    grid-row: 1/span 6;
}

/* Средний верхний: 2 ряда */
.tile--mid-top {
    grid-column: 2;
    grid-row: 1/span 2;
}

/* Средний нижний: 4 ряда */
.tile--mid-bottom {
    grid-column: 2;
    grid-row: 3/span 4;
}

/* Центральный высокий: все 6 рядов */
.tile--center-tall {
    grid-column: 3;
    grid-row: 1/span 6;
}

/* Правый верхний: 3 ряда (полторы «строки») */
.tile--right-top {
    grid-column: 4;
    grid-row: 1/span 3;
}

/* Правый нижний: оставшиеся 3 ряда */
.tile--right-bottom {
    grid-column: 4;
    grid-row: 4/span 3;
}

/* Общие стили плиток */
.tile {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.tile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.collage__slider-block {
    display: none;
}

@media (max-width: 992px) {
    .collage__slider-block {
        display: block;
    }
}

@media (max-width: 992px) {
    .collage__image img {
        width: 100%;
    }
}

.collage__slider-dots {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
}

.collage__slider-dots .swiper-pagination-bullet-active {
    background: #9c8272;
}

.block-7 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-7 h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-7__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 0.84px solid #8c8c8c;
    border-bottom: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-7__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-7__info {
    width: 100%;
    max-width: 49.337748%; /* 745/1510 */
    padding: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px) clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-right: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .block-7__info {
        max-width: 100%;
        border-right: none;
        max-width: 100%;
    }
}

.block-7__info h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 20px;
}

.block-7__info p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    margin-bottom: 15px;
}

.block-7__info p:last-child {
    margin-bottom: 0;
}

.block-7__instagram {
    margin-top: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
    margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
}

.block-7__instagram a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 15px;
    font-weight: 500;
    font-size: clamp(16px, 16px + (17 - 16) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    color: #0a0a0a;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.block-7__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
}

.block-7__item-ico {
    margin-bottom: 20px;
}

.block-7__item-desc {
    font-weight: 400;
    font-size: 14px;
    color: #1d1d1d;
    line-height: normal;
}

.block-7__images {
    width: 100%;
    max-width: 50.662252%; /* 765/1510 */
    padding: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 992px) {
    .block-7__images {
        padding: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
        max-width: 100%;
    }
}

.block-7__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-7__image img {
    -o-object-fit: cover;
    object-fit: cover;
}

.block-8 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-8__content {
    position: relative;
}

.block-8__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 452px;
    max-height: 452px;
    position: relative;
}

.block-8__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(92, 67, 52, 0.7);
}

.block-8__img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-8__info {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    max-width: 840px;
    z-index: 10;
    padding: 0 20px;
}

.block-8__info h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: normal;
    margin-bottom: 10px;
}

.block-8__info p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #fff;
    line-height: normal;
    margin-bottom: 40px;
    text-align: center;
}

.block-8__button {
    text-align: center;
}

.block-8__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 16px 35px;
}

.block-9 h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 40px;
}

.block-9__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    padding: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
    border-top: 0.84px solid #8c8c8c;
}

@media (max-width: 768px) {
    .block-9__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    }
}

@media screen and (max-width: 576px) {
    .block-9__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    }
}

.block-9__item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.block-9__item-name {
    font-weight: 400;
    font-size: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1920 - 375), 24px);
    line-height: 117%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
}

.block-9__item-link {
    font-weight: 400;
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
    color: #000;
    line-height: normal;
}

.footer {
    padding: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px);
    border-top: 0.84px solid #8c8c8c;
    padding: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
}

.footer__top h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 375px) / (1920 - 375), 36px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    width: 70%;
}

@media screen and (max-width: 576px) {
    .footer__top h2 {
        width: 100%;
    }
}

.footer__button {
    width: 100%;
    max-width: 165px;
}

.footer__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #252525;
    display: inline-block;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 16px 35px;
    text-transform: uppercase;
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__menu-block {
    width: 100%;
    max-width: 775px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__menu ul li {
    margin-bottom: 5px;
}

.footer__menu ul li:first-child {
    margin-bottom: 10px;
}

.footer__menu ul li:first-child a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #1d1d1d;
    line-height: normal;
}

.footer__menu ul li a {
    font-weight: 400;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: #1d1d1d;
    line-height: normal;
}

.masterclass-block-1 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
    padding-top: clamp(80px, 80px + (154 - 80) * (100vw - 375px) / (1920 - 375), 154px);
}

.masterclass-block-1__content {
    position: relative;
}

.masterclass-block-1__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 645px;
}

@media (max-width: 768px) {
    .masterclass-block-1__img {
        min-height: 450px;
    }
}

.masterclass-block-1__info {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.masterclass-block-1__info h1 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
    color: #fff;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.masterclass-block-1__button {
    text-align: center;
}

.masterclass-block-1__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #252525;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 16px 35px;
    background: #fff;
}

.masterclass-block-2 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.masterclass-block-2 h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 375px) / (1920 - 375), 36px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.masterclass-block-2__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

@media (max-width: 992px) {
    .masterclass-block-2__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .masterclass-block-2__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
}

.masterclass-block-2__item {
    border: 1px solid #8c8c8c;
    padding: 20px;
}

.masterclass-block-2__item-name {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    margin-bottom: 10px;
}

.masterclass-block-2__item-text {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
}

.masterclass-block-3 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.masterclass-block-3__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 992px) {
    .masterclass-block-3__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.masterclass-block-3__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    max-width: 745px;
}

@media (max-width: 992px) {
    .masterclass-block-3__images {
        max-width: 100%;
    }
}

.masterclass-block-3__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.masterclass-block-3__info {
    width: 100%;
    max-width: 665px;
}

@media (max-width: 992px) {
    .masterclass-block-3__info {
        max-width: 100%;
    }
}

.masterclass-block-3__info h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 375px) / (1920 - 375), 36px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.masterclass-block-3__info p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    margin-bottom: 10px;
}

.masterclass-block-3__info h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.masterclass-block-3__button {
    margin-top: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.masterclass-block-3__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    padding: 17px 35px;
    background: #252525;
    text-transform: uppercase;
}

.masterclass-block-4 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.masterclass-block-4__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 992px) {
    .masterclass-block-4__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.masterclass-block-4__info {
    width: 100%;
    max-width: 665px;
}

@media (max-width: 992px) {
    .masterclass-block-4__info {
        max-width: 100%;
    }
}

.masterclass-block-4__text-1 {
    margin-bottom: clamp(50px, 50px + (100 - 50) * (100vw - 375px) / (1920 - 375), 100px);
}

.masterclass-block-4__text-1 h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 375px) / (1920 - 375), 36px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.masterclass-block-4__text-1 p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
}

.masterclass-block-4__text-1 p span {
    font-weight: 600;
}

.masterclass-block-4__text-1 p:nth-child(5) {
    margin-top: 20px;
}

.masterclass-block-4__text-2 h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 20px;
}

.masterclass-block-4__text-2 p {
    padding-bottom: 15px;
    border-bottom: 0.84px solid #8c8c8c;
}

.masterclass-block-4__text-2 p:not(:nth-child(2)) {
    padding-top: 15px;
}

.masterclass-block-4__text-2 p:nth-child(5) {
    margin-top: 20px;
    padding-bottom: 0;
    padding-top: 0;
    border-bottom: none;
    font-weight: 600;
}

.masterclass-block-4__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.masterclass-block-5 {
    margin-bottom: clamp(80px, 80px + (130 - 80) * (100vw - 375px) / (1920 - 375), 130px);
}

.masterclass-block-5__header {
    margin-bottom: clamp(40px, 40px + (80 - 40) * (100vw - 375px) / (1920 - 375), 80px);
    max-width: 988px;
    margin-left: auto;
    margin-right: auto;
}

.masterclass-block-5__header h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 375px) / (1920 - 375), 36px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
    text-align: center;
}

.masterclass-block-5__header p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    text-align: center;
    color: #1d1d1d;
    line-height: normal;
}

.masterclass-block-5__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: 0.84px solid #8c8c8c;
    border-bottom: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .masterclass-block-5__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.masterclass-block-5__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    padding: clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    border-right: 0.84px solid #8c8c8c;
}

@media (max-width: 992px) {
    .masterclass-block-5__image {
        max-width: 100%;
        border-right: none;
    }
}

.masterclass-block-5__info {
    width: 100%;
    padding: clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .masterclass-block-5__info {
        padding: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    }
}

.masterclass-block-5__info-text {
    margin-bottom: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px);
}

.masterclass-block-5__info-text h3 {
    font-weight: 600;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 20px;
}

.masterclass-block-5__info-text ul {
    list-style: disc;
    padding-left: 20px;
    font-weight: 500;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
}

.masterclass-block-5__info-text ul li {
    margin-bottom: 10px;
}

.masterclass-block-5__info-text ul li:last-child {
    margin-bottom: 0;
}

.masterclass-block-5__button a {
    font-weight: 600;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    line-height: 130%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    padding: 17px 35px;
    background: #252525;
    text-transform: uppercase;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

.modal__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.modal__block {
    width: 100%;
    max-width: 600px;
    padding: 50px 30px 50px;
    background: #ffffff;
    position: relative;
}

@media (max-width: 768px) {
    .modal__block {
        padding: 30px 20px 30px;
    }
}

.modal__close {
    font-weight: 400;
    font-size: 25px;
    color: #1d1d1d;
    line-height: 12px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 5;
    display: flex;
}

@media (max-width: 768px) {
    .modal__close {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}

.modal__block h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 30px;
    text-align: center;
}

.modal__form-input {
    margin-bottom: 20px;
}

.modal__form-input input {
    border-bottom: 1px solid #000000;
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #1d1d1d;
    line-height: normal;
    width: 100%;
}

.modal__form-submit {
    margin-top: 40px;
}

.modal__form-submit input {
    font-weight: 400;
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 375px) / (1920 - 375), 17px);
    color: #ffffff;
    line-height: normal;
    background: #000000;
    padding: 15px 20px;
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    font-size: 12px;
    border: none !important;
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
}

.wpcf7-spinner {
    display: none !important;
}

.iti {
    width: 100%;
}