@font-face {

}


* {
    color: #15181A;
    font-family: 'TT Ramillas', sans-serif;
    margin: 0;
    /*transition: .3s ease;*/
}

html {
    overflow-x: hidden;
    /*overflow-y: scroll;*/
    position: relative;
    scroll-behavior: smooth;
}

html:has(.preloader2) {
    overflow-y: hidden;
}

html:has(.preloader2.hide) {
    overflow-y: inherit;
}

@media (max-width: 568px) {
    html {
        overflow-x: hidden;
    }
}

#html.disabled {
    overflow: hidden;
}

body {

}



@media (min-width: 1024px) {
    body:has(.classic) {
        overflow-x: hidden;
    }
}

body::-webkit-scrollbar {
    display: none;
}

@media (max-width: 568px) {
    body {
    ;
    }
}

#body.disabled {
    overflow: hidden;
}

.none {
    visibility: hidden;
    display: none !important;
}

.pc {
    visibility: visible;
    display: block !important;
}

.pc-grid {
    visibility: visible;
    display: grid !important;
}

.pc-f {
    visibility: visible;
    display: flex !important;
}

.mobile {
    visibility: hidden;
    display: none !important;
}

.mobile-f {
    visibility: hidden;
    display: none !important;
}

@media (max-width: 1024px) {
    .pc {
        visibility: hidden;
        display: none !important;
    }

    .pc-grid {
        visibility: hidden;
        display: none !important;
    }

    .pc-f {
        visibility: visible;
        display: none !important;
    }

    .mobile {
        visibility: visible;
        display: block !important;
    }

    .mobile-f {
        visibility: visible;
        display: flex !important;
    }
}


a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {

}

p {
    margin: 0;
}

h1, h2, h3 {
    margin: 0;
}

h1 {

}

h2 {

}

h3 {

}

h4 {
    margin: 0;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

input {
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

input:hover {

}

input[type=radio] {
    /*display: none;*/
}

input[type=submit] {

}

input[type=submit]:hover {

}

textarea {

}

button {
    box-shadow: none;
}


.accordion-button:hover {

}
.accordion-button:not(.collapsed) {

}

.accordion-body {

}

.accordion-body p {

}

.accordion-body ul {

}

.accordion-body li {

}

/**/

.container {
    max-width: 1600px;
    padding-left: clamp(16px, 3vw, 24px);
    padding-right: clamp(16px, 3vw, 24px);
}

@media (max-width: 1440px) {
    .container {

    }
}

@media (max-width: 568px) {
    .container {

    }
}

/* header */

.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 99;
    pointer-events: none;
    transition: all .3s ease;
}

.header .container {
    max-width: 100%;
}

.header.out {
    transform: translateY(-100%);
}


body .header .logo {
    display: none;
}
@media (max-width: 568px) {
    body .header .logo {
        height: 38px;
        width: auto;
    }
}

body:has(.basic) .header .basic-logo {
    display: block;
}

body:has(.coron) .header .coron-logo {
    display: block;
}

body:has(.classic) .header .classic-logo {
    display: block;
}

body:has(.dark-page) .header .dark-logo {
    display: block;
}

body .dark-page {
    padding-top: 170px;
}

.header .container > div {
    display: flex;
    justify-content: space-between;
}

.header .menu {
    cursor: pointer;
    pointer-events: all;
}

.header .menu span {
    display: flex;
    align-items: center;
    gap: 10px;
}



.header .menu svg {

}

.header .menu svg path:nth-child(2) {
    /*opacity: 0;*/
    transition: .3s ease;
}

.header .menu span:hover svg path:nth-child(1) {

}

.header .menu span:hover svg path:nth-child(2) {
    opacity: 1;
}

.header .menu span:hover svg path:nth-child(3) {
    opacity: 1;
}


body:has(.coron) .header span div,
body:has(.dark-page) .header span div {
    color: #ffffff;
}
@media (max-width: 568px) {
    body .header span div {
        display: none;
    }
}
body:has(.coron) .header span path,
body:has(.dark-page) .header span path {
    stroke: #ffffff;
}

.menu-dropdown {
    background: #171717;
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease;
    pointer-events: all;
}

@media (max-width: 1024px) {
    .menu-dropdown {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        max-height: 100dvh;
        height: 100%;
        top: -110vh;
    }
}

.menu-dropdown.active {
    max-height: 100%;
}
@media (max-width: 1024px) {
    .menu-dropdown.active {
        top: 0;
    }
}

.menu-dropdown .top {
    height: 114px;
    padding: 36px calc(44px + 85px) 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
    .menu-dropdown .top {
        height: auto;
        flex-direction: column;
        position: initial;
        padding: 28px;
        padding-bottom: 46px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.menu-dropdown .top .head-close {
    position: absolute;
    right: 44px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .menu-dropdown .top .head-close {
        top: 30px;
        right: 30px;
    }
}

.menu-dropdown .top div {
    display: flex;
    align-items: center;
    gap: 64px;
}
.menu-dropdown .top div:nth-child(1) {
    gap: 40px;
}
@media (max-width: 568px) {
    .menu-dropdown .top div {
        flex-direction: column;
        gap: 24px;
    }
    .menu-dropdown .top div:nth-child(1) {
        gap: 24px;
    }
}
@media (max-width: 320px) {
    .menu-dropdown .top div {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

.menu-dropdown .top a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    color: #fff;
    transition: .3s ease;
}
.menu-dropdown .top a:hover {
    opacity: .8;
}
@media (max-width: 568px) {
    .menu-dropdown .top a {
        font-size: 20px;
        line-height: 120%;
    }
}
@media (max-width: 320px) {
    .menu-dropdown .top a {
        font-size: 13px;
        gap: 8px;
    }
    .menu-dropdown .top a svg {
        width: 16px;
        height: 16px;
    }
}

.menu-dropdown .top div:nth-child(2) a:last-child {
    border: 1px solid #fff;
    border-radius: 40px;
    width: 144px;
    height: 40px;
    justify-content: center;
    font-family: "Manrope";
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
}
@media (max-width: 320px) {
    .menu-dropdown .top div:nth-child(2) a:last-child {
        font-size: 12px;
        height: 30px;
    }
}

.menu-dropdown .list {
    display: flex;
    padding: 66px 44px;
    /*height: calc(100dvh - 114px);*/
}
@media (max-width: 1024px) {
    .menu-dropdown .list {
        flex-direction: column;
        height: calc(100% - 340px);
        align-items: center;
        justify-content: space-between;
        padding-top: 40px;
        padding-bottom: 10px;
    }
}
@media (max-width: 568px) {
    .menu-dropdown .list {
        max-width: 140px;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 375px) {
    .menu-dropdown .list {
        /*padding: 40px 44px;*/
        gap: 40px;
        /*height: calc(100% - 160px);*/
    }
}

.menu-dropdown .list .item {
    width: calc(100%/3);
    aspect-ratio: 1;
    border-radius: 50%;
}
@media (max-width: 568px) {
    .menu-dropdown .list .item {
        width: 100%;
        /*aspect-ratio: 245/169;*/
        height: 25%;
    }
}

.menu-dropdown .list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}

.menu-dropdown .list a .bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    opacity: 0;
    transition: .5s ease;
}
@media (min-width: 1024px) {
    .menu-dropdown .list a:hover .bg {
        opacity: 1;
    }
}


.menu-dropdown .list a img {
    position: relative;
}
@media (max-width: 568px) {
    .menu-dropdown .list .item:nth-child(1) a img {
        max-width: 85px;
    }
    .menu-dropdown .list .item:nth-child(2) a img {
        max-width: 96px;
    }
    .menu-dropdown .list .item:nth-child(3) a img {
        max-width: 140px;
    }
}
@media (max-width: 375px) {
    .menu-dropdown .list a img {
        /*width: 50%;*/
    }
}

/* main */

main {
    /*overflow-x: hidden*/
}


/* footer */

footer {

}


/* content */

/* breadcrumb */

.breadcrumb {

}

/* first-page */

.first-page {
    height: 100dvh;
    background: #0C0C0C;
}

.first-page section {
    height: 100%;
}

.first-page .list {
    display: flex;
    height: 100%;
    border-radius: 32px;
    padding: 16px;

}
@media (max-width: 568px) {
    .first-page .list {
        flex-direction: column;
    }
}

.first-page .item {
    /*width: calc(100% / 3);*/
    flex: 1;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: .75s ease;
}

@media (max-width: 568px) {
    .first-page .item {
        width: 100%;
        height: calc(100% / 3);
    }
    .first-page .item.active {
        gap: 24px;
    }
}

.first-page:not(:has(.item.active)) .item:hover {
    /*width: 50%;*/
    flex: 3;
}

.first-page:hover .item:not(:hover) {
    width: 25%;
}
@media (max-width: 568px) {
    .first-page:hover .item:not(:hover) {
        height: 25%;
        width: auto;
    }
}

.first-page.active .item {
    width: 15% !important;
}
@media (max-width: 568px) {
    .first-page.active .item {
        width: auto !important;
        height: 15% !important;
    }
}

.first-page .item.active {
    width: 70% !important;
    flex: 3;
}
@media (max-width: 568px) {
    .first-page .item.active {
        width: auto !important;
        height: 70% !important;
    }
}

.first-page .item > a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.first-page .item.active > a {
    display: block;
}

.first-page .bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}


.first-page .bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    transition: .3s ease;
}

.first-page .item:hover .bg:after {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url("/local/templates/vina/assets/img/home-shadow.png");
    background-position: center;
    background-size: cover;
}

.first-page:not(:has(.item.active)) .item:hover .bg:after {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.0);
    background-image: url("/local/templates/vina/assets/img/home-shadow.png");
    background-position: center;
    background-size: cover;
}

.first-page .item.active .bg:after {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.0);

    background-image: url("/local/templates/vina/assets/img/home-shadow.png");
    background-position: center;
    background-size: contain;
}

.first-page .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    /*aspect-ratio: 1;*/
    /*width: 100%;*/
    /*height: 100%;*/
    position: relative;
}

.first-page.active .logo {
    max-height: 80px;
}

.first-page.active .logo img {
    max-height: 80px;
}

.first-page .logo img {
    transition: .3s ease;
    width: 75%;
}

.first-page:not(:has(.item.active)) .item:hover .logo img {
    width: 120%;
}

.first-page .item.active .logo img {
    width: 100% !important;
}

.first-page .logo img:nth-child(1) {
    opacity: 1;
    filter: brightness(2.5);
}

.first-page:not(:has(.item.active)) .item:hover .logo img:nth-child(1),
.first-page .item.active .logo img:nth-child(1) {
    opacity: 0;
}

.first-page .logo img:nth-child(2) {
    opacity: 0;
    position: absolute;
}

.first-page:not(:has(.item.active)) .item:hover .logo img:nth-child(2),
.first-page .item.active .logo img:nth-child(2) {
    opacity: 1;
}

.first-page .item .info {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.first-page .item.active .info {
    opacity: 1;
    max-height: initial;
    padding: 18px;
    height: calc(100% - 80px);
    gap: 20px;
}
@media (max-width: 568px) {
    .first-page .item.active .info {
        padding: 0;
        gap: 16px;
        overflow: inherit;
    }
}

.first-page .line {
    width: 2px;
    height: auto;
    border-radius: 16px;
    background: #ffffff;
    height: -webkit-fill-available;
}

.first-page h1 {
    font-family: 'TT Ramillas';
    font-weight: 300;
    font-size: 42px;
    line-height: 92%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    max-width: 600px;
}
@media (max-width: 1368px) {
    .first-page h1 {
        font-size: 36px;
    }
}
@media (max-width: 568px) {
    .first-page h1 {
        font-size: 20px;
    }
}

.first-page .item div a {
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 129px;
    height: 44px;
    min-height: 44px;
    margin-top: 5px;
    transition: .3s ease;
}

.first-page .item div a span {
    position: relative;
    z-index: 1;
    color: #fff;
    transition: .3s ease;
}

.first-page .item.active div a span,
.first-page .item div a:hover span {
    color: #282522;
}

.first-page .item div a svg {
    position: absolute;
    top: -5px;
    left: 0;
}

.first-page .item div a svg path {
    transition: .3s ease;
}

.first-page .item.active div a svg path,
.first-page .item div a:hover svg path {
    fill: #ffffff;
}

/* basic */

.basic {
    background-color: #eae1d7;
}

.basic .first-block {
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    height: 150vh;
}
@media (max-width: 568px) {
    .basic .first-block {
        height: 100vh;
    }
}

.basic .first-block h1 {
    /*color: #282522;*/
    text-align: center;
    /*font-family: TT Ramillas;*/
    font-size: 48px;
    font-weight: 300;
    line-height: 44px; /* 91.667% */
    letter-spacing: -0.96px;
    max-width: 896px;
    margin: auto;

    position: sticky;
    top: 40%;
    left: 0;
    right: 0;
    padding-bottom: 30%;
    margin: auto;
}
@media (max-width: 568px) {
    .basic .first-block h1 {
        font-size: 24px;
        line-height: 100%;
    }
}


.basic .first-block h1 span * {
    color: #D39347;
}

.basic .two-block {
    padding-bottom: 24px;
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
}

.basic .two-block .grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
@media (max-width: 568px) {
    .basic .two-block .grid {
        flex-direction: column;
    }
}

.basic .two-block .grid .left {
    /*max-width: 420px;*/
    width: 38%;
}
@media (min-width: 768px) {
    .basic .two-block .grid .left {
        max-width: 420px;
    }
}
@media (max-width: 568px) {
    .basic .two-block .grid .left {
        width: 100%;
    }
}

.basic .two-block .grid .left img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

@media (max-width: 568px) {
    .basic .two-block .grid .left img {
        aspect-ratio: 328/184;
    }
}

.basic .two-block .grid .right {
    width: 100%;
    width: 72%;
    max-height: 420px;
    overflow: hidden;
}
@media (max-width: 568px) {
    .basic .two-block .grid .right {
        width: 100%;
    }
}

.basic .two-block .grid .right img {
    width: 100%;
    aspect-ratio: 1108 / 420;
    object-fit: cover;
}
@media (max-width: 568px) {
    .basic .two-block .grid .right img {
        aspect-ratio: 328/420;
    }
}

.basic .two-block .grid .right video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1108 / 420;
    object-fit: cover;
    object-position: top;
}
@media (max-width: 568px) {
    .basic .two-block .grid .right video {
        aspect-ratio: 328 / 420;
    }
}

.basic .three-block {
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
    /*height: 470vh;*/
    /*overflow: hidden;*/
}
.basic .three-block:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(-100% + clamp(16px, 3vw, 24px));
    background: #eae1d7;
}
@media (max-width: 1368px) {
    .basic .three-block {
        height: 530vh;
    }
}
@media (max-width: 1024px) {
    .basic .three-block {
        height: 380vh;
        overflow: inherit;
    }
}
@media (max-width: 568px) {
    .basic .three-block {
        /*height: 290vh;*/
        height: 2700px;
        overflow: inherit;
    }
}
@media (max-width: 320px) {
    .basic .three-block {
        height: 420vh;
    }
}

.basic .three-block .container {
    /*overflow: hidden;*/
    /*height: 100%;*/
    /*max-width: 100%;*/
    position: relative;
}
@media (min-width: 1600px) {
    .basic .three-block .container:after {
        content: '';
        position: absolute;
        top: 0;
        right: calc(-100% + clamp(16px, 3vw, 24px));
        /*width: clamp(16px, 3vw, 24px);*/
        width: 100%;
        height: 100%;
        background: #eae1d7;
        z-index: 2;
    }
    .basic .three-block .container:before {
        content: '';
        position: absolute;
        top: 0;
        left: calc(-100% + clamp(16px, 3vw, 24px));
        /*width: clamp(16px, 3vw, 24px);*/
        width: 100%;
        height: 100%;
        background: #eae1d7;
        z-index: 2;
    }
}
@media (max-width: 1600px) {
    .basic .three-block .container {
        /*overflow: hidden;*/
        padding: 0;
    }
}
@media (max-width: 568px) {
    .basic .three-block .container {
        height: 100vh;
    }
}

.basic .three-block .content {
    padding: 90px 0;;
    /*padding-bottom: 260px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 150px;*/
    /*aspect-ratio: 1/.83;*/

    /*overflow: hidden;*/

    /*height: 100%;*/
    background-attachment: fixed;
    background-size: cover;
}
@media (max-width: 1024px) {
    .basic .three-block .content {
        /*height: 100%;*/
        width: 100%;
        /*gap: 280px;*/
        overflow: inherit;
    }
}
@media (max-width: 568px) {
    .basic .three-block .content {
        /*height: 100%;*/
        width: 100%;
        padding: 52px 0px 82px 0px;
        /*gap: 50px;*/
        overflow: inherit;
    }
}
@media (max-width: 375px) {
    .basic .three-block .content {
        padding: 22px 0px 32px 0px;
    }
}

.basic .three-block .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.basic .three-block .img img {
    position: sticky;
    top: 0;
    left: 0;
    width: 150%;
    width: 100%;
    /*margin-left: -25%;*/
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.basic .three-block .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    z-index: 1;
}
@media (max-width: 1024px) {
    .basic .three-block .top {
        position: sticky;
        top: 50px;
    }
}
@media (max-width: 568px) {
    .basic .three-block .top {
        /*gap: ;*/
    }
    .basic .three-block .top svg {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 375px) {
    .basic .three-block .top {
        top: 25px;
        gap: 25px;
    }
}
@media (max-width: 320px) {
    .basic .three-block .top {
        position: inherit;
    }
}

.basic .three-block .top h2 {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.20);
    font-size: 48px;
    font-weight: 300;
    line-height: 44px; /* 91.667% */
    letter-spacing: -0.96px;
    max-width: 900px;
}
@media (max-width: 568px) {
    .basic .three-block .top h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        max-width: 375px;
    }
}

/**/

.basic .three-block {
    height: 350vh;
    width: 100%;
    /*margin: 50vh 0;*/
    margin-bottom: -50vh;
    margin-bottom: -28%;
    position: relative;
}

.basic .three-block .container {
    position: sticky;
    top: -5%;
    /*   width: 2000px; */
    /*   height: 2000px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: space-between;*/
    aspect-ratio: 1;
    overflow: hidden;
}
@media (max-width: 1600px) {
    .basic .three-block .container {
        top: -36%;
    }
}
@media (max-width: 1368px) {
    .basic .three-block .container {
        top: -52%;
    }
}
@media (max-width: 1280px) {
    .basic .three-block .container {
        top: -54%;
    }
}
@media (max-width: 568px) {
    .basic .three-block .container {
        top: 0%;
    }
}

.img-list {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    /*   background: aquamarine; */
    transform: translate(38%, 0%);
}
@media (max-width: 568px) {
    .img-list {
        transform: translate(24%, 0%);
    }
}

