@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

/**************** Basic ****************/

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


html {
    scroll-behavior: smooth;
}

body {
    line-height: normal;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    color: #000;
    background-color: #ece8e2;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #ECE8E2;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

button {
    border: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

input:focus,
textarea:focus {
    outline: none;
}

input,
textarea {
    border: none;
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.section {
    width: 100%;
    position: relative;
    padding: 70px 0;
}

/*************************************/

/*************** Header **************/

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.header.fixed,
.header.important {
    position: fixed;
    background-color: #101010;
}

.header-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.header.fixed .header-row,
.header.important .header-row {
    flex-direction: row;
    justify-content: space-between;
}

.header-logo {
    width: 75px;
    position: relative;
    display: flex;
}

.header-logo img {
    width: 100%;
}

.header-nav {
    position: relative;
    display: flex;
    justify-content: center;
}

.nav-menu {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    list-style-type: none;
}

.nav-menu__item {
    position: relative;
}

.nav-menu__link {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #ffffff;
    white-space: nowrap;
}

.nav-menu__link:hover {
    color: #ab8946;
}

.nav-bottom {
    width: 100%;
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.nav-bottom__button {
    width: 100%;
    max-width: 450px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background-color: #7d683e;
}

.nav-bottom__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.nav-bottom__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

.header-button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: -0.04em;
    text-align: left;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 11px;
}

.header-button__text {
    padding-left: 8px;
    text-align: center;
}

.header-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.header-button:hover .header-button__icon {
    transform: rotate(360deg);
    background-color: rgba(255, 255, 255, 0.8);
}

.header-button__icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    padding: 4px;
    transition: all 0.6s ease-in-out;
}

.header-button__icon img {
    max-width: 100%;
    max-height: 100%;
}

.header-burger {
    width: 17px;
    height: 17px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.header-burger span {
    width: 17px;
    height: 2px;
    background-color: #D9D9D9;
    transition: all 0.3s ease-in-out;
}

.header-burger.active span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.header-burger.active span:nth-child(2) {
    display: none;
}

.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, -2px);
}

/******************************************/

/***************** Content ****************/

body.hidden {
    overflow: hidden;
}

body.hidden .wrapper {
    opacity: 0;
}

.main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero {
    padding: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-row {
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    width: 50%;
    max-width: 550px;
    position: relative;
    display: flex;
}

.hero-left__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.05em;
    text-align: left;
    color: #785f2e;
}

.hero-right {
    width: 50%;
    max-width: 535px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
}

.hero-right__text {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
}

.hero-right__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #7D683E;
}

.hero-right__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.hero-right__button svg {
    transition: all 0.3s ease-in-out;
}

.hero-right__button:hover {
    background-color: #7d683e;
}

.hero-right__button:hover svg {
    transform: translateX(3px);
}

.hero-right__burger {
    width: 100%;
    max-width: 400px;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid #7D683E;
}

.hero-right__burger__text {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.hero-right__burger__decor {
    width: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-right__burger__decor span {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
}

.hero-content__logo {
    width: 90px;
    position: relative;
    display: none;
}

.hero-content__logo img {
    width: 100%;
}

.about {
    padding: 140px 0 70px;
}

.about-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 70px;
}

.about-left {
    width: 35%;
    position: relative;
    display: flex;
    padding: 30px;
}

.about-left:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/wp-content/themes/lc-blank-master/images/visual-ramk.svg");
    background-size: 100% 100%;
}

.about-left img {
    width: 100%;
}

.about-right {
    width: 65%;
    max-width: 740px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.about-right__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #7d683e;
}

.about-right__text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.about-right__text p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.about-right__text p strong {
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 700;
    color: #5a5a5a;
    font-size: 20px;
    line-height: 28px;
}

.art-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.art-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.art-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
}

.art-head:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
    transform: rotateX(180deg);
}

.art-head__span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #7d683e;
}

.art-head__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
}

.art-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 40px;
}

.art-content__bg1 {
    width: 45%;
    position: absolute;
    right: -150px;
    top: -100px;
    display: flex;
}

.art-content__bg1 img {
    width: 100%;
}

.art-content__bg2 {
    width: 45%;
    position: absolute;
    right: 50px;
    bottom: 200px;
    display: flex;
}

.art-content__bg2 img {
    width: 100%;
}

