.forfixed {
    position: fixed !important;
    z-index: 10;
    background-color: #fff;
    padding: 20px;
    top: 75px;
}

/* Кнопка "Наверх" */

.btn-up {
    height: 64px;
    width: 64px;
    z-index: 5;
    position: fixed;
    background-color: #FFE7E7;
    border-radius: 50%;
    right: 16px;
    bottom: 46px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.btn-up_hide {
    display: none;
  }

  .btn-up_hiding {
    opacity: 0;
  }

/* Панда на странице контактов */

.panda-contact {
    z-index: 2
}

.panda-contact {
    width: 20%;
    max-width: 220px;
    bottom: 5%;
}

@media(max-width:1280px) {
    .panda-contact {
        display: none;
    }
}

/* Радиокнопки */

.radioContainer {
	display: flex;
	gap: 15px;
	padding: 10px 8px;
}

.customRadio {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.customRadio-input {
	display: none;
}

.radioCircle {
	width: 24px;
	height: 24px;
    background-color: #F2F1FF;
	border-radius: 50%;
	position: absolute;
	transition: border-color .4s;
}

.customRadio-input:checked + .radioCircle {
	border-color: #595671;
}

.customRadio-input:checked + .radioCircle::after {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	background-color: #595671;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.radio-label {
	margin-left: 35px;
	vertical-align: middle;
	color: grey;
	user-select: none; /* Запрет выделения текста */
}

.customRadio-input:checked + .radioCircle + .radio-label {
	color: black;
}

.customRadio:hover .radioCircle {
	border-color: #a0a0a0;
}

.customRadio-input:checked:hover + .radioCircle {
	border-color: #595671;
}

/* Попап автора статьи в блоге */

.author-block {
    display: flex;
    gap: 30px;
}
.author-block-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    line-height: 1.2;
}
.author-block-text-name {
    font-size: 28px;
    font-weight: 700;
}
.author-block-text-status {
    font-size: 16px;
    font-weight: 700;
}
.author-block-img {
    width: 60px;
    height: 60px;
}
.author-block-img img {
    border-radius: 50px;
}
.BlogAuthor .ji {
    max-width: 556px;
}

/* Попап отзыва */

.download-file {
    background-color: #F2F1FF;
    padding: 20px 30px;
    border: 1px dashed #AFAEC1;
    text-align: center;
}
.download-file a {
    font-weight: 700;
    text-decoration: underline;
}
.download-file-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Стрелки и градиент главного слайдера */

.fs .swiper .swiper-button-next, .fs .swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.fs .swiper .swiper-button-next svg, .fs .swiper .swiper-button-prev svg {
    width: 35px;
    height: 35px;
}
.fs .swiper .swiper-button-prev {
    position: absolute;
    left: var(--grid-side-gap);
}
.fs .swiper .swiper-button-next {
    position: absolute;
    right: var(--grid-side-gap);
}
@media(max-width:460px) {
    .fs .swiper .swiper-button-next, .fs .swiper .swiper-button-prev {
        background: rgba(255, 255, 255, 0.5);
    }
    .fs .swiper .swiper-button-next path, .fs .swiper .swiper-button-prev path {
        stroke: #fff;
    }
}
.swiper-slide-gradient {
    position: absolute;
    width: 100%;
    height: 30%;
    z-index: 2;
    display: none;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(255,250,242,1) 0%,rgba(255,255,255,0) 100%);
}
@media(max-width:460px) {
    .swiper-slide-gradient {
        display: block;
    }
}

/* Главная */