.basic .three-block .container .img-list > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform-origin: 50% 200% 0;
    width: 18%;
    max-width: 360px;
    aspect-ratio: 362 / 614;
    cursor: pointer;
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(50px);
    width: 368px;
    padding: 90px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    /*     opacity: 0; */
    /*     pointer-events: none; */
}

@media (max-width: 1368px) {
    .basic .three-block .container .img-list > div {
        padding: 70px 50px;
        max-width: 300px;
    }
}
@media (max-width: 568px) {
    .basic .three-block .container .img-list > div {
        width: 214px;
        padding: 50px 32px;
    }
}
@media (max-width: 375px) {
    .basic .three-block .container .img-list > div {
        width: 194px;
        padding: 30px 32px;
    }
}
@media (max-width: 320px) {
    .basic .three-block .container .img-list > div {
        width: 175px;
        padding: 30px 12px;
    }
}

.img-list .img-1 {
    transform: rotate(0deg);
}

.img-list .img-2 {
    transform: rotate(28deg);
}

.img-list .img-3 {
    transform: rotate(56deg);
}

.img-list .img-4 {
    transform: rotate(84deg);
}

.img-list .img-5 {
    transform: rotate(112deg);
}

.img-list img {
    /* width: 100%; */
    /* height: 100%; */
    pointer-events: none;
    z-index: 999;
    cursor: pointer;
    /* position: absolute; */
    will-change: transform;
    filter: drop-shadow(40px 40px 44px rgba(0, 0, 0, 0.30)) drop-shadow(12px 22px 23px rgba(0, 0, 0, 0.30)) drop-shadow(10px 10px 33px rgba(0, 0, 0, 0.27));
    max-width: 90px;
    transition: .3s ease;
}
@media (max-width: 568px) {
    .img-list img {
        width: 100%;
        max-width: 70px;
        filter: drop-shadow(23px 23px 26px 0 rgba(0, 0, 0, 0.3)) drop-shadow(7px 13px 13px 0 rgba(0, 0, 0, 0.3)) drop-shadow(6px 6px 19px 0 rgba(0, 0, 0, 0.27));
    }
}

.img-list p {
    color: #131313;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    /* line-height: 32px; */
    letter-spacing: -0.48px;
    opacity: 0.85;
    font-family: 'TT Ramillas', sans-serif;
    margin: 0 -6%;
}

.img-list p:first-child {
    font-size: 14px;
    /* font-family: Manrope; */
    font-style: normal;
    opacity: .6;
}



.img-list > div:hover img {
    /*scale: 1.1;*/
    transform: scale(1.1);
}

.img-list p {
    color: #131313;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    /*line-height: 32px;*/
    letter-spacing: -0.48px;
    opacity: 0.85;

    font-family: 'TT Ramillas', sans-serif;
}
@media (max-width: 568px) {
    .img-list p {
        font-size: 14px;
        line-height: 143%;
        letter-spacing: -0.02em;
    }
}
@media (max-width: 320px) {
    .img-list {
        font-size: 12px;
    }
}
.img-list p:first-child {
    font-size: 14px;
    /* font-family: Manrope; */
    font-style: normal;
    opacity: .6;
}
@media (max-width: 320px) {
    .img-list p:first-child {
        font-size: 12px;
    }
}



.basic .three-block .carousel {
    /*display: flex;*/
    /*justify-content: center;*/
    overflow: hidden;
    /*gap: 20px;*/
    position: relative;
    width: 100%;
    /*height: 100%;*/
    /*padding-top: 400px;*/
    z-index: 1;
}

.basic .three-block .wheel2 {
    /*transform: rotate(90deg);*/
    display: flex;
    position: sticky;
    top: 10vh;
    left: 40%;
    width: 100%;
    height: 0%;
    transform: translate(40%, 0%) rotate(0deg);


}

.basic .three-block .item {
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(50px);
    width: 368px;
    padding: 90px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: absolute;
    transform-origin: 300% 300%;
    transform: rotate(0deg);


}


.basic .three-block .item:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}
.basic .three-block .item:nth-child(2) {
    transform: translate(0%, 40%) rotate(15deg);
    /*transform: translate(-50%, -60%) rotate(-30deg);*/
    /*border: 2px solid red;*/
}
.basic .three-block .item:nth-child(3) {
    transform: translate(-20%, 80%) rotate(30deg);
    /*border: 1px solid blue;*/
}
.basic .three-block .item:nth-child(4) {
    transform: translate(-60%, 120%) rotate(45deg);
}
.basic .three-block .item:nth-child(5) {
    transform: translate(-110%, 150%) rotate(60deg);

}


.basic .three-block .item img {
    filter: drop-shadow(40px 40px 44px rgba(0, 0, 0, 0.30)) drop-shadow(12px 22px 23px rgba(0, 0, 0, 0.30)) drop-shadow(10px 10px 33px rgba(0, 0, 0, 0.27));
}

.basic .three-block .item p {
    color: #131313;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    opacity: 0.85;
}

.slider-section {
    height: 100vh;
    bottom: 0;
    /*position: relative;*/
    width: 100%;
    left: 0;
    padding-top: 24%;
    /*overflow-x: hidden;*/
}
@media (max-width: 1024px) {
    .slider-section {
        /*padding: 0;*/
        top: 45%;
    }
}
@media (max-width: 568px) {
    .slider-section {
        /*padding-top: 64%;*/
        /*padding-top: 58vw;*/
        padding-top: 230px;
        /*top: 30%;*/
        /*top: 10vw;*/
        /*top: 10vh;*/
        top: 32px;
        position: relative;
        /*transition: .3s ease;*/
        height: 600px;
    }
}
@media (max-width: 414px) and (max-height: 736px) {
    .slider-section {
        /*padding-top: 64%;*/
        /*padding-top: 58vw;*/
        padding-top: 230px;
        /*top: 30%;*/
        /*top: 10vw;*/
        /*top: 10vh;*/
        top: 32px;
        position: relative;
        /*transition: .3s ease;*/
        height: 600px;
    }
}
@media (max-width: 320px) {
    .slider-section {
        top: -7vh;
        padding-top: 75%;
    }
}

.wheel {
    position: absolute;
    /*top: 30%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300vw;
    width: 2000px;
    height: 300vw;
    height: 2000px;
    max-width: 2000px;
    max-height: 2000px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 568px) {
    .wheel {
        width: 1200px;
        height: 1200px;
        max-width: 1200px;
        max-height: 1200px;
    }
}

.wheel__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    max-width: 360px;
    /* 	aspect-ratio: 1 / 2; */
    cursor: pointer;
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(50px);
    width: 368px;
    padding: 90px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    opacity: 0;
    /*pointer-events: none;*/
}
@media (max-width: 1368px) {
    .wheel__card {
        padding: 70px 50px;
        max-width: 300px;
    }
}
@media (max-width: 568px) {
    .wheel__card {
        width: 214px;
        padding: 50px 32px;
    }
}
@media (max-width: 375px) {
    .wheel__card {
        width: 194px;
        padding: 30px 32px;
    }
}
@media (max-width: 320px) {
    .wheel__card {
        width: 175px;
        padding: 30px 12px;
    }
}

.wheel__card.active {
    opacity: 1;
}

.wheel__card img {
    /* 	width: 100%; */
    /*   height: 100%; */
    pointer-events: none;
    z-index: 999;
    cursor: pointer;
    /* 	position: absolute; */
    will-change: transform;
    filter: drop-shadow(40px 40px 44px rgba(0, 0, 0, 0.30)) drop-shadow(12px 22px 23px rgba(0, 0, 0, 0.30)) drop-shadow(10px 10px 33px rgba(0, 0, 0, 0.27));
    max-width: 90px;
    transition: .3s ease;
}
@media (max-width: 568px) {
    .wheel__card img {
        width: 100%;
        max-width: 70px;
        filter: drop-shadow(23px 23px 26px 0 rgba(0, 0, 0, 0.3)) drop-shadow(7px 13px 13px 0 rgba(0, 0, 0, 0.3)) drop-shadow(6px 6px 19px 0 rgba(0, 0, 0, 0.27));
    }
}

.wheel__card:hover img {
    /*scale: 1.1;*/
    transform: scale(1.1);
}

.wheel__card p {
    color: #131313;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    /*line-height: 32px;*/
    letter-spacing: -0.48px;
    opacity: 0.85;

    font-family: 'TT Ramillas', sans-serif;
}
@media (max-width: 568px) {
    .wheel__card p {
        font-size: 14px;
        line-height: 143%;
        letter-spacing: -0.02em;
    }
}
@media (max-width: 320px) {
    .wheel__card p {
        font-size: 12px;
    }
}
.wheel__card p:first-child {
    font-size: 14px;
    /* font-family: Manrope; */
    font-style: normal;
    opacity: .6;
}
@media (max-width: 320px) {
    .wheel__card p:first-child {
        font-size: 12px;
    }
}

/**/

.basic .four-block {
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
    margin-top: -2px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .basic .four-block {
        height: 100vh;
    }
}
@media (max-width: 568px) {
    .basic .four-block {
        height: 130vh;
        margin-bottom: -12vh;
    }
    .basic .four-block .container {
        height: 100%;
    }
}
@media (max-width: 375px) {
    .basic .four-block {
        height: 160vh;
        margin-bottom: -18vh;
    }
}
@media (max-width: 320px) {
    .basic .four-block {
        height: 210vh;
        margin-bottom: -28vh;
    }
}

.basic .four-block .content {
    padding: 110px 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .basic .four-block .content {
        height: 100%;
        padding: 48px 16px;
    }
}

.basic .four-block .text {
    position: absolute;
    z-index: 1;
    max-width: 779px;
    /*margin-top: -20%;*/
    mix-blend-mode: difference;
    height: 100%;
    padding-top: 25%;
}
@media (max-width: 1024px) {
    .basic .four-block .text {
        padding-top: 40%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .text {
        padding-top: 70%;
    }
}

.basic .four-block .text > div {
    position: sticky;
    top: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    /*padding-bottom: 35%;*/
    padding-bottom: 70%;
}
@media (max-width: 568px) {
    .basic .four-block .text > div {
        top: 0%;
        padding-bottom: 55%;
        gap: 16px;
        position: relative;
    }
}

.basic .four-block .text p {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
}

.basic .four-block .text h3 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;

    /*mix-blend-mode: difference;*/
}
@media (max-width: 568px) {
    .basic .four-block .text h3 {
        font-weight: 200;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        color: #e5e2ff;
    }
}

.basic .four-block .img {
    position: relative;
}
@media (max-width: 568px) {
    .basic .four-block .img {
        height: 100%;
    }
}

.basic .four-block .img img {
    border-radius: 50%;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.basic .four-block .img img:nth-child(1) {
    opacity: 0;
    max-width: 1351px;
}

.basic .four-block #four-block-img-0 {
    opacity: 0;
    max-width: 1351px;
}

.basic .four-block .img img:nth-child(2) {
    position: absolute;
    width: 33vw;
    width: 39%;
    top: 13%;
    left: 0%;
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(2) {
        width: 63%;
        top: 3%;
        left: -20%;
    }
}

.basic .four-block .img img:nth-child(3) {
    position: absolute;
    width: 27.3vw;
    width: 32%;
    top: 20%;
    left: 53%;
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(3) {
        width: 62%;
        top: 10%;
        /*left: 73%;*/
    }
}