.art-content__bg3 {
    width: 45%;
    position: absolute;
    left: -50px;
    bottom: 350px;
    display: flex;
    transform: rotate(180deg);
}

.art-content__bg3 img {
    width: 100%;
}

.art-block {
    width: calc(25% - 30px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.art-block__img {
    width: 100%;
    height: 290px;
    position: relative;
    display: flex;
}

.art-block__img img {
    width: 100%;
    object-fit: cover;
}

.art-block__title {
    font-family: 'Cormorant Garamond', sans-serif;
    min-height: 55px;
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #93722f;
}

.art-block__content {
    width: 100%;
    min-height: 145px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #C8AF7E5C;
}

.art-block__content__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: rgba(125, 104, 62, 0.8);
}

.art-block__content__text:before {
    content: '';
    position: relative;
    width: 14px;
    height: 10px;
    background-image: url("/wp-content/themes/lc-blank-master/images/quote.svg");
    background-size: 100% 100%;
    flex-shrink: 0;
}

.art-block__content__text:after {
    content: '';
    position: relative;
    width: 14px;
    height: 10px;
    background-image: url("/wp-content/themes/lc-blank-master/images/quote.svg");
    background-size: 100% 100%;
    transform: rotateY(180deg);
    flex-shrink: 0;
}

.art-block__content__author {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #7d683e;
}

.art-block__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.roots {
    padding: 70px 0 140px;
}

.roots-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.roots-top {
    width: 100%;
    max-width: 840px;
    min-height: 350px;
    position: relative;
    display: flex;
}

.roots-top img {
    width: 100%;
    object-fit: cover;
}

.roots-content {
    width: 100%;
    max-width: 840px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.roots-left {
    width: 27%;
    position: relative;
    display: flex;
}

.roots-left img {
    width: 100%;
}

.roots-right {
    width: 73%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.roots-right__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #7d683e;
}

.roots-right__text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.roots-right__text p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.poetry {
    padding: 100px 0;
    background-color: #000000;
    background-image: url("/wp-content/themes/lc-blank-master/images/poetry-bg.png");
    background-size: cover;
    background-position: center;
}

.poetry-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.poetry__title {
    position: relative;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.poetry__title:before {
    content: '';
    position: relative;
    width: 14px;
    height: 10px;
    background-image: url("/wp-content/themes/lc-blank-master/images/quote.svg");
    background-size: 100% 100%;
    flex-shrink: 0;
}

.poetry__title:after {
    content: '';
    position: relative;
    width: 14px;
    height: 10px;
    background-image: url("/wp-content/themes/lc-blank-master/images/quote.svg");
    background-size: 100% 100%;
    transform: rotateY(180deg);
    flex-shrink: 0;
}

.poetry__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.author {
    padding: 140px 0 70px;
}

.author-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.author-left {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.author-left__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #7d683e;
}

.author-left__text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.author-left__text p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.author-right {
    width: 40%;
    position: relative;
    display: flex;
    padding: 27px;
}

.author-right:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/wp-content/themes/lc-blank-master/images/visual-ramk.svg");
    background-size: 100% 100%;
}

.author-right img {
    width: 100%;
}

.peculiarities {
    padding: 70px 0 140px;
}

.peculiarities-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.peculiarities-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.peculiarities-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
}

.peculiarities-head:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
    transform: rotateX(180deg);
}

.peculiarities-head__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
}

.peculiarities-content {
    width: 100%;
    max-width: 620px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.peculiarities-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
}

.peculiarities-block__left {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
}

.peculiarities-block__left img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.peculiarities-block__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.peculiarities-block__num {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 99px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.02em;
    text-align: left;
    color: rgba(125, 104, 62, 0.15);
}

.peculiarities-block__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #7d683e;
}

.peculiarities-block__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: left;
    color: rgba(0, 0, 0, 0.55);
}

.event {
    padding: 210px 0;
    background-image: url("/wp-content/themes/lc-blank-master/images/event-bg.png");
    background-size: cover;
    background-position: center;
}

.event-row {
    width: 100%;
    position: relative;
    display: flex;
}

.event-content {
    width: 100%;
    max-width: 650px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.event__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.05em;
    text-align: left;
    color: #785f2e;
}

.event__text {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #ffffff;
}

.event__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #7D683E;
    margin-top: 40px;
}

.event__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.event__button svg {
    transition: all 0.3s ease-in-out;
}

.event__button:hover {
    background-color: #7d683e;
}