.news-but {
    background-color: #D2E8FC;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 15px 30px;
    display: inline-block;
    font-weight: 600;
    transition-duration: .6s;
    transition-timing-function: ease,
}
.news-but:hover {
    background-color: #b9deff;
}
.reviews-img {
    border-radius: 16px;
    height: 254px;
    width: 254px;
}
.reviews-img img {
    border-radius: 16px;
}
.reviews-text {
    background-color: #E7F3FF;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    flex: 1;
    height: 100%;
    margin: 0 0 0 -40px;
}
.reviews-block {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.reviews .reviews-block:last-child {
    margin-bottom: 0px;
}
.reviews .reviews-block:nth-child(even) {
    flex-direction: row-reverse;
}
.reviews .reviews-block:nth-child(even) .reviews-text {
    margin: 0 -40px 0 0;
}
.reviews-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.reviews .aj {
    width: 100%;
    margin-top: 30px;
}
.reviews .o2 {
    padding: 0;
}
.reviews .o5 {
    padding: 40px 30px;
}
@media(max-width:460px) {
    .reviews-block {
        flex-direction: column !important;
    }
    .reviews .reviews-text {
        margin: 0 !important;
    }
    .reviews-img {
        width: auto;
        height: auto;
        margin-bottom: 10px;
    }
}

/* Каталог */

.catalog-tabs {
    margin-bottom: 30px;
}
.catalog-filter-size-block {
    margin-bottom: 30px;
}
.catalog-filter-size-head {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
@media(max-width:743px) {
    .catalog-tabs {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        margin-bottom: 30px;
    }
}

.catalog-filter-ico {
    display: none;
}
@media(max-width:743px) {
    .catalog-filter-ico {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        margin-left: auto;
        background-color: #FFE7E7;
    }
}

.catalog-filter-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    position: relative;
    flex-wrap: wrap;
}
@media(max-width:744px) {
    .catalog-filter-block {
        justify-content: start;
    }
}
.catalog-filter-block .tr {
    position: absolute;
    right: 0;
}
@media(max-width:1280px) {
    .catalog-filter-block .tr {
        position: relative;
    }
}
.swiper-slide-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.swiper-slide-item-contain {
    background-size: contain;
}

/* Страница товара */

.wrapper-item-advantages {
    background-color: #e7f3ff;
    border-radius: 16px;
}

@media(max-width:743px) {
    .wrapper-item-advantages {
        border-radius: 0px;
    }
}

@media(max-width:743px) {
    .iq {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .iq {
        padding-top: 50px;
        padding-bottom: 50px;
    }


}

@media(min-width:1440px) {
    .iq {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}
.swiper-slide-catalog-item {
    position: absolute;
    background-color: transparent !important;
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

}
.swiper .r5, .swiper .r6 {
    width: 60px;
    height: 60px;
    background-color: #F2F1FF;
    border-radius: 50px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bullets-mode .f1:before {
    background-color: #595671;
}
.bullets-mode .f1 .fy {
    stroke: #595671;
}

/* Блог */

.author-article {
    text-decoration: underline;
    margin: 15px 0;
    font-weight: 600;
    display: block;
}

/* Где купить */

.buy-bg {
    background-color: #FFF5E5;
}

/* Декорации контента на странице "Вопрос-ответ" и статьях блога */

.content-decoration {
    display: flex;
}
.content-decoration-ico {
    width: 30px;
}
.content-decoration-text {
    flex: 1;
}
.content-decoration-text-blue {
    color: #6B5EFF;
}
.content-decoration-text-underline {
    text-decoration: underline;
}
.bgcolor-mode {
    background-color: #F2F1FF;
    padding: 20px 15px;
    border-radius: 6px;
}
.content-decoration-ico svg {
    width: 20px;
    height: 20px;
}
.content-decoration-list {
    margin: 10px 0 0 0;
    flex-direction: column;
    gap: 10px;
    display: flex;
}
.content-decoration-list li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}
.content-decoration-list li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #595671;
}

/* Политика конфиденциальности */

.politic-menu-point {
    padding: 20px 30px;
    background-color: #F2F1FF;
    display: block;
    margin-bottom: 10px;
    border-radius: 6px;
}
.politic-menu-point-active {
    background-color: #D8D6F5;
    font-weight: 700;
}
.politic-menu-point:hover {
    background-color: #D8D6F5;
}

.politics-list-point {
    display: flex;
    margin-bottom: 20px;
}
.politics-list-point-num {
    width: 70px;
}
.politics-list-point-text {
    flex: 1;
}


@media(max-width:743px) {
    .politic-menu {
        padding: 30px 0
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .politic-menu {
        padding: 40px 0
    }
}

@media(max-width:1279px) {
    .politic-menu {
        width: 100%
    }
}

@media(min-width:1280px) {
    .politic-menu {
        flex: 0 0 30%;
        padding: 40px 30px 32px;
        position: -webkit-sticky;
        position: sticky;
        top: 100px
    }
}

/* Таблица размеров */

.popup-full {
    overflow: hidden;
    background-color: #fff;
    height: 100%
}

@media(min-width:744px) {
    .popup-full {
        border-radius: 10px
    }
}

.table-size th {
    background-color: #D8D6F5;
    border: 1px solid #D8D6F5;
    padding: 10px 20px;
    text-transform: uppercase;
}
.table-size td {
    border: 1px solid #E0E0E0;
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
}
.table-size
{
    border-collapse: collapse; /* эквивалент 'cellspacing' */
}


/* ----------------------------------------------- */

.tr {
    padding: 8px 0;
}
.tr a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.tr a:after {
    content: '';
    background: url(../images/page/home/size-ico.svg) 0 0 no-repeat;
    width: 12px;
    height: 12px;
    margin-left: 10px;
}
.s5 .tr {
    padding-right: 4px;
    font-weight: 700;
    padding: 0;
}
.s5 .tr a {
    justify-content: space-between;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.s1 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    transition-property: opacity;
    transition-duration: .5s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .s2 .s3 {
        max-height: 470px
    }
}

@media(max-width:1023px) and (min-width:744px) {
    .s2 .s3 {
        max-height: 640px;
        max-width: 100%
    }
}

@media(min-width:1024px) {
    .s2 {
        justify-content: center
    }

    .s2 .s3 {
        height: 100%;
        max-height: 760px;
        max-width: 100%
    }
}

@media(max-width:1023px) {
    .s4 .s3 {
        max-height: 90%;
        max-width: 100%
    }
}

@media(min-width:1024px) {
    .s4 {
        justify-content: flex-end
    }

    .s4 .s3 {
        max-height: 80%;
        max-width: 100%
    }
}

.s3 {
    object-fit: contain;
    object-position: center;
    margin: auto
}

.r0 {
    position: relative;
    z-index: 1
}

@media(max-width:743px) {
    .r0 {
        gap: 30px;
        padding-top: 50px;
        padding-bottom: 50px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .r0 {
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 40px
    }
}

@media(max-width:1023px) {
    .r0 {
        display: flex;
        flex-direction: column-reverse
    }
}

@media(min-width:1024px) {
    .r0 {
        display: grid;
        grid-template-columns: auto 0%;
        height: calc(100vh - var(--header-height) - 56px);
        min-height: 440px
    }
}

@media(max-width:1199px)and (min-width:1024px) {
    .r0 {
        max-height: 560px
    }
}

@media(min-width:1200px) {
    .r0 {
        max-height: 960px
    }
}

.r1 {
    width: 100%
}

@media(max-width:743px) {
    .r1 {
        padding-left: 15%;
        padding-right: 15%
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .r1 {
        padding-left: 20%;
        padding-right: 20%
    }
}

@media(max-width:1023px) {
    .r1 {
        width: 100%
    }
}

@media(min-width:1024px) {
    .r1 {
        height: 100%;
        margin: auto;
        padding-top: 55%;
        padding-bottom: 55%
    }
}

.r1 .swiper-wrapper {
    height: 100%
}

@media(min-width:1024px) {
    .r1 .swiper-wrapper {
        align-items: center;
        flex-direction: column
    }
}

.r1 .swiper-slide-active, .r1 .swiper-slide-thumb-active {
    opacity: 1
}

.r1 .swiper-slide-active+.swiper-slide-next,
.r1 .swiper-slide-next+.swiper-slide,
.r1 .swiper-slide-thumb-active+.swiper-slide,
.r1 .swiper-slide-thumb-active+.swiper-slide+.swiper-slide
{
    opacity: .7
}

.r2 {
    width: 100%
}

.r2 article {
    opacity: 0
}

@media(max-width:743px) {
    .r2 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
    }
}

.r2 .swiper-slide-active {
    opacity: 1 !important
}

.r2 .swiper-slide-active article {
    opacity: 1
}

.r3 {
    aspect-ratio: 1;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
    opacity: 0
}

@media(max-width:1023px) {
    .r3 {
        width: 33%
    }
}

@media(min-width:1024px) {
    .r3 {
        max-height: 33%;
        height: 33.33% !important;
        width: 100%
    }
}

.r4 {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    aspect-ratio: 1
}

.r4,
.r5,
.r6 {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.r5,
.r6 {
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 41px;
    cursor: pointer
}

.r5:hover,
.r6:hover {
    opacity: .7
}

.r5[disabled],
.r6[disabled] {
    opacity: .5;
    pointer-events: none
}

@media(max-width:1023px) {
    .r6 {
        right: 16px
    }
}

@media(min-width:1024px) {
    .r6 {
        right: 24px
    }
}

@media(max-width:1023px) {
    .r5 {
        left: 16px
    }
}

@media(min-width:1024px) {
    .r5 {
        left: 24px
    }
}

.sq {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cab493;
    color: #cab493;
    border-radius: 40px;
    font-size: 14px;
    line-height: 24px;
    transition-property: color, background-color, opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.sq.sr {
    color: #fff;
    background-color: #cab493
}

.sq.ss {
    position: relative
}

.sq[disabled] {
    pointer-events: none
}

.rr {
    position: relative;
    display: flex;
    gap: 5vw;
}
@media(max-width:743px) {
    .rr {
        flex-direction: column;
        gap: 1vw;
    }
}

.rs {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .025em
}

.rt {
    flex-wrap: wrap;
    gap: 10px
}

.rt,
.ru {
    display: flex
}

.ru {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px
}

.ps {
    position: relative
}

@media(max-width:1023px)and (min-width:744px) {
    .ps {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1023px)and (min-width:744px)and (min-width:1440px) {
    .ps {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1024px) {
    .ps {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--page-width-max)
    }
}

@keyframes pv {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(min-width:1024px) {
    .pt {
        display: grid;
        place-items: flex-start;
        grid-template-columns: 1fr 1fr;
        padding-left: .55vw;
        padding-right: 1.38vw
    }
}

@media(max-width:1439px)and (min-width:1024px) {
    .pt {
        gap: 4.4vw
    }
}

@media(min-width:1440px) {
    .pt {
        gap: 64px
    }
}

.pu {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease
}

@media(min-width:1024px) {
    .pu {
        position: -webkit-sticky;
        position: sticky;
        top: 100px
    }
}

@media(min-width:744px) {
    .pu {
        animation-name: pv;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .15s
    }
}

.pw {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: auto
}

@media(max-width:743px) {
    .pw {
        height: 69%;
        left: -20%;
        bottom: -1.5%
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .pw {
        left: -20%;
        bottom: -2.5%
    }
}

@media(min-width:1024px) {
    .pw {
        left: -10%;
        bottom: -3.75%;
        height: 86.22%;
        width: auto
    }
}

.pw path {
    transition-property: fill;
    transition-duration: .3s;
    transition-timing-function: ease
}

.px {
    padding-top: 40px
}

@media(max-width:743px) {
    .px {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 40px
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .px {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .px {
        margin-left: 16px;
        margin-right: 16px;
        padding-bottom: 40px
    }
}

@media(min-width:744px) {
    .px {
        animation-name: pv;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .65s
    }
}

.py {
    color: #595671;
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase
}

.py,
.pz {
    font-weight: 700
}

@media(min-width:1440px) {
    .pz {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .pz {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .pz {
        font-size: 26px;
        line-height: 30px;
        padding-bottom: 16px
    }
}

@media(min-width:744px) {
    .pz {
        padding-bottom: 24px
    }
}

.p0 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 30px
}

@media(max-width:1023px) {

    .p0,
    .pz {
        max-width: 664px
    }
}

@media(min-width:1024px) {

    .p0,
    .pz {
        max-width: 568px
    }
}

.p1 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .025em
}

.p2 {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px
}

.p2,
.p3 {
    display: flex
}

.p3 {
    flex-wrap: wrap;
    gap: 10px
}

.p4 {
    min-width: 55px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cab493;
    color: #cab493;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700
}

.p5 {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 16px;
    max-width: 400px
}

.p5,
.p6 {
    display: flex;
    flex-direction: column
}

.p6 {
    width: 100%
}

.p7 {
    color: #595671;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

@media(max-width:743px) {
    .p8 {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .p8 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .p8 {
        padding-top: 80px;
        padding-bottom: 60px
    }
}

@media(max-width:1023px) {
    .p8 {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(min-width:1024px) {
    .p8 {
        padding-top: 96px;
        padding-bottom: 60px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:1024px)and (min-width:1440px) {
    .p8 {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .p8 {
        opacity: 0
    }
}

.p9 {
    animation-name: pv;
    animation-duration: 1s;
    animation-fill-mode: both
}

.qa {
    display: flex
}

@media(max-width:743px) {
    .qa {
        flex-direction: column;
        gap: 40px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .qa {
        flex-direction: column;
        gap: 40px
    }
}

@media(min-width:1024px) {
    .qa {
        flex-direction: row;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width:1439px)and (min-width:1024px) {
    .qa {
        column-gap: 6.2vw
    }
}

@media(min-width:1440px) {
    .qa {
        column-gap: 112px
    }
}

.qb {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px
}

@media(max-width:1023px)and (min-width:744px) {
    .qc {
        flex-direction: row;
        gap: 40px
    }
}

@media(min-width:1024px) {
    .qc {
        flex: 0 0 45.5%
    }
}

@media(max-width:743px) {
    .qe {
        gap: 16px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .qe {
        flex-direction: column;
        gap: 24px
    }
}

@media(min-width:1024px) {
    .qe {
        flex-grow: 1
    }
}

.qf {
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media(max-width:1023px)and (min-width:744px) {
    .qf {
        flex: 0 0 62.5%
    }
}

.qg {
    display: flex
}

@media(max-width:743px) {
    .qg {
        flex-direction: column;
        gap: 12px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .qg {
        flex-direction: row;
        gap: 40px
    }

    .qg .qh {
        max-width: 62.5%;
        flex-grow: 1
    }
}

@media(min-width:1024px) {
    .qg {
        flex-direction: column;
        gap: 24px
    }
}

.qi {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px
}

.qh,
.qj {
    color: #595671
}

.qj {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500
}

@media(max-width:1023px)and (min-width:744px) {
    .qj {
        flex: 0 0 31.5%
    }
}

.qk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 48px
}

@media(max-width:743px) {
    .qk {
        row-gap: 24px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .qk {
        flex: 0 0 31.5%;
        row-gap: 40px
    }
}

@media(min-width:1024px) {
    .qk {
        margin-top: 24px;
        row-gap: 40px
    }
}

.ql {
    max-height: 46px;
    max-width: 109px;
    object-fit: contain;
    object-position: center 0
}

.b,
.eo {
    position: relative
}

.eo {
    padding-bottom: 16px
}

.eo:hover .ep {
    filter: blur(2px)
}

.eo:hover .eq {
    opacity: 1
}

.ep {
    object-fit: contain;
    object-position: center;
    transition-property: filter;
    transition-duration: .7s;
    transition-timing-function: ease
}

.eq {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 48.57%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background-color: #d2e8fc;
    border-radius: 24px;
    transition-property: opacity background-color;
    transition-duration: .5s;
    transition-timing-function: ease;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden
}

@media(max-width:743px) {
    .eq {
        padding-left: 6.6vw;
        padding-right: 6.6vw;
        max-width: 200px
    }
}

@media(min-width:744px) {
    .eq {
        width: 200px
    }
}

.eq:before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -50%;
    left: 0;
    width: 44px;
    aspect-ratio: 1;
    background-color: #b9deff;
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease
}

.eq:focus:before,
.eq:hover:before {
    transform: scale(10)
}

.er {
    z-index: 1
}

.er,
.es {
    position: relative
}

.es {
    display: block;
    background-color: #faf8f6;
    border-radius: 16px
}

@media(max-width:743px) {
    .es {
        aspect-ratio: .877;
        padding: 10% 6% 13.17%
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .es {
        aspect-ratio: .876;
        padding: 9.62% 8% 13.46%
    }
}

@media(min-width:1440px) {
    .es {
        aspect-ratio: .91;
        padding: 8.57% 16px 11.43%
    }
}

.et {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

@media(max-width:1439px) {
    .et {
        padding-left: 8px;
        padding-right: 8px
    }
}

@media(min-width:1440px) {
    .et {
        padding-left: 16px;
        padding-right: 16px
    }
}

.eu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
}

@media(max-width:743px) {
    .ev {
        display: none
    }
}

@media(min-width:744px) {
    .ev {
        display: block;
        margin-top: 10px
    }
}

@media(max-width:743px) {
    .ew {
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 6px
    }
}

@media(min-width:744px) {
    .ew {
        display: none
    }
}

.ex,
.ey {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px dashed #cab493;
    color: #cab493;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-align: center
}

.ey {
    transition-property: background-color, color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.ey.ez {
    background-color: #cab493;
    color: #fff
}

.e0 {
    color: #595671;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em
}

.e1 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 286px;
    font-weight: 700;
    text-align: center
}

.k {
    position: relative;
    font-feature-settings: "pnum"on, "lnum"on
}

.l {
    display: flex
}

.m {
    position: relative
}

.k .swiper-pagination-current,
.k .swiper-pagination-total {
    min-width: 10px
}

.w {
    position: relative;
    height: 34px
}

.x {
    transform: rotate(180deg)
}

.w:hover .y {
    opacity: .7
}

.w:hover .y path {
    stroke: #595671
}

.w[disabled] {
    opacity: .5;
    pointer-events: none
}

.y {
    transition-property: opacity;
    transition-timing-function: ease
}

.y,
.y path {
    transition-duration: .3s
}

.y path {
    transition-property: stroke;
    transition-timing-function: ease
}

.i3 {
    position: relative;
    display: flex;
    flex-direction: column;
    --offset-slide-between-tablet: 6px;
    --offset-slide-between: 16px
}

@media(max-width:743px) {
    .i3 {
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 32px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .i3 {
        padding-top: 50px;
        padding-bottom: 50px;
        gap: 40px
    }
}

@media(min-width:1440px) {
    .i3 {
        padding-top: 80px;
        padding-bottom: 40px;
        gap: 31px
    }
}

@media(min-width:744px) {
    .i4 .i5 {
        animation-name: i6;
        animation-fill-mode: both;
        animation-delay: .1s
    }

    .i4 .i5,
    .i4 .i7 {
        animation-duration: 1.5s
    }

    .i4 .i7 {
        animation-name: i8;
        animation-fill-mode: both;
        animation-delay: .25s
    }

    .i4 .i9 {
        transform: scale(1);
        transition-delay: .15s
    }
}

.i9 {
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    transform-origin: center
}

@media(min-width:744px) {
    .i9 {
        transform: scale(.85)
    }
}

@keyframes i6 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 70)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes i8 {
    0% {
        transform: matrix(1, 0, 0, 1, 0, 70)
    }

    to {
        transform: translateZ(0)
    }
}

.i5 {
    max-width: 510px
}

@media(max-width:1439px) {
    .i5 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap)
    }
}

@media(min-width:744px) {
    .i5 {
        opacity: 0
    }
}

@media(min-width:1180px) {
    .i7 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:1180px)and (min-width:1440px) {
    .i7 {
        max-width: var(--page-width-max)
    }
}

.ja {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px
}

@media(max-width:743px) {
    .ja {
        padding-left: var(--grid-side-gap)
    }
}

@media(max-width:1179px)and (min-width:744px) {
    .ja {
        padding-left: var(--grid-side-gap);
        padding-right: 18px
    }
}

@media(min-width:1180px) {
    .ja .swiper-wrapper {
        margin-right: -16px;
        width: calc(100% + var(--offset-slide-between))
    }
}

@media(max-width:743px) {
    .ja .jb {
        display: none
    }

    .jc {
        width: 100%;
        max-width: 296px;
        padding-right: var(--offset-slide-between)
    }
}

@media(max-width:1179px)and (min-width:744px) {
    .jc {
        width: 33.33%;
        max-width: 277px;
        padding-right: var(--offset-slide-between-tablet)
    }
}

@media(min-width:1180px) {
    .jc {
        width: 25%
    }

    .jc:not(:last-child) {
        padding-right: var(--offset-slide-between)
    }

    .jc:last-child {
        width: calc(25% - var(--offset-slide-between))
    }
}

.je {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

@media(max-width:743px) {
    .je {
        margin-left: -16px;
        padding-right: var(--grid-side-gap)
    }
}

@media(max-width:1179px)and (min-width:744px) {
    .je {
        padding-right: 6px
    }
}

.jf,
.jg,
.jh {
    position: relative
}

.jh {
    flex-grow: 1;
    height: 34px
}

.a9 {
    position: relative
}

.ba {
    height: 40px;
    width: 40px;
    background-color: #cab493;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.bb {
    position: relative;
    width: 12px;
    height: 12px
}

.bb:after,
.bb:before {
    content: "";
    position: absolute;
    background-color: #fff;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease
}

.bb:before {
    width: 1px;
    height: 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.bb:after {
    width: 12px;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.bc:before {
    transform: rotate(90deg)
}

.be {
    transition-property: opacity;
    transition-timing-function: ease
}

.be,
.bf {
    transition-duration: .3s
}

.bf {
    transition-property: fill;
    transition-timing-function: ease
}

.bg {
    width: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left
}

.bh .bi:hover .bj {
    color: inherit
}

.bi {
    padding-top: 24px;
    padding-bottom: 24px
}

.bi:hover .bf {
    fill: #bca37d
}

.bi:hover .bj {
    color: #bca37d
}

.bi:not(:last-child) {
    border-bottom: 1px solid rgba(56, 54, 83, .25)
}

.bj {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    flex-grow: 1;
    width: calc(100% - 56px);
    max-width: 850px;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease
}

@media(min-width:744px) {
    .bj {
        padding-bottom: 12px
    }
}

.bk {
    color: #595671
}

.bk p:not(:last-of-type) {
    margin-bottom: 20px
}

.bk h2:not(:last-of-type),
.bk h3:not(:last-of-type),
.bk h4:not(:last-of-type) {
    margin-bottom: 12px
}

@media(max-width:743px) {
    .bk {
        padding-top: 28px
    }
}

@media(min-width:744px) {
    .bk {
        padding-top: 14px;
        flex-direction: column;
        gap: 30px;
        display: flex;
    }
}

.c,
.f {
    position: relative
}

.f {
    padding-bottom: 25px;
    padding-top: 50px
}

.hh {
    position: relative
}

.hi .hj {
    border-radius: 16px
}

@media(max-width:743px) {
    .hi .hj {
        aspect-ratio: 1.23
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .hi .hj {
        aspect-ratio: 1.3
    }
}

@media(min-width:1440px) {
    .hi .hj {
        aspect-ratio: 1.42
    }
}

.hi .hk {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.hi .hl {
    color: #595671
}

.hi:hover .hm {
    transform: scale(1.075)
}

.hi:hover .hl,
.hi:hover .hn {
    color: #bca37d
}

.ho .hk {
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .ho .hk {
        gap: 6px
    }
}

@media(min-width:744px) {
    .ho .hk {
        gap: 2px
    }
}

.ho .hl {
    color: #595671
}

.ho:hover .hl,
.ho:hover .hn {
    color: #bca37d
}

.hp {
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    width: 100%;
    background-color: #F2F1FF;
}

.hp:hover .hm {
    transform: scale(1.075)
}

.hp .hq {
    margin-top: auto;
}

.hp .hr {
    background-color: #D8D6F5;
}

.hp .hs {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.hp .hn,
.hp .ht {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.hp .hn {
    font-weight: 700;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;

}

@media(min-width:1440px) {
    .hp .hn {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .hp .hn {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:743px) {
    .hp .hn {
        font-size: 20px;
        line-height: 26px
    }
}

.hp .ht {
    -webkit-line-clamp: 5
}

.hp .hj {
    z-index: 0
}

.hp .hj {
    width: 100%;
    height: 400px;
}


.hp .hk {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 30px;
    justify-content: space-between;
    flex: 1;
}

@media(max-width:743px) {
    .hp {
        min-height: 420px
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .hp {
        aspect-ratio: .8
    }
}

.hu .hk {
    display: flex;
    flex-direction: column;
    gap: 12px
}

@media(max-width:1279px) {
    .hu .hk {
        padding-right: 24px
    }
}

.hu .hr {
    background-color: #eee9e4
}

.hu .hl {
    margin-bottom: 4px
}

.hu .hl,
.hu .hn {
    color: #595671;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.hu .hn {
    max-width: 400px
}

@media(min-width:1280px) {
    .hu {
        padding-top: 32px;
        padding-bottom: 32px
    }
}

.hu:hover .hn {
    color: #bca37d
}

.hj {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.hm {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease
}

.hn {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px
}

.hl,
.hn {
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.hq {
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

.hr {
    padding: 6px 14px 7px;
    border-radius: 30px;
    color: #383653;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500
}

.b4 {
    position: relative
}

@media(max-width:743px) {
    .b5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: 16px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .b5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 6px;
        row-gap: 16px
    }
}

@media(min-width:1440px) {
    .b5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 24px
    }
}

@media(max-width:743px) {
    .b6 {
        gap: 16px;
        grid-template-columns: 1fr
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .b6 {
        gap: 16px;
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width:1440px) {
    .b6 {
        gap: 32px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.b7 {
    display: grid
}

.h {
    position: relative;
    align-items: center;
    display: flex
}

.i {
    border-radius: 40px
}

.si {
    display: flex;
    gap: 10px;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1440px) {
    .si {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .si {
        overflow-x: auto
    }
}

@media(min-width:744px) {
    .si {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
}

.sj {
    min-width: 160px
}

@media(max-width:743px) {
    .sj {
        min-width: auto
    }
}

.sk {
    width: 100%;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #595671;
    transition-property: background-color, border-color, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
    white-space: nowrap
}

.sk[disabled] {
    pointer-events: none
}

.sk:hover {
    opacity: .8
}

.sk.sl {
    background-color: #f2f1ff;
    border-color: #f2f1ff
}

.ae,
.sm {
    position: relative
}

@media(max-width:743px) {
    .ae {
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .ae ::-webkit-scrollbar {
        display: none
    }
}

.fm {
    position: relative;
    padding-bottom: 56px
}

@media(max-width:743px) {
    .fm {
        padding-top: 20px
    }
}

@media(min-width:744px) {
    .fm {
        padding-top: 12px
    }

    .fm .fn,
    .fm .fo,
    .fm .fp {
        animation-name: fq;
        animation-duration: 1s;
        animation-fill-mode: both
    }

    .fm .fp {
        animation-delay: .15s
    }

    .fm .fn {
        animation-delay: .45s
    }

    .fm .fo {
        animation-delay: .65s
    }
}

@keyframes fq {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fn {
    padding-top: 16px
}

@media(max-width:743px) {
    .fn {
        padding-bottom: 24px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .fn {
        padding-bottom: 8px
    }
}

@media(min-width:744px) {
    .fn {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:1440px) {
    .fn {
        padding-bottom: 16px
    }
}

.fp {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1440px) {
    .fp {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .fp {
        padding-bottom: 18px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .fp {
        padding-bottom: 16px
    }
}

@media(min-width:1440px) {
    .fp {
        padding-bottom: 8px
    }
}

.fo {
    padding-top: 24px;
    border-top: 1px solid #eee
}

.fr {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width:743px) {
    .fr {
        padding-top: 40px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .fr {
        padding-top: 32px
    }
}

@media(min-width:1440px) {
    .fr {
        padding-top: 86px
    }
}

.bz {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    border-top: 1.5px solid #eee;
    border-bottom: 1.5px solid #eee
}

@media(max-width:744px) {
    .bz {
        margin-top: 32px;
        margin-bottom: 40px;
        column-gap: 16px
    }
}

@media(min-width:745px)and (max-width:1439px) {
    .bz {
        margin-top: 32px;
        margin-bottom: 32px;
        column-gap: 24px
    }
}

@media(min-width:1440px) {
    .bz {
        margin-top: 60px;
        margin-bottom: 40px;
        column-gap: 40px
    }
}

.b0 {
    height: 34px
}

.b0[disabled] {
    opacity: .5;
    pointer-events: none
}

.b1 {
    column-gap: 2px;
    flex-wrap: wrap;
    height: 100%
}

.b1,
.b1 .b2 {
    display: flex;
    align-items: center;
    justify-content: center
}

.b1 .b2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f2f1ff;
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.b1 .b2:disabled {
    pointer-events: none;
    background-color: #d8d6f5
}

.b1 .b2:hover {
    background-color: #f9f9ff
}

.b3 {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.b3:hover {
    opacity: .7
}

.s5 {
    position: relative;
    z-index: 5
}

.s6 {
    z-index: 6
}

@media(min-width:744px) {
    .s6 .s7 {
        padding: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, .08);
        border-radius: 4px;
        visibility: visible;
        opacity: 1;
        transform: translateY(0)
    }
}

.s6 .s8 {
    transform: rotate(0deg)
}

@media(max-width:743px) {
    .s6 .s9 {
        margin-bottom: 21px
    }
}

.s6 .ta {
    opacity: 1
}

@media(max-width:743px) {
    .s5 {
        padding: 21px 8px
    }

    .s5:not(:last-child) {
        border-bottom: 1px solid #eee
    }
}

.s7 {
    background-color: #fff;
    display: flex;
    flex-direction: column
}

@media(min-width:744px) {
    .s7 {
        position: absolute;
        width: max-content;
        min-width: 190px;
        gap: 4px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition-property: transform, opacity;
        transition-duration: 1s, .5s;
        transition-timing-function: ease-in-out, ease-in-out
    }
}

@media(min-width:1440px) {
    .s7 {
        left: 40px
    }
}

.s9 {
    display: flex;
    align-items: center
}

@media(max-width:743px) {
    .s9 {
        width: 100%;
        justify-content: space-between;
        padding-right: 4px;
        font-weight: 700
    }
}

@media(min-width:744px) {
    .s9 {
        gap: 8px;
        padding: 8px 16px
    }
}

.s8 {
    transition-property: transform;
    transition-timing-function: ease;
    transform: rotate(180deg)
}

.s8,
.ta {
    transition-duration: .3s
}

.ta {
    text-align: left;
    transition-property: opacity, color;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .ta {
        position: relative;
        padding: 8px 0 8px 34px
    }

    .ta:before {
        border-radius: 4px;
        border: 1px solid #595671
    }

    .ta:after,
    .ta:before {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 24px;
        height: 24px
    }

    .ta:after {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='3.5' fill='%23595671' stroke='%23595671'/%3E%3Cpath d='M6 11.5L10 15.5L18 8' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
        background-position: 0 0;
        background-repeat: no-repeat;
        transition-property: opacity;
        transition-duration: .3s;
        transition-timing-function: ease;
        opacity: 0
    }
}

@media(min-width:744px) {
    .ta {
        padding: 8px;
        opacity: 0;
        transition-property: opacity;
        transition-duration: .3s;
        transition-timing-function: ease
    }

    .ta:first-child {
        transition-delay: 0ms
    }

    .ta:nth-child(2) {
        transition-delay: .25s
    }

    .ta:nth-child(3) {
        transition-delay: .5s
    }

    .ta:nth-child(4) {
        transition-delay: .75s
    }

    .ta:nth-child(5) {
        transition-delay: 1s
    }

    .ta:nth-child(6) {
        transition-delay: 1.25s
    }

    .ta:nth-child(7) {
        transition-delay: 1.5s
    }

    .ta:nth-child(8) {
        transition-delay: 1.75s
    }

    .ta:nth-child(9) {
        transition-delay: 2s
    }

    .ta:nth-child(10) {
        transition-delay: 2.25s
    }

    .ta:nth-child(11) {
        transition-delay: 2.5s
    }

    .ta:nth-child(12) {
        transition-delay: 2.75s
    }

    .ta:nth-child(13) {
        transition-delay: 3s
    }

    .ta:nth-child(14) {
        transition-delay: 3.25s
    }

    .ta:nth-child(15) {
        transition-delay: 3.5s
    }

    .ta:nth-child(16) {
        transition-delay: 3.75s
    }

    .ta:nth-child(17) {
        transition-delay: 4s
    }

    .ta:nth-child(18) {
        transition-delay: 4.25s
    }

    .ta:nth-child(19) {
        transition-delay: 4.5s
    }

    .ta:nth-child(20) {
        transition-delay: 4.75s
    }

    .ta:nth-child(21) {
        transition-delay: 5s
    }

    .ta:nth-child(22) {
        transition-delay: 5.25s
    }

    .ta:nth-child(23) {
        transition-delay: 5.5s
    }

    .ta:nth-child(24) {
        transition-delay: 5.75s
    }

    .ta:nth-child(25) {
        transition-delay: 6s
    }

    .ta:nth-child(26) {
        transition-delay: 6.25s
    }

    .ta:nth-child(27) {
        transition-delay: 6.5s
    }

    .ta:nth-child(28) {
        transition-delay: 6.75s
    }

    .ta:nth-child(29) {
        transition-delay: 7s
    }

    .ta:nth-child(30) {
        transition-delay: 7.25s
    }

    .ta:nth-child(31) {
        transition-delay: 7.5s
    }

    .ta:nth-child(32) {
        transition-delay: 7.75s
    }

    .ta:nth-child(33) {
        transition-delay: 8s
    }

    .ta:nth-child(34) {
        transition-delay: 8.25s
    }

    .ta:nth-child(35) {
        transition-delay: 8.5s
    }

    .ta:nth-child(36) {
        transition-delay: 8.75s
    }

    .ta:nth-child(37) {
        transition-delay: 9s
    }

    .ta:nth-child(38) {
        transition-delay: 9.25s
    }

    .ta:nth-child(39) {
        transition-delay: 9.5s
    }

    .ta:nth-child(40) {
        transition-delay: 9.75s
    }

    .ta:nth-child(41) {
        transition-delay: 10s
    }

    .ta:nth-child(42) {
        transition-delay: 10.25s
    }

    .ta:nth-child(43) {
        transition-delay: 10.5s
    }

    .ta:nth-child(44) {
        transition-delay: 10.75s
    }

    .ta:nth-child(45) {
        transition-delay: 11s
    }

    .ta:nth-child(46) {
        transition-delay: 11.25s
    }

    .ta:nth-child(47) {
        transition-delay: 11.5s
    }

    .ta:nth-child(48) {
        transition-delay: 11.75s
    }

    .ta:nth-child(49) {
        transition-delay: 12s
    }

    .ta:nth-child(50) {
        transition-delay: 12.25s
    }

    .ta:nth-child(51) {
        transition-delay: 12.5s
    }

    .ta:nth-child(52) {
        transition-delay: 12.75s
    }

    .ta:nth-child(53) {
        transition-delay: 13s
    }

    .ta:nth-child(54) {
        transition-delay: 13.25s
    }

    .ta:nth-child(55) {
        transition-delay: 13.5s
    }

    .ta:nth-child(56) {
        transition-delay: 13.75s
    }

    .ta:nth-child(57) {
        transition-delay: 14s
    }

    .ta:nth-child(58) {
        transition-delay: 14.25s
    }

    .ta:nth-child(59) {
        transition-delay: 14.5s
    }

    .ta:nth-child(60) {
        transition-delay: 14.75s
    }

    .ta:nth-child(61) {
        transition-delay: 15s
    }

    .ta:nth-child(62) {
        transition-delay: 15.25s
    }

    .ta:nth-child(63) {
        transition-delay: 15.5s
    }

    .ta:nth-child(64) {
        transition-delay: 15.75s
    }

    .ta:nth-child(65) {
        transition-delay: 16s
    }

    .ta:nth-child(66) {
        transition-delay: 16.25s
    }

    .ta:nth-child(67) {
        transition-delay: 16.5s
    }

    .ta:nth-child(68) {
        transition-delay: 16.75s
    }

    .ta:nth-child(69) {
        transition-delay: 17s
    }

    .ta:nth-child(70) {
        transition-delay: 17.25s
    }

    .ta:nth-child(71) {
        transition-delay: 17.5s
    }

    .ta:nth-child(72) {
        transition-delay: 17.75s
    }

    .ta:nth-child(73) {
        transition-delay: 18s
    }

    .ta:nth-child(74) {
        transition-delay: 18.25s
    }

    .ta:nth-child(75) {
        transition-delay: 18.5s
    }

    .ta:nth-child(76) {
        transition-delay: 18.75s
    }

    .ta:nth-child(77) {
        transition-delay: 19s
    }

    .ta:nth-child(78) {
        transition-delay: 19.25s
    }

    .ta:nth-child(79) {
        transition-delay: 19.5s
    }

    .ta:nth-child(80) {
        transition-delay: 19.75s
    }

    .ta:nth-child(81) {
        transition-delay: 20s
    }

    .ta:nth-child(82) {
        transition-delay: 20.25s
    }

    .ta:nth-child(83) {
        transition-delay: 20.5s
    }

    .ta:nth-child(84) {
        transition-delay: 20.75s
    }

    .ta:nth-child(85) {
        transition-delay: 21s
    }

    .ta:nth-child(86) {
        transition-delay: 21.25s
    }

    .ta:nth-child(87) {
        transition-delay: 21.5s
    }

    .ta:nth-child(88) {
        transition-delay: 21.75s
    }

    .ta:nth-child(89) {
        transition-delay: 22s
    }

    .ta:nth-child(90) {
        transition-delay: 22.25s
    }

    .ta:nth-child(91) {
        transition-delay: 22.5s
    }

    .ta:nth-child(92) {
        transition-delay: 22.75s
    }

    .ta:nth-child(93) {
        transition-delay: 23s
    }

    .ta:nth-child(94) {
        transition-delay: 23.25s
    }

    .ta:nth-child(95) {
        transition-delay: 23.5s
    }

    .ta:nth-child(96) {
        transition-delay: 23.75s
    }

    .ta:nth-child(97) {
        transition-delay: 24s
    }

    .ta:nth-child(98) {
        transition-delay: 24.25s
    }

    .ta:nth-child(99) {
        transition-delay: 24.5s
    }

    .ta:nth-child(100) {
        transition-delay: 24.75s
    }

    .ta:hover {
        opacity: .65
    }
}

@media(max-width:743px) {
    .tb:after {
        opacity: 1
    }
}

@media(min-width:744px) {
    .tb {
        color: #bca37d
    }

    .tb:hover {
        opacity: 1
    }
}

@media(max-width:743px) {
    .sg {
        display: none
    }
}

@media(min-width:744px) {
    .sg {
        display: flex;
        justify-content: center;
        position: relative;
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .sg {
        gap: 10px
    }
}

@media(min-width:1440px) {
    .sg {
        gap: 24px
    }
}

.r7,
.sh {
    position: relative
}

@media(max-width:1280px) {
    .sh .tr {
        position: relative;
    }
}

.r7 {
    align-items: center;
    display: flex;
    justify-content: center;
}

@media(max-width:743px) {
    .r7 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .r7 {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .r7 {
        display: none
    }
}

.r8 {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #cab493;
    border-radius: 4px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    color: #323232
}

.r8,
.r9 {
    width: 100%
}

.r9 {
    position: relative;
    align-self: center;
    justify-self: center;
    min-height: 100%;
    background-color: #fff;
    display: grid;
    grid-template-rows: min-content 1fr min-content;
    align-items: baseline
}

.sa {
    z-index: 5;
    position: absolute;
    top: 8px;
    right: 16px
}

.sb {
    position: relative;
    height: 56px
}

.sc {
    padding: 24px 16px;
    display: flex;
    gap: 10px
}

.se {
    width: 100%
}

.sf {
    padding: 3px 16px
}

.rv {
    display: flex;
    gap: 4px
}

@media(max-width:743px) {
    .rv {
        overflow-x: auto;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .rv {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .rv {
        flex-wrap: wrap;
        justify-content: center
    }
}

.rw {
    position: relative;
    display: flex;
    padding: 8px 10px 8px 15px;
    background-color: #f2f1ff;
    border-radius: 30px;
    white-space: nowrap;
    gap: 10px;
    align-items: center;
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.rw:after {
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10.2618' r='9.5' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.97401 12.8928L12.6309 7.23593L13.338 7.94304L7.68111 13.5999L6.97401 12.8928Z' fill='%23383653'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.6315 13.5998L6.97461 7.94296L7.68172 7.23586L13.3386 12.8927L12.6315 13.5998Z' fill='%23383653'/%3E%3C/svg%3E%0A")
}

.rw:focus,
.rw:hover {
    background-color: #d8d6f5
}

.rw:active {
    background-color: #f2f1ff
}

.bt {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1
}

.bt:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: var(--grid-side-gap);
    height: 1px;
    width: calc(100% - var(--grid-side-gap)*2);
    background-color: #eee
}

@media(max-width:743px) {
    .bt {
        margin-bottom: 24px;
        row-gap: 24px;
        padding-bottom: 20px
    }
}

@media(max-width:1439px) {
    .bt ::-webkit-scrollbar {
        display: none
    }
}

@media(min-width:744px) {
    .bt {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 12px;
        row-gap: 20px
    }
}

@media(min-width:744px)and (min-width:1440px) {
    .bt {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .bt {
        margin-bottom: 16px
    }
}

@media(min-width:1440px) {
    .bt {
        margin-bottom: 24px
    }
}

.b8 {
    position: relative;
    overflow: hidden
}

@media(max-width:743px) {
    .b8 {
        padding-top: 20px;
        padding-bottom: 40px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .b8 {
        padding-top: 12px;
        padding-bottom: 32px
    }
}

@media(min-width:1440px) {
    .b8 {
        padding-top: 12px;
        padding-bottom: 40px
    }
}

@media(min-width:744px) {

    .b8 .b9,
    .b8 .ca,
    .b8 .cb {
        animation-name: cc;
        animation-duration: 1.5s;
        animation-fill-mode: both
    }

    .b8 .cb {
        animation-delay: .15s
    }

    .b8 .b9 {
        animation-delay: .45s
    }

    .b8 .ca {
        animation-delay: .65s
    }

    .b8 .ca article {
        transform: scale(1);
        transition-delay: .45s
    }
}

@keyframes cc {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.ca article {
    transform-origin: center;
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease
}

@media(min-width:744px) {
    .ca article {
        transform: scale(.9)
    }
}

@media(max-width:743px) {
    .cb {
        margin-bottom: 26px
    }
}

@media(min-width:744px) {
    .cb {
        margin-bottom: 24px
    }
}

.mv {
    position: relative;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 40px
}

@media(min-width:1440px) {
    .mv {
        max-width: var(--page-width-max)
    }
}

@keyframes mx {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(min-width:744px) {
    .mw {
        animation-name: mx;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .65s
    }
}

@media(max-width:743px) {
    .mw {
        padding-bottom: 60px
    }
}

@media(min-width:744px) {
    .mw {
        padding-bottom: 80px
    }
}

.my {
    font-weight: 700;
    margin-bottom: 24px
}

@media(min-width:1440px) {
    .my {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .my {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:743px) {
    .my {
        font-size: 20px;
        line-height: 26px
    }
}

.mz {
    opacity: 0
}

.mz:first-child {
    animation-delay: 0ms
}

.mz:nth-child(2) {
    animation-delay: .25s
}

.mz:nth-child(3) {
    animation-delay: .5s
}

.mz:nth-child(4) {
    animation-delay: .75s
}

.mz:nth-child(5) {
    animation-delay: 1s
}

.mz:nth-child(6) {
    animation-delay: 1.25s
}

.mz:nth-child(7) {
    animation-delay: 1.5s
}

.mz:nth-child(8) {
    animation-delay: 1.75s
}

.mz:nth-child(9) {
    animation-delay: 2s
}

.mz:nth-child(10) {
    animation-delay: 2.25s
}

.mz:nth-child(11) {
    animation-delay: 2.5s
}

.mz:nth-child(12) {
    animation-delay: 2.75s
}

.mz:nth-child(13) {
    animation-delay: 3s
}

.mz:nth-child(14) {
    animation-delay: 3.25s
}

.mz:nth-child(15) {
    animation-delay: 3.5s
}

.mz:nth-child(16) {
    animation-delay: 3.75s
}

.mz:nth-child(17) {
    animation-delay: 4s
}

.mz:nth-child(18) {
    animation-delay: 4.25s
}

.mz:nth-child(19) {
    animation-delay: 4.5s
}

.mz:nth-child(20) {
    animation-delay: 4.75s
}

.mz:nth-child(21) {
    animation-delay: 5s
}

.mz:nth-child(22) {
    animation-delay: 5.25s
}

.mz:nth-child(23) {
    animation-delay: 5.5s
}

.mz:nth-child(24) {
    animation-delay: 5.75s
}

.mz:nth-child(25) {
    animation-delay: 6s
}

.mz:nth-child(26) {
    animation-delay: 6.25s
}

.mz:nth-child(27) {
    animation-delay: 6.5s
}

.mz:nth-child(28) {
    animation-delay: 6.75s
}

.mz:nth-child(29) {
    animation-delay: 7s
}

.mz:nth-child(30) {
    animation-delay: 7.25s
}

.mz:nth-child(31) {
    animation-delay: 7.5s
}

.mz:nth-child(32) {
    animation-delay: 7.75s
}

.mz:nth-child(33) {
    animation-delay: 8s
}

.mz:nth-child(34) {
    animation-delay: 8.25s
}

.mz:nth-child(35) {
    animation-delay: 8.5s
}

.mz:nth-child(36) {
    animation-delay: 8.75s
}

.mz:nth-child(37) {
    animation-delay: 9s
}

.mz:nth-child(38) {
    animation-delay: 9.25s
}

.mz:nth-child(39) {
    animation-delay: 9.5s
}

.mz:nth-child(40) {
    animation-delay: 9.75s
}

.mz:nth-child(41) {
    animation-delay: 10s
}

.mz:nth-child(42) {
    animation-delay: 10.25s
}

.mz:nth-child(43) {
    animation-delay: 10.5s
}

.mz:nth-child(44) {
    animation-delay: 10.75s
}

.mz:nth-child(45) {
    animation-delay: 11s
}

.mz:nth-child(46) {
    animation-delay: 11.25s
}

.mz:nth-child(47) {
    animation-delay: 11.5s
}

.mz:nth-child(48) {
    animation-delay: 11.75s
}

.mz:nth-child(49) {
    animation-delay: 12s
}

.mz:nth-child(50) {
    animation-delay: 12.25s
}

.mz:nth-child(51) {
    animation-delay: 12.5s
}

.mz:nth-child(52) {
    animation-delay: 12.75s
}

.mz:nth-child(53) {
    animation-delay: 13s
}

.mz:nth-child(54) {
    animation-delay: 13.25s
}

.mz:nth-child(55) {
    animation-delay: 13.5s
}

.mz:nth-child(56) {
    animation-delay: 13.75s
}

.mz:nth-child(57) {
    animation-delay: 14s
}

.mz:nth-child(58) {
    animation-delay: 14.25s
}

.mz:nth-child(59) {
    animation-delay: 14.5s
}

.mz:nth-child(60) {
    animation-delay: 14.75s
}

.mz:nth-child(61) {
    animation-delay: 15s
}

.mz:nth-child(62) {
    animation-delay: 15.25s
}

.mz:nth-child(63) {
    animation-delay: 15.5s
}

.mz:nth-child(64) {
    animation-delay: 15.75s
}

.mz:nth-child(65) {
    animation-delay: 16s
}

.mz:nth-child(66) {
    animation-delay: 16.25s
}

.mz:nth-child(67) {
    animation-delay: 16.5s
}

.mz:nth-child(68) {
    animation-delay: 16.75s
}

.mz:nth-child(69) {
    animation-delay: 17s
}

.mz:nth-child(70) {
    animation-delay: 17.25s
}

.mz:nth-child(71) {
    animation-delay: 17.5s
}

.mz:nth-child(72) {
    animation-delay: 17.75s
}

.mz:nth-child(73) {
    animation-delay: 18s
}

.mz:nth-child(74) {
    animation-delay: 18.25s
}

.mz:nth-child(75) {
    animation-delay: 18.5s
}

.mz:nth-child(76) {
    animation-delay: 18.75s
}

.mz:nth-child(77) {
    animation-delay: 19s
}

.mz:nth-child(78) {
    animation-delay: 19.25s
}

.mz:nth-child(79) {
    animation-delay: 19.5s
}

.mz:nth-child(80) {
    animation-delay: 19.75s
}

.mz:nth-child(81) {
    animation-delay: 20s
}

.mz:nth-child(82) {
    animation-delay: 20.25s
}

.mz:nth-child(83) {
    animation-delay: 20.5s
}

.mz:nth-child(84) {
    animation-delay: 20.75s
}

.mz:nth-child(85) {
    animation-delay: 21s
}

.mz:nth-child(86) {
    animation-delay: 21.25s
}

.mz:nth-child(87) {
    animation-delay: 21.5s
}

.mz:nth-child(88) {
    animation-delay: 21.75s
}

.mz:nth-child(89) {
    animation-delay: 22s
}

.mz:nth-child(90) {
    animation-delay: 22.25s
}

.mz:nth-child(91) {
    animation-delay: 22.5s
}

.mz:nth-child(92) {
    animation-delay: 22.75s
}

.mz:nth-child(93) {
    animation-delay: 23s
}

.mz:nth-child(94) {
    animation-delay: 23.25s
}

.mz:nth-child(95) {
    animation-delay: 23.5s
}

.mz:nth-child(96) {
    animation-delay: 23.75s
}

.mz:nth-child(97) {
    animation-delay: 24s
}

.mz:nth-child(98) {
    animation-delay: 24.25s
}

.mz:nth-child(99) {
    animation-delay: 24.5s
}

.mz:nth-child(100) {
    animation-delay: 24.75s
}

@media(max-width:1279px) {
    .m0 {
        display: flex;
        flex-direction: column
    }
}

@media(max-width:743px) {
    .m0 {
        gap: 40px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .m0 {
        gap: 48px;
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(max-width:1439px)and (min-width:1280px) {
    .m0 {
        column-gap: 6.84vw
    }
}

@media(min-width:1440px) {
    .m0 {
        column-gap: 80px
    }
}

@media(min-width:1280px) {
    .m0 {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        grid-template-rows: auto auto;
        grid-row-gap: 48px;
        row-gap: 48px;
        position: relative;
    }
}

.m1 .mz {
    animation-name: mx;
    animation-duration: 1s;
    animation-fill-mode: both
}

.m2 {
    display: flex;
    flex-direction: column
}

@media(min-width:1280px) {
    .m2 {
        grid-column: 1/2;
        grid-row: 1/2
    }
}

.m4 {
    padding: 24px 28px;
    background-color: #e7f3ff;
    border-radius: 10px;
    gap: 20px;
    margin-bottom: 20px;
}

.m4 .m5 {
    max-width: 266px
}

@media(max-width:743px) {
    .m6 {
        padding-top: 8px
    }
}

@media(min-width:1280px) {
    .m6 {
        grid-column: 1/2;
        grid-row: 2/2
    }
}

.m7 {
    display: grid
}

@media(max-width:743px) {
    .m7 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 8px
    }
}

@media(min-width:744px) {
    .m7 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px
    }
}

.m8 {
    padding: 24px 28px;
    background-color: #fffaf2;
    border-radius: 10px;
    gap: 48px
}

.m9 {
    display: flex;
    flex-direction: column
}

@media(max-width:1279px)and (min-width:744px) {
    .m9 {
        padding-top: 32px
    }
}

@media(min-width:1280px) {
    .m9 {
        grid-column: 2/2;
        grid-row: 1/2
    }
}

.na {
    background-color: #ffe7e7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    flex-grow: 1
}

@media(max-width:743px) {
    .na {
        padding: 32px
    }
}

@media(min-width:744px) {
    .na {
        padding: 44px 32px
    }
}

@media(max-width:743px) {
    .nb {
        padding-top: 24px;
        padding-left: 8px;
        padding-right: 8px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .nb {
        padding-top: 16px;
        padding-left: 60px;
        padding-right: 60px
    }
}

@media(min-width:1280px) {
    .nb {
        grid-column: 2/2;
        grid-row: 2/2;
        padding-top: 16px;
        padding-left: 32px;
        padding-right: 32px
    }
}

.nc {
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 544px
}

.ne,
.nf {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.nf {
    align-items: flex-start;
    gap: 4px
}

.m5 {
    color: #595671;
    max-width: 544px
}

.m5 a {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.m5 a:hover {
    opacity: .75
}

.ng {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.nh {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
    color: #595671
}

.nh:hover {
    opacity: .75
}

.ni {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #595671
}

.nj {
    max-width: 238px
}

.gy {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--page-width-max);
    margin-left: auto;
    margin-right: auto;
    background-color: #d2e8fc;
    animation-name: gz;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: ease
}

@media(max-width:559px) {
    .gy {
        aspect-ratio: 1.285;
        -webkit-mask: url(../images/mask-mobile.svg) center bottom/cover no-repeat;
        mask: url(../images/mask-mobile.svg) center bottom/cover no-repeat
    }
}

@media(max-width:1199px)and (min-width:560px) {
    .gy {
        aspect-ratio: 1.86;
        -webkit-mask: url(../images/mask-tablet.svg) center bottom/cover no-repeat;
        mask: url(../images/mask-tablet.svg) center bottom/cover no-repeat
    }
}

@media(min-width:1200px) {
    .gy {
        aspect-ratio: 3.2;
        -webkit-mask: url(../images/mask-desktop.svg) center bottom/cover no-repeat;
        mask: url(../images/mask-desktop.svg) center bottom/cover no-repeat
    }
}

@keyframes gz {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.g0 {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%
}

@media(max-width:559px) {
    .g0 {
        object-position: 33% 40%
    }
}

@media(max-width:1199px)and (min-width:560px) {
    .g0 {
        object-position: center 25%
    }
}

@media(min-width:1200px) {
    .g0 {
        object-position: center 40%
    }
}

.re {
    flex-direction: row-reverse
}

.rf {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: space-between;
    position: relative
}

.rg {
    aspect-ratio: 1.7777777778;
    max-width: 100%;
    width: 500px
}

.rh {
    flex-basis: 300px;
    flex-grow: 1
}

.g {
    display: grid;
    grid-gap: 50px;
    gap: 50px;
    padding-top: 50px
}

.g,
.oq {
    position: relative;

}

.oq {
    max-height: 600px;
}

.oq {
    width: 100%;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .oq {
        min-height: 560px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 63px
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .oq {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .oq {
        display: flex;
        height: calc(100vh - var(--header-height))
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .oq {
        min-height: 500px;
        max-height: 580px
    }
}

@media(min-width:1200px) {
    .oq {
        max-height: 600px
    }
}

@media(max-width:1439px)and (min-width:1200px) {
    .oq {
        min-height: 520px
    }
}

@media(min-width:1440px) {
    .oq {
        min-height: 600px
    }
}

.or {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(min-width:744px) {
    .or {
        object-position: center
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .or {
        object-position: 25% center
    }
}

@media(min-width:1200px) {
    .or {
        object-position: center
    }
}

.os,
.os:after {
    height: 100%
}

.os:after {
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

@media(max-width:1439px) {
    .os:after {
        background: linear-gradient(180deg, rgba(81, 61, 61, 0) 38.96%, rgba(81, 61, 61, .3) 90.58%)
    }
}

@media(min-width:1440px) {
    .os:after {
        background: linear-gradient(180deg, rgba(81, 61, 61, 0) 48.96%, rgba(81, 61, 61, .3) 90.58%)
    }
}

@media(max-width:743px) {
    .os {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%
    }
}

@media(min-width:744px) {
    .os {
        position: relative;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start
    }
}

.ot {
    overflow: hidden;
    display: none;
}

@media(max-width:743px) {
    .ot {
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }
}

@media(min-width:744px) {
    .ot {
        position: relative;
        flex: 0 0 0%;
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .ot {
        flex: 0 0 0%
    }
}

@media(min-width:1200px) {
    .ot {
        flex: 0 0 0%
    }
}

.ou {
    position: absolute;
    height: auto
}

@media(max-width:743px) {
    .ou {
        width: 136%;
        bottom: -10vw;
        left: 50%;
        transform: translateX(-50%);
        max-height: 85%;
        display: none;
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .ou {
        right: -5vw;
        bottom: -2vw;
        width: 150%;
        display: none;
    }
}

@media(min-width:1200px) {
    .ou {
        left: -12.25vw;
        top: -5.25vw;
        /*width: 150%;
        max-height: 97%*/
    }
}

.ov {
    display: none;
    position: absolute;
    z-index: 2;
    object-fit: contain;
    object-position: 0 center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out
}

@media(max-width:743px) {
    .ov {
        width: 82%;
        max-width: 300px;
        top: 4vw;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media(min-width:744px) {
    .ov {
        top: 50%;
        transform: translateY(-50%)
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .ov {
        right: .5vw;
        width: 44%;
        max-height: 84%
    }
}

@media(min-width:1200px) {
    .ov {
        right: 2vw;
        width: 42%;
        max-height: 84%
    }
}

.ow {
    z-index: 2;
    color: #383653; /* #fff; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 375px;
}

@media(max-width:743px) {
    .ow {
        position: relative;
        gap: 14px;
        margin-left: auto;
        margin-right: auto;
        max-width: 375px;
    }
}

@media(min-width:744px) {
    .ow {
        position: absolute;
        gap: 10px;
        left: calc(var(--grid-side-gap) + 100px);
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .ow {
        bottom: 183px
    }
}

@media(min-width:1200px) {
    .ow {
        bottom: 183px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .ow {
        width: 50%;
        max-width: 375px
    }
}

@media(min-width:1440px) {
    .ow {
        max-width: 375px
    }
}

@keyframes o0 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, -200)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.ox,
.oy {
    opacity: 0;
    transition: transform 1.2s linear, opacity 1.5s ease-in-out
}

.ox {
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition-delay: .2s
}

@media(min-width:1440px) {
    .ox {
        font-size: 52px;
        line-height: 56px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .ox {
        font-size: 42px;
        line-height: 46px
    }
}

@media(max-width:743px) {
    .ox {
        font-size: 32px;
        line-height: 36px;
        -webkit-line-clamp: 3
    }
}

@media(min-width:744px) {
    .ox {
        -webkit-line-clamp: 5
    }
}

.oz {
    animation-name: o0;
    animation-duration: 2s;
    animation-fill-mode: both
}

.oy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition-delay: .8s
}

@media(max-width:743px) {
    .oy {
        font-size: 16px;
        line-height: 25px;
        font-weight: 700;
        -webkit-line-clamp: 2
    }
}

@media(min-width:744px) {
    .oy {
        font-weight: 700;
        font-size: 16px;
        line-height: 28px;
        -webkit-line-clamp: 4
    }
}

.o1 {
    position: absolute;
    width: 8vw;
    max-width: 180px;
    height: 50vh;
    max-height: 450px;
    border-radius: 380px;
    background: rgba(120, 99, 93, .3);
    filter: blur(92px)
}

@media(max-width:743px) {
    .o1 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media(min-width:744px) {
    .o1 {
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

.fs {
    position: relative;
    max-width: var(--page-width-max);
    margin-left: auto;
    margin-right: auto;
}

@keyframes fw {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.ft {
    height: auto;
    z-index: -1;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .2s;
    transition-timing-function: ease
}

.ft,
.fu {
    width: 100%
}
.fu {
    background-color: #FFFAF2;
}

.fu .swiper-wrapper {
    height: 100%;
    align-items: stretch
}

.fu .swiper-slide,
.fu .swiper-slide article {
    opacity: 0
}

.fu .swiper-slide-active,
.fu .swiper-slide-visible {
    z-index: 1;
    opacity: 1
}

.fu .swiper-slide-active article,
.fu .swiper-slide-visible article {
    opacity: 1
}

.fu .swiper-slide-active h1,
.fu .swiper-slide-active p {
    opacity: 1;
    transform: translate(0)
}

.fu .swiper-slide-active img,
.fu .swiper-slide-active video {
    opacity: 1
}

.fv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    animation-name: fw;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-delay: 1.8s;
    background-color: #FFFAF2;
    position: relative;
    z-index: 1000;
}

@media(max-width:743px) {
    .fv {
        bottom: 13px;
        width: 100%
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .fv {
        bottom: 17px
    }
}

@media(min-width:1200px) {
    .fv {
        bottom: 51px
    }
}

.fx {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

@media(max-width:743px) {
    .fx {
        justify-content: center;
        width: 100%
    }
}

.fy {
    stroke-width: 1.5px
}

.fz {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

@keyframes f2 {
    to {
        stroke-dashoffset: 0
    }
}

.f0 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer
}

.f0,
.f0:before {
    border-radius: 50%
}

.f0:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d8d6f5
}

@media(max-width:743px) {
    .f0:before {
        width: 8px;
        height: 8px
    }
}

@media(min-width:744px) {
    .f0:before {
        width: 16px;
        height: 16px
    }
}

@media(max-width:743px) {
    .f0 {
        width: 14px;
        height: 14px
    }
}

@media(min-width:744px) {
    .f0 {
        width: 30px;
        height: 30px
    }
}

@media(max-width:743px) {
    .f1:before {
        background-color: #d8d6f5
    }
}

@media(min-width:744px) {
    .f1:before {
        background-color: #d8d6f5
    }
}

.f1 .fy {
    fill: none;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    animation: f2 5s linear forwards
}

@media(max-width:743px) {
    .f1 .fy {
        stroke: #fff
    }
}

@media(min-width:744px) {
    .f1 .fy {
        stroke: #d8d6f5
    }
}

.z {
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500
}

.aa,
.z {
    align-items: center;
    display: flex
}

.ab {
    color: #595671
}

.ab a {
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease;
    cursor: pointer
}

.ab a:hover {
    color: #bca37d
}

.ac {
    color: #383653
}

.aa:not(:last-child):after {
    background-color: #595671;
    content: "";
    display: inline-flex;
    height: 1px;
    margin-left: 20px;
    width: 30px
}

.o {
    justify-content: center;
    position: relative;
    padding: 18px 0;
    animation-name: p;
    animation-delay: .2s;
    animation-duration: 1.5s;
    animation-fill-mode: both
}

@keyframes p {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.c9 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 14px;
    text-align: center;
    color: #fff;
    height: 100%
}

@media(max-width:743px) {
    .c9 {
        padding: 29px 22px 36px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .c9 {
        padding: 23px 16px 30px
    }
}

@media(min-width:1280px) {
    .c9 {
        padding: 29px 16px 36px
    }
}

.ea {
    margin-bottom: 9px
}

.eb {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .025em;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1280px) {
    .eb {
        max-width: 245px
    }
}

.ec {
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1280px) {
    .ec {
        max-width: 272px
    }
}

.nz {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: var(--page-width-max);
    margin-left: auto;
    margin-right: auto;
    background-color: #fffaf2;
    overflow: hidden
}

.nz:before {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom
}

.nz:after,
.nz:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none
}

.nz:after {
    bottom: 0;
    background-color: #fff
}

@media(max-width:743px) {
    .nz {
        padding-top: 56px;
        row-gap: 56px
    }

    .nz:before {
        aspect-ratio: 3.364;
        bottom: 85px;
        background-image: url("data:image/svg+xml,%3Csvg width='360' height='107' viewBox='0 0 360 107' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 69.6474C0 69.6474 66.5 0 180 0C293.5 0 360 69.6474 360 69.6474V107H0V69.6474Z' fill='white'/%3E%3C/svg%3E%0A")
    }

    .nz:after {
        height: 87px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .nz {
        padding-top: 60px;
        padding-bottom: 48px;
        row-gap: 60px
    }

    .nz:before {
        aspect-ratio: 4.02;
        bottom: 348px;
        background-image: url("data:image/svg+xml,%3Csvg width='744' height='185' viewBox='0 0 744 185' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120.029C0 120.029 137.433 0.261841 372 0.261841C606.567 0.261841 744 120.029 744 120.029V184.262H0V120.029Z' fill='white'/%3E%3C/svg%3E%0A")
    }

    .nz:after {
        height: 350px
    }
}

@media(min-width:1280px) {
    .nz {
        padding-top: 52px;
        padding-bottom: 56px;
        row-gap: 40px
    }

    .nz:before {
        bottom: -1px;
        aspect-ratio: 7.78;
        background-image: url("data:image/svg+xml,%3Csvg width='1440' height='185' viewBox='0 0 1440 185' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120.029C0 120.029 266 0.261719 720 0.261719C1174 0.261719 1440 120.029 1440 120.029V184.262H0V120.029Z' fill='white'/%3E%3C/svg%3E%0A")
    }
}

@media(min-width:744px) {
    .n0 .n1 {
        animation-name: n2;
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .n0 .n1,
    .n0 .n3 {
        animation-duration: 1.5s
    }

    .n0 .n3 {
        animation-name: n4;
        animation-fill-mode: both;
        animation-delay: .45s
    }

    .n0 .n5 {
        transform: scale(1);
        transition-delay: .15s
    }
}

@keyframes n4 {
    0% {
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes n2 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.n1 {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center
}

@media(min-width:1440px) {
    .n1 {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .n1 {
        opacity: 0
    }
}

.n6 {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .025em;
    letter-spacing: .05em
}

.n6,
.n7 {
    font-weight: 700
}

.n7 {
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

@media(min-width:1440px) {
    .n7 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .n7 {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .n7 {
        font-size: 26px;
        line-height: 30px;
        max-width: 286px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .n7 {
        max-width: 382px
    }
}

@media(min-width:1440px) {
    .n7 {
        max-width: 440px
    }
}

.n8 {
    margin-top: 14px;
    color: #595671
}

@media(max-width:1439px) {
    .n8 {
        max-width: 580px
    }
}

@media(min-width:1440px) {
    .n8 {
        max-width: 687px
    }
}

.n3 {
    position: relative;
    z-index: 1
}

@media(min-width:744px) {
    .n3 {
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .n3 {
        width: 70%
    }
}

@media(min-width:1280px) {
    .n3 {
        width: 66%;
        max-width: 1200px
    }
}

.n9 {
    z-index: 1
}

@media(max-width:743px) {
    .n9 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .n9 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .n9 .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 12px;
        gap: 12px
    }
}

@media(min-width:1280px) {
    .n9 .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 24px;
        gap: 24px
    }
}

.n5 {
    border-radius: 20px;
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease
}

@media(min-width:744px) {
    .n5 {
        transform: scale(.9);
        transform-origin: center
    }
}

.oa {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.oa .n5 {
    background-color: #ffc887
}

.oa svg {
    color: #ffae4e
}

.oa:nth-child(2n) .n5 {
    background-color: #82c3ff
}

.oa:nth-child(2n) svg {
    color: #65a8e8
}

.oa:nth-child(3n) .n5 {
    background-color: #ffb8b8
}

.oa:nth-child(3n) svg {
    color: #ff8a8a
}

@media(max-width:743px) {
    .oa {
        max-width: 316px
    }

    .oa:not(:last-child) {
        margin-right: 16px
    }
}

.ob {
    position: absolute;
    pointer-events: none
}

@media(max-width:743px) {
    .ob {
        display: none
    }
}

.oc {
    aspect-ratio: 1.134;
    z-index: 2
}

@media(max-width:1279px)and (min-width:744px) {
    .oc {
        width: 20%;
        top: -10%;
        right: 5%;
    }
}

@media(min-width:1280px) {
    .oc {
        width: 21.25%;
        top: 0%;
        max-width: 220px
    }
}

@media(max-width:1559px)and (min-width:1280px) {
    .oc {
        right: 5%
    }
}

@media(min-width:1560px) {
    .oc {
        right: 5%
    }
}

.oe {
    aspect-ratio: 1;
    z-index: 1
}

@media(max-width:1279px)and (min-width:744px) {
    .oe {
        width: 30%;
        top: -15%;
        left: 0%;
    }
}

@media(min-width:1280px) {
    .oe {
        width: 32.3%;
        top: -20%;
        max-width: 340px
    }
}

@media(max-width:1559px)and (min-width:1280px) {
    .oe {
        left: 0%
    }
}

@media(min-width:1560px) {
    .oe {
        left: 5%
    }
}

.af {
    position: relative
}

.ag {
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1;
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    transform-origin: center
}

@media(min-width:744px) {
    .ag {
        transform: scale(.95)
    }
}

.mj {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.mj:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e7f3ff;
    pointer-events: none
}

@media(max-width:743px) {
    .mj:before {
        height: 191px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .mj:before {
        height: 198px
    }
}

@media(min-width:1440px) {
    .mj:before {
        height: 280px
    }
}

@media(max-width:743px) {
    .mj {
        padding-top: 50px;
        padding-bottom: 40px;
        row-gap: 42px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .mj {
        padding-top: 50px;
        padding-bottom: 50px;
        row-gap: 50px
    }
}

@media(min-width:1440px) {
    .mj {
        padding-top: 80px;
        padding-bottom: 82px;
        row-gap: 50px
    }
}

@media(min-width:744px) {
    .mk .ml {
        animation-name: mm;
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .mk .ml,
    .mk .mn {
        animation-duration: 1.5s
    }

    .mk .mn {
        animation-name: mo;
        animation-fill-mode: both;
        animation-delay: .65s
    }

    .mk .mp {
        transform: scale(1);
        transition-delay: .2s
    }
}

@keyframes mm {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes mo {
    0% {
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        transform: translateZ(0)
    }
}

.ml {
    display: grid;
    grid-row-gap: 10px;
    row-gap: 10px;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1440px) {
    .ml {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1280px) {
    .ml {
        grid-template-columns: auto 50.5%;
        grid-template-rows: auto auto auto
    }
}

@media(min-width:744px) {
    .ml {
        opacity: 0
    }
}

.mq {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .025em;
    letter-spacing: .05em
}

@media(min-width:1280px) {
    .mq {
        grid-column: 1/2;
        grid-row: 1/2;
        padding-right: 152px
    }
}

.mr {
    font-weight: 700
}

@media(min-width:1440px) {
    .mr {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .mr {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .mr {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 22px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .mr {
        margin-bottom: 30px
    }
}

@media(min-width:1280px) {
    .mr {
        grid-column: 1/2;
        grid-row: 2/-1;
        max-width: 78%
    }
}

.ms {
    font-weight: 700
}

@media(max-width:743px) {
    .ms {
        max-width: 567px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .ms {
        max-width: 81.5%
    }
}

@media(min-width:1280px) {
    .ms {
        grid-column: 2/2;
        grid-row: 2/3;
        max-width: 86%;
        margin-top: 10px
    }
}

.mt {
    color: #595671
}

@media(max-width:743px) {
    .mt {
        margin-top: 6px;
        max-width: 567px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .mt {
        margin-top: 14px;
        max-width: 81.5%
    }
}

@media(min-width:1280px) {
    .mt {
        grid-column: 2/2;
        grid-row: 3/-1;
        max-width: 86%;
        margin-top: 14px
    }
}

.mn {
    z-index: 1;
    width: 100%
}

@media(max-width:1023px) {
    .mn {
        padding-left: var(--grid-side-gap)
    }
}

@media(min-width:1024px) {
    .mn {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: -24px;
        width: calc(100% + 24px)
    }
}

@media(min-width:1024px)and (min-width:1440px) {
    .mn {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1440px) {
    .mn {
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px) {
    .mu {
        padding-right: var(--grid-side-gap)
    }
}

@media(min-width:744px) {
    .mu {
        padding-right: 24px
    }
}

@media(max-width:1023px) {
    .mu {
        width: 324px
    }
}

@media(min-width:1024px) {
    .mu {
        width: 33.33%
    }
}

.nk {
    position: relative;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden
}

@media(min-width:1440px) {
    .nk {
        max-width: var(--page-width-max)
    }
}

.nk:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0;
    transition-property: border-radius;
    transition-duration: 2s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .nk:before {
        background-image: url("data:image/svg+xml,%3Csvg width='360' height='758' viewBox='0 0 360 758' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 59.9684C0 59.9684 81 0 180 0C279 0 360 59.9684 360 59.9684V758H0V59.9684Z' fill='%23FFFAF2'/%3E%3C/svg%3E%0A");
        top: 30px;
        height: 100%
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .nk:before {
        background-image: url("data:image/svg+xml,%3Csvg width='744' height='633' viewBox='0 0 744 633' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.499023 50.2617C0.499023 50.2617 167.674 0.261719 372 0.261719C576.325 0.261719 743.5 50.2617 743.5 50.2617V632.262H0.499023V50.2617Z' fill='%23FFFAF2'/%3E%3C/svg%3E%0A")
    }
}

@media(min-width:1024px) {
    .nk:before {
        background-color: #fffaf2;
        border-radius: 0
    }
}

@media(max-width:743px) {
    .nk {
        padding-top: 30px;
        padding-bottom: 60px
    }
}

@media(min-width:1200px) {
    .nl:before {
        height: calc(100% - 70px)
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .nl:before {
        height: calc(100% - 40px)
    }
}

@media(max-width:743px) {
    .nl .nm {
        width: 45%
    }
}

@media(min-width:744px) {
    .nl .nm {
        display: none
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .nl {
        padding-top: 60px;
        margin-bottom: 99px
    }
}

@media(min-width:1440px) {
    .nl {
        padding-top: 104px;
        margin-bottom: 68px
    }
}

@media(min-width:744px) {
    .nl .nn {
        flex-direction: row
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .nl .nn {
        padding-left: 20px;
        padding-right: 20px;
        column-gap: 5.5vw
    }
}

@media(min-width:744px) {
    .nl .nn {
        align-items: stretch
    }
}

@media(min-width:1200px) {
    .no:before {
        height: calc(100% - 50px)
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .no:before {
        height: 100%
    }
}

@media(max-width:743px) {
    .no .np {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .no {
        padding-top: 60px;
        padding-bottom: 80px
    }
}

@media(min-width:1440px) {
    .no {
        padding-top: 83px;
        margin-bottom: 80px
    }
}

@media(min-width:744px) {
    .no .nn {
        flex-direction: row-reverse
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .no .nn {
        column-gap: 9.4vw
    }
}

.no .nq {
    display: none
}

@media(min-width:1440px) {
    .no .nm {
        width: 35.25%
    }
}

@media(min-width:744px) {
    .nr .nn {
        animation-name: ns;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .2s
    }
}

.nr .nt {
    transform: scale(1)
}

.nr:before {
    border-radius: 50% 50% 0 0/10% 10% 0 0
}

@keyframes ns {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 70)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.nn {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: flex-start
}

@media(max-width:743px) {
    .nn {
        flex-direction: column-reverse;
        gap: 30px
    }
}

@media(min-width:1440px) {
    .nn {
        padding-left: 2.77vw;
        padding-right: 2.77vw;
        column-gap: 7.9vw
    }
}

@media(min-width:744px) {
    .nn {
        opacity: 0
    }
}

.nu {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    flex-grow: 1
}

@media(max-width:1439px)and (min-width:744px) {
    .nu {
        padding-top: 30px
    }
}

@media(min-width:1440px) {
    .nu {
        padding-top: 60px;
        justify-content: space-between;
        height: auto
    }
}

.nv {
    position: relative
}

@media(max-width:743px) {
    .nv {
        width: 73%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .nv {
        flex: 0 0 36.5%
    }
}

@media(min-width:1440px) {
    .nv {
        flex: 0 0 40.8333333333%;
        max-width: 600px
    }
}

.nt {
    aspect-ratio: .85;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transform-origin: center;
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease
}

@media(min-width:744px) {
    .nt {
        transform: scale(.75)
    }
}

.nw {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .025em
}

.np,
.nw {
    font-weight: 700
}

@media(min-width:1440px) {
    .np {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .np {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:743px) {
    .np {
        font-size: 20px;
        line-height: 26px
    }
}

@media(min-width:1440px) {
    .np {
        max-width: 680px
    }
}

.nx {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    margin-top: 22px
}

@media(min-width:1440px) {
    .nx {
        padding-left: 100px
    }
}

.ny {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center 0
}

.nm {
    position: absolute
}

@media(max-width:743px) {
    .nm {
        bottom: 0;
        right: -7.5vw;
        width: 37.5%
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .nm {
        bottom: 0;
        right: -4vw;
        width: 37.5%
    }
}

@media(min-width:1440px) {
    .nm {
        bottom: 12px;
        right: -14%
    }
}

.nq {
    margin-top: 20px
}

@media(max-width:743px) {
    .nq {
        display: none
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .nq {
        width: 52%;
        max-width: 196px
    }
}

@media(min-width:1440px) {
    .nq {
        width: 31.4%;
        max-width: 220px;
        margin-bottom: 22px
    }
}

.jq {
    position: relative;
    transition-property: opacity;
    transition-duration: .5s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .jq {
        padding-top: 26px;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .jq ::-webkit-scrollbar {
        display: none
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .jq {
        padding-top: 26px
    }
}

@media(min-width:1440px) {
    .jq {
        padding-top: 34px
    }
}

.jr {
    position: relative;
    width: 100%;
    padding: 11px 10px 9px;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
    transition-property: border-bottom-color, opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.jr:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #595671;
    transition-property: transform;
    transition-duration: .7s;
    transition-timing-function: ease;
    transform: scale(0)
}

.jr.js {
    pointer-events: none
}

.jr.js:before {
    transform: scale(1)
}

@media(max-width:743px) {
    .jr {
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .025em
    }
}

@media(min-width:744px) {
    .jr {
        font-size: 15px;
        line-height: 24px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .025em
    }
}

.jr:hover {
    opacity: .85
}

.jt {
    display: flex
}

@media(max-width:743px) {
    .jt {
        overflow-x: scroll
    }
}

@media(min-width:1440px) {
    .jt {
        padding-left: 40px;
        padding-right: 40px
    }
}

.ju {
    position: relative
}

.jv {
    display: flex;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .jv {
        padding-top: 20px;
        padding-bottom: 40px;
        gap: 24px;
        flex-direction: column-reverse
    }
}

@media(min-width:744px) {
    .jv {
        flex-direction: row
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .jv {
        padding-top: 40px;
        padding-bottom: 24px;
        gap: 3.2vw
    }
}

@media(min-width:1440px) {
    .jv {
        padding-top: 50px;
        padding-bottom: 60px;
        gap: 4.4vw
    }
}

.jv.jw {
    position: relative;
    opacity: 1;
    z-index: 0
}

.jv.jw .jx,
.jv.jw .jy {
    animation-name: jz;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-timing-function: ease
}

.jv.jw .jx {
    animation-delay: .1s
}

.jv.jw .jy {
    animation-delay: 0ms
}

.j0 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

@media(max-width:743px) {
    .j0 {
        margin-bottom: 27px
    }
}

@media(min-width:744px) {
    .j0 {
        margin-bottom: 35px
    }
}

.j1 {
    width: 55px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cab493;
    background-color: #fff;
    font-weight: 700;
    border: 1px dashed #cab493;
    border-radius: 4px
}

.j2 {
    object-fit: contain;
    object-position: center top;
    width: 36px;
    height: auto
}

.j3 {
    color: #595671;
    max-width: 860px
}

@media(min-width:1280px) {
    .j3 {
        column-count: 2;
        column-gap: 70px;
        padding-right: 3vw
    }
}

.j4 {
    display: flex;
    align-items: self-start;
    gap: 23px;
    overflow: hidden;
    page-break-inside: avoid;
    break-inside: avoid;
    break-inside: avoid-column
}

@media(max-width:743px) {
    .j4:not(:last-child) {
        margin-bottom: 14px
    }
}

@media(min-width:744px) {
    .j4 {
        margin-bottom: 19px
    }
}

.j5 {
    display: inline-block;
    vertical-align: top;
    padding-top: 8px
}

.j6 {
    width: 36px;
    height: auto;
    object-fit: contain;
    object-position: 0 0
}

.jy {
    flex-grow: 1;
    opacity: 0
}

@media(min-width:1440px) {
    .jy {
        padding-left: 40px
    }
}

@media(max-width:743px) {
    .j7 {
        margin: auto;
        width: 100%;
        max-width: 360px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .j7 {
        flex: 0 0 41.67%;
        max-width: 510px
    }
}

@media(min-width:1440px) {
    .j7 {
        flex: 0 0 38.5%;
        max-width: 510px
    }
}

.jx {
    aspect-ratio: 1;
    width: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0;
    transform-origin: center
}

.j8 {
    font-weight: 700;
    margin-bottom: 6px
}

.j9 {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px
}

@media(max-width:743px) {
    .j9 {
        column-gap: 14px
    }
}

@media(min-width:744px) {
    .j9 {
        column-gap: 19px
    }
}

.ka {
    font-weight: 700
}

@media(min-width:1440px) {
    .ka {
        font-size: 52px;
        line-height: 56px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .ka {
        font-size: 42px;
        line-height: 46px
    }
}

@media(max-width:743px) {
    .ka {
        font-size: 32px;
        line-height: 36px
    }
}

.kb {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .025em;
    text-transform: uppercase
}

@media(max-width:743px) {
    .kc {
        margin-bottom: 24px
    }
}

@media(min-width:744px) {
    .kc {
        margin-bottom: 16px
    }
}

@keyframes ke {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes jz {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bp {
    position: relative;
    flex-grow: 1
}

@media(min-width:744px) {
    .bp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px
    }
}

.bq {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 30px 9px;
    border-radius: 34px;
    background-color: #f2f1ff;
    transition-property: background-color;
    transition-duration: .5s;
    transition-timing-function: ease;
    overflow: hidden;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    white-space: nowrap
}

@media(max-width:743px) {
    .bq {
         display: none;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        min-height: 44px
    }
}

@media(min-width:744px) {
    .bq {
        width: auto;
    }
}

.bq:before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -50%;
    left: 0;
    width: 44px;
    aspect-ratio: 1;
    background-color: #d8d6f5;
    border-radius: 50%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease
}

.bq.br,
.bq:before {
    pointer-events: none
}

.bq.br {
    display: block
}

@media(max-width:743px) {
    .bq.br:before {
        transform: scale(30)
    }
}

@media(min-width:744px) {
    .bq.br:before {
        transform: scale(10)
    }
}

.bs {
    z-index: 1
}

.bs,
.f3 {
    position: relative
}

.f3 {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    background-color: #FFFAF2;
}

@media(min-width:1440px) {
    .f3 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .f3 {
        padding-top: 40px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .f3 {
        padding-top: 50px;
        padding-bottom: 30px
    }
}

@media(min-width:1440px) {
    .f3 {
        padding-top: 30px;
        padding-bottom: 30px
    }
}

@media(min-width:744px) {
    .f4 .f5 {
        animation-fill-mode: both;
        animation-delay: 0ms
    }

    .f4 .f5,
    .f4 .f7 {
        animation-name: f6;
        animation-duration: 1.5s
    }

    .f4 .f7 {
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .f4 .f8 {
        transform: translateZ(0);
        transition-delay: .35s
    }
}

.f4 .f9 {
    transform: scale(1);
    transition-delay: .25s
}

@media(min-width:744px) {
    .f8 {
        transform: matrix(1, 0, 0, 1, 0, 70)
    }

    .f8,
    .f9 {
        transition-property: transform;
        transition-duration: 1.5s;
        transition-timing-function: ease
    }

    .f9 {
        transform: scale(.8)
    }
}

@keyframes f6 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.ga {
    z-index: -1;
    opacity: 0
}

.gb {
    display: flex;
    flex-direction: column-reverse
}

.gb .swiper-slide {
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease
}

.gb .swiper-slide article {
    opacity: 0
}

.gb .swiper-slide-active {
    z-index: 0;
    opacity: 1
}

.gb .swiper-slide-active article {
    opacity: 1
}

.gc {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

@media(max-width:743px) {

    .ge,
    .gf {
        width: 44px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #f2f1ff;
        transition-property: opacity;
        transition-duration: .3s;
        transition-timing-function: ease
    }

    .ge:active,
    .ge:focus,
    .ge:hover,
    .gf:active,
    .gf:focus,
    .gf:hover {
        background-color: #d8d6f5
    }

    .ge[disabled],
    .gf[disabled] {
        pointer-events: none;
        opacity: .65
    }
}

@media(min-width:744px) {

    .ge,
    .gf {
        display: none
    }
}

.f5 {
    font-weight: 700;
    text-align: center
}

@media(min-width:1440px) {
    .f5 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .f5 {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .f5 {
        font-size: 26px;
        line-height: 30px
    }
}

@media(min-width:744px) {
    .f5 {
        opacity: 0
    }
}

@media(min-width:1440px) {
    .gg {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(min-width:744px) {
    .f7 {
        opacity: 0
    }
}

.c3 {
    position: relative;
    display: flex
}

@media(max-width:743px) {
    .c3 {
        row-gap: 24px;
        flex-direction: column-reverse
    }
}

@media(min-width:744px) {
    .c3 {
        flex-direction: row
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .c3 {
        column-gap: 40px
    }
}

@media(min-width:1440px) {
    .c3 {
        column-gap: 114px
    }
}

.c4 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #fff
}

@media(max-width:743px) {
    .c4 {
        row-gap: 16px;
        padding-bottom: 24px
    }
}

@media(min-width:744px) {
    .c4 {
        row-gap: 24px;
        padding-top: 24px;
        padding-bottom: 40px
    }
}

.c5,
.c6 {
    opacity: 0;
    transition: transform 1.5s ease, opacity .5s ease-in-out
}

.c5 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    max-width: 780px
}

.c6 {
    max-width: 820px
}

.c7 {
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

@media(max-width:743px) {
    .c7 {
        width: 100%;
        aspect-ratio: 1.635
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .c7 {
        flex: 0 0 37.36%;
        aspect-ratio: 1.3
    }
}

@media(min-width:1440px) {
    .c7 {
        flex: 0 0 41.42%;
        aspect-ratio: 1.291
    }
}

.c8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    border-radius: 16px;
    transition-delay: .1s;
    transform-origin: center;
    transition-property: transform, opacity;
    transition-duration: 2.5s, .5s;
    transition-timing-function: ease
}

.gh {
    position: relative;
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .gh {
        padding-top: 30px;
        padding-bottom: 27px;
        gap: 32px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .gh {
        padding-top: 40px;
        padding-bottom: 77px;
        gap: 24px
    }
}

@media(min-width:1440px) {
    .gh {
        padding-top: 60px;
        padding-bottom: 69px;
        gap: 60px
    }
}

@keyframes gl {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 50)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.gi {
    font-weight: 700
}

@media(min-width:1440px) {
    .gi {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .gi {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .gi {
        font-size: 26px;
        line-height: 30px
    }
}

.gi,
.gj {
    max-width: 356px
}

.gi,
.gj,
.gk {
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.gk {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

@media(min-width:1440px) {
    .gk {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .gk {
        animation-name: gl;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .55s
    }
}

.gm {
    opacity: 0;
    z-index: -1;
    transition-property: opacity;
    transition-duration: 2s;
    transition-timing-function: ease
}

.gn {
    transform: scale(.95);
    transition-delay: .25s
}

.go {
    transition-delay: .65s
}

.go,
.gp {
    transform: matrix(1, 0, 0, 1, 0, 30)
}

.gp {
    transition-delay: .25s
}

@media(min-width:744px) {
    .gq .gr {
        animation-name: gl;
        animation-duration: 2s;
        animation-fill-mode: both
    }
}

.gq .gs {
    opacity: 1
}

.gq .gn {
    transform: scale(1)
}

.gq .go,
.gq .gp {
    transform: translateZ(0)
}

.gr {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1440px) {
    .gr {
        max-width: var(--page-width-max)
    }
}

.gr .swiper-slide-active {
    z-index: 10;
    opacity: 1
}

.gr .swiper-slide-active div,
.gr .swiper-slide-active img,
.gr .swiper-slide-active p,
.gr .swiper-slide-active span,
.gr .swiper-slide-active video {
    opacity: 1
}

@media(min-width:744px) {
    .gr {
        opacity: 0
    }
}

.gt {
    display: flex;
    align-items: center;
    gap: 40px
}

@media(max-width:743px) {
    .gt {
        justify-content: space-between;
        padding-top: 24px;
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

@media(min-width:1440px) {
    .gt {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2
    }
}

@media(min-width:1440px)and (min-width:1440px) {
    .gt {
        max-width: var(--page-width-max)
    }
}

.gu,
.gv,
.gw {
    position: relative
}

.gx {
    display: flex;
    align-items: center
}

@media(max-width:743px) {
    .gx {
        margin-right: -16px
    }
}

.qq {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.qq:hover .qr {
    color: #bca37d
}

.qq .qs {
    transform-origin: center;
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease
}

@media(min-width:744px) {
    .qq .qs {
        transform: scale(.85)
    }
}

.qr {
    font-weight: 700;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease;
    padding: 0 8px 8px
}

.qs {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: .807
}

.qt {
    background-color: transparent
}

.qu {
    border-radius: 16px
}

.qv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 8px
}

.qw {
    position: relative
}

.qx {
    height: 34px
}

.q0,
.qy,
.qz {
    position: relative
}

.q0 {
    z-index: 10;
    background-color: #d2e8fc
}

@media(max-width:743px) {
    .q0 {
        padding-top: 78px;
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
        min-width: 100%;
        height: 100%
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .q0 {
        padding: 64px 122px 36px;
        width: calc(100vw - var(--grid-side-gap)*2);
        max-width: 906px
    }
}

@media(min-width:744px) {
    .q0 {
        border-radius: 10px;
        align-self: center;
        justify-self: center;
        margin: auto
    }
}

@media(min-width:1440px) {
    .q0 {
        padding: 64px 227px 36px
    }
}

.q0:focus {
    outline: none
}

.q0 .qs {
    transform: scale(1)
}

.q1 {
    width: 100%
}

.q1 .qr {
    padding-top: 4px;
    max-width: 436px
}

@media(max-width:743px) {
    .q1 .qt {
        padding-left: 18px;
        padding-right: 18px
    }
}

.q1 .qs {
    object-fit: contain
}

.q1 .qq {
    height: 100%
}

.q2 {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.q2:hover {
    opacity: .75
}

@media(max-width:743px) {
    .q2 {
        top: 16px;
        right: 16px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .q2 {
        top: 24px;
        right: 24px
    }
}

@media(min-width:1440px) {
    .q2 {
        top: 24px;
        right: 29px
    }
}

.q3 {
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: -1
}

.q3 article {
    pointer-events: none;
    opacity: 0
}

.q4 {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.q4 .swiper-slide-active {
    z-index: 0
}

.q4 .swiper-slide-active article {
    opacity: 1
}

.g1 {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #e7f3ff;
    --offset-slide: 16px
}

@media(max-width:743px) {
    .g1 {
        padding-top: 40px;
        padding-bottom: 30px;
        row-gap: 32px
    }
}

@media(min-width:744px) {
    .g1 {
        padding-top: 80px;
        padding-bottom: 80px;
        row-gap: 24px
    }
}

@media(min-width:1440px) {
    .g1 {
        margin-bottom: 40px
    }
}

@media(min-width:744px) {
    .g2 .g3 {
        animation-name: g4;
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .g2 .g3,
    .g2 .g5 {
        animation-duration: 1.5s
    }

    .g2 .g5 {
        animation-name: g6;
        animation-fill-mode: both;
        animation-delay: .45s
    }

    .g2 .g7 img,
    .g2 .g7 video {
        transform: scale(1);
        animation-delay: .15s
    }
}

@keyframes g4 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes g6 {
    0% {
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        transform: translateZ(0)
    }
}

@media(max-width:1439px) {
    .g3 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        max-width: 500px
    }
}

@media(min-width:1440px) {
    .g3 {
        max-width: 460px
    }
}

@media(min-width:744px) {
    .g3 {
        opacity: 0
    }
}

.g5 {
    width: 100%
}

@media(min-width:1440px) {
    .g5 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:1440px)and (min-width:1440px) {
    .g5 {
        max-width: var(--page-width-max)
    }
}

.g8 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px
}

@media(max-width:1439px) {
    .g8 {
        padding-left: var(--grid-side-gap)
    }
}

@media(min-width:1440px) {
    .g8 {
        width: calc(100% + var(--offset-slide));
        margin-right: -16px
    }
}

.g9 {
    cursor: pointer;
    height: auto
}

@media(max-width:743px) {
    .g9 {
        width: 328px;
        padding-right: var(--offset-slide)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .g9 {
        width: 336px;
        padding-right: var(--offset-slide)
    }
}

@media(min-width:1440px) {
    .g9 {
        width: 25%;
        padding-right: var(--offset-slide)
    }
}

.ha {
    position: relative
}

@media(max-width:743px) {
    .ha {
        display: none
    }
}

.hb {
    height: 34px;
    flex-grow: 1
}

.hc {
    display: flex;
    align-items: center
}

@media(max-width:743px) {
    .hc {
        flex-direction: column-reverse;
        row-gap: 24px;
        padding-right: var(--offset-slide)
    }
}

@media(min-width:744px) {
    .hc {
        justify-content: space-between;
        column-gap: 40px;
        height: 48px;
        padding-top: 7px;
        padding-bottom: 7px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .hc {
        padding-right: var(--grid-side-gap)
    }
}

@media(min-width:1440px) {
    .hc {
        padding-right: var(--offset-slide)
    }
}

.he,
.hf {
    position: relative
}

.hg {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    transition-property: color;
    transition-timing-function: ease
}

.hg,
.hg circle {
    transition-duration: .5s
}

.hg circle {
    transition-property: fill;
    transition-timing-function: ease
}

.hg:hover {
    color: #595671
}

.hg:hover circle {
    fill: #bca37d
}

.l5 {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 20px
}

@media(max-width:1279px) {
    .l5 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1279px)and (min-width:1440px) {
    .l5 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .l5 {
        gap: 32px;
        padding-bottom: 32px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .l5 {
        gap: 24px;
        padding-bottom: 32px
    }
}

@media(min-width:1280px) {
    .l5 {
        gap: 56px;
        margin-left: auto;
        margin-right: auto;
        max-width: var(--page-width-max)
    }
}

@keyframes mb {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes mi {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.l6 {
    margin-left: auto;
    margin-right: auto
}

@media(max-width:743px) {
    .l6 {
        padding-top: 4px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .l6 {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 8px;
        max-width: 906px
    }
}

@media(min-width:1280px) {
    .l6 {
        max-width: 62.92%
    }
}

.l7 {
    object-fit: contain;
    object-position: center top;
    width: 100%;
    height: 100%
}

.l8,
.l9 {
    position: relative
}

@media(min-width:744px) {
    .ma {
        animation-name: mb;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .65s
    }

    .mc {
        opacity: 0
    }
}

.mc:first-child {
    animation-delay: 0ms
}

.mc:nth-child(2) {
    animation-delay: .25s
}

.mc:nth-child(3) {
    animation-delay: .5s
}

.mc:nth-child(4) {
    animation-delay: .75s
}

.mc:nth-child(5) {
    animation-delay: 1s
}

.mc:nth-child(6) {
    animation-delay: 1.25s
}

.mc:nth-child(7) {
    animation-delay: 1.5s
}

.mc:nth-child(8) {
    animation-delay: 1.75s
}

.mc:nth-child(9) {
    animation-delay: 2s
}

.mc:nth-child(10) {
    animation-delay: 2.25s
}

.mc:nth-child(11) {
    animation-delay: 2.5s
}

.mc:nth-child(12) {
    animation-delay: 2.75s
}

.mc:nth-child(13) {
    animation-delay: 3s
}

.mc:nth-child(14) {
    animation-delay: 3.25s
}

.mc:nth-child(15) {
    animation-delay: 3.5s
}

.mc:nth-child(16) {
    animation-delay: 3.75s
}

.mc:nth-child(17) {
    animation-delay: 4s
}

.mc:nth-child(18) {
    animation-delay: 4.25s
}

.mc:nth-child(19) {
    animation-delay: 4.5s
}

.mc:nth-child(20) {
    animation-delay: 4.75s
}

.mc:nth-child(21) {
    animation-delay: 5s
}

.mc:nth-child(22) {
    animation-delay: 5.25s
}

.mc:nth-child(23) {
    animation-delay: 5.5s
}

.mc:nth-child(24) {
    animation-delay: 5.75s
}

.mc:nth-child(25) {
    animation-delay: 6s
}

.mc:nth-child(26) {
    animation-delay: 6.25s
}

.mc:nth-child(27) {
    animation-delay: 6.5s
}

.mc:nth-child(28) {
    animation-delay: 6.75s
}

.mc:nth-child(29) {
    animation-delay: 7s
}

.mc:nth-child(30) {
    animation-delay: 7.25s
}

.mc:nth-child(31) {
    animation-delay: 7.5s
}

.mc:nth-child(32) {
    animation-delay: 7.75s
}

.mc:nth-child(33) {
    animation-delay: 8s
}

.mc:nth-child(34) {
    animation-delay: 8.25s
}

.mc:nth-child(35) {
    animation-delay: 8.5s
}

.mc:nth-child(36) {
    animation-delay: 8.75s
}

.mc:nth-child(37) {
    animation-delay: 9s
}

.mc:nth-child(38) {
    animation-delay: 9.25s
}

.mc:nth-child(39) {
    animation-delay: 9.5s
}

.mc:nth-child(40) {
    animation-delay: 9.75s
}

.mc:nth-child(41) {
    animation-delay: 10s
}

.mc:nth-child(42) {
    animation-delay: 10.25s
}

.mc:nth-child(43) {
    animation-delay: 10.5s
}

.mc:nth-child(44) {
    animation-delay: 10.75s
}

.mc:nth-child(45) {
    animation-delay: 11s
}

.mc:nth-child(46) {
    animation-delay: 11.25s
}

.mc:nth-child(47) {
    animation-delay: 11.5s
}

.mc:nth-child(48) {
    animation-delay: 11.75s
}

.mc:nth-child(49) {
    animation-delay: 12s
}

.mc:nth-child(50) {
    animation-delay: 12.25s
}

.mc:nth-child(51) {
    animation-delay: 12.5s
}

.mc:nth-child(52) {
    animation-delay: 12.75s
}

.mc:nth-child(53) {
    animation-delay: 13s
}

.mc:nth-child(54) {
    animation-delay: 13.25s
}

.mc:nth-child(55) {
    animation-delay: 13.5s
}

.mc:nth-child(56) {
    animation-delay: 13.75s
}

.mc:nth-child(57) {
    animation-delay: 14s
}

.mc:nth-child(58) {
    animation-delay: 14.25s
}

.mc:nth-child(59) {
    animation-delay: 14.5s
}

.mc:nth-child(60) {
    animation-delay: 14.75s
}

.mc:nth-child(61) {
    animation-delay: 15s
}

.mc:nth-child(62) {
    animation-delay: 15.25s
}

.mc:nth-child(63) {
    animation-delay: 15.5s
}

.mc:nth-child(64) {
    animation-delay: 15.75s
}

.mc:nth-child(65) {
    animation-delay: 16s
}

.mc:nth-child(66) {
    animation-delay: 16.25s
}

.mc:nth-child(67) {
    animation-delay: 16.5s
}

.mc:nth-child(68) {
    animation-delay: 16.75s
}

.mc:nth-child(69) {
    animation-delay: 17s
}

.mc:nth-child(70) {
    animation-delay: 17.25s
}

.mc:nth-child(71) {
    animation-delay: 17.5s
}

.mc:nth-child(72) {
    animation-delay: 17.75s
}

.mc:nth-child(73) {
    animation-delay: 18s
}

.mc:nth-child(74) {
    animation-delay: 18.25s
}

.mc:nth-child(75) {
    animation-delay: 18.5s
}

.mc:nth-child(76) {
    animation-delay: 18.75s
}

.mc:nth-child(77) {
    animation-delay: 19s
}

.mc:nth-child(78) {
    animation-delay: 19.25s
}

.mc:nth-child(79) {
    animation-delay: 19.5s
}

.mc:nth-child(80) {
    animation-delay: 19.75s
}

.mc:nth-child(81) {
    animation-delay: 20s
}

.mc:nth-child(82) {
    animation-delay: 20.25s
}

.mc:nth-child(83) {
    animation-delay: 20.5s
}

.mc:nth-child(84) {
    animation-delay: 20.75s
}

.mc:nth-child(85) {
    animation-delay: 21s
}

.mc:nth-child(86) {
    animation-delay: 21.25s
}

.mc:nth-child(87) {
    animation-delay: 21.5s
}

.mc:nth-child(88) {
    animation-delay: 21.75s
}

.mc:nth-child(89) {
    animation-delay: 22s
}

.mc:nth-child(90) {
    animation-delay: 22.25s
}

.mc:nth-child(91) {
    animation-delay: 22.5s
}

.mc:nth-child(92) {
    animation-delay: 22.75s
}

.mc:nth-child(93) {
    animation-delay: 23s
}

.mc:nth-child(94) {
    animation-delay: 23.25s
}

.mc:nth-child(95) {
    animation-delay: 23.5s
}

.mc:nth-child(96) {
    animation-delay: 23.75s
}

.mc:nth-child(97) {
    animation-delay: 24s
}

.mc:nth-child(98) {
    animation-delay: 24.25s
}

.mc:nth-child(99) {
    animation-delay: 24.5s
}

.mc:nth-child(100) {
    animation-delay: 24.75s
}

@media(min-width:744px) {
    .me {
        opacity: 0
    }
}

@media(max-width:1279px) {
    .me {
        position: relative
    }
}

@media(min-width:1280px) {
    .me {
        position: absolute
    }
}

.mf {
    aspect-ratio: 1.125
}

@media(max-width:1279px) {
    .mf {
        display: none
    }
}

@media(min-width:1280px) {
    .mf {
        width: 10.56%;
        max-width: 186px;
        top: 154px;
        left: 4.3%
    }
}

.mg {
    aspect-ratio: .72
}

@media(max-width:743px) {
    .mg {
        margin-left: auto;
        margin-right: auto;
        width: 33%;
        max-width: 142px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .mg {
        margin-left: auto;
        margin-right: auto;
        width: 142px
    }
}

@media(min-width:1280px) {
    .mg {
        width: 10.56%;
        max-width: 180px;
        bottom: 0;
        right: 4.3%
    }
}

.mh .mc {
    animation-duration: 1s;
    animation-fill-mode: both
}

.mh .mc,
.mh .me {
    animation-name: mb
}

.mh .me {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-delay: .15s
}

.of {
    position: relative
}

.of:after,
.of:before {
    content: "";
    position: absolute;
    z-index: 0;
    height: auto;
    background: hsla(4, 100%, 76%, .2);
    filter: blur(127px);
    border-radius: 50%
}

.of:before {
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:743px) {
    .of:before {
        aspect-ratio: .41;
        width: 50%;
        left: 0
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .of:before {
        left: 162px;
        width: 326px;
        aspect-ratio: .42
    }
}

@media(min-width:1280px) {
    .of:before {
        left: 459px;
        aspect-ratio: 1;
        width: 440px
    }
}

.of:after {
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:743px) {
    .of:after {
        aspect-ratio: .412;
        width: 57%;
        right: 0
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .of:after {
        right: 12px;
        width: 326px;
        aspect-ratio: .42
    }
}

@media(min-width:1280px) {
    .of:after {
        right: 109px;
        aspect-ratio: 1;
        width: 500px
    }
}

@media(max-width:743px) {
    .of {
        padding-top: 40px;
        padding-bottom: 24px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .of {
        padding-top: 24px;
        padding-right: 36px
    }
}

@media(min-width:1280px) {
    .of {
        padding-top: 32px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        max-width: 2000px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:744px) {
    .of {
        opacity: 0
    }

    .og {
        animation-name: oh;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .1s
    }
}

@keyframes oh {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(max-width:743px) {
    .oi {
        position: relative;
        margin-bottom: 16px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .oi {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .oi {
        position: absolute
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .oi {
        top: 24px;
        left: 12px;
        width: 46.7%;
        max-width: 348px
    }
}

@media(min-width:1280px) {
    .oi {
        top: 32px;
        left: var(--grid-side-gap);
        width: 38.13%;
        max-width: 550px
    }
}

.oj {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1
}

.oj,
.ok {
    border-radius: 16px
}

.ok {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 100%;
    background-color: #fff
}

@media(max-width:743px) {
    .ok {
        padding: 50px 16px 24px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .ok {
        margin-top: 214px;
        padding: 50px 40px 68px;
        width: calc(100% - 186px);
        gap: 26px
    }
}

@media(max-width:1439px)and (min-width:1280px) {
    .ok {
        width: 69%
    }
}

@media(max-width:1599px)and (min-width:1440px) {
    .ok {
        width: 67%
    }
}

@media(min-width:1600px) {
    .ok {
        width: 74.7%
    }
}

@media(min-width:1280px) {
    .ok {
        margin-top: 60px;
        padding: 70px 72px 88px;
        gap: 26px
    }
}

.ol {
    width: 100%;
    font-weight: 700
}

@media(max-width:743px) {
    .ol {
        margin-bottom: 16px
    }
}

@media(max-width:1279px) {
    .ol {
        font-size: 24px;
        line-height: 30px
    }
}

@media(min-width:1280px) {
    .ol {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:743px) {
    .om {
        border-top: 1px solid rgba(56, 54, 83, .25);
        padding-top: 40px
    }
}

.on {
    position: absolute;
    aspect-ratio: 1.135;
    object-fit: contain;
    object-position: center 0
}

@media(max-width:743px) {
    .on {
        display: none
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .on {
        width: 154px;
        left: -174px;
        top: 146px
    }
}

@media(min-width:1280px) {
    .on {
        width: 168px;
        left: -178px;
        top: 540px
    }
}

@media(min-width:744px) {
    .oo {
        opacity: 0
    }
}

.oo:first-child {
    animation-delay: 0ms
}

.oo:nth-child(2) {
    animation-delay: .25s
}

.oo:nth-child(3) {
    animation-delay: .5s
}

.oo:nth-child(4) {
    animation-delay: .75s
}

.oo:nth-child(5) {
    animation-delay: 1s
}

.oo:nth-child(6) {
    animation-delay: 1.25s
}

.oo:nth-child(7) {
    animation-delay: 1.5s
}

.oo:nth-child(8) {
    animation-delay: 1.75s
}

.oo:nth-child(9) {
    animation-delay: 2s
}

.oo:nth-child(10) {
    animation-delay: 2.25s
}

.oo:nth-child(11) {
    animation-delay: 2.5s
}

.oo:nth-child(12) {
    animation-delay: 2.75s
}

.oo:nth-child(13) {
    animation-delay: 3s
}

.oo:nth-child(14) {
    animation-delay: 3.25s
}

.oo:nth-child(15) {
    animation-delay: 3.5s
}

.oo:nth-child(16) {
    animation-delay: 3.75s
}

.oo:nth-child(17) {
    animation-delay: 4s
}

.oo:nth-child(18) {
    animation-delay: 4.25s
}

.oo:nth-child(19) {
    animation-delay: 4.5s
}

.oo:nth-child(20) {
    animation-delay: 4.75s
}

.oo:nth-child(21) {
    animation-delay: 5s
}

.oo:nth-child(22) {
    animation-delay: 5.25s
}

.oo:nth-child(23) {
    animation-delay: 5.5s
}

.oo:nth-child(24) {
    animation-delay: 5.75s
}

.oo:nth-child(25) {
    animation-delay: 6s
}

.oo:nth-child(26) {
    animation-delay: 6.25s
}

.oo:nth-child(27) {
    animation-delay: 6.5s
}

.oo:nth-child(28) {
    animation-delay: 6.75s
}

.oo:nth-child(29) {
    animation-delay: 7s
}

.oo:nth-child(30) {
    animation-delay: 7.25s
}

.oo:nth-child(31) {
    animation-delay: 7.5s
}

.oo:nth-child(32) {
    animation-delay: 7.75s
}

.oo:nth-child(33) {
    animation-delay: 8s
}

.oo:nth-child(34) {
    animation-delay: 8.25s
}

.oo:nth-child(35) {
    animation-delay: 8.5s
}

.oo:nth-child(36) {
    animation-delay: 8.75s
}

.oo:nth-child(37) {
    animation-delay: 9s
}

.oo:nth-child(38) {
    animation-delay: 9.25s
}

.oo:nth-child(39) {
    animation-delay: 9.5s
}

.oo:nth-child(40) {
    animation-delay: 9.75s
}

.oo:nth-child(41) {
    animation-delay: 10s
}

.oo:nth-child(42) {
    animation-delay: 10.25s
}

.oo:nth-child(43) {
    animation-delay: 10.5s
}

.oo:nth-child(44) {
    animation-delay: 10.75s
}

.oo:nth-child(45) {
    animation-delay: 11s
}

.oo:nth-child(46) {
    animation-delay: 11.25s
}

.oo:nth-child(47) {
    animation-delay: 11.5s
}

.oo:nth-child(48) {
    animation-delay: 11.75s
}

.oo:nth-child(49) {
    animation-delay: 12s
}

.oo:nth-child(50) {
    animation-delay: 12.25s
}

.oo:nth-child(51) {
    animation-delay: 12.5s
}

.oo:nth-child(52) {
    animation-delay: 12.75s
}

.oo:nth-child(53) {
    animation-delay: 13s
}

.oo:nth-child(54) {
    animation-delay: 13.25s
}

.oo:nth-child(55) {
    animation-delay: 13.5s
}

.oo:nth-child(56) {
    animation-delay: 13.75s
}

.oo:nth-child(57) {
    animation-delay: 14s
}

.oo:nth-child(58) {
    animation-delay: 14.25s
}

.oo:nth-child(59) {
    animation-delay: 14.5s
}

.oo:nth-child(60) {
    animation-delay: 14.75s
}

.oo:nth-child(61) {
    animation-delay: 15s
}

.oo:nth-child(62) {
    animation-delay: 15.25s
}

.oo:nth-child(63) {
    animation-delay: 15.5s
}

.oo:nth-child(64) {
    animation-delay: 15.75s
}

.oo:nth-child(65) {
    animation-delay: 16s
}

.oo:nth-child(66) {
    animation-delay: 16.25s
}

.oo:nth-child(67) {
    animation-delay: 16.5s
}

.oo:nth-child(68) {
    animation-delay: 16.75s
}

.oo:nth-child(69) {
    animation-delay: 17s
}

.oo:nth-child(70) {
    animation-delay: 17.25s
}

.oo:nth-child(71) {
    animation-delay: 17.5s
}

.oo:nth-child(72) {
    animation-delay: 17.75s
}

.oo:nth-child(73) {
    animation-delay: 18s
}

.oo:nth-child(74) {
    animation-delay: 18.25s
}

.oo:nth-child(75) {
    animation-delay: 18.5s
}

.oo:nth-child(76) {
    animation-delay: 18.75s
}

.oo:nth-child(77) {
    animation-delay: 19s
}

.oo:nth-child(78) {
    animation-delay: 19.25s
}

.oo:nth-child(79) {
    animation-delay: 19.5s
}

.oo:nth-child(80) {
    animation-delay: 19.75s
}

.oo:nth-child(81) {
    animation-delay: 20s
}

.oo:nth-child(82) {
    animation-delay: 20.25s
}

.oo:nth-child(83) {
    animation-delay: 20.5s
}

.oo:nth-child(84) {
    animation-delay: 20.75s
}

.oo:nth-child(85) {
    animation-delay: 21s
}

.oo:nth-child(86) {
    animation-delay: 21.25s
}

.oo:nth-child(87) {
    animation-delay: 21.5s
}

.oo:nth-child(88) {
    animation-delay: 21.75s
}

.oo:nth-child(89) {
    animation-delay: 22s
}

.oo:nth-child(90) {
    animation-delay: 22.25s
}

.oo:nth-child(91) {
    animation-delay: 22.5s
}

.oo:nth-child(92) {
    animation-delay: 22.75s
}

.oo:nth-child(93) {
    animation-delay: 23s
}

.oo:nth-child(94) {
    animation-delay: 23.25s
}

.oo:nth-child(95) {
    animation-delay: 23.5s
}

.oo:nth-child(96) {
    animation-delay: 23.75s
}

.oo:nth-child(97) {
    animation-delay: 24s
}

.oo:nth-child(98) {
    animation-delay: 24.25s
}

.oo:nth-child(99) {
    animation-delay: 24.5s
}

.oo:nth-child(100) {
    animation-delay: 24.75s
}

.op .oo {
    animation-duration: 1s;
    animation-fill-mode: both
}

.op .oi,
.op .oo {
    animation-name: oh
}

.op .oi {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-delay: .15s
}

.sn {
    position: relative;
    font-size: 0;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.sn:hover {
    opacity: .75
}

.so {
    aspect-ratio: 1.73;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.sp {
    position: absolute;
    inset: 0
}

.ri {
    position: relative
}

@media(max-width:743px) {
    .rj {
        width: 100%;
        border-bottom: 1px solid #eee
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .rj {
        width: 33%;
        max-width: 333px
    }
}

@media(min-width:1280px) {
    .rj {
        width: 25%;
        max-width: 350px
    }
}

.rk {
    position: relative
}

.rk .swiper-wrapper {
    transition-timing-function: linear !important
}

@media(min-width:744px) {
    .rk .swiper-wrapper {
        width: calc(100% + 1000px)
    }
}

.kt {
    position: relative;
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .kt {
        gap: 24px
    }
}

@media(min-width:744px) {
    .kt {
        gap: 40px
    }
}

@media(max-width:743px) {
    .ku {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .ku {
        padding-top: 70px;
        padding-bottom: 50px
    }
}

@media(min-width:1440px) {
    .ku {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

@media(max-width:743px) {
    .ku .kv {
        display: block
    }
}

@media(min-width:744px) {
    .ku .kv {
        display: none
    }
}

@media(max-width:743px) {
    .ku .kw {
        display: none
    }

    .kx {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .kx {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

@media(min-width:1440px) {
    .kx {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

@media(min-width:744px) {
    .kx .ky {
        animation-fill-mode: both;
        animation-delay: .55s
    }

    .k0 .k1,
    .kx .ky {
        animation-name: kz;
        animation-duration: 1.5s
    }

    .k0 .k1 {
        animation-fill-mode: both;
        animation-delay: .15s
    }
}

@keyframes kz {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(max-width:743px) {
    .k2 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .k2 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .k2:last-child:after {
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        pointer-events: none;
        background-color: #fff
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .k2:first-child {
        border-bottom: 1px solid #eee
    }
}

@media(min-width:1440px) {
    .k2:first-child {
        border-top: 1px solid #eee
    }

    .k2:first-child,
    .k2:nth-child(2) {
        border-bottom: 1px solid #eee
    }
}

.k3 {
    overflow: hidden
}

@media(min-width:744px) {
    .k3 {
        opacity: 0
    }

    .k4 {
        animation-name: kz;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .k1 {
        opacity: 0
    }
}

@media(max-width:1439px) {
    .ky {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 457px
    }
}

@media(max-width:1439px)and (min-width:1440px) {
    .ky {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1440px) {
    .ky {
        max-width: 457px
    }
}

.k5,
.kw {
    position: relative
}

.k5 {
    display: grid;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}

@media(min-width:1440px) {
    .k5 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:559px) {
    .k5 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:743px)and (min-width:560px) {
    .k5 {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))
    }
}

@media(max-width:1199px)and (min-width:744px) {
    .k5 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:1439px)and (min-width:1200px) {
    .k5 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

@media(min-width:1440px) {
    .k5 {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

.h2 {
    position: relative;
    display: flex;
    flex-direction: column;
    --offset-slide-laptop: 24px;
    --offset-slide-tablet: 16px
}

@media(max-width:743px) {
    .h2 {
        padding-top: 40px;
        padding-bottom: 40px;
        row-gap: 24px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .h2 {
        padding-top: 40px;
        padding-bottom: 40px;
        row-gap: 40px
    }
}

@media(min-width:1440px) {
    .h2 {
        padding-top: 80px;
        padding-bottom: 60px;
        row-gap: 24px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:1440px)and (min-width:1440px) {
    .h2 {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {

    .h3 .h4,
    .h3 .h5 {
        animation-name: h6;
        animation-duration: 1.5s;
        animation-fill-mode: both
    }

    .h3 .h4 {
        animation-delay: .1s
    }

    .h3 .h5 {
        animation-delay: .3s
    }

    .h3 .h7 {
        transform: scale(1)
    }
}

.h7 {
    transform-origin: center;
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    animation-delay: .3s;
    border-radius: 16px
}

@media(min-width:744px) {
    .h7 {
        transform: scale(.85)
    }
}

@keyframes h6 {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(min-width:744px) {

    .h4,
    .h5 {
        opacity: 0
    }
}

@media(max-width:743px) {
    .h4 {
        max-width: 500px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .h4 {
        max-width: 600px
    }
}

@media(max-width:1439px) {
    .h4 {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1439px)and (min-width:1440px) {
    .h4 {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1440px) {
    .h4 {
        max-width: 680px
    }
}

.h8 {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px
}

@media(max-width:743px) {
    .h8 {
        padding-left: var(--grid-side-gap)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .h8 {
        padding-left: var(--grid-side-gap);
        padding-right: 8px
    }
}

@media(min-width:1440px) {
    .h8 .swiper-wrapper {
        margin-right: -24px;
        width: calc(100% + var(--offset-slide-laptop))
    }
}

@media(max-width:743px) {
    .h9 {
        padding-right: var(--offset-slide-tablet);
        width: 100%;
        max-width: 332px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .h9 {
        padding-right: var(--offset-slide-tablet);
        width: 49%;
        max-width: 426px
    }
}

@media(min-width:1440px) {
    .h9 {
        width: 33.333333%;
        padding-right: var(--offset-slide-laptop)
    }
}

.ia {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

@media(max-width:743px) {
    .ia {
        margin-left: -16px;
        padding-right: var(--grid-side-gap)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .ia {
        padding-right: var(--offset-slide-tablet)
    }
}

.ib,
.ic {
    position: relative
}

@media(max-width:743px) {
    .ie {
        display: none
    }
}

.if {
    flex-grow: 1;
    height: 34px
}

.if,
.k6 {
    position: relative
}

.k6 {
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column
}

@media(min-width:1440px) {
    .k6 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .k6 {
        padding-top: 40px;
        padding-bottom: 56px;
        row-gap: 30px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .k6 {
        padding-top: 50px;
        padding-bottom: 66px;
        row-gap: 36px
    }
}

@media(min-width:1440px) {
    .k6 {
        padding-top: 80px;
        row-gap: 64px
    }
}

@media(min-width:744px) {
    .k7 .k8 {
        animation-fill-mode: both;
        animation-delay: .15s
    }

    .k7 .k8,
    .k7 .la,
    .k7 .lb {
        animation-name: k9;
        animation-duration: 1s
    }

    .k7 .la,
    .k7 .lb {
        animation-fill-mode: both
    }

    .k7 .la {
        animation-delay: .25s
    }

    .k7 .lb {
        animation-delay: .45s
    }
}

@keyframes k9 {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 30)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.lc {
    display: flex
}

@media(max-width:1023px) {
    .lc {
        flex-direction: column
    }
}

@media(min-width:1024px) {
    .lc {
        flex-direction: row
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .lc {
        gap: 2.34vw
    }
}

@media(min-width:1440px) {
    .lc {
        gap: 66px
    }
}

@media(min-width:744px) {

    .la,
    .lb {
        opacity: 0
    }
}

@media(min-width:1024px) {
    .la {
        flex: 0 0 48%;
        max-width: 720px
    }
}

.lb {
    flex-grow: 1
}

.k8 {
    max-width: 457px
}

@media(min-width:744px) {
    .k8 {
        opacity: 0
    }
}

.le {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px
}

@media(max-width:743px) {
    .le {
        aspect-ratio: 1.56
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .le {
        aspect-ratio: 1.68
    }
}

@media(min-width:1440px) {
    .le {
        aspect-ratio: 1.56
    }
}

.lf {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition-property: transform;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    transform-origin: center
}

.lg:hover .lh,
.lg:hover .li,
.lg:hover .lj {
    color: #bca37d
}

.lk {
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .lk {
        padding: 12px 8px 24px;
        border-bottom: 1px solid #eee
    }
}

@media(min-width:744px) {
    .lk {
        gap: 2px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .lk {
        padding: 12px 16px 30px
    }
}

@media(min-width:1440px) {
    .lk {
        padding: 12px 16px 18px
    }
}

.lh,
.li,
.lj {
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease
}

@media(max-width:743px) {
    .lh {
        margin-top: 6px;
        font-weight: 700;
        font-size: 22px;
        line-height: 28px
    }
}

@media(min-width:744px) {
    .lh {
        font-weight: 700
    }
}

@media(min-width:744px)and (min-width:1440px) {
    .lh {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(min-width:744px)and (max-width:1439px)and (min-width:744px) {
    .lh {
        font-size: 24px;
        line-height: 30px
    }
}

@media(min-width:744px)and (max-width:743px) {
    .lh {
        font-size: 20px;
        line-height: 26px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .lh {
        margin-top: 4px
    }
}

.lj {
    margin-top: 6px
}

.li {
    color: #595671
}

.ll {
    display: flex;
    flex-direction: column
}

.lm:not(:last-child) {
    border-bottom: 1px solid #eee
}

@media(max-width:743px) {
    .lm {
        padding: 22px 8px 26px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .lm {
        padding: 22px 16px 26px
    }
}

@media(min-width:1440px) {
    .lm:first-child {
        padding: 12px 16px 26px
    }

    .lm:not(:first-child) {
        padding: 22px 16px 26px
    }
}

.ln {
    display: inline-block;
    vertical-align: top;
    margin-top: 16px
}

@media(max-width:743px) {
    .ln {
        padding-left: 8px
    }
}

@media(min-width:744px) {
    .ln {
        padding-left: 16px
    }
}

.qm {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.qn {
    object-fit: contain;
    object-position: 0 0;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    margin-bottom: 6px
}

@media(max-width:1439px) {
    .qn {
        max-width: 40px
    }
}

@media(min-width:1440px) {
    .qn {
        max-width: 60px
    }
}

.qo {
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 260px
}

.qp {
    color: #595671
}

@media(min-width:1440px) {
    .qp {
        max-width: 320px
    }
}

.lo {
    position: relative
}

@media(max-width:743px) {
    .lo {
        padding-top: 40px;
        padding-bottom: 56px
    }
}

@media(min-width:744px) {
    .lo {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:744px)and (min-width:1440px) {
    .lo {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .lo {
        padding-top: 34px;
        padding-bottom: 72px
    }
}

@media(max-width:1279px) {
    .lo {
        overflow: hidden
    }
}

@media(min-width:1440px) {
    .lo {
        padding-top: 52px;
        padding-bottom: 100px;
    }
}

@media(min-width:744px) {

    .lp .lq,
    .lp .ls {
        animation-name: lr;
        animation-duration: 1s;
        animation-fill-mode: both
    }
}

@keyframes lr {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.lt {
    position: relative;
    z-index: 1
}

.lq {
    font-size: 22px;
    line-height: 28px
}

@media(max-width:743px) {
    .lq {
        margin-bottom: 30px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .lq {
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .lq {
        margin-bottom: 40px
    }
}

@media(max-width:1439px) {
    .lq {
        text-align: center
    }
}

@media(min-width:1440px) {
    .lq {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(min-width:744px) {
    .lq {
        opacity: 0
    }
}

.lu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    max-width: 1920px;
    margin: auto
}

.lu,
.lv {
    position: absolute
}

.lv {
    display: inline-block;
    vertical-align: top;
    height: 50%;
    filter: blur(8vw);
    opacity: .1;
    border-radius: 50%
}

.lw,
.lx,
.ly {
    top: 80px
}

@media(max-width:1439px) {

    .l0,
    .l1,
    .lz {
        bottom: 0
    }
}

@media(min-width:1440px) {

    .l0,
    .l1,
    .lz {
        bottom: 118px
    }
}

.lw {
    left: 0;
    width: 26.67%
}

.lx {
    left: 50%;
    transform: translateX(-50%)
}

.lx,
.ly {
    width: 38%
}

.ly {
    right: 0
}

.lz {
    left: 0
}

.l0,
.lz {
    width: 38%
}

.l0 {
    left: 50%;
    transform: translateX(-50%)
}

.l1 {
    right: 0;
    width: 38%
}

.l2 {
    position: absolute;
    z-index: 0
}

@media(max-width:743px) {
    .l2 {
        width: 130%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

@media(max-width:1023px)and (min-width:744px) {
    .l2 {
        width: 176%;
        top: 50%
    }
}

@media(max-width:1439px)and (min-width:1024px) {
    .l2 {
        width: 100%;
        top: 46%
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .l2 {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

@media(min-width:1440px) {
    .l2 {
        top: 50%;
        right: 0;
        transform: translateY(-50%)
    }
}

@media(max-width:1679px)and (min-width:1440px) {
    .l2 {
        width: 130%
    }
}

@media(min-width:1680px) {
    .l2 {
        width: 110%
    }
}

.l3 {
    width: 100%;
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .l3 {
        padding-left: var(--grid-side-gap);
        gap: 24px
    }
}

@media(min-width:744px) {
    .l3 .swiper-wrapper {
        display: grid;
        grid-gap: 16px;
        gap: 16px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .l3 .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(min-width:1440px) {
    .l3 .swiper-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

.ls {
    background-color: #fff;
    border-radius: 20px;
    padding: 26px 32px 36px
}

@media(min-width:744px) {
    .ls {
        opacity: 0
    }
}

@media(max-width:743px) {
    .ls {
        margin-right: 16px;
        max-width: 313px;
        height: auto
    }
}

.ls:first-child {
    animation-delay: 0ms
}

.ls:nth-child(2) {
    animation-delay: .25s
}

.ls:nth-child(3) {
    animation-delay: .5s
}

.ls:nth-child(4) {
    animation-delay: .75s
}

.ls:nth-child(5) {
    animation-delay: 1s
}

.ls:nth-child(6) {
    animation-delay: 1.25s
}

.ls:nth-child(7) {
    animation-delay: 1.5s
}

.ls:nth-child(8) {
    animation-delay: 1.75s
}

.ls:nth-child(9) {
    animation-delay: 2s
}

.ls:nth-child(10) {
    animation-delay: 2.25s
}

.ls:nth-child(11) {
    animation-delay: 2.5s
}

.ls:nth-child(12) {
    animation-delay: 2.75s
}

.ls:nth-child(13) {
    animation-delay: 3s
}

.ls:nth-child(14) {
    animation-delay: 3.25s
}

.ls:nth-child(15) {
    animation-delay: 3.5s
}

.ls:nth-child(16) {
    animation-delay: 3.75s
}

.ls:nth-child(17) {
    animation-delay: 4s
}

.ls:nth-child(18) {
    animation-delay: 4.25s
}

.ls:nth-child(19) {
    animation-delay: 4.5s
}

.ls:nth-child(20) {
    animation-delay: 4.75s
}

.l4 {
    position: relative
}

@media(max-width:743px) {
    .l4 {
        padding-right: var(--grid-side-gap);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px
    }

    .l4 .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #b1d8ff;
        transition-property: background-color;
        transition-duration: .3s;
        transition-timing-function: ease
    }

    .l4 .swiper-pagination-bullet-active {
        background-color: #82c3ff
    }
}

@media(min-width:744px) {
    .l4 {
        display: none
    }
}

.iq {
    position: relative;
    --media-width: 595px
}

@media(max-width:1439px)and (min-width:744px) {
    .iq {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1439px)and (min-width:744px)and (min-width:1440px) {
    .iq {
        max-width: var(--page-width-max)
    }
}

@media(min-width:1440px) {
    .iq {
        max-width: var(--page-width-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: .76vw;
        padding-right: .76vw
    }
}

@media(min-width:744px) {
    .iq {
        opacity: 0
    }

    .ir {
        animation-name: is;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: 0ms
    }
}

@keyframes is {
    0% {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 20)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.it {
    display: flex;
}

@media(max-width:743px) {
    .it {
        padding-bottom: 20px
    }
}

@media(max-width:1439px) {
    .it {
        flex-direction: column
    }
}

@media(min-width:1440px) {
    .it {
        flex-direction: row
    }
}

.iu {
    font-weight: 700
}

@media(min-width:1440px) {
    .iu {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .iu {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:743px) {
    .iu {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 16px
    }
}

@media(min-width:744px) {
    .iu {
        margin-bottom: 28px;
        max-width: 660px
    }
}

@media(max-width:743px) {
    .iv {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        margin-bottom: 32px
    }
}

@media(min-width:744px) {
    .iv {
        font-weight: 500;
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 34px
    }
}

@media(min-width:1440px) {
    .iv {
        margin-left: 4.16vw;
        max-width: 860px
    }
}

.iw {
    display: grid;
    grid-column-gap: 29px;
    column-gap: 29px;
    border-top: 1px solid rgba(112, 128, 170, .2)
}

@media(max-width:743px) {
    .iw {
        padding-top: 36px;
        row-gap: 16px;
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

@media(min-width:744px) {
    .iw {
        padding-top: 38px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px
    }
}

.ix {
    display: flex;
    gap: 24px
}

.iy {
    object-fit: contain;
    object-position: 0 0;
    max-width: 44px;
    max-height: 50px
}

.iz {
    color: #595671
}

@media(max-width:743px) {
    .iz {
        max-width: 460px
    }

    .i0 {
        padding: 40px 16px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .i0 {
        padding: 40px
    }
}

@media(min-width:1440px) {
    .i0 {
        padding: 60px 64px 40px 86px;
        min-height: 520px;
        flex-grow: 1;
        max-width: calc(100% - var(--media-width))
    }
}

.i1 {
    position: relative
}

@media(max-width:743px) {
    .i1 {
        max-width: 560px;
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin: 0 auto
    }
}

@media(max-width:743px)and (min-width:1440px) {
    .i1 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .i1 {
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
        aspect-ratio: 1.3;
        padding-left: 70px;
        padding-right: 70px
    }
}

@media(min-width:1440px) {
    .i1 {
        flex: 0 0 42%;
        max-width: var(--media-width);
        aspect-ratio: 1.01
    }
}

.i2 {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%
}

.q9 {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.q9,
.ra {
    display: flex
}

.ra {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 10px
}

.rb {
    font-weight: 700;
    color: #323232;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

@media(max-width:743px) {
    .rb {
        font-size: 24px;
        line-height: 30px;
        max-width: 256px
    }
}

@media(min-width:744px) {
    .rb {
        font-weight: 700;
        max-width: 320px
    }
}

@media(min-width:744px)and (min-width:1440px) {
    .rb {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(min-width:744px)and (max-width:1439px)and (min-width:744px) {
    .rb {
        font-size: 24px;
        line-height: 30px
    }
}

@media(min-width:744px)and (max-width:743px) {
    .rb {
        font-size: 20px;
        line-height: 26px
    }
}

.o2 {
    position: relative;
    padding-left: var(--grid-side-gap);
    padding-right: var(--grid-side-gap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    padding-bottom: 60px
}

@media(min-width:1440px) {
    .o2 {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .o2 {
        padding-top: 20px
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .o2 {
        padding-top: 50px
    }
}

@media(max-width:1279px) {
    .o2 {
        flex-direction: column;
        gap: 40px
    }
}

@media(min-width:1280px) {
    .o2 {
        flex-direction: row;
        gap: 7.2vw;
        padding-top: 60px
    }
}

@media(min-width:744px) {

    .o3 .o4,
    .o3 .o5,
    .o3 .o6 {
        animation-name: o7;
        animation-duration: 1.5s;
        animation-fill-mode: both
    }

    .o3 .o4 {
        animation-delay: 0ms
    }

    .o3 .o5 {
        animation-delay: .3s
    }
}

@keyframes o7 {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.o8 {
    width: 100%
}

@media(max-width:743px) {
    .o8 {
        padding-left: 20px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .o8 {
        padding-left: 30px
    }
}

@media(max-width:1279px) {
    .o8 .swiper-wrapper {
        align-items: stretch
    }
}

@media(min-width:1280px) {
    .o8 .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

@media(max-width:1279px) {
    .o9 {
        width: 100%;
        height: auto
    }

    .o9:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, .1);
        margin-right: 24px
    }
}

@media(max-width:743px) {
    .o9 {
        max-width: 286px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .o9 {
        max-width: 325px
    }
}

@media(min-width:1280px) {
    .o9:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }
}

.o4 {
    flex-grow: 1
}

@media(max-width:1279px) {
    .o4 {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto
    }
}

.o5 {
    background-color: #faf8f6;
    border-radius: 16px
}

@media(max-width:743px) {
    .o5 {
        padding: 30px 0
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .o5 {
        padding: 40px 0
    }
}

@media(max-width:1279px) {
    .o5 {
        width: 100%
    }
}

@media(min-width:1280px) {
    .o5 {
        flex: 0 0 30%;
        padding: 40px 30px 32px;
        position: -webkit-sticky;
        position: sticky;
        top: 100px
    }
}

.pa {
    font-weight: 700
}

@media(max-width:743px) {
    .pa {
        margin-bottom: 30px;
        font-size: 24px;
        line-height: 30px;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .pa {
        margin-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(min-width:1280px) {
    .pa {
        margin-bottom: 8px;
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

.pb {
    object-fit: contain;
    aspect-ratio: 1.125
}

@media(max-width:1279px) {
    .pb {
        display: none
    }
}

@media(min-width:1280px) {
    .pb {
        z-index: 2;
        position: absolute;
        right: 10px;
        width: 39%;
        max-width: 185px
    }
}

@media(max-width:1599px)and (min-width:1440px) {
    .pb {
        bottom: -97px
    }
}

@media(min-width:1600px) {
    .pb {
        bottom: -115px
    }
}

.pc {
    margin-bottom: 4px
}

.pe {
    font-weight: 700;
    margin-bottom: 20px
}

@media(min-width:1440px) {
    .pe {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: .01em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .pe {
        font-size: 32px;
        line-height: 38px
    }
}

@media(max-width:743px) {
    .pe {
        font-size: 26px;
        line-height: 30px
    }
}

.pf {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 36px
}

.pg {
    padding: 6px 14px 7px;
    background-color: #fde9e2;
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500
}

.o6 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px
}

@media(max-width:743px) {
    .o6 {
        margin-bottom: 36px
    }
}

@media(min-width:744px) {
    .o6 {
        margin-bottom: 40px
    }
}

.ph {
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .ph {
        gap: 40px
    }
}

@media(min-width:744px) {
    .ph {
        gap: 60px
    }
}

.pi {
    display: flex;
    flex-direction: column
}

@media(max-width:743px) {
    .pi {
        gap: 16px
    }
}

@media(min-width:744px) {
    .pi {
        gap: 24px
    }
}

.pj {
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    transform-origin: center
}

@media(max-width:743px) {
    .pj {
        aspect-ratio: 1.49;
        margin-bottom: 16px
    }
}

@media(min-width:744px) {
    .pj {
        margin-bottom: 20px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .pj {
        aspect-ratio: 1.43
    }
}

@media(min-width:1280px) {
    .pj {
        aspect-ratio: 1.72
    }
}

.pk {
    font-weight: 700
}

@media(min-width:1440px) {
    .pk {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: .03em
    }
}

@media(max-width:1439px)and (min-width:744px) {
    .pk {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:743px) {
    .pk {
        font-size: 20px;
        line-height: 26px
    }
}

.pl {
    flex-direction: column;
    gap: 30px
}

.pl,
.pm {
    display: flex
}

.pm {
    margin-top: 60px;
    gap: 16px
}

@media(max-width:743px) {
    .pm {
        flex-direction: column
    }
}

@media(min-width:744px) {
    .pm {
        flex-direction: row
    }
}

.pn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px 12px 34px;
    border: 1px solid #cab493;
    color: #cab493;
    border-radius: 40px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    transition-property: color, background-color;
    transition-duration: .3s;
    transition-timing-function: ease
}

.pn:hover {
    background-color: #cab493;
    color: #fff
}

.pn:hover .po {
    fill: #fff
}

.po {
    transition-property: fill;
    transition-duration: .3s;
    transition-timing-function: ease
}

.pp {
    position: relative;
    width: 100%;
    max-width: 600px;
    align-self: center;
    justify-self: center;
    margin: auto;
    padding-bottom: 40px;
    padding-top: 40px
}

.pq {
    padding: 60px 24px 50px;
    background-color: #fff;
    border-radius: 8px
}

.pr {
    position: absolute;
    height: 40px;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease
}

.pr:hover {
    opacity: .75
}

@media(max-width:743px) {
    .pr {
        top: 56px;
        right: 16px
    }

    .pr circle {
        fill: rgba(231, 243, 255, .75)
    }
}

@media(min-width:744px) {
    .pr {
        top: 0;
        right: -40px
    }
}

.hv {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 20px
}

@media(max-width:1279px) {
    .hv {
        padding-left: var(--grid-side-gap);
        padding-right: var(--grid-side-gap);
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:1279px)and (min-width:1440px) {
    .hv {
        max-width: var(--page-width-max)
    }
}

@media(max-width:743px) {
    .hv {
        gap: 32px;
        padding-bottom: 32px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .hv {
        gap: 24px;
        padding-bottom: 32px
    }
}

@media(min-width:1280px) {
    .hv {
        gap: 56px;
        margin-left: auto;
        margin-right: auto;
        max-width: var(--page-width-max)
    }
}

@media(min-width:744px) {
    .hw .hx {
        animation-name: hy;
        animation-duration: 1.5s;
        animation-fill-mode: both;
        animation-delay: .15s
    }
}

@keyframes hy {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@media(min-width:744px) {
    .hx {
        opacity: 0
    }
}

.hz {
    margin-left: auto;
    margin-right: auto
}

@media(max-width:800px) {
    .ex, .ey {
        width: 30px;
        height: 30px;
    }
    .hn {
        font-size: 16px;
    }
}


@media(max-width:743px) {
    .hz {
        padding-top: 4px
    }
}

@media(max-width:1279px)and (min-width:744px) {
    .hz {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 8px;
        max-width: 906px
    }
}

@media(min-width:1280px) {
    .hz {
        max-width: 62.92%
    }
}

@media(min-width:744px) {
    .h0 {
        opacity: 0
    }
}

.h0:first-child {
    animation-delay: 0ms
}

.h0:nth-child(2) {
    animation-delay: .25s
}

.h0:nth-child(3) {
    animation-delay: .5s
}

.h0:nth-child(4) {
    animation-delay: .75s
}

.h0:nth-child(5) {
    animation-delay: 1s
}

.h0:nth-child(6) {
    animation-delay: 1.25s
}

.h0:nth-child(7) {
    animation-delay: 1.5s
}

.h0:nth-child(8) {
    animation-delay: 1.75s
}

.h0:nth-child(9) {
    animation-delay: 2s
}

.h0:nth-child(10) {
    animation-delay: 2.25s
}

.h0:nth-child(11) {
    animation-delay: 2.5s
}

.h0:nth-child(12) {
    animation-delay: 2.75s
}

.h0:nth-child(13) {
    animation-delay: 3s
}

.h0:nth-child(14) {
    animation-delay: 3.25s
}

.h0:nth-child(15) {
    animation-delay: 3.5s
}

.h0:nth-child(16) {
    animation-delay: 3.75s
}

.h0:nth-child(17) {
    animation-delay: 4s
}

.h0:nth-child(18) {
    animation-delay: 4.25s
}

.h0:nth-child(19) {
    animation-delay: 4.5s
}

.h0:nth-child(20) {
    animation-delay: 4.75s
}

.h0:nth-child(21) {
    animation-delay: 5s
}

.h0:nth-child(22) {
    animation-delay: 5.25s
}

.h0:nth-child(23) {
    animation-delay: 5.5s
}

.h0:nth-child(24) {
    animation-delay: 5.75s
}

.h0:nth-child(25) {
    animation-delay: 6s
}

.h0:nth-child(26) {
    animation-delay: 6.25s
}

.h0:nth-child(27) {
    animation-delay: 6.5s
}

.h0:nth-child(28) {
    animation-delay: 6.75s
}

.h0:nth-child(29) {
    animation-delay: 7s
}

.h0:nth-child(30) {
    animation-delay: 7.25s
}

.h0:nth-child(31) {
    animation-delay: 7.5s
}

.h0:nth-child(32) {
    animation-delay: 7.75s
}

.h0:nth-child(33) {
    animation-delay: 8s
}

.h0:nth-child(34) {
    animation-delay: 8.25s
}

.h0:nth-child(35) {
    animation-delay: 8.5s
}

.h0:nth-child(36) {
    animation-delay: 8.75s
}

.h0:nth-child(37) {
    animation-delay: 9s
}

.h0:nth-child(38) {
    animation-delay: 9.25s
}

.h0:nth-child(39) {
    animation-delay: 9.5s
}

.h0:nth-child(40) {
    animation-delay: 9.75s
}

.h0:nth-child(41) {
    animation-delay: 10s
}

.h0:nth-child(42) {
    animation-delay: 10.25s
}

.h0:nth-child(43) {
    animation-delay: 10.5s
}

.h0:nth-child(44) {
    animation-delay: 10.75s
}

.h0:nth-child(45) {
    animation-delay: 11s
}

.h0:nth-child(46) {
    animation-delay: 11.25s
}

.h0:nth-child(47) {
    animation-delay: 11.5s
}

.h0:nth-child(48) {
    animation-delay: 11.75s
}

.h0:nth-child(49) {
    animation-delay: 12s
}

.h0:nth-child(50) {
    animation-delay: 12.25s
}

.h0:nth-child(51) {
    animation-delay: 12.5s
}

.h0:nth-child(52) {
    animation-delay: 12.75s
}

.h0:nth-child(53) {
    animation-delay: 13s
}

.h0:nth-child(54) {
    animation-delay: 13.25s
}

.h0:nth-child(55) {
    animation-delay: 13.5s
}

.h0:nth-child(56) {
    animation-delay: 13.75s
}

.h0:nth-child(57) {
    animation-delay: 14s
}

.h0:nth-child(58) {
    animation-delay: 14.25s
}

.h0:nth-child(59) {
    animation-delay: 14.5s
}

.h0:nth-child(60) {
    animation-delay: 14.75s
}

.h0:nth-child(61) {
    animation-delay: 15s
}

.h0:nth-child(62) {
    animation-delay: 15.25s
}

.h0:nth-child(63) {
    animation-delay: 15.5s
}

.h0:nth-child(64) {
    animation-delay: 15.75s
}

.h0:nth-child(65) {
    animation-delay: 16s
}

.h0:nth-child(66) {
    animation-delay: 16.25s
}

.h0:nth-child(67) {
    animation-delay: 16.5s
}

.h0:nth-child(68) {
    animation-delay: 16.75s
}

.h0:nth-child(69) {
    animation-delay: 17s
}

.h0:nth-child(70) {
    animation-delay: 17.25s
}

.h0:nth-child(71) {
    animation-delay: 17.5s
}

.h0:nth-child(72) {
    animation-delay: 17.75s
}

.h0:nth-child(73) {
    animation-delay: 18s
}

.h0:nth-child(74) {
    animation-delay: 18.25s
}

.h0:nth-child(75) {
    animation-delay: 18.5s
}

.h0:nth-child(76) {
    animation-delay: 18.75s
}

.h0:nth-child(77) {
    animation-delay: 19s
}

.h0:nth-child(78) {
    animation-delay: 19.25s
}

.h0:nth-child(79) {
    animation-delay: 19.5s
}

.h0:nth-child(80) {
    animation-delay: 19.75s
}

.h0:nth-child(81) {
    animation-delay: 20s
}

.h0:nth-child(82) {
    animation-delay: 20.25s
}

.h0:nth-child(83) {
    animation-delay: 20.5s
}

.h0:nth-child(84) {
    animation-delay: 20.75s
}

.h0:nth-child(85) {
    animation-delay: 21s
}

.h0:nth-child(86) {
    animation-delay: 21.25s
}

.h0:nth-child(87) {
    animation-delay: 21.5s
}

.h0:nth-child(88) {
    animation-delay: 21.75s
}

.h0:nth-child(89) {
    animation-delay: 22s
}

.h0:nth-child(90) {
    animation-delay: 22.25s
}

.h0:nth-child(91) {
    animation-delay: 22.5s
}

.h0:nth-child(92) {
    animation-delay: 22.75s
}

.h0:nth-child(93) {
    animation-delay: 23s
}

.h0:nth-child(94) {
    animation-delay: 23.25s
}

.h0:nth-child(95) {
    animation-delay: 23.5s
}

.h0:nth-child(96) {
    animation-delay: 23.75s
}

.h0:nth-child(97) {
    animation-delay: 24s
}

.h0:nth-child(98) {
    animation-delay: 24.25s
}

.h0:nth-child(99) {
    animation-delay: 24.5s
}

.h0:nth-child(100) {
    animation-delay: 24.75s
}

.h1 .h0 {
    animation-name: hy;
    animation-duration: 1s;
    animation-fill-mode: both
}

.q {
	display:flex;
	flex-direction:column;
	gap:25px;
	align-items:center;
	justify-content:center;
	padding-left:16px;
	padding-right:16px;
	text-align:center
}

.r {
	font-size:84px;
	line-height:1;
}

.s {
	min-width:270px;
}