.basic .four-block .img img:nth-child(4) {
    position: absolute;
    width: 27.3vw;
    width: 32%;
    top: 53.4%;
    left: 3.5%;
}
@media (max-width: 1024px) {
    .basic .four-block .img img:nth-child(4) {
        width: 27.3vw;
        width: 32%;
        top: 85%;
        left: 3.5%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(4) {
        width: 52%;
        left: -6.5%;
        top: 53%;
    }
}

.basic .four-block .img img:nth-child(5) {
    position: absolute;
    width: 25vw;
    width: 30%;
    top: 55%;
    left: 69.7%;
}
@media (max-width: 1024px) {
    .basic .four-block .img img:nth-child(5) {
        width: 25vw;
        width: 30%;
        top: 74%;
        left: 69.7%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(5) {
        width: 50%;
        left: 69.7%;
        top: 45%;
    }
}

.basic .four-block .img img:nth-child(6) {
    position: absolute;
    width: 20vw;
    width: 24%;
    top: 83.8%;
    left: 22.6%;
}
@media (max-width: 1024px) {
    .basic .four-block .img img:nth-child(6) {
        width: 20vw;
        width: 24%;
        top: 113.8%;
        left: 22.6%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(6) {
        width: 54%;
        left: 2.6%;
        top: 73.8%;
    }
}

.basic .four-block .img img:nth-child(7) {
    position: absolute;
    width: 15.7vw;
    width: 18.5%;
    top: 78.6%;
    left: 54.3%;
}
@media (max-width: 1024px) {
    .basic .four-block .img img:nth-child(7) {
        width: 15.7vw;
        width: 19%;
        top: 114.7%;
        left: 58%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(7) {
        width: 38%;
        top: 68.6%;
        left: 54.3%;
    }
}

.basic .four-block .img img:nth-child(8) {
    position: absolute;
    width: 9vw;
    width: 11%;
    top: 101.7%;
    left: 48%;
}
@media (max-width: 1024px) {
    .basic .four-block .img img:nth-child(8) {
        width: 9vw;
        width: 17%;
        top: 85.7%;
        left: 43%;
    }
}
@media (max-width: 568px) {
    .basic .four-block .img img:nth-child(8) {
        width: 31%;
        top: 83.7%;
        left: 53%;
    }
}

.basic .four-block {

}

.basic .four-block-anim {
    height: 2px;
    /*background-color: red;*/
    position: relative;
    top: -30vh;
    z-index: 999;
}

.basic .five-block {
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
}

.basic .five-block .item {
    height: 100vh;
    display: flex;
    align-items: center;
}

.basic .five-block .item .container {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 96px;
}
@media (max-width: 1024px) {
    .basic .five-block .item .container {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .item .container {
        gap: 30px;
    }
}
@media (max-width: 320px) {
    .basic .five-block .item {
        min-height: 567px;
    }
}

.basic .five-block .left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*gap: 120px;*/
    gap: 0px;
}
@media (max-width: 1024px) {
    .basic .five-block .left {
        justify-content: center;
        padding-top: 20px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .basic .five-block .left {
        padding: 0;
        margin-top: -40px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left {
        flex-direction: column;
        justify-content: flex-end;
        gap: 0px;
        margin: 0;
        position: relative;
    }
}

.basic .five-block .left .img {
    position: relative;
    z-index: 1;
}
@media (max-width: 1024px) {
    .basic .five-block .left .img {
        /*margin-top: -40px;*/
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .img {
        margin-top: -40px;
    }
}

.basic .five-block .left .img img {
    position: relative;
    top: 50px;
    /*filter: drop-shadow(40px 40px 44px rgba(0, 0, 0, 0.30)) drop-shadow(12px 22px 23px rgba(0, 0, 0, 0.30)) drop-shadow(10px 10px 33px rgba(0, 0, 0, 0.27));*/
    max-height: 90vh;
}
@media (max-width: 1024px) {
    .basic .five-block .left .img img {
        /*width: 85%;*/
        /*left: 20%;*/
        max-height: 58dvh;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .img img {
        /*width: 85%;*/
        left: 23%;
        max-height: 58dvh;
    }
    .basic .five-block .swiper-slide:nth-child(2) .left .img img,
    .basic .five-block .swiper-slide:nth-child(4) .left .img img,
    .basic .five-block .swiper-slide:nth-child(5) .left .img img {
        left: 16%;
    }
}
@media (max-width: 415px) {
    .basic .five-block .left .img img {
        max-height: 48dvh;
        top: 40px;
    }
}

.basic .five-block .item:nth-child(2) .img img,
.basic .five-block .item:nth-child(4) .img img,
.basic .five-block .item:nth-child(5) .img img {
    right: -70px;
}
@media (max-width: 568px) {
    .basic .five-block .item:nth-child(2) .img img,
    .basic .five-block .item:nth-child(4) .img img,
    .basic .five-block .item:nth-child(5) .img img {
        right: 0px;
    }
}

.basic .five-block .left .list {

}
@media (max-width: 568px) {
    .basic .five-block .left .list {
        position: absolute;
        z-index: 9;
        top: 20%;
        width: 60vw;
        height: 65vw;
    }
    .basic .five-block .swiper-slide:nth-child(1) .left .list {
        width: 45vw;
    }
    .basic .five-block .swiper-slide:nth-child(3) .left .list {
        width: 45vw;
    }
}
@media (max-width: 415px) {
    .basic .five-block .left .list {
        top: 10%;
        width: 50vw;
        /*margin-left: 5%;*/
    }
}
@media (max-width: 320px) {
    .basic .five-block .left .list {
        top: 5%;
    }
}

.basic .five-block .left .list div {
    display: flex;
    width: 200px;
    height: 200px;
    padding: 0 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 200px;
    background: rgba(255, 255, 255, 0.4);
}
.basic .five-block .swiper-wrapper .swiper-slide:nth-child(1) .left .list div {
    background: #d8e5e1;
}
.basic .five-block .swiper-wrapper .swiper-slide:nth-child(2) .left .list div {
    background: #e2e2dc;
}
.basic .five-block .swiper-wrapper .swiper-slide:nth-child(3) .left .list div {
    background: #f3e3d4;
}
.basic .five-block .swiper-wrapper .swiper-slide:nth-child(4) .left .list div {
    background: #eae4db;
}
.basic .five-block .swiper-wrapper .swiper-slide:nth-child(5) .left .list div {
    background: #ede2e3;
}
@media (max-width: 1368px) {
    .basic .five-block .left .list div {
        width: 150px;
        height: 150px;
        gap: 6px;
    }
}
@media (max-width: 1024px) {
    .basic .five-block .left .list div {
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 768px) {
    .basic .five-block .left .list div {
        width: 190px;
        height: 190px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .list div {
        width: 56px;
        height: 56px;
        overflow: hidden;
        position: absolute !important;
        gap: 4px;
        padding: 8px;
        transition: .3s ease;
    }
    .basic .five-block .left .list div:nth-child(1) {
        top: 0;
        left: 52% !important;
    }
    .basic .five-block .left .list div:nth-child(2) {
        top: 60%;
        right: 0;
    }
    .basic .five-block .left .list div:nth-child(3) {
        bottom: 0;
        left: 0% !important;
    }
    .basic .five-block .swiper-slide:nth-child(1) .left .list div:nth-child(3) {
        /*left: 0% !important;*/
    }
    .basic .five-block .swiper-slide:nth-child(3) .left .list div:nth-child(3) {
        /*left: 0% !important;*/
    }
    .basic .five-block .left .list div:hover {
        width: 148px;
        height: 148px;
        padding: 14px;
    }
    .basic .five-block .left .list div:nth-child(1):hover {
        top: -46px;
        left: calc(47% - 46px) !important;
    }
    .basic .five-block .left .list div:nth-child(2):hover {
        top:  calc(50% - 46px);
        right: -46px;
    }
    .basic .five-block .left .list div:nth-child(3):hover {
        bottom: -46px;
        left: calc(0% - 46px) !important;
    }
}

.basic .five-block .left .list div:not(:nth-child(2)) {
    position: relative;
    left: -70px;
}
@media (max-width: 1024px) {
    .basic .five-block .left .list div:not(:nth-child(2)) {
        left: -120px;
    }
}
@media (min-width: 568px) and (max-width: 1024px) {
    .basic .five-block .left .list div:nth-child(2) {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .list div:not(:nth-child(2)) {
        left: -70px;
    }
}

.basic .five-block .left .list div img {
    /*mix-blend-mode: luminosity;*/
    /*filter: grayscale(1);*/
    filter: brightness(0.6);
    mix-blend-mode: color-burn;
}

.basic .five-block .left .list svg {

}
@media (max-width: 568px) {
    .basic .five-block .left .list svg {
        width: 46px;
        height: 46px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .list svg {
        width: 40px;
        height: 40px;
    }
}

.basic .five-block .left .list p {
    color: #000;
    text-align: center;

    /* Desktop/Heading/H5 */
    font-family: TT Ramillas;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.16px;
}
@media (max-width: 1368px) {
    .basic .five-block .left .list p {
        font-size: 15px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .list p {
        height: 0;
        overflow: hidden;
        display: none;
        font-size: 14px;
        line-height: 1;
        opacity: 0;
        transition: .3s ease;
    }
    .basic .five-block .left .list div:hover p {
        height: auto;
        overflow: hidden;
        display: block;
        opacity: 1;
        min-height: 14px;
    }
}

.basic .five-block .left .list span {
    color: rgba(0, 0, 0, 0.4);
    text-align: center;

    /* Desktop/Text/Small */
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.24px;
}
@media (max-width: 1368px) {
    .basic .five-block .left .list span {
        font-size: 11px;
        line-height: 1.2;
    }
}
@media (max-width: 568px) {
    .basic .five-block .left .list span {
        height: 0;
        overflow: hidden;
        display: none;
        font-size: 10px;
        opacity: 0;
        transition: .3s ease;
    }
    .basic .five-block .left .list div:hover span {
        height: auto;
        overflow: hidden;
        display: block;
        opacity: 1;
    }
}

.basic .five-block .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1024px) {
    .basic .five-block .right {
        align-items: center;
        text-align: center;
    }
}

.basic .five-block .right .num {
    color: #000;

    /* Desktop/Heading/H4 */
    font-family: TT Ramillas;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;

    margin-bottom: 16px;
}
@media (max-width: 568px) {
    .basic .five-block .right .num {
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.02em;
    }
}

.basic .five-block .right h2 {
    color: #131313;

    /* Desktop/Heading/H1 */
    font-family: TT Ramillas;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 85.714% */
    letter-spacing: -1.12px;

    margin-bottom: 40px;

    max-width: 500px;
}
@media (max-width: 1024px) {
    .basic .five-block .right h2 {
        margin-bottom: 24px;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .basic .five-block .right h2 {
        font-size: 46px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .right h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;

    }
}

.basic .five-block .right h3 {
    /*font-family: Manrope;*/
    /*opacity: .4;*/
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}
@media (max-width: 568px) {
    .basic .five-block .right h3 {
        font-size: 16px;
    }
}

.basic .five-block .right .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 1024px) {
    .basic .five-block .right .list {
        gap: 12px;
        align-items: center;
    }
}
@media (max-width: 375px) {
    .basic .five-block .right .list {
        gap: 8px;
    }
}

.basic .five-block .right .list p {
    color: #000;

    /* Desktop/Text/Main */
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
    opacity: 0.8;

    display: flex;
    align-items: center;
    gap: 8px;
}
.basic .five-block .right .list p:last-child {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 22px;
    font-family: inherit;
    font-size: 18px;
}
@media (max-width: 1024px) {
    .basic .five-block .right .list p:last-child {
        align-items: center;
    }
}
@media (max-width: 568px) {
    .basic .five-block .right .list p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.02em;
        align-items: center;
    }
    .basic .five-block .right .list p:last-child {
        align-items: center;
        margin-top: 16px;
    }

}

.basic .five-block .right .list p span {
    font-family: Manrope;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #262A29;
    padding: 2px 8px;
}
.basic .five-block .right .list p:last-child span {
    padding: 0;
    border: none;
    font-size: 13px;
    max-width: 400px;
    /*text-align: left;*/
}
@media (max-width: 568px) {
    .basic .five-block .right .list p span {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.02em;
    }
    .basic .five-block .right .list p:last-child span {
        font-size: 12px;
    }
}

.basic .five-block .swiper-pagination {
    top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 20px;
    z-index: 100;
}
@media (max-width: 768px) {
    .basic .five-block .swiper-pagination {
        display: none;
    }
}

.basic .five-block .swiper-pagination-bullet {
    border-radius: 0;
    width: auto;
    height: 15px;
    text-align: center;
    opacity: .4;
    background: transparent;

    color: #000;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;

}
.basic .five-block .swiper-pagination-bullet-active {
    opacity: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.basic .five-block .swiper-pagination-bullet-active:after {
    position: absolute;
    top: 25px;
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8' fill='none'%3e%3cpath d='M8 0L0 8C0 8 4.2 3.8 8 3.8C11.8 3.8 16 8 16 8L8 0Z' fill='%23262A29'/%3e%3c/svg%3e");
}

.basic .five-block .swiper-button-next, .basic .five-block .swiper-rtl .swiper-button-prev {
    right: 90px;
}
@media (max-width: 1024px) {
    .basic .five-block .swiper-button-next, .basic .five-block .swiper-rtl .swiper-button-prev {
        right: 56px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .swiper-button-next, .basic .five-block .swiper-rtl .swiper-button-prev {
        right: 16px;
    }
}

.basic .five-block .swiper-button-next:after, .basic .five-block .swiper-rtl .swiper-button-prev:after {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle opacity='0.2' cx='40' cy='40' r='40' fill='%2300130E'/%3e%3cpath opacity='0.8' d='M24 40H56M56 40C56 40 45.7234 40 42.6538 28M56 40C56 40 45.7234 40 42.6538 52' stroke='white' stroke-width='1.5'/%3e%3c/svg%3e ");
}
@media (max-width: 568px) {
    .basic .five-block .swiper-button-next:after, .basic .five-block .swiper-rtl .swiper-button-prev:after {
        background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle opacity='0.2' cx='40' cy='40' r='40' fill='%2300130E'/%3e%3cpath opacity='0.8' d='M24 40H56M56 40C56 40 45.7234 40 42.6538 28M56 40C56 40 45.7234 40 42.6538 52' stroke='white' stroke-width='1.5'/%3e%3c/svg%3e ");
        width: 36px;
        min-width: 36px;
        height: 36px;
        background-size: contain;
        content: '';
    }
}

.basic .five-block .swiper-button-prev, .basic .five-block .swiper-rtl .swiper-button-prev {
    left: 90px;
}
@media (max-width: 1024px) {
    .basic .five-block .swiper-button-prev, .basic .five-block .swiper-rtl .swiper-button-prev {
        left: 56px;
    }
}
@media (max-width: 568px) {
    .basic .five-block .swiper-button-prev, .basic .five-block .swiper-rtl .swiper-button-prev {
        left: 16px;
    }
}

.basic .five-block .swiper-button-prev:after, .basic .five-block .swiper-rtl .swiper-button-next:after {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle opacity='0.2' cx='40' cy='40' r='40' transform='matrix(-1 0 0 1 80 0)' fill='%2300130E'/%3e%3cpath opacity='0.8' d='M56 40H24M24 40C24 40 34.2766 40 37.3462 28M24 40C24 40 34.2766 40 37.3462 52' stroke='white' stroke-width='1.5'/%3e%3c/svg%3e ");
}
@media (max-width: 568px) {
    .basic .five-block .swiper-button-prev:after, .basic .five-block .swiper-rtl .swiper-button-next:after {
        background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle opacity='0.2' cx='40' cy='40' r='40' transform='matrix(-1 0 0 1 80 0)' fill='%2300130E'/%3e%3cpath opacity='0.8' d='M56 40H24M24 40C24 40 34.2766 40 37.3462 28M24 40C24 40 34.2766 40 37.3462 52' stroke='white' stroke-width='1.5'/%3e%3c/svg%3e ");
        width: 36px;
        min-width: 36px;
        height: 36px;
        background-size: contain;
        content: '';
    }
}

/* basic six-block */

.basic .six-block {
    padding: 160px 0;
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
}
@media (max-width: 1368px) {
    .basic .six-block {
        padding: 100px 0;
    }
}
@media (max-width: 568px) {
    .basic .six-block {
        padding: 56px 0;
    }
}

.basic .six-block .container {
    display: flex;
    flex-direction: column;
    gap: 114px;
    padding: 0;
    max-width: 100%;
}
@media (max-width: 568px) {
    .basic .six-block .container {
        /*padding-left: 0;*/
        /*padding-right: 0;*/
        gap: 48px;
    }
}

.basic .six-block .top {

}

.basic .six-block .top h2 {
    color: #282522;
    text-align: center;

    /* Desktop/Heading/H2 */
    font-family: TT Ramillas;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 44px; /* 91.667% */
    letter-spacing: -0.96px;
    max-width: 800px;
    margin: auto;
}
@media (max-width: 568px) {
    .basic .six-block .top h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        max-width: 80%;
    }
}

.basic .six-block .list {

}

.basic .six-block .list .swiper {
    padding-left: calc((100vw - 1200px) / 2);
}

@media (max-width: 568px) {
    .basic .six-block .swiper-slide:last-child {
        display: none;
    }
    .basic .six-block .list .swiper {
        padding-left: clamp(16px, 3vw, 24px);
    }
}

.basic .six-block .swiper-slide-active {
    width: 45% !important;
}
@media (max-width: 1024px) {
    .basic .six-block .swiper-slide-active {
        width: 75% !important;
    }
}
@media (max-width: 568px) {
    .basic .six-block .swiper-slide-active {
        width: 75% !important;
    }
}

.basic .six-block .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
@media (max-width: 568px) {
    .basic .six-block .item {
        gap: 16px;
    }
}

.basic .six-block .item .img {
    aspect-ratio: 414/504;
    width: 100%;
    /*height: 504px;*/
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: .5s ease;
}
@media (max-width: 1368px) {
    .basic .six-block .item .img {
        /*height: 410px;*/
    }
}
@media (max-width: 1024px) {
    .basic .six-block .item .img {
        height: 100%;
    }
}
@media (max-width: 568px) {
    .basic .six-block .item .img {
        height: 100%;
        aspect-ratio: 359 / 308;
    }
}

.basic .six-block .swiper-slide-active .item .img {
    aspect-ratio: 702/380;
    /*width: 702px;*/
    height: 100%;
    border-radius: 248px;
    background-position: 50% 20%;
}
@media (max-width: 1368px) {
    .basic .six-block .swiper-slide-active .item .img {
        aspect-ratio: 702/350;
    }
}
@media (max-width: 568px) {
    .basic .six-block .swiper-slide-active .item .img {
        aspect-ratio: 240/148;
    }
}

.basic .six-block .item .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.basic .six-block .item .title h3 {
    color: #282522;
    text-align: center;
    text-shadow: 0px 4px 40px rgba(0, 0, 0, 0.27);

    /* Desktop/Heading/H3 */
    font-family: TT Ramillas;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
}
@media (max-width: 568px) {
    .basic .six-block .item .title h3 {
        font-weight: 400;
        font-size: 18px;
        line-height: 111%;
        letter-spacing: -0.02em;
    }
}

.basic .six-block .item .title p {
    color: #282522;
    text-align: center;

    /* Desktop/Text/Main */
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;

    opacity: 0.8;

    max-width: 450px;
}
@media (max-width: 568px) {
    .basic .six-block .item .title p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
    }
}

.basic .six-block .item .info {
    height: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    width: 100%;
}
@media (max-width: 568px) {
    .basic .six-block .item .info {

    }
}

.basic .six-block .item .info .ingedient {
    justify-content: center;
    display: flex;
    /*grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;*/
    overflow: hidden;
    width: 100%;
    max-width: 650px;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 568px) {
    .basic .six-block .item .info .ingedient {
        grid-template-columns: 1fr 1fr;
    }
}

.basic .six-block .item .info .ingedient >*:last-child {
    display: none;
}

.basic .six-block .item .info .ingedient svg {
    margin-top: 7px;
    width: 20px;
}
@media (max-width: 568px) {
    .basic .six-block .item .info:has(.ingedient:nth-child(2) > *:nth-child(4)):after {
        display: none;
    }
    .basic .six-block .item .info:has(.ingedient:nth-child(2) > *:nth-child(4)) .ingedient svg:nth-child(2) {
        display: block;
        position: absolute;
        top: 10%;
    }
    .basic .six-block .item .info:has(.ingedient:nth-child(2) > *:nth-child(5)):after {
        display: block;
    }
    .basic .six-block .item .info:has(.ingedient:nth-child(2) > *:nth-child(5)) .ingedient svg:nth-child(2) {
        display: none;
    }
}

.basic .six-block .item .info .method {
    opacity: 0.8;
    max-width: 450px;
}

.basic .six-block .swiper-slide-active .item .info {
    /*display: flex;*/
    height: auto;
    opacity: 1;
}
@media (max-width: 568px) {
    .basic .six-block .swiper-slide-active .item .info {
        height: auto;
        position: relative;
    }
    .basic .six-block .swiper-slide-active .item .info:after {
        content: url("");
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='240' height='144' viewBox='0 0 240 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.2' d='M0 73.7561H240M120 0L120 144' stroke='%23282522'/%3e%3c/svg%3e ");
        background-size: contain;
        background-position: center;
        width: 100%;
        height: 77%;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }
    .basic .six-block .swiper-slide-active .item .info svg {
        display: none;
    }
}

.basic .six-block .item .info .ingedient > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 115px;
    width: 21%;
}
@media (max-width: 568px) {
    .basic .six-block .item .info .ingedient > div {
        gap: 4px;
        padding: 10px 16px;
        width: 50%;
        max-width: calc(50% - 6px);
    }
    .basic .six-block .item .info .ingedient > div:nth-child(1) {
        /*border-right: 1px solid rgba(40, 37, 34, 0.2);*/
        /*border-bottom: 1px solid rgba(40, 37, 34, 0.2);*/
    }
    .basic .six-block .item .info .ingedient > div:nth-child(3) {
        /*border-left: 1px solid rgba(40, 37, 34, 0.2);*/
        /*border-bottom: 1px solid rgba(40, 37, 34, 0.2);*/
    }
    .basic .six-block .item .info .ingedient > div:nth-child(5) {
        /*border-right: 1px solid rgba(40, 37, 34, 0.2);*/
        /*border-top: 1px solid rgba(40, 37, 34, 0.2);*/
    }
    .basic .six-block .item .info .ingedient > div:nth-child(7) {
        /*border-left: 1px solid rgba(40, 37, 34, 0.2);*/
        /*border-top: 1px solid rgba(40, 37, 34, 0.2);*/
    }
}

.basic .six-block .item .info .ingedient > div img {
    width: 32px;
    height: 32px;
}

.basic .six-block .item .info .ingedient > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.basic .six-block .item .info p {
    color: #282522;
    text-align: center;

    /* Desktop/Text/Small */
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.24px;
    opacity: 0.8;
}
@media (max-width: 568px) {
    .basic .six-block .item .info p {
        font-size: 10px;
        line-height: 140%;
        letter-spacing: -0.02em;
    }
}

.basic .six-block .item .info span {
    color: #282522;
    text-align: center;

    /* Desktop/Text/Small */
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.24px;
    opacity: 0.6;
}
@media (max-width: 568px) {
    .basic .six-block .item .info span {

    }
}

.basic .seven-block {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #eae1d7;
    position: relative;
    z-index: 1;
}
@media (max-width: 1024px) {
    .basic .seven-block {
        height: 100vh;
    }
}
@media (max-width: 568px) {
    .basic .seven-block {
        height: 100dvh;
    }
}

.basic .seven-block .container {
    aspect-ratio: 1600/832;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 1024px) {
    .basic .seven-block .container {
        aspect-ratio: auto;
        height: 100%;
    }
}
@media (max-width: 568px) {
    .basic .seven-block .container {
        aspect-ratio: auto;
        height: 100%;
    }
}

.basic .seven-block h2 {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.20);

    /* Desktop/Heading/H2 */
    font-family: TT Ramillas;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 44px; /* 91.667% */
    letter-spacing: -0.96px;

    max-width: 780px;

    position: relative;
    z-index: 2;
}
@media (max-width: 568px) {
    .basic .seven-block h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
    }
}

.basic .seven-block .dark {
    aspect-ratio: 1130/400;
    width: 100%;
    max-width: 1130px;
    border-radius: 1130px;
    opacity: 0.3;
    background: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    /*background: aquamarine;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}
@media (max-width: 568px) {
    .basic .seven-block .dark {

    }
}

.basic .seven-block video {
    position: absolute;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

/* coron */

.coron {
    background: #131313;
}

.coron * {
    color: #FFF;
}

.coron .first-block {
    min-height: 100vh;
    background-position: 50% 90%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    padding-bottom: 24px;
    background: #000201;
}
.coron .first-block:after {
    /*content: '';*/
    /*background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);*/
    opacity: 0.9;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 568px) {
    .coron .first-block:after {
        background: #000;
        opacity: 0.7;
    }
}

.coron .first-block > .img {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 100%;*/
    height: 100%;
}

.coron .first-block > .img img {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 50% 90%;
}

.coron .first-block > .container {
    height: 100vh;
    position: relative;
    z-index: 1;
}

.coron .first-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
@media (max-width: 1024px) {
    .coron .first-block .grid {
        grid-template-columns: 1fr;
    }
    .coron .first-block .grid .left {
        display: none;
    }
}

.coron .first-block .grid .right {

    bottom: 20px;
}

.coron .first-block .grid .right > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 27px;
    position: sticky;
    top: 40%;
    padding-bottom: 50px;
}
@media (max-width: 568px) {
    .coron .first-block .grid .right > div {
        top: 40%;
    }
}

.coron .first-block .grid .right h1 {
    text-align: center;
    text-shadow: 0px 4px 40px rgba(0, 0, 0, 0.27);
    font-size: 32px;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    max-width: 700px;
}
@media (max-width: 568px) {
    .coron .first-block .grid .right h1 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        color: #fff;
    }
}

.coron .two-block {
    /*padding-top: 100vh;*/
    position: relative;
    z-index: 9;
}

.coron .two-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
}
@media (max-width: 1024px) {
    .coron .two-block .grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-top: 12px;
    }
}

.coron .two-block .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*gap: 22px;*/
    background: #181818;
    padding: 34px 30px 57px 30px;
    position: relative;
}
@media (max-width: 568px) {
    .coron .two-block .item {
        gap: 10px;
        padding-bottom: 34px;
    }
}
@media (max-width: 320px) {
    .coron .two-block .item {
        padding: 14px 10px 17px 10px;
    }
}

.coron .two-block .item:after {
    content: '';
    background: radial-gradient(49.33% 49.33% at 51.29% 50.67%, rgb(255, 255, 255) -70%, rgb(24, 24, 24) 100%);
    opacity: 0.1;
    position: absolute;
    width: 60%;
    height: 60%;
    margin-top: -14%;
}

.coron .two-block .item img {
    width: 100%;
    aspect-ratio: 163/305;
    object-fit: contain;
    max-width: 163px;
    position: relative;
    z-index: 1;
    scale: 1;
    transition: .3s ease;
}
@media (max-width: 320px) {
    .coron .two-block .item img {
        width: 80%;
    }
}

.coron .two-block .item:hover img {
    scale: 1.1;
}

.coron .two-block .item p {
    text-align: center;
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.16px;
    opacity: 0.6;
}
@media (max-width: 568px) {
    .coron .two-block .item p {
        min-height: 96px;
    }
}
@media (max-width: 320px) {
    .coron .two-block .item p {
        min-height: 56px;
        font-size: 14px;
        line-height: 1;
    }
}

.coron .two-block .item p span {
    font-size: 14px;
    opacity: .5;
}
@media (max-width: 320px) {
    .coron .two-block .item p span {
        font-size: 12px;
        line-height: 1;
    }
}

.coron .three-block {

}
@media (max-width: 568px) {
    .coron .three-block {
        height: 100vh;
    }
    .coron .three-block .container {
        height: 100%;
    }
}
@media (max-width: 568px) {
    .coron .three-block {
        height: 150vh;
        height: 800px;
    }
}

.coron .three-block .container {
    padding-left: 0;
    padding-right: 0;
}

.coron .three-block .content {
    padding: 110px 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 568px) {
    .coron .three-block .content {
        padding: 32px 16px;
        height: 100%;
    }
}

.coron .three-block .text {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 779px;
    margin-top: 2%;
    mix-blend-mode: difference;
}

.coron .three-block .text p {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.coron .three-block .text h3 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -0.64px;
    max-width: 90vw;
}
@media (max-width: 568px) {
    .coron .three-block .text h3 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
    }
}
@media (max-width: 320px) {
    .coron .three-block .text h3 {
        font-size: 22px;
    }
}

.coron .three-block .img {
    position: relative;
}
@media (max-width: 568px) {
    .coron .three-block .img {
        height: 100%;
    }
    .coron .three-block .img img {
        width: 40%;
        /*height: 100%;*/
    }
}

.coron .three-block .img img:not(:nth-child(1)) {
    position: absolute;
}

.coron .three-block .img img:nth-child(1) {
    opacity: 0;
}

.coron .three-block .img img#three-block-img-1 {
    transform: rotate(-13deg);
    left: 9.5%;
    top: 19.5%;
    max-width: 368px;
    aspect-ratio: 368 / 340;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-1 {
        left: -8.5%;
    }
}
.coron .three-block .img img#three-block-img-2 {
    left: 1%;
    right: 0;
    margin: auto;
    top: 10%;
    max-width: 464px;
    aspect-ratio: 464 / 372;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-2 {

    }
}
.coron .three-block .img img#three-block-img-3 {
    transform: rotate(14deg);
    right: 9.6%;
    top: 21%;
    max-width: 355px;
    aspect-ratio: 355 / 465;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-3 {
        right: -15.4%;
    }
}
.coron .three-block .img img#three-block-img-4 {
    transform: rotate(14deg);
    scale: .9;
    left: 10%;
    bottom: 2%;
    max-width: 408px;
    aspect-ratio: 408 / 525;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-4 {
        left: -9%;
    }
}
.coron .three-block .img img#three-block-img-5 {
    left: 4%;
    right: 0;
    margin: auto;
    bottom: -10%;
    max-width: 385px;
    aspect-ratio: 385 / 353;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-5 {
        bottom: 0%;
    }
}
.coron .three-block .img img#three-block-img-6 {
    transform: rotate(3deg);
    right: 16%;
    bottom: 3.3%;
    max-width: 367px;
    aspect-ratio: 367 / 419;
    object-fit: cover;
}
@media (max-width: 568px) {
    .coron .three-block .img img#three-block-img-6 {
        right: -8%;
        bottom: 8.3%;
    }
}