.event__button:hover svg {
    transform: translateX(3px);
}

.conditions-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.conditions-left {
    width: 50%;
    max-width: 530px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 55px;
}

.conditions-left__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #7d683e;
}

.conditions-left__button {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    color: #202020;
    padding: 12px 24px;
    border: 1px solid #7D683E;
}

.conditions-left__button:hover {
    background-color: #7d683e;
    color: #ffffff;
}

.conditions-right {
    width: 50%;
    max-width: 590px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.conditions-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.conditions-block__icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
}

.conditions-block__icon img {
    max-width: 100%;
}

.conditions-block__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.conditions-block__content h3 {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #7d683e;
}

.conditions-block__content p {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.addresses-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}

.addresses-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.addresses-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
}

.addresses-head:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
    transform: rotateX(180deg);
}

.addresses-head__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
}

.addresses-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.addresses-col {
    width: calc(25% - 30px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.addresses-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}

.addresses-block__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #7d683e;
}

.addresses-block__info {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addresses-block__info__title {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    text-align: center;
    color: rgba(0, 0, 0, 0.80);
}

.addresses-block__info__link {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}

.addresses-block__info__link:hover {
    opacity: .8;
}

.history {
    padding: 70px 0 140px;
}

.history-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.history-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    margin-bottom: 40px;
}

.history-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
}

.history-head:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 275px;
    height: 20px;
    background-image: url("/wp-content/themes/lc-blank-master/images/separator-ramk.svg");
    background-size: 100% 100%;
    transform: rotateX(180deg);
}

.history-head__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
}

.history-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.history-block {
    width: calc(25% - 30px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.history-block__img {
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.history-block__img img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.history-block:hover .history-block__img img {
    transform: scale(1.05);
}

.history-block__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.history-block__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #000000;
}

.history-block__text {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.history-block__date {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: left;
    color: rgba(125, 104, 62, 0.45);
}

.history__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border: 1px solid #7D683E;
    padding: 12px 24px;
}

.history__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #202020;
    transition: all 0.3s ease-in-out;
}

.history__button:hover {
    background-color: #7d683e;
}

.history__button:hover span {
    color: #ffffff;
}

.history__button svg {
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.history__button svg path {
    transition: all 0.3s ease-in-out;
}

.history__button:hover svg path {
    fill: #ffffff;
}

/**************************************/

/**************** Footer **************/

.footer {
    width: 100%;
    position: relative;
    padding: 50px 0;
    background-color: #1d1a17;
}

.footer-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-top {
    width: 100%;
    max-width: 555px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 190px;
    position: relative;
    display: flex;
}

.footer-logo img {
    width: 100%;
}

.footer__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 49px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.05em;
    text-align: center;
    color: rgba(171, 137, 70, 0.25);
}

.footer__title strong {
    color: #ab8946;
}

.footer-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-block__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-block__link {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-block__link:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    position: relative;
    display: flex;
}

.footer-bottom__text {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/*************************************/

/*************** Privacy *************/

.privacy {
    padding: 200px 0 120px;
}

.privacy .container {
    max-width: 870px;
}

.privacy-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.privacy__title {
    max-width: 450px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -0.05em;
    text-align: left;
    color: #785f2e;
}

.privacy-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.privacy-block__title {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.privacy-block__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.privacy-block__content p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

/***************************************/

/**************** Popup ****************/

.modal-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-bg.active {
    opacity: 1;
    z-index: 50;
    pointer-events: auto;
}

.feedback {
    width: 100%;
    max-width: 465px;
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background-color: #ece8e2;
}

.feedback-close {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
}

.feedback-close img {
    width: 100%;
}

.feedback-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-top__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #785f2e;
    margin-bottom: 16px;
}

.feedback-top__text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.feedback-form {
    width: 100%;
    position: relative;
}

.feedback-form form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-form__input {
    width: 100%;
    position: relative;
    display: flex;
}

.feedback-form__input input {
    width: 100%;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid rgba(125, 104, 62, 0.5);
    background: transparent;
    color: rgba(125, 104, 62, 0.8);
    transition: all 0.3s ease-in-out;
}

.feedback-form__input input:focus {
    border-bottom: 1px solid #7D683E;
}

.feedback-form__input input::placeholder {
    color: rgba(125, 104, 62, 0.5);
}

.feedback-form__area {
    width: 100%;
    position: relative;
    display: flex;
}

.feedback-form__area textarea {
    width: 100%;
    min-height: 130px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid rgba(125, 104, 62, 0.5);
    background: transparent;
    color: rgba(125, 104, 62, 0.8);
    transition: all 0.3s ease-in-out;
}

.feedback-form__area textarea:focus {
    border-bottom: 1px solid #7D683E;
}

.feedback-form__area textarea::placeholder {
    color: rgba(125, 104, 62, 0.5);
}

.feedback-form__button {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border: 1px solid #7D683E;
    margin-top: 10px;
}

.feedback-form__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #7d683e;
    transition: all 0.3s ease-in-out;
}

.feedback-form__button:hover {
    background-color: #7d683e;
}

.feedback-form__button svg {
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.feedback-form__button:hover span {
    color: #ffffff;
}

.feedback-form__button svg path {
    transition: all 0.3s ease-in-out;
}

.feedback-form__button:hover svg path {
    fill: #ffffff;
}

.request {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    max-width: 465px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 32px;
    background-color: #ece8e2;
}

.request-close {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
}

.request-close img {
    width: 100%;
}

.request-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.request-top__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #785f2e;
    margin-bottom: 16px;
}

.request-top__text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.request-form {
    width: 100%;
    position: relative;
}

.request-form form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-form__input {
    width: 100%;
    position: relative;
    display: flex;
}

.request-form__input input {
    width: 100%;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid rgba(125, 104, 62, 0.5);
    background: transparent;
    color: rgba(125, 104, 62, 0.8);
    transition: all 0.3s ease-in-out;
}

.request-form__input input:focus {
    border-bottom: 1px solid #7D683E;
}

.request-form__input input::placeholder {
    color: rgba(125, 104, 62, 0.5);
}

.request-form__select {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(125, 104, 62, 0.5);
}

.request-form__select select {
    position: relative;
    padding: 16px 16px 16px 0;
    border: none;
    background: #ece8e2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: rgba(125, 104, 62, 0.8);
}

.request-form__select select:focus {
    outline: none;
}

.request-form__button {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border: 1px solid #7D683E;
    margin-top: 40px;
}

.request-form__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #7d683e;
    transition: all 0.3s ease-in-out;
}

