.promo_border {
    border-radius: 8px;
    border: 1px solid #454545;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}

#four,
#six,
#seven,
#eight,
#nine {
    padding: 112px 64px;
}

#one {
    padding: 12px 12px 12px 32px;
    background: #1D1D1D;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.one_button {
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #262626;
    cursor: pointer;

    color: #F2F2F2;
    text-align: center;
    font-family: 'HelveticaNeue-Medium';
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0.54px;

    transition: all 0.5s ease;
}

.one_button:hover {
    background: #2c2c2c;
}

.one_text {
    color: var(--Text-Primary, #F2F2F2);
    font-family: 'HelveticaNeue-Medium';
    font-size: 18px;
    line-height: normal;

    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#two {
    padding: 32px 0 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: url(../images/banner.jpg) center / cover no-repeat;
    height: 689px;
}

#two::after {
    content: '';
    position: absolute;
    border-radius: 8px;
    background: linear-gradient(180deg, #17171700 40%, #171717 100%),
        linear-gradient(180deg, #17171700 25%, #171717 100%),
        linear-gradient(270deg, #1d1d1d52 0%, #1d1d1d00 50%, #1d1d1d52 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.two_logo {
    background: url(../images/logo_1.svg) center / contain no-repeat;
    width: 270px;
    height: 87px;
    position: relative;
    z-index: 1;

    opacity: 0;
    transition: all 0.8s ease;
}

.two_logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.two_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 70%;
}

.two_title {
    text-align: center;
    font-family: Colus;
    font-size: 48px;
    line-height: 110%;
    background: linear-gradient(180deg, #9F9F9F 6.5%, #FDFDFD 25%, #A5A5A5 44.5%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.two_title.visible {
    opacity: 1;
    transform: translateY(0);
}

.two_title span {
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.two_after_title {
    text-align: center;
    font-family: 'HelveticaNeue-Medium';
    font-size: 24px;
    line-height: 22.813px;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #9F9F9F 6.5%, #FDFDFD 25%, #A5A5A5 44.5%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 16px;

    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.two_after_title.visible {
    opacity: 1;
    transform: translateY(0);
}

.two_button {
    display: flex;
    padding: 22px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%);
    color: #443119;
    font-family: 'HelveticaNeue-Bold';
    font-size: 18px;
    line-height: normal;
    cursor: pointer;
    opacity: 1;
    transition: all 0.8s ease;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.two_button:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

#three {
    padding: 29px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #171717;
}

#three::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 828px;
    background: url(../images/me4.png) center / contain no-repeat;
    top: -165px;
    left: 0;
    pointer-events: none;
}

.three_title {
    max-width: 320px;
    font-family: Colus;
    font-size: 32px;
    line-height: normal;
    background: linear-gradient(180deg, #9F9F9F 6.5%, #FDFDFD 25%, #A5A5A5 44.5%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 32px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.timer.visible {
    opacity: 1;
    transform: translateX(0);
}

.timer span span:nth-child(1) {
    display: block;
    text-align: center;
    font-family: 'HelveticaNeue-Bold';
    font-size: 32px;
    line-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #ffffff3b;
    background: linear-gradient(180deg, #24242400 0%, #242424 100%);
    color: #d9d9d9;
    height: 80px;
}

.timer>span {
    display: flex;
    position: relative;
    text-align: center;
    width: 100px;
    flex-direction: column;
    gap: 10px;
}

.timer-title {
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: 100%;
    background: linear-gradient(180deg, #9F9F9F 6.5%, #FDFDFD 25%, #A5A5A5 44.5%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase;
}

.title_block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title_block.visible {
    opacity: 1;
    transform: translateY(0);
}

.title_title {
    text-align: center;
    font-family: Colus;
    font-size: 48px;
    line-height: 100%;
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_after {
    color: #F2F2F2;
    text-align: center;
    font-family: 'HelveticaNeue-Roman';
    font-size: 24px;
    line-height: 130%;
}

#four,
#six,
#seven,
#eight {
    background: url(../images/stone.jpg) center 330px / cover no-repeat;
}

.four_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

#four::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 332px;
    background: url(../images/four.jpg) center / cover no-repeat;
    left: 0;
    pointer-events: none;
}

.flip_card {
    width: 100%;
    height: 294px;
    perspective: 1000px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(50px);
}

.flip_card.visible {
    opacity: 1;
    transform: translateY(0);
}

.flip_card:hover {
    transform: scale(1.02) translateY(0);
}

.flip_card_face,
.flip_card_back {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s;
    padding: 16px;
    box-shadow: 0 1px 2px 0 #0000004d, 0 2px 6px 2px #00000026;
}

.flip_card_face::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #212121 0%, #2a212121 17.79%),
        linear-gradient(270deg, #21212100 90%, #212121 100%),
        linear-gradient(270deg, #212121 0%, rgba(33, 33, 33, 0.00) 10%),
        linear-gradient(180deg, rgba(33, 33, 33, 0.00) 55%, #212121 100%),
        linear-gradient(180deg, rgba(33, 33, 33, 0.00) 65%, #212121 100%);
    z-index: 1;
    pointer-events: none;
}

.flip_card_face::before {
    position: absolute;
    content: '';
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    top: 16px;
    left: 16px;
    border-radius: 20px;
    border: 3px solid #787878;
    z-index: 4;
    pointer-events: none;
}

.flip_card_back {
    transform: rotateY(180deg);
}

.flip_card:nth-child(1) .flip_card_face {
    background: url(../images/card1.png) center / cover no-repeat;
}

.flip_card:nth-child(2) .flip_card_face {
    background: url(../images/card2.png) center / cover no-repeat;
}

.flip_card:nth-child(3) .flip_card_face {
    background: url(../images/card3.png) center / cover no-repeat;
}

.flip_card:nth-child(4) .flip_card_face {
    background: url(../images/card4.png) center / cover no-repeat;
}

.card_pic {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 5;
    padding: 26px 36px;
}

.card_pic::after {
    content: '';
    position: absolute;
    width: calc(100% - 17px);
    height: calc(100% - 17px);
    top: 7px;
    left: 7px;
    border-radius: 14px;
    border: 1px dashed #696969;
    z-index: 4;
    pointer-events: none;
}

.flip_card_title {
    color: #ffffff;
    font-family: Colus;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
}

.flip_card_title span {
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flip_card.flipped .flip_card_back {
    transform: rotateY(0deg);
}

.flip_card.flipped .flip_card_face {
    transform: rotateY(180deg);
}

.flip_card_back {
    background: linear-gradient(0deg, #27241E 0%, #3D362C 100%),
        linear-gradient(180deg, #323232 0%, #1C1C1C 100%);
}

.flip_card_back::after {
    position: absolute;
    content: '';
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    top: 16px;
    left: 16px;
    border-radius: 20px;
    border: 3px solid #BD9C49;
    z-index: 4;
    pointer-events: none;
}

.flip_card_text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    position: relative;
    color: #F2F2F2;
    text-align: center;
    text-shadow: 0 0 4px #212121;
    font-family: 'HelveticaNeue-Roman';
    font-size: 20px;
    line-height: 120%;
}

.flip_card_text::after {
    content: '';
    position: absolute;
    width: calc(100% - 17px);
    height: calc(100% - 17px);
    top: 7px;
    left: 7px;
    border-radius: 14px;
    border: 1px dashed #CF9059;
    z-index: 4;
    pointer-events: none;
}

#five {
    background: url(../images/five.jpg) center / cover no-repeat;
    padding: 243px 64px 64px;
}

#five::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #17171700 56.73%, #171717 100%),
        linear-gradient(90deg, #17171700 64.9%, #171717 100%),
        linear-gradient(90deg, #171717 0%, #17171700 28.85%),
        linear-gradient(232deg, #17171700 43.95%, #171717 100%),
        linear-gradient(232deg, #17171700 43.95%, #171717 100%),
        linear-gradient(232deg, #17171700 43.95%, #171717 100%);
    pointer-events: none;
}

.five_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 5;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease;
}

.five_content.visible {
    opacity: 1;
    transform: translateX(0);
}

.five_title {
    color: #F2F2F2;
    font-family: Colus;
    font-size: 32px;
    line-height: 120%;
}

.five_title span {
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.five_text {
    color: #F2F2F2;
    font-size: 16px;
    line-height: 130%;
}

.five_text span {
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.five_buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.five_button {
    border-radius: 6px;
    display: flex;
    height: 46px;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;
}

.five_button:hover {
    transform: scale(1.05);
}

.five_button:nth-child(1) {
    background: #FFC300;
    color: #443119;
}

.five_button:nth-child(2) {
    border: 1px solid #ffbe6f3d;
    background: #3D362D;
    color: #FFC300;
}

.five_white,
.five_black {
    position: absolute;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
}

.five_white.visible {
    opacity: 1;
    transform: translateX(0);
}

.five_black.visible {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1s;
}

.five_white {
    right: -50px;
    bottom: -110px;
    z-index: 5;
}

.five_circle {
    position: absolute;
    right: -140px;
    bottom: -270px;
    z-index: 4;
    width: 685px;
    height: 444px;
    border-radius: 685px;
    background: radial-gradient(50% 50% at 50% 50%, #171717 0%, #17171700 100%), radial-gradient(50% 50% at 50% 50%, #171717 0%, #17171700 100%);
}

.five_black {
    right: 170px;
    bottom: -80px;
    z-index: 3;
}

.five_dialog {
    position: absolute;
    width: 328px;
    height: 126px;
    border-radius: 328px;
    background: radial-gradient(50% 50% at 50% 50%, #171717 0%, #17171700 100%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.dialog_one.visible {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 2s;
}

.dialog_two.visible {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 3s;
}

.dialog_one {
    right: 183px;
    top: 42px;
}

.dialog_two {
    top: 167px;
    right: 327px;
}

.dialog_red {
    background: url(../images/dialog_red.png) center / contain no-repeat;
    padding: 17px;
    max-width: 204px;
}

.dialog_grey {
    background: url(../images/dialog_grey.png) center / contain no-repeat;
    padding: 14px;
    max-width: 163px;
}

.dialog_red {
    color: #FFF;
    font-family: 'HelveticaNeue-Medium';
    font-size: 15px;
    line-height: 100%;
}

.dialog_grey {
    color: #FFF;
    font-family: 'HelveticaNeue-Medium';
    font-size: 12px;
    line-height: 120%;
}

#six {
    background: url(../images/stone.jpg) center / cover no-repeat;
}

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

.six_step_num {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #404040;
    background: #252525;
    color: #FFF;
    font-size: 20px;
    line-height: 100%;
    position: relative;
    z-index: 4;
}

.six_step_title {
    text-align: center;
    font-family: Colus;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 24px 0 6px;
}

.six_steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    justify-content: space-between;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.six_steps.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}


.six_steps::after {
    content: '';
    position: absolute;
    background: #404040;
    height: 1px;
    width: 70%;
    top: 23px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 0;
}

.six_step_text {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 120%;
}

.six_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.six_button {
    display: flex;
    height: 46px;
    padding: 8px 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
    background: #FFC300;
    box-shadow: 0 0 112px 0 #fff8b61f;
    color: #443119;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    max-width: 310px;
    width: 100%;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.5s ease;
}

.six_button:hover {
    transform: scale(1.05);
}

.six_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0 64px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.six_buttons.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}

.six_gift {
    position: absolute;
    padding: 32px 16px 16px;
    display: flex;
    max-width: 310px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #404040;
    background: #252525;
    z-index: 1;
    top: 28px;
}

.six_gift img {
    width: 32px;
    height: 32px;
}

.six_step_one {
    border-radius: 49.2px;
    background: #0E9E64;
    position: relative;
}

.six_step_one::after {
    content: '';
    position: absolute;
    border-radius: 49.2px;
    background: #137f5452;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    transition: all 0.5s ease;
}

.six_step_one::before {
    content: '';
    position: absolute;
    border-radius: 49.2px;
    background: #137f541f;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    transition: all 0.5s ease;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 0;
    }

    25%,
    75% {
        opacity: 1;
    }
}

.six_step_one::before {
    animation: blink 6s infinite ease-in-out;
    animation-delay: 0s;
}

.six_step_one::after {
    animation: blink 6s infinite ease-in-out;
    animation-delay: 0.5s;
}

#seven::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 332px;
    background: url(../images/seven.png) center / cover no-repeat;
    left: 0;
    pointer-events: none;
}

.seven_cards {
    position: relative;
    z-index: 5;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seven_card {
    width: 100%;
    height: fit-content;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(0deg, #27241E 0%, #3D362C 100%), linear-gradient(180deg, #323232 0%, #1C1C1C 100%);
    box-shadow: 0 1px 2px 0 #0000004d, 0 2px 6px 2px #00000026;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.seven_card.visible {
    opacity: 1;
    transform: translateY(0);
}

.seven_card::after {
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 12px;
    border: 2px solid #BD9C49;
    top: 8px;
    left: 8px;
    pointer-events: none;
}

.seven_card_body {
    position: relative;
    overflow: hidden;
    max-height: 72px;
    height: 100%;
    padding: 0 22px 30px;
    transition: all 0.6s ease;
}

.seven_card.open .seven_card_body {
    max-height: 700px;
}

.seven_card_body::after {
    content: '';
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-radius: 6px;
    border: 1px dashed #cf905952;
    top: 8px;
    left: 8px;
    pointer-events: none;
}

.seven_title {
    color: #FFF;
    font-family: 'HelveticaNeue-Bold';
    font-size: 20px;
    line-height: 36px;
}

.seven_title_block {
    height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.arrow_seven {
    background: url(../images/arrow.svg) center / contain no-repeat;
    width: 24px;
    min-width: 24px;
    height: 24px;
    transition: all 0.6s ease;
}

.seven_card.open .arrow_seven {
    transform: rotate(180deg);
}

.seven_text_left p {
    margin-bottom: 8px;
    color: #BDBDBD;
    font-size: 16px;
    line-height: 120%;
}

#eight {
    background: url(../images/stone.jpg) center / cover no-repeat;
}

.eight_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.eight_title {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.eight_title.visible {
    opacity: 1;
    transform: translateX(0);
}


.eight_title_left {
    font-family: Colus;
    font-size: 32px;
    line-height: 100%;
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eight_title_right {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #404040;
    background: #262626;
    color: #F2F2F2;
    text-align: center;
    font-family: 'HelveticaNeue-Medium';
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.42px;
    cursor: pointer;
}

.eight_links {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.eight_link {
    position: relative;
    height: 293px;
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-self: stretch;
    transition: all 0.4s ease;
    box-shadow: 0 2px 0 0 #1D1D1D, 0 -2px 0 0 rgba(179, 179, 179, 0.25), 0 -1px 0.833px 0 #1D1D1D inset, 0 -2.508px 0.502px 0 rgba(61, 61, 61, 0.30) inset, 0 1.254px 8px 0 rgba(23, 23, 23, 0.40) inset;
    opacity: 0;
    transform: translateY(100px);
}

.eight_link.visible {
    opacity: 1;
    transform: translateY(0);
}

.eight_link:hover {
    transform: scale(1.02) translateY(0);
}

.eight_link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e1d1d00 27.88%, #1e1d1dcc 100%);
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.eight_top_name {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #333;
    color: #FFF;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.42px;
    box-shadow: 0 -1.25px 0.833px 0 #1D1D1D inset, 0 -2.508px 0.502px 0 #3d3d3d4d inset, 0 1.254px 12.51px 0 #171717 inset, 0 0.833px 0 0 #181818, 0 -0.83px 0 0 #78787840;
}

.eight_link_title {
    color: #FFF;
    text-align: center;
    font-family: 'HelveticaNeue-Medium';
    font-size: 20px;
    line-height: 120%;
}

#nine {
    background: #171717;
    padding-bottom: 0;
}

#nine::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 332px;
    background: url(../images/nine.png) center / cover no-repeat;
    left: 0;
    pointer-events: none;
}

.nine_container {
    position: relative;
    z-index: 5;
    min-height: 500px;
}

.nine_buttom_one {
    display: flex;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #ffbe6f52;
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%), #ffbe6f1f;
    color: #443119;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(100px);
}

.nine_buttom_two {
    display: flex;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #ffbe6f52;
    background: #ffbe6f1f;
    color: #FFBE6F;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(100px);
}

.nine_buttom_two.visible,
.nine_buttom_one.visible {
    opacity: 1;
    transform: translateY(0);
}

.nine_buttom_one:hover,
.nine_buttom_two:hover {
    transform: scale(1.05) translateY(0);
}

.nine_bottom {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #171717 70%, rgb(23 23 23 / 0%) 100%), linear-gradient(0deg, #171717 65%, rgb(23 23 23 / 0%) 100%);
    position: absolute;
    bottom: 0;
}

.nine_review {
    column-count: 3;
    column-gap: 20px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
    padding-bottom: 100px;
}

.nine_review.visible {
    opacity: 1;
    transform: translateY(0);
}


.nine_review_card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(0deg, #27241E 0%, #3D362C 100%),
        linear-gradient(180deg, #323232 0%, #1C1C1C 100%);
    box-shadow: 0 1px 2px 0 #0000004d, 0 2px 6px 2px #00000026;
    position: relative;
}

.nine_review_card::after {
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 12px;
    border: 2px solid #BD9C49;
    top: 8px;
    left: 8px;
    pointer-events: none;
}

.review_body {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review_text {
    color: #FFF;
    font-size: 16px;
    line-height: 120%;
}

.review_title {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.48px;
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review_body::after {
    content: '';
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-radius: 6px;
    border: 1px dashed #cf905952;
    top: 8px;
    left: 8px;
    pointer-events: none;
}

#ten {
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    background: #171717;
    margin-bottom: 0;
}

.ten_texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.ten_title {
    font-family: 'HelveticaNeue-Medium';
    color: #FFBE6F;
    font-size: 24px;
    line-height: normal;
}

.ten_discribe {
    color: #F2F2F2;
    text-align: center;
    font-size: 16px;
    line-height: 120%;
    max-width: 500px;
}

.ten_button {
    display: flex;
    width: 164px;
    height: 46px;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 6px;
    border: 1px solid #ffbe6f52;
    background: #ffbe6f1f;
    color: #FFBE6F;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;
}

.ten_button:hover {
    transform: scale(1.05);
}

.for_player {
    width: 429px;
    height: 92px;
    position: fixed;
    right: 0px;
    bottom: 130px;
    z-index: 1000;
    transform: translateX(300px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.for_player_active {
    transform: translateX(0);
}

.player_hide {
    border: 1px solid #454545;
    background: #171717;
    border-radius: 50%;
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player_hide:hover {
    transform: scale(1.05);
}

.player {
    width: 385px;
    height: 92px;
    border-radius: 100px 0 0 100px;
    border: 1px solid #454545;
    background: #171717;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.not_active .player {
    cursor: pointer;
}

.play_who {
    width: 80px;
    height: 80px;
    position: relative;
}

.play_who img {
    object-fit: cover;
    position: absolute;
    top: -7px;
    left: -4px;
}

.player_content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.player_content {
    gap: 0px;
}

.player_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
}

.player_name {
    color: #FFF;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.48px;
}

.player_speed {
    color: #FFFFFF64;
    font-family: 'HelveticaNeue-Bold';
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player_speed:hover {
    transform: scale(1.05);
}

.player_bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.play_pause {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume_volume {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.player_mute {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 27px;
}

#player_row {
    width: 168px;
    height: 3px;
    margin-right: 10px;
    border-radius: 1px;
    background: #45454540;
    position: relative;
    cursor: pointer;
}

#row_now {
    height: 3px;
    border-radius: 1px;
    background: #FFCC00;
    width: 0%;
}

#row_drag {
    position: absolute;
    top: -4px;
    width: 11px;
    left: 0px;
    height: 11px;
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%);
    border-radius: 50%;
}

.player_mute:hover {
    transform: scale(1.05);
}

.play_pause:hover {
    transform: scale(1.05);
}

.up_button {
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(238deg, #FC0 30.67%, #997A00 139.01%), #171717;
    position: fixed;
    right: 35px;
    bottom: 280px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.up_button.show {
    opacity: 1;
    pointer-events: all;
}

.brown_button_box {
width: 100%;
padding: 16px 16px 0;
}

.brown_button {
    border-radius: 6px;
    display: flex;
    height: 46px;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'HelveticaNeue-Medium';
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;   border: 1px solid #ffbe6f3d;
    background: #3D362D;
    color: #FFC300;
    
    max-width: 300px;
    margin: 0 auto;
}

.brown_button:hover {
    transform: scale(1.05);
}

@media (max-width: 720px) {

    .up_button {
        right: 5px;
        bottom: 185px;
    }

    .play_who img {
        top: -15px;
        left: -7px;
    }

    .player_name {
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.8px;
    }

    .play_who {
        width: 80px;
        height: 80px;
    }

    .player {
        width: 350px;
        height: 80px;
        gap: 8px;
    }

    .for_player_active {
        transform: translateX(25px);
    }

    .for_player {
        width: 370px;
        height: 80px;
        right: 45px;
        bottom: 80px;
    }
}

@media (max-width: 1110px) {

    .dialog_two,
    .five_black {
        display: none;
    }
}

@media (max-width: 1040px) {
    #three {
        flex-direction: column;
        gap: 16px;
    }

    .three_title {
        text-align: center;
    }
}

@media (max-width: 940px) {
    .eight_link_title {
        text-align: left;
    }

    #four,
    #six,
    #seven,
    #eight,
    #nine {
        padding: 112px 16px;
    }

    #nine {
        padding-bottom: 50px;
    }

    .flip_card_text {
        padding: 0 32px;
    }
}

@media (max-width: 830px) {

    #five {
        padding: 243px 16px 64px;
    }

    .five_white,
    .dialog_one,
    .five_circle {
        display: none;
    }

    #one {
        flex-direction: column;
        gap: 16px;
        padding: 12px;
    }

    .one_text {
        text-align: center;
    }

    .two_content {
        max-width: 100%;
        padding: 0 16px;
    }

    .two_title {
        font-size: 32px;
    }

    .two_after_title {
        font-size: 18px;
        line-height: 18px;
    }

    .seven_card_body {
        max-height: 90px;
    }

    .seven_title_block {
        height: 90px;
    }

    .six_step {
        display: flex;
        flex-direction: column;
        padding-left: 55px;
    }

    .six_step_num {
        position: absolute;
        left: 0;
    }

    .six_steps::after {
        height: 70%;
        width: 1px;
        top: 65px;
        left: 23px;
    }

    .six_steps {
        max-width: 410px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: space-between;
    }

    .nine_review {
        column-count: 2;
    }
}

@media (max-width: 770px) {

    .seven_text_rigth img {
        width: 100%;
    }

    #five {
        padding: 112px 16px 64px;
    }

    .four_content {
        grid-template-columns: 1fr;
        gap: 16px;
        z-index: 2;
    }

    .five_content {
        max-width: 100%;
        align-items: center;
    }

    .five_title {
        text-align: center;
    }

    .five_buttons {
        flex-direction: column;
    }

    .five_buttons {
        width: 100%;
    }

    .five_title {
        font-size: 26px;
    }

    .eight_links {
        flex-direction: column;
    }

    .eight_link {
        height: 230px;
    }
}

@media (max-width: 570px) {

    .nine_bottom {
        flex-direction: column;
        gap: 16px;
        justify-content: end;
        height: 220px;
    }

    .nine_buttom_one,
    .nine_buttom_two {
        width: 100%;
    }

    .nine_review {
        column-count: 1;
    }

    .seven_title {
        font-size: 16px;
        line-height: 24px;
    }

    .title_title {
        font-size: 32px;
    }

    .title_after {
        font-size: 20px;
        line-height: 120%;
    }

    .timer {
        gap: 16px;
    }

    .timer>span {
        width: 70px;
    }

    .timer span span:nth-child(1) {
        font-size: 28px;
    }

    #three {
        padding: 29px 16px;
    }

    .flip_card_title {
        font-size: 20px;
    }
}