.coron .four-block {

}

.coron .four-block .container {
    padding: 0;
    max-width: 100%;
}

.coron .four-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 1024px) {
    .coron .four-block .grid {
        grid-template-columns: 1fr;
    }
}

.coron .four-block .grid > .item {
    border: 1px solid #2A2A2A;
    background: #131313;
    aspect-ratio: 800/840;
    width: 100%;
    /*display: flex;*/
    /*flex-direction: column-reverse;*/
    /*align-items: center;*/
    /*justify-content: flex-start;*/
    display: grid;
    grid-template-columns: 1fr 40%;
    /*padding: 30px;*/
    position: relative;
    /*transition: 3s ease;*/
    overflow: hidden;

    /*cursor: url("data:image/svg+xml,%3Csvg width='128' height='128' viewBox='0 0 128 128' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='64' cy='64' r='64' fill='%23131313'/%3E%3Cpath d='M41 64H88M88 64C88 64 73.5625 64 69.25 48M88 64C88 64 73.5625 64 69.25 80' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A") 64 64, pointer;*/
    cursor: url("data:image/svg+xml;charset=UTF-8,%3csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg style='mix-blend-mode:difference'%3e%3ccircle cx='26' cy='26' r='25.5' stroke='%23261F19'/%3e%3ccircle cx='26' cy='26' r='4' fill='%23261F19'/%3e%3c/g%3e%3c/svg%3e") 52 52, pointer;;
    max-height: 100vh;
}
@media (max-width: 568px) {
    .coron .four-block .grid > .item {
        aspect-ratio: 360/616;
        display: flex;
        flex-direction: column;
        padding: 16px;
        padding-top: 32px;
    }
}
@media (max-width: 320px) {
    .coron .four-block .grid > .item {
        max-height: 100%;
    }
}

.coron .four-block .grid > .item * {
    transition: .7s ease;
}

.coron .four-block .grid > .item:nth-child(1):hover {
    background: #a5a5ac;
}

.coron .four-block .grid > .item:nth-child(2):hover {
    background: #d5d5d5;
}

.coron .four-block .grid > .item:nth-child(3):hover {
    background: #ffbbcb;
}

.coron .four-block .grid > .item:nth-child(4):hover {
    background: #dec6ac;
}

.coron .four-block .grid > .item:hover {

}

.coron .four-block .grid > .item .bg {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.coron .four-block .grid > .item:hover .bg {
    opacity: 0;
    pointer-events: none;
}

.coron .four-block .grid > .item .bg {

}

.coron .four-block .item .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 568px) {
    .coron .four-block .item .left {
        height: 100%;
        flex-direction: column-reverse;
    }
}

.coron .four-block .item .left .list {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 87px;
    row-gap: 63px;
    position: relative;
    margin-top: 120px;
    /*max-width: 360px;*/
    padding-top: 70px;
}
@media (max-width: 1620px) {
    .coron .four-block .item .left .list {
        padding-top: 30px;
        margin-top: 60px;
    }
}
@media (max-width: 1368px) {
    .coron .four-block .item .left .list {
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 30px;
        column-gap: 57px;
        row-gap: 23px;
    }
}
@media (max-width: 1024px) {
    .coron .four-block .item .left .list {
        margin-top: 100px;
    }
}
@media (max-width: 568px) {
    .coron .four-block .item .left .list {
        column-gap: 5px;
        margin-top: 0px;
        /*margin-bottom: 16px;*/
        padding: 0;
    }
}

.coron .four-block .item:hover .left .list {
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 568px) {
    .coron .four-block .item:hover .left .list {

    }
}

.coron .four-block .item .left .list > svg {
    position: absolute;
    top: 0;
}
@media (max-width: 1368px) {
    .coron .four-block .item .left .list > svg {
        top: -50px;
    }
}
@media (max-width: 568px) {
    .coron .four-block .item .left .list > svg {
        display: none;
    }
}

.coron .four-block .item .left .list .item {
    width: 50%;
    /*width: 30%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 142px;
}
@media (max-width: 568px) {
    .coron .four-block .item .left .list .item {
        max-width: 104px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 96px;
        padding: 8px 0px;
        width: 104px;
        height: 104px;
        gap: 4px;
    }
}
@media (max-width: 320px) {
    .coron .four-block .item .left .list .item {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 568px) {
    .coron .four-block .item .left .list .item svg {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

.coron .four-block .item .left .list .item p {
    color: #272727;
    text-align: center;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.24px;
}
.coron .four-block .item .left .list .item p:nth-child(2) {
    font-family: "TT Ramillas", sans-serif;
    margin-bottom: -5px;
    font-size: 16px;
}
@media (max-width: 568px) {
    .coron .four-block .item .left .list .item p {
        font-size: 12px;
    }
    .coron .four-block .item .left .list .item p:nth-child(2) {
        font-size: 12px;
    }
}
@media (max-width: 320px) {
    .coron .four-block .item .left .list .item p {
        font-size: 10px;
    }
    .coron .four-block .item .left .list .item p:nth-child(2) {
        font-size: 10px;
        line-height: 1;
    }
}

.coron .four-block .item .left .text {
    padding-bottom: 96px;
    /*padding-left: 98px;*/
    max-width: 340px;
    max-width: 450px;
    max-width: 100%;
}
@media (max-width: 1440px) {
    .coron .four-block .item .left .text {
        padding-bottom: 56px;
        max-width: 100%;
    }
}
@media (max-width: 1368px) {
    .coron .four-block .item .left .text {
        max-width: 100%;
    }
}
@media (max-width: 568px) {
    .coron .four-block .item .left .text {
        max-width: 100%;
    }
}
@media (max-width: 320px) {
    .coron .four-block .item .left .text {
        padding-bottom: 76px;
    }
}
.coron .four-block .item:hover .left .text {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
}
@media (max-width: 1370px) {
    .coron .four-block .item:hover .left .text {
        max-width: 100%;
        /* padding: 0 16px; */
        padding-left: 16px;
        padding-right: 16px;
    }
}

.coron .four-block .item:hover .left .text {
    /*padding-bottom: 96px;*/
    /*padding-left: 98px;*/
}
@media (max-width: 568px) {
    .coron .four-block .item:hover .left .text {
        padding: 0;
    }
}

.coron .four-block .item .left h2 {
    color: #5A5A5A;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    margin-bottom: -126px;
    margin-bottom: -60px;
    /*margin-right: -92%;*/
    width: calc(50vw - 16px);
}
@media (min-width: 1800px) {
    .coron .four-block .item .left h2 {
        /*margin-right: -80%;*/
    }
}
@media (max-width: 1368px) {
    .coron .four-block .item .left h2 {
        /*margin-right: -80%;*/
    }
}
@media (max-width: 568px) {
    .coron .four-block .item .left h2 {
        margin: 0;
        margin-top: 0px;
        width: 100%;
    }
}
.coron .four-block .item .left .text h2 p {
    color: #5A5A5A;
    opacity: .7;
    font-size: 20px;
    max-height: fit-content;
}

.coron .four-block .item:hover .left h2 {
    color: #424242;
    text-align: center;
    font-family: TT Ramillas;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 90.909% */
    letter-spacing: -0.88px;
    margin: 0;
    width: 100%;
}
@media (max-width: 1368px) {
    .coron .four-block .item:hover .left h2 {
        font-size: 38px;
    }
}
@media (max-width: 568px) {
    .coron .four-block .item:hover .left h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
    }
}

.coron .four-block .grid > .item:nth-child(1):hover h2 {
    color: #343434;
}
.coron .four-block .grid > .item:nth-child(2):hover h2 {
    color: #343434;
}
.coron .four-block .grid > .item:nth-child(3):hover h2 {
    color: #541f35;
}
.coron .four-block .grid > .item:nth-child(4):hover h2 {
    color: #343434;
}


.coron .four-block .item .left .text p {
    color: #272727;
    text-align: center;
    font-family: TT Norms;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.3px;
    margin-top: 24px;

    opacity: 0;
    pointer-events: none;

    max-height: 50px;
    max-height: 0px;

    transition-delay: .2s;
}
@media (max-width: 1440px) {
    .coron .four-block .item .left .text {

    }
}
@media (max-width: 1368px) {
    .coron .four-block .item .left .text p {
        font-size: 14px;
    }
}
@media (max-width: 568px) {
    .coron .four-block .item .left .text p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
        margin-top: 16px;
    }
}
@media (max-width: 320px) {
    .coron .four-block .item .left .text p {
        font-size: 10px;
    }
}

.coron .four-block .item .left .text p strong {
    color: #272727;
    margin-bottom: 6px;
    font-weight: 600;
    display: block;
    opacity: 0.7;
}

.coron .four-block .item:hover .left .text p {
    opacity: 0.5;
    pointer-events: auto;
    max-height: fit-content;
}

.coron .four-block .grid > .item:nth-child(1):hover p {
    color: #343434;
}
.coron .four-block .grid > .item:nth-child(2):hover p {
    color: #343434;
}
.coron .four-block .grid > .item:nth-child(3):hover p {
    color: #541f35;
}
.coron .four-block .grid > .item:nth-child(4):hover p {
    color: #343434;
}

.coron .four-block .grid > .item .right {
    margin-bottom: 90px;
}
@media (max-width: 568px) {
    .coron .four-block .grid > .item .right {
        margin: 0;
    }
}

.coron .four-block .grid > .item .right img {
    position: absolute;
    z-index: 1;
    height: 70%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
@media (max-width: 568px) {
    .coron .four-block .grid > .item .right img {
        /*position: relative;*/
        top: 20%;
    }
}

.coron .four-block .grid > .item:hover .right img {
    /*position: absolute;*/
    height: 100%;
    right: -50%;
    top: 4%;
}
@media (max-width: 568px) {
    .coron .four-block .grid > .item:hover .right img {
        height: 80%;
        right: -60%;
    }
}
@media (max-width: 568px) {
    .coron .four-block .grid > .item:hover .right img  {
        right: 0;
        /*width: 50%;*/
        width: 42%;
        height: auto;
        /*top: 20%;*/
        top: 25%;
    }
}
@media (max-width: 320px) {
    .coron .four-block .grid > .item:hover .right img {
        width: 47%;
        top: 14%;
    }
}

/* coron five-bloc */

.coron .five-block {
    margin-top: 0px;
    background: #e9953f;
    min-height: 100vh;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}
@media (max-width: 568px) {
    .coron .five-block {
        background-size: 230%;
        background-position: 5% 0%;
    }
}

.coron .five-block .container {
    padding: 0;
    max-width: 100%;
}

.coron .five-block .content {
    display: grid;
    grid-template-columns: 1fr 42%;
    position: relative;
    height: 100vh;
}
@media (max-width: 1024px) {
    .coron .five-block .content {
        height: 60vh;
        grid-template-columns: 1fr 50%;
    }
}
@media (max-width: 568px) {
    .coron .five-block .content {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.coron .five-block .content:after {
    content: '';
    width: 90%;
    right: 0;
    height: 100%;
    position: absolute;
    /*background: linear-gradient(270deg, #D39347 47.36%, rgba(211, 147, 71, 0.00) 76.51%);*/
}
@media (max-width: 1024px) {
    .coron .five-block .content:after {
        left: 0;
    }
}
@media (max-width: 568px) {
    .coron .five-block .content:after {
        top: 0px;
        /*background: linear-gradient(0deg, #d39347 0%, rgba(211, 147, 71, 0) 100%);*/
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

.coron .five-block .left {
    position: relative;
    /*width: 60%;*/
}
@media (max-width: 568px) {
    .coron .five-block .left {
        /*aspect-ratio: 1;*/
        height: 115vw;
    }
}

.coron .five-block .left:after {
    /*content: '';*/
    width: 40%;
    right: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgba(211, 147, 71, 0) 0%, rgba(211, 147, 71, 1) 90%);
}
@media (max-width: 568px) {
    .coron .five-block .left:after {
        content: '';
        width: 100%;
        right: 0;
        bottom: -20%;
        height: 60%;
        position: absolute;
        background: linear-gradient(180deg, rgba(211, 147, 71, 0) 0%, rgb(233, 149, 63) 70%);
    }
}

.coron .five-block .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coron .five-block .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
    position: relative;
    z-index: 1;
    /*background: #d39347;*/
    padding-right: 80px;
    max-height: 100vh;
}
@media (max-width: 1264px) {
    .coron .five-block .right {
        padding-right: 40px;
    }
}
@media (max-width: 1024px) {
    .coron .five-block .right {
        padding-right: 16px;
    }
}
@media (max-width: 568px) {
    .coron .five-block .right {
        padding: 40px 16px;
    }
    .coron .five-block .right svg {
        width: 100px;
        height: 90px;
    }
}

.coron .five-block .right h3 {
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    max-width: 580px;
}
@media (max-width: 1264px) {
    .coron .five-block .right h3 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .coron .five-block .right h3 {
        font-size: 28px;
        line-height: 1.1;
    }
}
@media (max-width: 568px) {
    .coron .five-block .right h3 {
        font-size: 22px;
        line-height: 109%;
        letter-spacing: -0.02em;
    }
}

.coron .six-block {

}
.coron .six-block .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    overflow: hidden;
}
.coron .six-block .content:after {
    /*content: '';*/
    width: 90%;
    left: 20%;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, #0e1010 37%, rgba(211, 147, 71, 0.00) 70%);
}
@media (max-width: 1368px) {
    .coron .six-block .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1024px) {
    .coron .six-block .content:after {
        top: 0px;
        background: linear-gradient(0deg, #0e1010 0%, rgba(211, 147, 71, 0) 60%);
        width: 100%;
        height: 70vw;
        left: 0;
    }
}
@media (max-width: 568px) {
    .coron .six-block .content:after {
        top: 0px;
        background: linear-gradient(0deg, #0e1010 0%, rgba(211, 147, 71, 0) 60%);
        width: 100%;
        height: 100vw;
        left: 0;
    }
}

.coron .six-block .content {
    display: grid;
    grid-template-columns: 45% 1fr;
    position: relative;
    background: #0E1010;
    /*background: #050304;*/
}
@media (max-width: 1024px) {
    .coron .six-block .content {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
    }
    .coron .six-block .content img {
        width: 100%;
    }
    .coron .six-block .content svg {
        width: 100%;
        max-width: 74px;
        height: 72px;
    }
}

.coron .six-block .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
    aspect-ratio: 1;
    position: relative;
    z-index: 1;
}
@media (max-width: 1024px) {
    .coron .six-block .left {
        aspect-ratio: 2;
    }
}
@media (max-width: 568px) {
    .coron .six-block .left {
        aspect-ratio: 1;
        gap: 24px;
    }
}

.coron .six-block .left h3 {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    max-width: 580px;
}
@media (max-width: 568px) {
    .coron .six-block .left h3 {
        font-size: 22px;
        line-height: 109%;
        letter-spacing: -0.02em;
        padding: 0 16px;
    }
}

.coron .six-block .right {
    position: relative;
}

@media (max-width: 1024px) {
    .coron .six-block .right {
        height: 70vw;
    }
}
@media (max-width: 568px) {
    .coron .six-block .right {
        height: 100vw;
    }
}

.coron .six-block .right:after {
    /*content: '';*/
    width: 60%;
    left: -1px;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, #0e1010, rgba(211, 147, 71, 0.00) 70%);
}
@media (max-width: 568px) {
    .coron .six-block .right {
        width: 100%;
        left: 0%;
        bottom: 0;
        background: linear-gradient(0deg, #0e1010, rgba(211, 147, 71, 0.00) 70%);
    }
}

.coron .six-block .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 00% 0%;
}
@media (max-width: 568px) {
    .coron .six-block .right img {
        object-position: 00% 0%;
    }
}

.coron .seven-block {
    margin-top: 120px;
    padding-bottom: 50px;
    height: 320vh;
    /*margin-bottom: -80px;*/
}
@media (min-width: 1580px) {
    .coron .seven-block {
        height: 360vh;
    }
}
@media (max-width: 1440px) {
    .coron .seven-block {
        height: 350vh;
    }
}
@media (max-width: 1350px) {
    .coron .seven-block {
        height: 370vh;
    }
}
@media (max-width: 568px) {
    .coron .seven-block {
        margin-top: 65px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .coron .seven-block .container {
        /*padding-right: 0;*/
        /*padding-left: 0;*/
    }
}

.coron .seven-block .container {
    height: 100%;
    max-width: 100%;
}

.coron .seven-block .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 20px;
}
@media (max-width: 1024px) {
    .coron .seven-block .content {
        /*top: 90px;*/
    }
    .coron .seven-block .content > svg {
        width: 100%;
        height: auto;
    }
}

.coron .seven-block .content .top {
    display: flex;
    /*justify-content: center;*/
    position: relative;
    z-index: 1;
}
@media (min-width: 1800px) {
    .coron .seven-block .content .top {
        top: 1em;
    }
}

.coron .seven-block .content .top .img {

}

.coron .seven-block .content .top .img:nth-child(1) {

}

.coron .seven-block .content .top .img:nth-child(2) {
    position: absolute;
    overflow: hidden;
    width: 30%;
}

.coron .seven-block .content .top img {
    max-height: 36vh;
    max-width: 100vw;
}
@media (min-width: 569px) {
    .coron .seven-block .content .top img:nth-child(1) {
        display: block;
    }
    .coron .seven-block .content .top img:nth-child(2) {
        display: none;
    }
}
@media (max-width: 568px) {
    .coron .seven-block .content .top img:nth-child(1) {
        display: none;
    }
    .coron .seven-block .content .top img:nth-child(2) {
        display: block;
    }
}
@media (min-width: 569px) and (max-width: 1368px) {
    .coron .seven-block .content .top img {
        /*scale: .8;*/
    }
}

.coron .seven-block .list {
    margin-top: -80px;
    position: relative;
    z-index: 0;
    margin-bottom: -180px;
    width: 100%;
}
@media (max-width: 1368px) {
    .coron .seven-block .list {
        margin-top: -5%;;
    }
}
@media (max-width: 1024px) {
    .coron .seven-block .list {
        margin-bottom: 0;
    }
}
@media (max-width: 568px) {
    .coron .seven-block .list {
        margin-top: 16px;
        margin-bottom: 0;
    }
}

.coron .seven-block .list > svg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    top: -1px;
}

.coron .seven-block .list .item-list {
    /*aspect-ratio: 1551/570;*/
}

.coron .seven-block .list .item-list > img {
    opacity: 0;
    width: 100%;
}
@media (max-width: 568px) {
    .coron .seven-block .list .item-list > img {
        aspect-ratio: 358 / 664;
    }
}
@media (max-width: 320px) {
    .coron .seven-block .list .item-list > img {
        aspect-ratio: 358 / 374;
    }
}

.coron .seven-block .item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #131313;
}
@media (max-width: 1024px) {
    .coron .seven-block .item {
        height: calc(100vh - 250px);
        height: calc(100vh - 180px);
    }
}

.coron .seven-block .item#seven-block-item-1 {

}