.request-form__button:hover {
    background-color: #7d683e;
}

.request-form__button svg {
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.request-form__button:hover span {
    color: #ffffff;
}

.request-form__button svg path {
    transition: all 0.3s ease-in-out;
}

.request-form__button:hover svg path {
    fill: #ffffff;
}

.article {
    width: 100%;
    max-width: 850px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    background-color: #ece8e2;
}

.article-close {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.article-close span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #7d683e;
}

.article__img {
    width: 100%;
    position: relative;
    display: flex;
}

.article__img img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

.article-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.article__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.05em;
    text-align: left;
    color: #785f2e;
}

.article-content p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
}

.article__button {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 12px 24px;
    border: 1px solid #7D683E;
}

.article__button:hover {
    background-color: #7d683e;
}

.article__button span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #202020;
    transition: all 0.3s ease-in-out;
}

.article__button:hover span {
    color: #ffffff;
}

.article__button svg {
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.article__button svg path {
    transition: all 0.3s ease-in-out;
}

.article__button:hover svg path {
    fill: #ffffff;
}

.warning {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("/wp-content/themes/lc-blank-master/images/warning-bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: 80;
    transition: all 0.3s ease-in-out;
}

.warning.hide {
    top: -100%;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.warning-row {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-row:after {
    content: '';
    width: 100%;
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    background-image: url("/wp-content/themes/lc-blank-master/images/warning-ramk.svg");
    background-size: 100% 100%;
}

.warning-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    z-index: 1;
}

.warning-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.warning__title {
    max-width: 550px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #9c7f43;
}

.warning-info__title.warning__title {
    color: #ffffff;
}

.warning-info__title.warning__title span {
    color: #9c7f43;
}

.warning__text {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.warning-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.warning-bottom__confirm {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #7D683E;
    background-color: #7d683e;
}

.warning-bottom__confirm span {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.warning-bottom__confirm svg {
    transition: all 0.3s ease-in-out;
}

.warning-bottom__confirm:hover {
    background-color: transparent;
}

.warning-bottom__confirm:hover svg {
    transform: translateX(3px);
}

.warning-bottom__cancel {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    color: #ffffff;
}

.warning-info {
    width: 100%;
    max-width: 550px;
    position: relative;
    display: none;
    z-index: 1;
}

.warning-info.active {
    display: flex;
}

.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #785f2e;
    z-index: 80;
    transition: all 0.3s ease-in-out;
}

.loader video {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.loader.hide {
    display: none;
}

/**************************************/

/**************** Media ***************/

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

    .nav-menu {
        gap: 10px 20px;
    }

    .hero-left__title {
        font-size: 66px;
        line-height: 60px;
    }

    .about-row {
        gap: 40px;
    }

    .art-block__img {
        height: 260px;
    }

}

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

    .header {
        position: fixed;
        opacity: 0;
        pointer-events: none;
        top: -100px;
    }

    .header.fixed,
    .header.important {
        opacity: 1;
        top: 0;
        pointer-events: auto;
    }

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

    .header-nav {
        width: 100%;
        height: 100%;
        top: -200%;
        left: 0;
        position: fixed;
        background-color: #101010;
        flex-direction: column;
        z-index: 30;
        padding: 100px 15px 30px;
        transition: all 0.3s ease-in-out;
    }

    .header-nav.active {
        top: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .nav-menu__link {
        font-size: 20px;
        line-height: 25px;
    }

    .header-burger {
        display: flex;
        z-index: 35;
    }

    .header-logo {
        z-index: 35;
    }

    .nav-bottom {
        display: flex;
        margin-top: auto;
    }

    .hero-row {
        align-items: flex-start;
        padding: 15px 0 65px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-content__logo {
        display: flex;
        align-self: center;
    }

    .hero-right,
    .hero-left {
        width: 100%;
    }

    .hero-left {
        max-width: 450px;
    }

    .hero-right {
        gap: 8px;
    }

    .hero-right__button {
        width: 100%;
        max-width: 400px;
        justify-content: space-between;
        background-color: #7d683e;
        padding: 13px 16px;
        margin-top: 40px;
    }

    .hero-right__burger {
        display: flex;
    }

    .about-row {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
        max-width: 500px;
    }

    .about-right {
        width: 100%;
    }

    .art-block {
        width: calc(100% / 3 - 20px);
    }

    .art-content {
        gap: 40px 30px;
    }

    .addresses-col {
        width: calc(50% - 20px);
    }

    .history-block {
        width: calc(50% - 20px);
    }

}

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

    .about-right__title {
        font-size: 36px;
        line-height: 36px;
    }

    .art-content {
        gap: 20px;
    }

    .art-block {
        width: calc(50% - 10px);
        max-width: 280px;
    }

    .roots-left {
        display: none;
    }

    .roots-right {
        width: 100%;
    }

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

    .author-row {
        flex-direction: column-reverse;
    }

    .author-right {
        width: 100%;
        max-width: 500px;
    }

    .author-left {
        width: 100%;
        gap: 30px;
    }

    .event {
        padding: 170px 0;
    }

    .event__title {
        font-size: 55px;
        line-height: 55px;
    }

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

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

    .conditions-right {
        order: 2;
    }

    .conditions-left {
        display: contents;
    }

    .conditions-left__title {
        order: 1;
    }

    .conditions-left__button {
        max-width: 400px;
        order: 3;
    }

    .conditions-right {
        width: 100%;
    }

    .history-content {
        gap: 40px 20px;
    }

    .history-block {
        width: calc(50% - 10px);
    }

    .privacy {
        padding: 160px 0 100px;
    }

    .warning__title {
        font-size: 42px;
        line-height: 40px;
    }

    .warning__text {
        max-width: 500px;
    }

}

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

    .hero-content {
        max-width: 380px;
        align-items: center;
        gap: 16px;
    }

    .hero-content__logo {
        margin-bottom: 70px;
    }

    .hero-left {
        justify-content: center;
    }

    .hero-content:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url("/wp-content/themes/lc-blank-master/images/hero-ramk.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
    }

    .hero-left__title {
        max-width: 290px;
        font-size: 42px;
        line-height: 40px;
        text-align: center;
    }

    .hero-right__text {
        max-width: 330px;
        font-size: 18px;
        line-height: 19px;
        text-align: center;
    }

    .hero-right {
        align-items: center;
    }

    .hero-right__button {
        margin-top: 180px;
    }

    .about {
        padding: 80px 0 40px;
    }

    .about-right {
        gap: 24px;
    }

    .about-right__title {
        font-size: 24px;
        line-height: 24px;
    }

    .about-right__text p {
        font-size: 14px;
        line-height: 18px;
    }

    .about-right__text p strong {
        font-size: 18px;
        line-height: 25px;
    }

    .art-head__title {
        font-size: 32px;
        line-height: 32px;
    }

    .art-content {
        gap: 60px;
    }

    .art-block {
        width: 100%;
        max-width: 360px;
    }

    .art-block__img {
        max-width: 230px;
    }

    .art-block__title {
        min-height: unset;
    }

    .roots {
        padding: 40px 0 80px;
    }

    .roots-row {
        gap: 24px;
    }

    .roots-right {
        gap: 24px;
    }

    .roots-right__title {
        font-size: 24px;
        line-height: 24px;
    }

    .roots-right__text p {
        font-size: 14px;
        line-height: 18px;
    }

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

    .author {
        padding: 80px 0 40px;
    }

    .author-row {
        gap: 40px;
    }

    .author-left {
        gap: 24px;
    }

    .author-left__title {
        font-size: 24px;
        line-height: 24px;
    }

    .author-left__text p {
        font-size: 14px;
        line-height: 18px;
    }

    .peculiarities {
        padding: 40px 0 80px;
    }

    .peculiarities-head__title {
        font-size: 32px;
        line-height: 32px;
    }

    .peculiarities-block {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .peculiarities-block__right {
        align-items: center;
    }

    .peculiarities-block__num {
        font-size: 64px;
        line-height: 64px;
    }

    .peculiarities-block__title {
        font-size: 20px;
        line-height: 20px;
        text-align: center;
    }

    .peculiarities-block__text {
        text-align: center;
    }

    .event__title {
        text-align: center;
        font-size: 32px;
        line-height: 30px;
        color: #ffffff;
    }

    .event__text {
        font-size: 45px;
        line-height: 45px;
        text-align: center;
    }

    .event__button {
        width: 100%;
        background-color: #7d683e;
        justify-content: space-between;
    }

    .conditions {
        padding: 80px 0 40px;
    }

    .conditions-row {
        gap: 40px;
    }

    .conditions-left__title {
        font-size: 32px;
        line-height: 32px;
        text-align: center;
    }

    .addresses {
        padding: 40px 0;
    }

    .addresses-head__title {
        font-size: 32px;
        line-height: 32px;
    }

    .addresses-content {
        gap: 30px;
    }

    .addresses-col {
        width: 100%;
    }

    .history {
        padding: 40px 0 80px;
    }

    .history-content {
        justify-content: center;
    }

    .history-head {
        margin-bottom: 10px;
    }

    .history-block {
        width: 100%;
        max-width: 300px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer__title {
        font-size: 32px;
        line-height: 30px;
    }

    .modal-bg {
        padding: 20px 10px;
    }

    .article,
    .request,
    .feedback {
        padding: 32px 20px;
        gap: 20px;
    }

    .request-top__title,
    .feedback-top__title {
        font-size: 42px;
        line-height: 40px;
    }

    .article-content p,
    .request-top__text,
    .feedback-top__text {
        font-size: 14px;
        line-height: 17px;
    }

    .feedback-form__button {
        margin-top: 10px;
    }

    .request-form__button {
        margin-top: 20px;
    }

    .article__button {
        padding: 12px 16px;
    }

    .privacy {
        padding: 100px 0 80px;
    }

    .privacy__title {
        max-width: 400px;
        font-size: 36px;
        line-height: 34px;
    }

    .privacy-row {
        gap: 30px;
    }

    .warning-row {
        max-width: 380px;
        margin: 0 auto;
        padding-top: 100px;
    }

    .warning-row:after {
        background-image: url("/wp-content/themes/lc-blank-master/images/hero-ramk.svg");
        background-size: contain;
        background-position: top;
        background-repeat: no-repeat;
    }

    .warning__title {
        font-size: 32px;
        line-height: 30px;
    }

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

    .warning-bottom {
        width: 100%;
        margin-top: 150px;
    }

    .warning-bottom__confirm {
        width: 100%;
        justify-content: center;
    }

    .warning-bottom__cancel {
        width: 100%;
        text-align: center;
    }

    .warning-info {
        margin-top: 80px;
        margin-bottom: auto;
    }

}