.coron .seven-block .item#seven-block-item-2 {
    opacity: 0;
}

.coron .seven-block .item#seven-block-item-3 {
    opacity: 0;
}

.coron .seven-block .item svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
@media (max-width: 568px) {
    .coron .seven-block .item svg {
        width: 100%;
        height: auto;
    }
}

.coron .seven-block h3 {
    text-align: center;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.20);
    font-size: 48px;
    font-weight: 300;
    line-height: 44px; /* 91.667% */
    letter-spacing: -0.96px;
    max-width: 940px;
    position: absolute;
    margin-top: 80px;
}
@media (max-width: 1368px) {
    .coron .seven-block h3 {
        font-size: 36px;
        line-height: 1.2;
        padding: 0 20px;
    }
}
@media (max-width: 568px) {
    .coron .seven-block h3 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
    }
}
@media (max-width: 320px) {
    .coron .seven-block h3 {
        font-size: 20px;
        margin-top: 30px;
    }
}

.coron .seven-block .item .img {
    position: relative;
    /*margin-top: 50px;*/
    width: 100%;
}
@media (max-width: 1024px) {
    .coron .seven-block .item .img {
        margin-top: 0;
        position: relative;
        height: 100%;
        object-fit: cover;
    }
    .coron .seven-block .item .img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
}

.coron .seven-block .item .img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
}

.coron .seven-block .item .img img {
    width: 100%;
    /*aspect-ratio: 1551/608;*/
    aspect-ratio: 1551/570;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 1800px) {
    .coron .seven-block .item .img img {
        aspect-ratio: 1551/608;
    }
}
@media (max-width: 1350px) {
    .coron .seven-block .item .img img {
        aspect-ratio: 1551/520;
    }
}

@media (max-width: 1024px) {
    .coron .seven-block .item .img img {
        aspect-ratio: inherit;
        object-fit: cover;
        height: 100%;
    }
}

/* .coron .video-block */

.coron .video-block {

}

.coron .video-block .container {
    padding: 0;
    max-width: 100%;
}

.coron .video-block video {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
}

.coron .video-block {

}

/* classic */

.classic {
    background: #FFFFFF;
}

.classic section {
    background: #FFFFFF;
    position: relative;
}

.classic .first-block {
    min-height: 100vh;
    padding-top: 200px;
    overflow: hidden;
    height: 270vh;
}

.classic .first-block .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 142px;
}
@media (max-width: 568px) {
    .classic .first-block .container {
        gap: 64px;
    }
}

.classic .first-block .top {
    max-width: 850px;
    display: flex;
    justify-content: center;
    margin: auto;
}
@media (max-width: 568px) {
    .classic .first-block .top {

    }
}

.classic .first-block .top h1 {
    color: #000;
    text-align: center;
    font-family: TT Ramillas;
    font-size: 96px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px; /* 75% */
    letter-spacing: -1.92px;
}
@media (max-width: 1368px) {
    .classic .first-block .top h1 {
        font-size: 72px;
    }
}
@media (max-width: 568px) {
    .classic .first-block .top h1 {
        font-size: 36px;
        line-height: 78%;
        letter-spacing: -0.02em;
        color: #000;
    }
}
@media (max-width: 320px) {
    .classic .first-block .top h1 {
        font-size: 28px;
    }
}

.classic .first-block .grid {
    display: grid;
    /*grid-template-columns: 311px 312px 472px 312px 311px;*/
    grid-template-columns: 16.55% 16.6% 25.2% 16.6% 16.55%;
    margin: 0 -10.5%;
    gap: 40px;
    display: flex;
    position: relative;
}
@media (max-width: 568px) {
    .classic .first-block .grid {
        gap: 18px;
        margin: 0 -70.5%;
    }
}

.classic .first-block .grid > div {
    /*width: calc(25% - (40px*4)/5);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    width: 16.6%;
    min-width: 310px;
    max-width: 310px;
}
@media (max-width: 1350px) {
    .classic .first-block .grid > div {
        min-width: 270px;
        max-width: 270px;
    }
}
@media (max-width: 1280px) {
    .classic .first-block .grid > div {
        min-width: 260px;
        max-width: 260px;
    }
}
@media (max-width: 1024px) {
    .classic .first-block .grid > div {
        min-width: 410px;
        max-width: 410px;
    }
}
@media (max-width: 568px) {
    .classic .first-block .grid > div {
        gap: 18px;
        /*min-width: 350px;*/
        /*max-width: 350px;*/
        min-width: 35vh;
        max-width: 35vh;
    }
}

.classic .first-block .grid > div:nth-child(3) {
    height: 100vh;
    /*max-height: 90.873dvh;*/
    width: 100vw;
    max-width: 460px;
    gap: 0;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-position-y: 86%;
    /*background-size: 100vw;*/
    background-size: cover;
}
@media (max-width: 568px) {
    .classic .first-block .grid > div:nth-child(3) {
        max-width: 222px;
        background-size: 80vh;
        background-position: 100% 90%;
        min-width: 222px;
        max-width: 222px;
    }
}

.classic .first-block .grid div:nth-child(1) img {
    /*height: 100%;*/
    aspect-ratio: 311 / 545;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(2) img:nth-child(1) {
    /*height: 100%;*/
    aspect-ratio: 312 / 247;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(2) img:nth-child(2) {
    /*height: 100%;*/
    aspect-ratio: 312 / 364;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(3) img {
    height: 100%;
    width: 100vw;
}
@media (max-width: 568px) {
    .classic .first-block .grid div:nth-child(3) {
        /*max-height: 450px;*/
    }
}

.classic .first-block .grid div:nth-child(4) img:nth-child(1) {
    /*height: 100%;*/
    aspect-ratio: 312 / 186;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(4) img:nth-child(2) {
    /*height: 100%;*/
    aspect-ratio: 312 / 425;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(5) img {
    /*height: 100%;*/
    aspect-ratio: 311 / 545;
    object-fit: cover;
}

.classic .first-block .grid div:nth-child(3) h1 {
    position: absolute;
    color: #ffffff;
    max-width: 850px;
    top: 130%;
    width: 100vw;
}
@media (max-width: 568px) {
    .classic .first-block .grid div:nth-child(3) h1 {
        max-width: 400px;
    }
}
@media (max-width: 320px) {
    .classic .first-block .grid div:nth-child(3) h1 {
        max-width: 288px;
    }
}

.classic .first-block .grid div img {
    width: 100%;
    object-fit: cover;
}

.classic .first-block #first-block-tr {
    position: relative;
    /*top: -142px;*/
    background: red;
    height: 1px;
    width: 100%;
}
@media (max-width: 568px) {
    .classic .first-block #first-block-tr {
        /*top: 40dvh;*/

    }
}

.classic .two-block {
    /*height: 300vh;*/
    background-color: #eeeaeb;
    position: relative;
}

@media (min-width: 1024px) {
    .classic .two-block {
        overflow-x: hidden;
    }
}
@media (max-width: 568px) {
    .classic .two-block {
        /*height: 560vw;*/
    }
}

.classic .two-block .container {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
    max-width: 100%;
}

.classic .two-block .content {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    padding-bottom: 40vh;
    position: relative;
    height: 100%;
}
@media (max-width: 1024px) {
    .classic .two-block .content {
        background-position: right;
        padding-bottom: 5vh;
    }
}
@media (max-width: 568px) {
    .classic .two-block .content {
        padding-bottom: 5vh;
    }
}

.classic .two-block .content .bottle {
    overflow: hidden;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    /*max-width: 1600px;*/
}

.classic .two-block .content .img-bottom {
    overflow: hidden;
}

.classic .two-block .content .img-bottom img {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 25%);
    mask-image: linear-gradient(to bottom, transparent 5%, black 25%);
}
@media (max-width: 1024px) {
    .classic .two-block .content .img-bottom img {
        width: 200%;
        left: -90%;
    }
}
@media (max-width: 568px) {
    .classic .two-block .content .img-bottom img {
        /*width: 300%;*/
        /*left: -90%;*/
        left: 0;
        width: 100%;
        height: 47%;
        object-fit: cover;
        object-position: 45% 50%;
    }
}

.classic .two-block .item {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;

    max-height: 700px;
}
@media (min-width: 1800px) {
    .classic .two-block .item {
        max-height: 850px;
    }
}
@media (max-width: 1024px) {
    .classic .two-block .item {
        justify-content: flex-start;
        padding: 48px 0 !important;
        height: 90vh;
    }
}
@media (max-width: 568px) {
    .classic .two-block .item {
        justify-content: flex-start;
        padding: 48px 0 !important;
        height: 90vh;
        height: 185vw;
        height: 780px;
        max-height: inherit;
    }
}
@media (max-width: 430px) {

}
@media (max-width: 414px) {

}
@media (max-width: 390px) {

}

.classic .two-block .item:nth-child(1) {
    padding-right: 160px;
    align-items: flex-end;
}
@media (max-width: 1368px) {
    .classic .two-block .item:nth-child(1) {
        padding-right: 240px;
    }
}
@media (max-width: 1024px) {
    .classic .two-block .item:nth-child(1) {
        padding: 0;
    }
}
@media (max-width: 568px) {
    .classic .two-block .item:nth-child(1) {
        padding: 0;
    }
}

.classic .two-block .item:nth-child(2) {
    padding-left: 114px;
    align-items: flex-start;
}
@media (max-width: 1368px) {
    .classic .two-block .item:nth-child(2) {
        padding-left: 180px;
    }
}
@media (max-width: 1024px) {
    .classic .two-block .item:nth-child(2) {
        padding: 0;
    }
}
@media (max-width: 568px) {
    .classic .two-block .item:nth-child(2) {
        padding: 0;
    }
}

.classic .two-block .item:nth-child(3) {
    padding-right: 138px;
    align-items: flex-end;
    padding-top: 10%;
}
@media (max-width: 1368px) {
    .classic .two-block .item:nth-child(3) {
        padding-top: 10%;
    }
}
@media (max-width: 1024px) {
    .classic .two-block .item:nth-child(3) {
        padding: 0;
    }
}
@media (max-width: 568px) {
    .classic .two-block .item:nth-child(3) {
        padding: 0;
    }
}

.classic .two-block .text {
    max-width: 726px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}
@media (max-width: 1368px) {
    .classic .two-block .text {
        max-width: 500px;
    }
}
@media (max-width: 1024px) {
    .classic .two-block .text {
        gap: 8px;
        padding: 0 32px;
        position: sticky;
        top: 80px;
    }
    .classic .two-block #two-block-3 .text {
        position: relative;
        top: 0;
    }
    .classic .two-block .text svg {
        /*display: none;*/
    }
}
@media (max-width: 568px) {
    .classic .two-block .text {
        gap: 8px;
        padding: 0 32px;
        position: sticky;
        top: 80px;
    }
    .classic .two-block #two-block-3 .text {
        position: relative;
        top: 0;
    }
    .classic .two-block .text svg {
        display: none;
    }
}

.classic .two-block .item:nth-child(3) .text {
    max-width: 550px;
    position: relative;
}
@media (max-width: 1368px) {
    .classic .two-block .item:nth-child(3) .text {
        max-width: 450px;
    }
}


.classic .two-block .text p {
    color: #000;
    text-align: center;
    font-family: Manrope;
    font-size: 15px;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .classic .two-block .text p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
        color: #000;
    }
}

.classic .two-block .text h2 {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    opacity: 0.9;
}
@media (max-width: 1368px) {
    .classic .two-block .text h2 {
        font-size: 26px;
        line-height: 100%;
    }
}
@media (max-width: 568px) {
    .classic .two-block .text h2 {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -0.02em;
        text-align: center;
        color: #000;
    }
}

.classic .two-block .item .text svg {
    position: absolute;
    top: calc(100% + 36px);
}
@media (max-width: 1280px) {
    .classic .two-block .item .text svg {
        scale: .7;
        top: calc(100% + 6px);
    }
}

.classic .two-block .item:not(:nth-child(2)) .text svg {
    right: calc(100%/2);
}
@media (max-width: 1280px) {
    .classic .two-block .item:not(:nth-child(2)) .text svg {
        right: calc(100%/2.7);
    }
}

.classic .two-block .item:nth-child(2) .text svg {
    left: calc(100%/2)
}
@media (max-width: 1368px) {
    .classic .two-block .item:nth-child(2) .text svg {
        left: calc(100%/2.5)
    }
}

.classic .two-block .content .img {
    position: absolute;
    top: 0;
    left: 18%;
    transform: rotate(-22deg);
    width: 35%;
    /*max-width: 660px;*/
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .classic .two-block .content .img {
        width: 35%;
        top: 9%;
        left: 23%;
    }
}
@media (max-width: 568px) {
    .classic .two-block .content .img {
        width: 70vw;
        width: 290px;
        top: 9%;
        left: 23%;
    }
}
@media (max-width: 430px) {
    .classic .two-block .content .img {
        /*width: 62%;*/
        top: 9%;
        left: 23%;
    }
}
@media (max-width: 420px) {
    .classic .two-block .content .img {
        /*width: 65%;*/
        top: 8%;
        left: 23%;
    }
}
@media (max-width: 390px) {
    .classic .two-block .content .img {
        /*width: 70%;*/
        top: 7%;
        left: 23%;
    }
}
@media (max-width: 375x) {
    .classic .two-block .content .img {
        /*width: 64%;*/
        top: 6%;
        left: 23%;
    }
}

.classic .two-block .content .img img {
    width: 100%;
    pointer-events: none;
}

.classic .two-block .content .img img:nth-child(1) {

}

.classic .two-block .content .img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#two-block-1-tr {
    left: 0;
    /*top: 0;*/
    position: absolute;
    width: 100vw;
    height: 10px;
    /*background: #da0d66;*/
}

#two-block-2-tr {
    left: 0;
    top: -90%;
    position: absolute;
    width: 100vw;
    height: 10px;
    /*background: #da0d66;*/
}
@media (min-width: 568px) and (max-width: 1024px) {
    #two-block-2-tr {
        left: 0;
        top: -190%;
        position: absolute;
        width: 100vw;
        height: 10px;
        /*background: #da0d66;*/
    }
}

#two-block-3-tr {
    left: 0;
    top: -90%;
    position: absolute;
    width: 100vw;
    height: 10px;
    /*background: #da0d66;*/
}

@media (min-width: 568px) and (max-width: 1024px) {
    #two-block-3-tr {
        left: 0;
        top: -190%;
        position: absolute;
        width: 100vw;
        height: 10px;
        /*background: #da0d66;*/
    }
}

.classic .three-block {

}

.classic .three-block .content {
    height: 100vh;
    max-height: 862px;
    min-height: 782px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
@media (max-width: 1024px) {
    .classic .three-block .content {
        max-height: inherit;
    }
}
@media (max-width: 568px) {
    .classic .three-block .content {
        height: auto;
        max-height: inherit;
        padding-top: 32px;
        gap: 48px;
    }
    .classic .three-block .content > svg {
        display: none;
    }
    .classic .three-block .content > svg:last-child {
        /*display: block;*/
    }
}

.classic .three-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 52px;
    width: 100%;
    /*max-width: 1424px;*/
    padding-left: calc(50% - 1424px/2);
}
@media (max-width: 1024px) {
    .classic .three-block .grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 568px) {
    .classic .three-block .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.classic .three-block .item {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 1024px) {
    .classic .three-block .item:last-child {
        /*grid-column-start: 1;*/
        /*grid-column-end: 3;*/
    }
}
@media (max-width: 568px) {
    .classic .three-block .item {
        flex-direction: column;
        gap: 12px;
    }
}

.classic .three-block .item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
@media (max-width: 568px) {
    .classic .three-block .item div {
        align-items: center;
        gap: 10px;
    }
}

.classic .three-block .item div p:nth-child(1) {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: TT Ramillas;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 111.111% */
    letter-spacing: -0.36px;
}

.classic .three-block .item div p:nth-child(2) {
    color: #000;
    text-align: right;

    /* Desktop/Text/Main */
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
}

.classic .three-block h2 {
    color: #000;
    text-align: center;
    font-family: TT Ramillas;
    font-size: 96px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px; /* 75% */
    letter-spacing: -1.92px;
    max-width: 850px;
    margin-bottom: calc(135px - 80px);
}
@media (max-width: 568px) {
    .classic .three-block h2 {
        font-size: 36px;
        line-height: 78%;
        letter-spacing: -0.02em;
        margin-bottom: 72px;
    }
}

.classic .four-block {

}
.classic .four-block .container {
    max-width: 100%;
}
@media (max-width: 568px) {
    .classic .four-block .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.classic .four-block * {
    color: #ffffff;
}

.classic .four-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}
@media (max-width: 1024px) {
    .classic .four-block .grid {
        display: flex;
        padding: 0;
        margin: 0;
        overflow-y: hidden;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }
    .classic .four-block .grid::-webkit-scrollbar {
        display: none;
    }
}

.classic .four-block .item {
    /*padding: 42px 96px;*/
    position: relative;
}
@media (max-width: 1024px) {
    .classic .four-block .item {
        min-width: 60%;
        scroll-snap-align: center;
    }
}
@media (max-width: 568px) {
    .classic .four-block .item {
        min-width: 80%;
        scroll-snap-align: center;
    }
}

.classic .four-block .item:nth-child(1) {

}

.classic .four-block .item:nth-child(2) {

}

.classic .four-block .item:nth-child(3) {

}

@media (max-width: 568px) {
    .classic .four-block .item:nth-child(1) {
        margin-left: 16px;
    }
    .classic .four-block .item:nth-child(3) {
        margin-right: 16px;
    }
}

.classic .four-block .item img {
    /*position: absolute;*/
    width: 100%;
    /*top: 0;*/
    /*left: 0;*/
    /*z-index: -1;*/
}

.classic .four-block .item .text {
    position: absolute;
    padding: 42px 76px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto;
    align-items: center;
    width: 100%;
}
@media (max-width: 1368px) {
    .classic .four-block .item .text {
        padding: 32px 56px;
        gap: 12px;
    }
}
@media (max-width: 1024px) {
    .classic .four-block .item .text {
        padding: 20px 10px;
        gap: 8px;
    }
}
@media (max-width: 568px) {
    .classic .four-block .item .text {
        padding: 20px 10px;
        gap: 8px;
    }
}

.classic .four-block .item h3 {
    color: #FFF;
    text-align: center;
    font-family: TT Ramillas;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.96px;
    font-style: italic;
}
@media (max-width: 568px) {
    .classic .four-block .item h3 {
        font-size: 20px;
        line-height: 120%;
        letter-spacing: -0.04em;
    }
}

.classic .four-block .item p {
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    /*line-height: 18px;*/
    line-height: 1.5;
    letter-spacing: -0.13px;
    max-width: 314px;
}
@media (max-width: 568px) {
    .classic .four-block .item p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
    }
}

.classic .five-block {
    padding-top: 156px;
}
.classic .five-block .container {
    max-width: 100%;
}
@media (max-width: 568px) {
    .classic .five-block {
        /*aspect-ratio: 328/400;*/
    }
    .classic .five-block .container {
        /*padding-right: 0;*/
        /*padding-left: 0;*/
        height: 100%;
    }
}

.classic .five-block .content  {
    padding: 162px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: bottom;
}
@media (min-width: 1800px) {
    .classic .five-block .content {
        background-position: 0 80%;
    }
}
@media (max-width: 568px) {
    .classic .five-block .content {
        padding: 16px;
        height: 100%;
        background-size: cover;
        background-position: center;
        aspect-ratio: 328 / 400;
    }
}

.classic .five-block .text {
    max-width: 628px;
    display: flex;
    flex-direction: column;
    padding: 125px 63px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #FFF;
}
@media (max-width: 568px) {
    .classic .five-block .text {
        padding: 32px 12px 40px 12px;
        gap: 16px;
    }
}

.classic .five-block .text h2 {
    color: #2E2E2E;
    text-align: center;
    text-shadow: 0px 4px 40px rgba(0, 0, 0, 0.27);

    /* Desktop/Heading/H3 */
    font-family: TT Ramillas;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
}
@media (max-width: 568px) {
    .classic .five-block .text h2 {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -0.02em;
    }
}

.classic .five-block .text p,
.classic .five-block .text p nobr {
    color: #000;
    text-align: center;

    /* Desktop/Text/Main */
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
}
@media (max-width: 568px) {
    .classic .five-block .text p {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
    }
}

.classic .six-block {
    padding-top: 24px;
    overflow-x: hidden;
}

.classic .six-block .container {
    max-width: 100%;
}

.classic .six-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 1024px) {
    .classic .six-block .grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 568px) {
    .classic .six-block .grid {
        gap: 16px;
    }
}

.classic .six-block .item * {
    color: #FFF;
}

.classic .six-block .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #9E141E;
}
@media (max-width: 1024px) {
    .classic .six-block .item:first-child {
        padding: 48px 16px;
        height: 70vw;
    }
}
@media (max-width: 568px) {
    .classic .six-block .item {
        aspect-ratio: 328/400;
        justify-content: flex-start;
    }
    .classic .six-block .item:first-child {
        padding: 48px 16px;
        height: 100vw;
        width: 100%;
    }
}

.classic .six-block .item h3 {
    color: #FFF;
    text-align: center;
    font-family: TT Ramillas;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    max-width: 470px;
    margin-top: -20%;
}
@media (max-width: 1024px) {
    .classic .six-block .item h3 {
        margin-top: -40%;
    }
}
@media (max-width: 568px) {
    .classic .six-block .item h3 {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -0.02em;
        max-width: 210px;
        margin-top: 0;
    }
}

.classic .six-block .item p {
    color: #FFF;
    text-align: center;

    /* Desktop/Text/Main */
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.15px;
    max-width: 470px;
}
@media (max-width: 568px) {
    .classic .six-block .item p {
        font-size: 12px;
        line-height: 133%;
        letter-spacing: -0.01em;
    }
}

.classic .six-block .item svg {
    position: absolute;
    bottom: 5%;
    width: 100%;
}
@media (max-width: 1368px) {
    .classic .six-block .item svg {
        /*bottom: 10px;*/
    }
}
@media (max-width: 1024px) {
    .classic .six-block .item svg {
        bottom: -2%;
    }
}
@media (max-width: 568px) {
    .classic .six-block .item svg {
        width: 150%;
        bottom: -7%;
    }
}

.classic .six-block img {
    width: 100%;
    aspect-ratio: 764/716;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .classic .six-block img {
        height: 70vw;
    }
}
@media (max-width: 568px) {
    .classic .six-block img {
        height: 100%;
    }
}

.classic .seven-block {
    padding-top: 70px;
}

.classic .seven-block .container {
    max-width: 100%;
    max-height: calc(100vh - clamp(16px, 3vw, 24px)* 2);
    max-height: 100%;
}

.classic .seven-block .content {
    height: calc(100vh - clamp(16px, 3vw, 24px)* 2);
    height: 100%;
    position: relative;
}
@media (max-width: 568px) {
    .classic .seven-block {
        padding-top: 64px;
        height: 100dvh;
        max-height: 640px;
    }
    .classic .seven-block .container {
        padding-left: 0;
        padding-right: 0;
        height: 100%;
    }
    .classic .seven-block .content {
        height: 100%;
    }
}

.classic .seven-block .content:after {
    content: '';
    position: absolute;
}


.classic .seven-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 568px) {
    .classic .seven-block img {
        height: 100%;
        object-fit: cover;
        object-position: 61% 0%;
    }
}

/* footer */

.footer {
    padding-top: 45px;
    margin-top: -1px;
    position: relative;
}

.footer .container {
    max-width: 100%;
}

.basic ~ .footer {
    background: #eae1d7;
    position: relative;
    z-index: 1;
}

.coron ~ .footer {
    background: #131313;
}

.classic ~ .footer {
    background: #ffffff;
}

.footer .grid {
    display: grid;
    grid-template-columns: 1fr 15% 1fr 15% 1fr;
    gap: 8px;
}
@media (max-width: 1024px) {
    .footer .grid {
        grid-template-columns: 1fr 10% 1fr 10% 1fr;
        padding-top: 35px;
        padding-bottom: 80px;
        gap: 24px;
    }
}
@media (max-width: 568px) {
    .footer .grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 35px;
        padding-bottom: 80px;
    }
}

.footer .grid .item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    position: relative;
}
@media (max-width: 568px) {
    .footer .grid .item {
        aspect-ratio: auto;
    }
}

.footer .grid .item img {
    transition: .3s ease;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .footer .grid .item img {
        /*width: 100%;*/
    }
}

.footer .grid .item img:nth-child(1) {
    opacity: 1;
}

.footer .grid .item img:nth-child(2) {
    opacity:0;
    position: absolute;
}

.footer .grid .item.active {

}

.footer .grid .item.active img {

}

.footer .grid .item.active img:nth-child(1),
.footer .grid .item:hover img:nth-child(1) {
    opacity: 0;
}

.footer .grid .item.active img:nth-child(2),
.footer .grid .item:hover img:nth-child(2) {
    opacity: 1;
}

.footer .grid .line {
    opacity: 0.2;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 568px) {
    .footer .grid .line {
        rotate: 90deg;
        height: 56px;
    }
}

.footer .grid .line.active {
    opacity: 1;
}


.footer .grid .line img {
    width: 100%;
    max-width: 142px;
}
@media (max-width: 568px) {
    .footer .grid .line img {
        max-width: 56px;
        height: 2px;
    }
}

.footer .cop {
    border-top: 1px solid rgba(42, 42, 42, 0.2);
    padding: 22px 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coron ~ .footer .cop {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .cop p {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Manrope;
}
.coron ~ .footer .cop p {
    color: #ffffff;
}
.coron ~ .footer .cop path {
    fill: #ffffff;
}

.footer .cop p a {

}

/* */

.wheel {
    /*position: absolute;*/
    /*top: 0;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: left;*/
    /*width: 100vw;*/
    /*height: 100vw;*/
    /*max-width: 2000px;*/
    /*max-height: 2000px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
}

.wheel__card {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 6%;*/
    /*max-width: 200px;*/
    /*aspect-ratio: 1 / 1;*/
    /*cursor: pointer;*/
}

/**/

.age-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #131313;
    background: #141516;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
    transition: .3s ease;
    opacity: 1;
    z-index: 99;
}
@media (max-width: 568px) {
    .age-alert {
        padding: 32px;
    }
}

.age-alert.hidden {
    pointer-events: none;
    top: -120vh;
    opacity: 0;
}

.age-alert .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.age-alert .logo {

}

.age-alert .logo svg {
    width: 100%;
}

.age-alert .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

}

.age-alert .txt h2 {
    font-family: "TT Ramillas", sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
}
@media (max-width: 568px) {
    .age-alert .txt h2 {
        font-size: 24px;
        line-height: 100%;
    }
}

.age-alert .txt p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    max-width: 450px;
}
@media (max-width: 568px) {
    .age-alert .txt p {
        font-size: 12px;
    }
}

.age-alert .close {
    background: #fff;
    border-radius: 40px;
    padding: 9px 16px 11px 16px;
    width: 245px;
    height: 40px;

    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: rgba(23, 23, 23, 0.9);
    margin-top: calc(52px - 24px);

    cursor: pointer;
}

@media (max-width: 568px) {
    .age-alert .close {
        width: 202px;
        height: 36px;

        font-size: 12px;
    }
}

.age-alert .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.age-alert .bottom p {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #706c69;
    max-width: 330px;
}
@media (max-width: 568px) {
    .age-alert .bottom p {
        font-size: 10px;
    }
}

.preloader2 {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #332C26;
    background: #171717;
    transition: .7s ease;
}

@media (max-height: 430px) {
    html:has(.rotate) .preloader2 {
        /*display: none;*/
    }
}


.preloader2.hide {
    /*left: -110vw;*/
    opacity: 0;
    /*display: none;*/
    pointer-events: none;
}

.preloader2 > div {
    /*position: absolute;*/
}

.preloader2 .img {
    overflow: hidden;
    /*position: absolute;*/
}

.preloader2 img {
    /*overflow: hidden;*/
    /*position: absolute;*/
}

.preloader2  > div .img:nth-child(1) {
    position: absolute;
    z-index: -1;
    opacity: .5;
}

.preloader2 > div .img:nth-child(2) {
    animation-name: preload;
    animation-duration: 2s;
    /*animation-iteration-count: infinite;*/
    /*max-width: 50%;*/
}

@keyframes preload {
    from {
        max-width: 0;
    }
    to {
        max-width: 100%;
    }
}


.rotate {
    display: none;
}



@media (max-height: 430px) {
    .rotate {
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
        background: #332C26;
        background: #171717;
        background: #CBA76B;
    }

    .rotate img {
        max-height: 50vh;
        /*filter: invert(.8);*/
    }

    .rotate p {
        font-size: 24px;
        margin: 0;
        font-weight: 500;
    }
}

@media (max-width: 568px) {
    .phone-t {
        position: fixed;
        z-index: 999;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 45px;
        height: 150px;
        background: #171717;
        opacity: 0;
        pointer-events: none;
    }
}

.gsap-marker-end, .gsap-marker-start, .gsap-marker-scroller-start, .gsap-marker-scroller-end {
    opacity: 0;
}

/**/

.modal .modal-dialog {
    max-width: 100%;
    width: 100vw;
    height: 100%;
    background: #171717;
    margin: 0;
    overflow: hidden;
}

.modal-content {
    background: #171717;
    height: 100%;
}

.modal-body  {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 120px;
}
@media (max-width: 1368px) {
    .modal-body {
        gap: 40px;
        justify-content: flex-start;
        padding-top: 10vh;
    }
}

.modal-body .close {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 30px;
    cursor: pointer;
}
@media (max-width: 568px) {
    .modal-body .close {
        padding: 14px;
    }
    .modal-body .close svg{
        width: 16px;
        height: 16px;
    }
}

.modal-body h5 {
    font-family: "TT Ramillas", sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 86%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;

    max-width: 580px;
    margin: 0;
}
@media (max-width: 1368px) {
    .modal-body h5 {
        /*font-weight: 300;*/
        font-size: 46px;
    }
}
@media (max-width: 568px) {
    .modal-body h5 {
        font-weight: 300;
        font-size: 24px;
        max-width: 270px;
    }
}


.modal-body form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 512px;
    width: 100%;
    /*position: relative;*/
}
@media (max-width: 1368px) {
    .modal-body form {
        gap: 30px;
    }
}

.modal-body form input[type=email],
.modal-body form input[type=text] {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    padding-top: 0;
    background: transparent;
    width: 100%;
    transition: .75s ease;
}

.modal-body form input[type=email]::placeholder,
.modal-body form input[type=text]::placeholder {
    color: white;
}

.modal-body form input[type=email]:focus,
.modal-body form input[type=text]:focus,
.modal-body form input[type=email]:valid,
.modal-body form input[type=text]:valid {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.modal-body form input[type=email].invalid,
.modal-body form input[type=text].invalid {
    border-bottom: 1px solid #FB5058;
}

.modal-body form input[type=email]::placeholder,
.modal-body form input[type=text]::placeholder {
    opacity: 1;
    transition: .75s ease;
}

.modal-body form input[type=email]:focus::placeholder,
.modal-body form input[type=text]:focus::placeholder {
    opacity: 0;
}

.modal-body form div:has(textarea) {
    height: 132px;
    width: 100%;
    /*padding-bottom: 16px;*/
    position: relative;
}
@media (max-width: 1368px) {
    .modal-body form div:has(textarea) {
        height: 102px;
    }
}

.modal-body form div:has(textarea):after {
    content: "";
    width: 100%;
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
    top: 40px;
    transition: .75s ease;
}

.modal-body form div:has(textarea:focus):after,
.modal-body form div:has(textarea:valid):after {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    top: 100%;
}

.modal-body form textarea.invalid {
    border-bottom: 1px solid #FB5058;
}

.modal-body form textarea {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    border: none;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    padding: 16px;
    padding-top: 0;
    background: transparent;
    max-height: 54px;
    transition: .75s ease;
    width: 100%;
    resize: none;
}

.modal-body form textarea::placeholder {
    color: white;
}

.modal-body form textarea::-webkit-scrollbar {
    width: 4px;
}

.modal-body form textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 25px;
}

.modal-body form textarea::-webkit-scrollbar-thumb {
    background: #454545;
    border-radius: 2px;
    width: 4px;
}

.modal-body form textarea:focus,
.modal-body form textarea:valid {
    max-height: 132px;
    border: 0;
    outline: none;
    /*border-bottom: 1px solid rgba(255, 255, 255, 1);*/
}
@media (max-width: 1368px) {
    .modal-body form textarea:focus,
    .modal-body form textarea:valid {
        max-height: 122px;
    }
}

.modal-body form textarea::placeholder {
    opacity: 1;
    transition: .75s ease;
}

.modal-body form textarea:focus::placeholder {
    opacity: 0;
}

.modal-body form input[type=submit],
.modal-body a.success-ok:not(.hidden) {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    color: #171717;

    background: #ffffff;

    display: flex;
    align-items: center;
    padding: 9px 26px 11px 16px;
    border-radius: 40px;
    width: 100%;
    height: 40px;
    margin-right: -28px;

    /*border-radius: 40px;
    padding: 9px 16px 11px 16px;
    width: 136px;
    height: 40px;
    background: #fff;*/

    display: flex;
    align-items: center;
}

.modal-body a.success-ok {
    max-width: 120px;
    justify-content: space-between;
    margin: 0;
    transition: .7s ease;
}

.modal-body form div:has(svg) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /*padding: 9px 16px 11px 16px;*/
    width: 156px;
    height: 40px;
    /*background: #fff;*/
    display: flex;
    align-items: center;
    border-radius: 40px;
    transition: .75s ease;
}
@media (max-width: 568px) {
    .modal-body form div:has(svg) {
        position: absolute !important;
        bottom: calc(32px + 24px + 40px);
    }
}

.modal-body form div:has(svg):hover {
    width: 200px;
}

.modal-body a.success-ok:hover {
    max-width: 160px;
    justify-content: space-between;
}


.modal-body form input[type=submit] + svg {
    /*position: absolute;*/
    /*right: 16px;*/
    min-width: 20px;
    position: relative;
    left: -18px;
}

.modal-body form p, .modal-body form p a {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #656565;
    max-width: 250px;
    transition: .75s ease;
}

@media (max-width: 568px) {
    .modal-body form p {
        position: absolute !important;
        bottom: 32px;
    }
}

.modal-body form p a:hover {
    color: #ffffff;
}

.modal-content .img-bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
@media (max-width: 568px) {
    .modal-content .img-bg {
        height: 40%;
        top: 50%;
    }
}

.modal-content .img-bg .img-bg-img {
    position: absolute;
    /*scale: .5;*/
}

.modal-content .img-bg .modal-l {
    transform: rotate(-7deg);
    left: 44px;
    top: 72px;
    max-width: 350px;
}
@media (max-width: 1368px) {
    .modal-content .img-bg .modal-l {
        max-width: 300px;
    }
}
@media (max-width: 1280px) {
    .modal-content .img-bg .modal-l {
        max-width: 280px;
    }
}
@media (max-width: 568px) {
    .modal-content .img-bg .modal-l {
        max-width: 136px;
        left: -40px;
        top: 32px;
        transform: rotate(-9deg);
    }
}

.modal-content .img-bg .modal-r {
    transform: rotate(9deg);
    right: 62px;
    bottom: 74px;
    max-width: 360px;
}
@media (max-width: 1368px) {
    .modal-content .img-bg .modal-r {
        max-width: 310px;
    }
}
@media (max-width: 1280px) {
    .modal-content .img-bg .modal-r {
        max-width: 290px;
    }
}
@media (max-width: 568px) {
    .modal-content .img-bg .modal-r {
        max-width: 132px;
        transform: rotate(10deg);
        right: -40px;
        bottom: 70px;
    }
}

.modal-body .success {

}

.modal-body .hidden {
    display: none;
}

/* politics */

.politics {
    background: #141516;
}

.politics * {
    color: #fff;
}

.politics .content  {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.politics h1 {
    font-family: "TT Ramillas", sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 107%;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    max-width: 1130px;
}
@media (max-width: 568px) {
    .politics h1 {
        font-size: 32px;
    }
}

.politics .list {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 1055px;
}

.politics .item {
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
}

.politics h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 15px;
}

@media (max-width: 568px) {
    .politics h3 {
        font-size: 18px;
    }
}

.politics p {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0.85;
}

@media (max-width: 568px) {
    .politics p {
        font-size: 14px;
    }
}

.politics ol {

}

.politics li  {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0.85;
}

@media (max-width: 568px) {
    .politics li {
        font-size: 14px;
    }
}


/* contact-block */

.contact-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 195px;
    padding: 158px 0;
}
@media (max-width: 568px) {
    .contact-block {
        flex-direction: column;
        gap: 56px;
    }
}

.contact-block .item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-block .item svg {

}
@media (max-width: 568px) {
    .contact-block .item svg {
        width: 60%;
    }
}

.contact-block .item .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-block .item p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    color: #fff;
}
@media (max-width: 568px) {
    .contact-block .item p {
        font-size: 12px;
    }
}

.contact-block .item a {
    font-family: "TT Ramillas", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
}
@media (max-width: 568px) {
    .contact-block .item a {
        font-size: 24px;
    }
}

/**/

body:has(.news-page) {
    background: #131313;
    display: flex;
    justify-content: center;
}

body .header .back-main {
    display: none;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
}

body:has(.news-page) .header .back-main {
    display: flex;
    pointer-events: all;
}

body .header .back-main {
    color: #FFFFFF;
    /*display: flex;*/
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}

body .header .back-main:hover {
    gap: 16px;
}

body:has(.news-page) .header .menu path {
    stroke: #FFFFFF;
}

body:has(.news-page) .header .menu div {
    color: #FFFFFF;
}

.news-page {
    background: #131313;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: calc(72px + 20px);
    max-width: 1600px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}
@media (max-width: 568px) {
    .news-page {
        gap: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.news-page:has(.news-detail) {
    max-width: 100%;
}

.news-page * {
    color: #fff;
}

.news-page h1 {
    font-family: 'TT Ramillas', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}
@media (max-width: 568px) {
    .news-page h1 {
        font-weight: 300;
        font-size: 24px;
        line-height: 100%;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-align: left;
        color: #fff;
    }
}

.news-page .news-list {
    display: flex;
    gap: 48px 32px;
    column-gap: 32px;
    row-gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 64px;
}
@media (max-width: 568px) {
    .news-page .news-list {
        /*padding: 0 16px;*/
        gap: 24px;
    }
}

.news-page .news-list .news-item:nth-child(6n-3), .news-page .news-list .news-item:nth-child(6n-4), .news-page .news-list .news-item:nth-child(6n-5) {
    /*width: calc(100%/3 - (32px*2/3));*/
}
@media (max-width: 568px) {
    .news-page .news-list .news-item:nth-child(6n-3), .news-page .news-list .news-item:nth-child(6n-4), .news-page .news-list .news-item:nth-child(6n-5) {
        width: 100%;
    }
}

.news-page .news-list .news-item:nth-child(5n+10), .news-page .news-list .news-item:nth-child(5n+11) {
    width: calc(100%/2 - (32px/2));
}

.news-page .news-list .news-item:nth-child(4),
.news-page .news-list .news-item:nth-child(5){
    width: calc(100%/2 - (32px/2));
}
@media (max-width: 568px) {
    .news-page .news-list .news-item:nth-child(6n+10), .news-page .news-list .news-item:nth-child(6n+11) {
        width: 100%;
    }
    .news-page .news-list .news-item:nth-child(4),
    .news-page .news-list .news-item:nth-child(5) {
        width: 100%;
    }
}

.news-page .news-list .news-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 12px;
    padding: 12px 12px 16px 12px;
    background: #1e1e1e;
    position: relative;
    width: calc(100%/3 - (32px*2/3));
    top: 0;
    transition: .3s ease;
}
.news-page .news-list .news-item:not(:nth-child(9)) {
    border: 1px solid #1e1e1e;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item {
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }
}

.news-page .news-list .news-item:not(:nth-child(9)):hover {
    /*top: -20px;*/
    margin: 0;
    border: 1px solid #8E8E8E;
}

.news-page .news-list .news-item:nth-child(9) {
    width: 100%;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1552/560;
    background: transparent url("/events/news-100-blur.png") no-repeat center;
}

.news-page .news-list .news-item:nth-child(9) .brd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-page .news-list .news-item:nth-child(9) .brd span {
    width: 16px;
    height: 16px;
    position: absolute;
    transition: .5s ease;
}

.news-page .news-list .news-item:nth-child(9):hover .brd span {
    width: 50%;
    height: 50%;
}

.news-page .news-list .news-item:nth-child(9) .brd span:nth-child(1) {
    top: 0;
    left: 0;
    border-radius: 8px 0px 0px 0px;
    border-top: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

.news-page .news-list .news-item:nth-child(9) .brd span:nth-child(2) {
    top: 0;
    right: 0;
    border-radius: 0px 8px 0px 0px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
}

.news-page .news-list .news-item:nth-child(9) .brd span:nth-child(3) {
    bottom: 0;
    right: 0;
    border-radius: 0px 0px 8px 0px;
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
}

.news-page .news-list .news-item:nth-child(9) .brd span:nth-child(4) {
    bottom: 0;
    left: 0;
    border-radius: 0px 0px 0px 8px;
    border-bottom: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

.news-page .news-list .news-item:nth-child(9):after {
    /*content: '';*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/events/news-100-border.svg");
    background-size: contain;
}

.news-page .news-list .news-item > div {
    display: flex;
    flex-direction: column;
    gap: 24px;

}
.news-page .news-list .news-item > div:not(:has(.brd)) {
    height: 100%;
    justify-content: space-between;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item > div {
        padding: 0;
    }
}

.news-page .news-list .news-item img.preview_picture {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 472/289;
    object-fit: cover;
    margin: 0;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item img.preview_picture {
        border-radius: 6px;
        aspect-ratio: 120/162;
        width: 120px;
        width: 37%;
    }
}

.news-page .news-list .news-item:nth-child(9) img.preview_picture {
    display: none;
    position: absolute;
    margin: auto;
    filter: blur(166px);
    /*background: url("path_to_image");*/
    opacity: 0.2;
}

.news-page .news-list .news-item h2 {
    font-family: 'TT Ramillas', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item h2 {
        font-size: 14px;
        line-height: 143%;
    }
}

.news-page .news-list .news-item:nth-child(9) h2 {
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    max-width: 840px;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item:nth-child(9) h2 {
        font-size: 14px;
        line-height: 143%;
    }
}

.news-page .news-list .news-item p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    opacity: 0.5;
    max-width: 840px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item p {
        font-weight: 500;
        font-size: 10px;
        line-height: 140%;
        letter-spacing: -0.02em;
    }
}

.news-page .news-list .news-item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item .bottom {
        height: 32px;
    }
}

.news-page .news-list .news-item .bottom:has(.logo-novosti) {
    justify-content: center;
}

.news-page .news-list .news-item:nth-child(9) .bottom {
    justify-content: center;
    gap: 32px;
    margin-top: calc(40px - 24px);
}

.news-page .news-list .news-item .bottom span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 0px 16px 0px 16px;
    height: 40px;
    display: flex;
    align-items: center;

    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item .bottom span {
        padding: 0px 12px 0px 12px;
        height: 26px;

        font-weight: 500;
        font-size: 10px;
        line-height: 140%;
        letter-spacing: -0.02em;
    }
}

.news-page .news-list .news-item .bottom img {

}

.news-page .news-list .news-item .bottom img.logo-klassicheskoe {
    width: 141px;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item .bottom img.logo-klassicheskoe {
        width: 60px;
    }
}

.news-page .news-list .news-item .bottom img.logo-koronatsionnoe {
    width: 56px;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item .bottom img.logo-koronatsionnoe {
        width: 35px;
    }
}

.news-page .news-list .news-item .bottom img.logo-nasledie-mastera {
    width: 68px;
}
@media (max-width: 568px) {
    .news-page .news-list .news-item .bottom img.logo-nasledie-mastera {
        width: 40px;
    }
}

.news-page .news-list .news-item .bottom img.logo-novosti {
    display: none;
}

.news-detail {
    border-radius: 12px 12px 0 0;
    background: #1f1f1f;
    margin: 24px 0px 0 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 124px;
    padding: 80px 80px 96px;
}
@media (max-width: 568px) {
    .news-detail {
        padding: 16px;
        gap: 80px;
    }
}

.news-detail.nasledie-mastera {
    background: #eae1d7;
}

.news-detail.nasledie-mastera * {
    color: #282522;
}

.news-detail.klassicheskoe {
    background: #fff;
}

.news-detail.klassicheskoe * {
    color: #000;
}

.news-detail .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1032px;
}
@media (max-width: 568px) {
    .news-detail .content {
        gap: 24px;
    }
}

.news-detail .content > * {
    width: 100%;
}

.news-detail .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media (max-width: 568px) {
    .news-detail .top {
        margin-bottom: calc(144px - 80px);
    }
}

.news-detail .top .back,
.news-detail .top span {
    font-family: "Manrope", sans-serif;
    border: 1px solid #fff;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /*width: 103px;*/
    padding: 0 16px;
    height: 40px;
    transition: .3s ease;
}

.news-detail .top .back:hover {
    color: #1f1f1f;
    background: #FFFFFF;
}

.news-detail .top .back:hover path {
    stroke: #1f1f1f;
}

.news-detail.nasledie-mastera .top .back:hover {
    color: #FFFFFF;
    background: #131313;
}

.news-detail.klassicheskoe  .back:hover path {
    stroke: #FFFFFF;
}

.news-detail.klassicheskoe .top .back:hover {
    color: #FFFFFF;
    background: #131313;
}

.news-detail.nasledie-mastera  .back:hover path {
    stroke: #FFFFFF;
}

.news-detail.klassicheskoe .top .back,
.news-detail.klassicheskoe .top span {
    border: 1px solid #000;
}

.news-detail.klassicheskoe .top path {
    stroke: #000;
}

.news-detail.nasledie-mastera .top .back,
.news-detail.nasledie-mastera .top span {
    border: 1px solid #282522;
}

.news-detail.nasledie-mastera .top path {
    stroke: #282522;
}

.news-detail .top img.big-koronatsionnoe {
    width: 120px;
}

.news-detail .top img.big-nasledie-mastera {
    width: 120px;
}

.news-detail .top img.big-klassicheskoe {
    height: 40px;
}

.news-detail .top img.big-novosti {
    display: none;
}

@media (max-width: 568px) {
    .news-detail .top img {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 70px;
        width: initial !important;
        height: initial !important;
    }
}

.news-detail .title {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}
@media (max-width: 568px) {
    .news-detail .title {
        gap: 24px;
    }
}

.news-detail .title h1 {
    /*font-family: 'TT Ramillas', sans-serif;*/
    /*font-weight: 300;*/
    /*font-size: 48px;*/
    /*line-height: 92%;*/
    /*letter-spacing: -0.02em;*/
    /*text-align: center;*/
}
@media (max-width: 568px) {
    .news-detail .title h1 {
        font-weight: 300;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        text-align: center;
        /*color: #fff;*/
    }
}

.news-detail .title p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    opacity: 0.5;
}
@media (max-width: 568px) {
    .news-detail .title p {
        font-size: 12px;
    }
}

.news-detail .title ~ img {
    margin-top: calc(128px - 48px);
    margin-bottom: calc(128px - 48px);
}
@media (max-width: 568px) {
    .news-detail .title ~ img {
        margin-top: calc(80px - 24px);
        margin-bottom: calc(80px - 24px);
    }
}

.news-detail.koronatsionnoe .content img {
    border-radius: 16px;
}

.news-detail.klassicheskoe img {

}

.news-detail.nasledie-mastera .content img {
    border-radius: 48px;
}

/**/

.complex_txtsmall {

}

.complex_txtsmall p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
}
@media (max-width: 568px) {
    .complex_txtsmall p {
        font-size: 12px;
    }
}

.complex_txtsmallleft {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 568px) {
    .complex_txtsmallleft {
        grid-template-columns: 1fr;
    }
}

.complex_txtsmallleft p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
}
@media (max-width: 568px) {
    .complex_txtsmallleft p {
        font-size: 12px;
    }
}

.complex_txtsmalright {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 568px) {
    .complex_txtsmalright {
        grid-template-columns: 1fr;
    }
}

.complex_txtsmalright p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
}
@media (max-width: 568px) {
    .complex_txtsmalright p {
        font-size: 12px;
    }
}

.complex_listl,
.complex_listr,
.complex_listrtitle {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 568px) {
    .complex_listl,
    .complex_listr,
    .complex_listrtitle {
        grid-template-columns: 1fr;
    }
}

.complex_list div,
.complex_listrtitle div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.complex_list h3,
.complex_listrtitle h3 {
    font-weight: 300;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.02em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_list h3,
    .complex_listrtitle h3 {
        font-size: 22px;
        line-height: 109%;
    }
}

.complex_list ul,
.complex_listrtitle ul {
    list-style: disc;
    padding-left: 26px;
}
@media (max-width: 568px) {
    .complex_listrtitle ul {

    }
}

.complex_list ul li,
.complex_listrtitle ul li {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_list ul li,
    .complex_listrtitle ul li {
        font-size: 12px;
    }
}

.complex_gall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: calc(128px - 48px);
    margin-bottom: calc(128px - 48px);
}
@media (max-width: 568px) {
    .complex_gall {
        grid-template-columns: repeat(2, 1fr);
        margin-top: calc(80px - 24px);
        margin-bottom: calc(80px - 24px);
    }
}

.complex_gall img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
}

.complex_txt {

}

.complex_txt p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.01em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_txt p {
        font-size: 18px;
    }
}

.complex_txt50r {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 568px) {
    .complex_txt50r {
        grid-template-columns: 1fr;
    }
}

.complex_txt2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
@media (max-width: 568px) {
    .complex_txt2col {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: calc(40px - 24px);
    }
}

.complex_txt2colsmall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
@media (max-width: 568px) {
    .complex_txt2colsmall {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: calc(40px - 24px);
    }
}

.complex_txt2colsmall p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_txt2colsmall p {
        font-size: 12px;
    }
}

.complex_image_text_1,
.complex_image_text_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: calc(128px - 48px);
}
@media (max-width: 568px) {
    .complex_image_text_1,
    .complex_image_text_2 {
        display: flex;
        flex-direction: column;
        margin-top: calc(80px - 24px);
    }.complex_image_text_2 {
         display: flex;
         flex-direction: column-reverse;
     }
}

.complex_image_text_1 div,
.complex_image_text_2 div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}
@media (max-width: 568px) {
    .complex_image_text_1 div,
    .complex_image_text_2 div {
        gap: 16px;
    }
}

.complex_image_text_1 div:not(:has(img)),
.complex_image_text_2 div:not(:has(img)) {
    padding: 32px;
}
@media (max-width: 568px) {
    .complex_image_text_1 div:not(:has(img)),
    .complex_image_text_2 div:not(:has(img)) {
        padding: 32px 14px;
        padding-bottom: 0;
    }
}

.complex_image_text_1 img,
.complex_image_text_2 img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complex_image_text_1 h3,
.complex_image_text_2 h3 {
    font-weight: 300;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.02em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_image_text_1 h3,
    .complex_image_text_2 h3 {
        font-size: 22px;
        line-height: 109%;
        margin-bottom: 16px;
    }
}

.complex_image_text_1 p,
.complex_image_text_2 p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    opacity: 0.9;
}
@media (max-width: 568px) {
    .complex_image_text_1 p,
    .complex_image_text_2 p {
        font-size: 12px;
    }
}

.complex_img100 {
    margin-top: calc(128px - 48px);
}
@media (max-width: 568px) {
    .complex_img100 {
        margin-top: calc(80px - 24px);
    }
}

.complex_img100 {

}

.sp-video {

}

.news-detail.koronatsionnoe .sp-video iframe {
    border-radius: 16px;
}

.news-detail.nasledie-mastera .sp-video iframe {
    border-radius: 48px;
}

.sp-video iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}

.complex_video video {
    /*aspect-ratio: 16/9;*/
    width: 100%;
    height: 100%;
}

.news-detail.koronatsionnoe .complex_video video {
    border-radius: 16px;
}

.news-detail.nasledie-mastera .complex_video video {
    border-radius: 48px;
}

/**/

.bottom-navigation:has(a:nth-child(2)) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    position: relative;
}
@media (max-width: 568px) {
    .bottom-navigation {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 32px;
        padding-bottom: 48px;
    }
    .bottom-navigation:has(a:nth-child(2)) {
        display: flex;
        flex-direction: column-reverse;
    }
}

.bottom-navigation:has(a:nth-child(2)):after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 232px;
    background: #FFFFFF;
    opacity: .2;
}
.klassicheskoe .bottom-navigation:has(a:nth-child(2)):after {
    background: #000;
}
@media (max-width: 568px) {
    .bottom-navigation:has(a:nth-child(2)):after {
        display: none;
    }
}

.bottom-navigation a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bottom-navigation:has(a:nth-child(2)) a:nth-child(1) {
    text-align: right;
}

.bottom-navigation a div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 568px) {
    .bottom-navigation a div {
        gap: 8px;
    }
}

.bottom-navigation a span {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    opacity: 0.5;
}
@media (max-width: 568px) {
    .bottom-navigation a span {
        font-size: 12px;
    }
}

.bottom-navigation a h4 {
    font-family: 'TT Ramillas', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    opacity: 0.9;
    max-width: 574px;
}
@media (max-width: 568px) {
    .bottom-navigation a h4 {
        font-size: 14px;
        line-height: 143%;
    }
}

.bottom-navigation a path {
    transition: .3s ease;
}

.klassicheskoe .bottom-navigation a path {
    stroke: #000;
}

.koronatsionnoe .bottom-navigation a path {
    stroke: #FFFFFF;
}

.novosti .bottom-navigation a path {
    stroke: #FFFFFF;
}

.nasledie-mastera .bottom-navigation a path {
    stroke: #060606;
}

/**/

body:has(.about-page) .header .back-main {
    display: flex;
    pointer-events: all;
}

body:has(.about-page) .header .menu path {
    stroke: #FFFFFF;
}

body:has(.about-page) .header .menu div {
    color: #FFFFFF;
}

.about-page {
    background: #141516;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page * {
    color: #fff;
}

.about-page p {
    font-family: "Manrope", sans-serif;
}

.about-page section {
    max-width: 1600px;
    width: 100%;
    padding: 0 64px;
}
@media (max-width: 568px) {
    .about-page section {
        padding: 0 16px;
    }
}

.about-page .about-1 {
    padding: 80px 24px 40px 24px;
}
@media (max-width: 568px) {
    .about-page .about-1 {
        padding: 80px 0px 0px 0px;
    }
}

.about-page .about-1 div {
    width: 100%;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1552/668;
}
@media (max-width: 568px) {
    .about-page .about-1 div {
        aspect-ratio: 360/574;
        padding: 0 16px;

    }
}

.about-page .about-1 div:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(59.4% 50% at 44.41% 50%, rgba(20, 21, 22, 0) 0%, rgb(20, 21, 22) 100%);
}
@media (max-width: 568px) {
    .about-page .about-1 div:after {
        background: radial-gradient(59.4% 50% at 44.41% 50%, rgba(20, 21, 22, 0) 0%, rgb(20, 21, 22) 100%);
    }
}

.about-page .about-1 h1 {
    font-weight: 400;
    font-size: 65px;
    line-height: 108%;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 568px) {
    .about-page .about-1 h1 {
        font-weight: 300;
        font-size: 26px;
        line-height: 115%;
    }
}

.about-page .about-1 p {
    max-width: 646px;
    font-size: 18px;
    font-weight: 300;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 568px) {
    .about-page .about-1 p {
        font-size: 14px;
        line-height: 143%;
    }
}

.about-page .about-1 img {
    width: 100%;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 568px) {
    .about-page .about-1 img {
        height: 100%;
        object-fit: cover;
    }
}

.about-page .about-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 160px;
}
@media (max-width: 568px) {
    .about-page .about-2 {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-top: 48px;
        padding-bottom: 40px;
    }
}

.about-page .about-2 .item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (max-width: 568px) {
    .about-page .about-2 .item {
        gap: 24px;
    }
}

.about-page .about-2 .item img {
    width: 100%;
    border-radius: 16px;
}

.about-page .about-2 .item p {
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: -0.01em;
}
@media (max-width: 568px) {
    .about-page .about-2 .item p {
        font-size: 14px;
        line-height: 143%;
    }
}

/**/

.about-page .about-3 {
    display: flex;
    flex-direction: column;
    column-gap: 96px;
    margin-bottom: 120px;
}

.timeline {
    position:relative;
    display:flex;
    flex-direction:column;
    list-style:none;
}
@media (max-width: 568px) {
    .timeline {
        gap: 80px;
    }
}
/* the timeline's center vertical line */
.timeline:before{
    content:"";
    position:absolute;
    top: 280px;
    height: calc(100% - 580px);
    bottom:0;
    left:50%;
    width: 1px;
    background-color: #434445;
}
@media (max-width: 1440px) {
    .timeline:before {
        height: calc(100% - 560px);
    }
}
@media (max-width: 568px) {
    .timeline:before {
        left: -18px;
        top: 60px;
        height: calc(100% - 710px);
    }
}
.timeline li {
    position:relative;
    width:50%;
    min-height:100px;
    padding: 20px 48px;
    text-align: right;
    transition:.3s;
    opacity:0;
    transform: translateX(-10%);
}
@media (max-width: 568px) {
    .timeline li {
        width: 100%;
        flex-direction: column;
        margin: 0 !important;
        padding: 0;
    }
}
/* the rounded mark on each timeline item */
.timeline li:before {
    content:"";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='49' height='49' viewBox='0 0 49 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.81652e-06 48L8 48C30.0914 48 48 30.0914 48 8L48 -5.05149e-06' stroke='%23434445'/%3e%3c/svg%3e ");
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    transform: translate(3%,-50%);
    background-size: contain;
}
@media (max-width: 568px) {
    .timeline li:before {
        transform: none !important;
        rotate: 0deg;
        left: -18px !important;
        top: 22px;
        width: 150px;
        height: 150px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='151' height='151' viewBox='0 0 151 151' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.999993 151L1.00001 41C1.00001 18.9086 18.9086 1 41 1.00001L151 1.00002' stroke='%23434445'/%3e%3c/svg%3e ") !important;
    }
}
.timeline li:nth-child(1):before {
    rotate: 270deg;
    transform: translate(-33%, 2%);
}
@media (max-width: 568px) {
    .timeline li:nth-child(1):before {
        rotate: 0deg;
        transform: none;
        right: inherit;
        left: -18px;
        top: 20px;
    }
    .timeline li:last-child:before {
        rotate: -90deg;
        top: -125px;
    }
}
.timeline h3 {
    font-size:28px;
    margin-bottom: 10px;
}
.timeline p {
    font-size: 20px;
    line-height: 28px;
}
.timeline li:nth-child(2n-1) {
    padding-left: 0;
    justify-content: flex-end;
}
@media (max-width: 568px) {
    .timeline li:nth-child(2n-1) {
        justify-content: flex-start;
        flex-direction: column-reverse;
    }
}
.timeline li:nth-child(2n-1):not(:nth-child(1)) {
    /*top: -300px;*/
    /*margin-top: -300px;*/
}
.timeline li:nth-child(2n) {
    align-self: flex-end;
    text-align: left;
    transform: translateX(10%);
    padding-right: 0;
    /*top: -300px;*/
    /*margin-top: -300px;*/
}
@media (max-width: 568px) {
    .timeline li:nth-child(2n) {
        align-self: flex-start;
    }
}
.timeline li:nth-child(1) {

}
.timeline li:nth-child(2) {
    /*margin-top: -300px;*/
    margin-top: -17%;
}
.timeline li:nth-child(3) {
    margin-top: -13%;
}
.timeline li:nth-child(4) {
    margin-top: -24%;
}
.timeline li:nth-child(5) {
    margin-top: -12%;
}
.timeline li:nth-child(6) {
    margin-top: 4%;
}
.timeline li:nth-child(7) {
    margin-top: -8%;
}
.timeline li:nth-child(8) {
    margin-top: 3%
}
.timeline li:nth-child(9) {
    margin-top: -28%;
}
.timeline li:nth-child(10) {
    margin-top: -1%;
}
.timeline li:nth-child(11) {
    margin-top: -20%;
}
.timeline li:nth-child(12) {
    margin-top: -24%;
}
.timeline li:nth-child(13) {

}
.timeline li:nth-child(14) {
    margin-top: -38%;
}
.timeline li:nth-child(15) {

}
.timeline li:nth-child(16) {
    margin-top: -5%;
}
.timeline li:nth-child(17) {
    margin-top: -20%;
}

.timeline li:nth-child(2n):before {
    left: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='49' height='49' viewBox='0 0 49 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M49 48L41 48C18.9086 48 1 30.0914 1 8L1 4.15742e-06' stroke='%23434445'/%3e%3c/svg%3e ");
    transform: translate(-1%,-50%);
}
.timeline li.visible {
    opacity:1;
    transform:translateX(0);
}

.about-page .about-3 .item {
    display: flex;
    align-items: center;
    gap: 82px;
    position: relative;
}
@media (max-width: 1368px) {
    .about-page .about-3 .item {
        gap: 32px;
    }
}
@media (max-width: 568px) {
    .about-page .about-3 {
        padding: 0 32px;
    }
}

.about-page .about-3 .item:has(.complex_data_txtbig):after {
    /*content: '';*/
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 750px;
    height: 100%;
    max-height: 280px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='750' height='280' viewBox='0 0 750 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cellipse cx='375' cy='140' rx='375' ry='140' fill='url(%23paint0_radial_3473_7)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_3473_7' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(375 140) rotate(90) scale(140 375)'%3e%3cstop stop-color='%23323437' stop-opacity='0.81'/%3e%3cstop offset='0.362213' stop-color='%2326282A' stop-opacity='0.723334'/%3e%3cstop offset='0.627213' stop-color='%2326282A' stop-opacity='0.25'/%3e%3cstop offset='0.842213' stop-color='%2326282A' stop-opacity='0.1'/%3e%3cstop offset='1' stop-color='%2326282A' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e ");
}

.about-page .about-3 .item .data {

}

.about-page .about-3 .item .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.about-page .about-3 .item h3 {
    border: 1px solid #434445;
    border-radius: 48px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: max-content;
    background: #141516;
    position: relative;

    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
}

.about-page .complex_data_img {

}

.about-page .complex_data_img img {
    width: 100%;
}

.about-page .complex_data_txt {

}

.about-page .complex_data_txt p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;

    opacity: 0.9;
    max-width: 480px;
}

.about-page .complex_data_txtbig {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .complex_data_txtbig svg {
    position: absolute;
}

.about-page .complex_data_txtbig:after {
    /*content: '';*/
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 750px;
    height: 100%;
    max-height: 280px;
    aspect-ratio: 750/280;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='750' height='280' viewBox='0 0 750 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cellipse cx='375' cy='140' rx='375' ry='140' fill='url(%23paint0_radial_3473_7)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_3473_7' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(375 140) rotate(90) scale(140 375)'%3e%3cstop stop-color='%23323437' stop-opacity='0.81'/%3e%3cstop offset='0.362213' stop-color='%2326282A' stop-opacity='0.723334'/%3e%3cstop offset='0.627213' stop-color='%2326282A' stop-opacity='0.25'/%3e%3cstop offset='0.842213' stop-color='%2326282A' stop-opacity='0.1'/%3e%3cstop offset='1' stop-color='%2326282A' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e ");
}

.about-page .complex_data_txtbig p {
    font-family: "TT Ramillas", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;

    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.about-page .complex_data_sim {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: -32px;
}

.about-page .complex_data_name {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-page .complex_data_name p {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;

    opacity: 0.5;
}

.about-page .complex_data_name svg {
    position: absolute;
    right: 0;
}

.about-page .complex_data_sim svg {

}

.about-page .complex_data_video {

}

.about-page .complex_data_video video {
    width: 100%;
}


/**/

.about-page .about-4 {
    padding: 80px 24px 126px 24px;
}
@media (max-width: 568px) {
    .about-page .about-4 {
        padding: 48px 0 0 0 ;
    }
}

.about-page .about-4 div {
    width: 100%;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1552/668;
}
@media (max-width: 568px) {
    .about-page .about-4 div {
        padding: 100px 16px;
        aspect-ratio: auto;
    }
}

.about-page .about-4 div:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: radial-gradient(59.4% 50% at 44.41% 50%, rgba(20, 21, 22, 0) 0%, rgb(20, 21, 22) 100%);*/
    background: radial-gradient(47.62% 50% at 53.71% 50%, rgba(20, 21, 22, 0) 0%, rgba(20, 21, 22, 0.68), rgba(20, 21, 22, 0.84), rgb(20, 21, 22) 100%);
}

.about-page .about-4 h2 {
    max-width: 1050px;
    font-weight: 400;
    font-size: 56px;
    line-height: 86%;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 568px) {
    .about-page .about-4 h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 125%;
    }
}

.about-page .about-4 img {
    width: 100%;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 568px) {
    .about-page .about-4 img {
        height: 100%;
        object-fit: cover;
    }
}

.about-page .about-5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: #2a2a2a;
    border: 1px solid #2a2a2a;
    /*border-top: 1px solid #2a2a2a;*/
    margin: 180px 0 0 0;
    padding: 0;
}
@media (max-width: 1368px) {
    .about-page .about-5 {
        margin-top: 120px;
    }
}
@media (max-width: 568px) {
    .about-page .about-5 {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-top: 40px;
    }
}

.about-page .about-5 .item {
    background: #141516;
    position: relative;
    padding: 56px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 533/840;
    overflow: hidden;
    transition: .7s ease;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item {
        aspect-ratio: 533/800;
    }
}
@media (max-width: 568px) {
    .about-page .about-5 .item {
        pointer-events: none;
        padding: 40px 16px;
        aspect-ratio: 533/840;
    }
}

.about-page .about-5 .item:hover {
    padding: 40px 30px 56px 30px;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item:hover {
        padding: 30px 20px 56px 20px;
    }
}

.about-page .about-5 .item:nth-child(1):hover {
    background: #bed3cd;
}
@media (max-width: 568px) {
    .about-page .about-5 .item:nth-child(1) {
        background: #bed3cd;
    }
}

.about-page .about-5 .item:nth-child(2):hover {
    background: #bdc2c8;
}
@media (max-width: 568px) {
    .about-page .about-5 .item:nth-child(2) {
        background: #bdc2c8;
    }
}

.about-page .about-5 .item:nth-child(3):hover {
    background: #f1f1f1;
}
@media (max-width: 568px) {
    .about-page .about-5 .item:nth-child(3) {
        background: #f1f1f1;
    }
}

.about-page .about-5 .item .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 568px) {

}

.about-page .about-5 .item .text span {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-align: center;
    opacity: 0.4;
    transition: .7s ease;
}
@media (max-width: 568px) {
    .about-page .about-5 .item .text span {
        font-weight: 400;
        font-size: 22px;
        line-height: 109%;
        color: #000;
        text-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.27);
        opacity: 0.8;
    }
}

.about-page .about-5 .item:hover .text span {
    font-size: 32px;
    line-height: 125%;
    color: #000;
    text-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.27);
    opacity: 0.8;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item:hover .text span {
        font-size: 2.2vw;
    }
}
@media (max-width: 568px) {
    .about-page .about-5 .item:hover .text span {
        font-size: 32px;
    }
}

.about-page .about-5 .item .text p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #000;

    opacity: 0;
    max-height: 0%;
    overflow: hidden;

    transition: .7s ease;
}
@media (max-width: 568px) {
    .about-page .about-5 .item .text p {
        font-size: 12px;
        line-height: 167%;
        color: #000;
        opacity: 0.8;
        max-height: 100%;
    }
}

.about-page .about-5 .item:hover .text p {
    opacity: 0.8;
    max-height: 100%;
}

.about-page .about-5 .item .bottle {
    position: absolute;
    max-height: 432px;
    top: 32%;
    bottom: 0;
    z-index: 1;
    transition: .7s ease;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item .bottle {
        max-height: 362px;
        top: 28%;
    }
}
@media (max-width: 568px) {
    .about-page .about-5 .item .bottle {
        max-height: 432px;
        top: 32%;
    }
}

.about-page .about-5 .item:hover .bottle {
    /*max-height: 646px;*/
    max-height: 566px;
    top: 28%;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item:hover .bottle {
        top: 32%;
        max-height: 416px;
    }
}

.about-page .about-5 .item .bg {
    position: absolute;
    top: 30%;
    bottom: 0%;
    margin: auto;
    opacity: 0;
    transition: .7s ease;
}
@media (max-width: 568px) {
    .about-page .about-5 .item .bg {
        opacity: 1;
        width: 90%;
    }
}

.about-page .about-5 .item:hover .bg {
    opacity: 1;
}
@media (max-width: 1368px) {
    .about-page .about-5 .item:hover .bg {
        width: 90%;
    }
}

/**/

.about-page section.about-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    padding: 156px 0;
}
@media (max-width: 568px) {
    .about-page section.about-footer {
        flex-direction: column;
        padding: 80px 32px;
        align-items: flex-start;
    }
}

.about-footer > div {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 458px;
}
@media (max-width: 568px) {
    .about-footer > div {
        width: auto;
    }
}

.about-footer .icon {

}

.about-footer .icon a {
    border: 1px solid #2a2a2a;
    border-radius: 160px;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 568px) {
    .about-footer .icon a {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
}

.about-footer .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.about-footer .text p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -0.01em;
    color: #fff;
}
@media (max-width: 568px) {
    .about-footer .text p {
        font-size: 12px;
        line-height: 167%;
    }
}

.about-footer .text a {
    font-weight: 300;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
}
@media (max-width: 568px) {
    .about-footer .text a {
        font-size: 22px;
        line-height: 109%;
    }
}

.about-footer {

}