@font-face {
    font-family: rene;
    src: url("../font/01.woff") format("woff");
    font-weight: 100;
}

@font-face {
    font-family: rene;
    src: url("../font/02.woff") format("woff");
    font-weight: 200;
}

@font-face {
    font-family: rene;
    src: url("../font/03.woff") format("woff");
    font-weight: 300;
}

@font-face {
    font-family: rene;
    src: url("../font/04.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: rene;
    src: url("../font/05.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: rene;
    src: url("../font/06.woff") format("woff");
    font-weight: 700;
}

@font-face {
    font-family: rene;
    src: url("../font/07.woff") format("woff");
    font-weight: 800;
}

@font-face {
    font-family: rene;
    src: url("../font/08.woff") format("woff");
    font-weight: 900;
}

@font-face {
    font-family: "YekanBakhFaNum";
    src: url("./fonts/YekanBakhFaNum-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --main-color: #FFC700;
    --second-color: #FF5C00;
}

a {
    text-decoration: none;
}

body {
    font-family: rene, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
}

.space_bg {
    background: url(../image/main_bg.jpg) no-repeat center top;
    position: relative;
}

.row {
    max-width: 390px;
    margin: auto;
    padding: 0 10px;
}

.yellow_text {
    color: var(--main-color);
}

.orange_text {
    color: var(--second-color);
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

.animate {
    animation-duration: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: var(--delay, 0ms);
}

.animate.active {
    animation-duration: 400ms;
}

.fade_from_right {
    opacity: 0;
    animation-name: fade_from_right;
}

.fade_from_left {
    opacity: 0;
    animation-name: fade_from_left;
}

.fade_from_bottom {
    opacity: 0;
    animation-name: fade_from_bottom;
}

.line_height_animate {
    opacity: 0;
    animation-name: line_height_animate;
    line-height: 0;
}

.fade_from_top {
    opacity: 0;
    animation-name: fade_from_top;
}

.fade_in {
    opacity: 0;
    animation-name: fade_in;
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade_from_left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_from_right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_from_bottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes line_height_animate {
    0% {
        opacity: 0;
        line-height: 0;
    }
    100% {
        opacity: 1;
        line-height: 1;
    }
}

@keyframes fade_from_top {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.page_title_top {
    color: #898989;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.02em;
    position: absolute;
    transform: scale(0.8);
    bottom: 77px;
    right: 23px;
}

.top_package_container {
    display: flex;
    padding-top: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.main_rene_image {
    margin-right: -25px;
}

.main_package_image {
    margin-right: -55px;
    margin-left: -10px;
}

.main_package_logo {
    margin-top: -110px;
}

.page_top_sub_title {
    color: #CACACA;
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -0.02em;
    margin-top: 16px;
    margin-bottom: 25px;
    position: absolute;
    bottom: 30px;
    right: 45px;
}

.top_section {
    padding-bottom: 50px;
    background-repeat: repeat;
}

.main_form_container {
    max-width: 280px;
    margin: auto auto 30px;
}

input.landing_input {
    display: block;
    width: 100%;
    background: #f3f3f3;
    border-radius: 6px;
    box-shadow: none;
    line-height: 46px;
    height: 46px;
    border: none;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: #7A7A7A;
    font-size: 18px;
    font-family: inherit;
}

.submit_btn {
    display: flex;
    background: #FBC53B;
    box-shadow: 0 9px 0 #d59900;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    padding: 10px 33px;
    gap: 4px;
    font-weight: 800;
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    cursor: pointer;
}

.arrow_down_image {
    margin: auto auto 20px;
}

.blur_box {
    border-radius: 30px;
    margin: 0 auto 12px;
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.1);
    text-align: justify;
    position: relative;
    padding: 20px 40px;
    color: #DFDFDF;
    font-size: 17px;
    line-height: 25px;
}

.blur_box * {
    z-index: 1;
    position: relative;
}

.blur_box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    top: 0;
    left: 0;
    background: #313131;
    mix-blend-mode: lighten;
    opacity: 0.3;
    z-index: 0;
}

.black_title {
    font-weight: 900;
}

.heavy_title {
    font-weight: 800;
}

.bold_title {
    font-weight: 700;
}

.how_to_achieve {
    text-align: center;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.01em;
}

.how_to_achieve_text {
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    margin-top: 5px;
}

.landing_first_data, .landing_second_data, .landing_third_data {
    max-width: 350px;
}

.landing_first_data .blur_box {
    margin-right: auto;
    margin-left: 0;
    border-bottom-left-radius: 0;
}

.landing_second_data .blur_box {
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}

.landing_third_data .blur_box {
    text-align: center;
    border-top-right-radius: 0;
    padding: 20px;
}

.landing_third_data_title {
    margin-top: 10px;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: -0.03em;
}

.minds_map_row {
    margin-top: 60px;
}

.minds_top_row {
    display: flex;
    gap: 10px;
    text-align: left;
    justify-content: center;
    align-items: flex-end;
    font-size: 23px;
    line-height: 33px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #DFDFDF;
}

.minds_arrow_container {
    max-width: 180px;
    margin: auto;
}

.minds_arrow_container img {
    margin-right: auto;
}

.each_mind_quote_content {
    color: #DFDFDF;
    font-size: 15px;
    letter-spacing: -0.02em;
    line-height: 22px;
    padding: 18px;
    max-width: 185px;
    position: relative;
    transform: rotate(15deg);
    margin-bottom: -10px;
}

.mind_quote_container {
    max-width: 310px;
    margin: auto;
}

.each_mind_quote_content.left_question {
    margin-right: auto;
    text-align: left;
    transform: rotate(-15deg);
}

.each_mind_quote_content span {
    position: relative;
    z-index: 2;
}

.each_mind_quote_content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #F7F7F7;
    mix-blend-mode: lighten;
    opacity: 0.1;
    border-radius: 20px;
}

.each_mind_quote_content.left_question:before {
    background: #0D0D0D;
    mix-blend-mode: color-burn;
    opacity: 0.7;
}

.each_mind_quote_content:after {
    content: '';
    position: absolute;
    border-width: 13px;
    border-color: #F7F7F7 #F7F7F7 transparent transparent;
    border-style: solid;
    mix-blend-mode: lighten;
    opacity: 0.1;
    right: 30px;
    top: 100%;
}

.each_mind_quote_content.left_question:after {
    mix-blend-mode: color-burn;
    opacity: 0.7;
    border-color: #0D0D0D transparent transparent #0D0D0D;
    left: 30px;
    right: auto;
}

.problem_solution_is_money .blur_box {
    max-width: 320px;
    text-align: center;
    padding: 30px 15px;
    letter-spacing: -0.02em;
}

.problem_solution_is_money {
    margin-top: 70px;
}

.problem_solution_is_money .blur_box img {
    margin: 20px auto;
}

.solution_is_money_small_text {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 7px;
}

.solution_is_money_big_text.black_title {
    font-size: 37px;
    line-height: 50px;
}

.solution_is_money_big_text span {
    font-size: 67px;
    line-height: 50px;
}

.solution_is_money_medium_text {
    font-size: 17px;
    line-height: 25px;
}

.row.rene_about_text {
    font-size: 17px;
    line-height: 25px;
    max-width: 330px;
    text-align: justify;
    letter-spacing: -0.03em;
    color: #242424;
    margin-top: -110px;
    margin-bottom: 60px;
}

.rene_about_image.full_width {
    padding: 0;
    margin-top: -16px;
    max-width: 100vw;
}

.row.rene_about_text span {
    font-weight: 800;
}

section.result_section:before {
    content: '';
    position: absolute;
    top: -4px;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, #ffffff00 100%);
}

.swiper-slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: auto;
    border-radius: inherit;
    top: 0;
    left: 0;
    z-index: 0;
    background: #FFFFFF;
    opacity: 0.8;
}

.swiper-slide * {
    position: relative;
    z-index: 2;
}

.swiper-slide {
    padding: 20px 25px;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.5s ease;
}

.swiper.mySwiper.swiper-initialized {
    max-width: 320px;
}

.swiper-button-next, .swiper-button-prev {
    color: #CDCCCC;
    font-weight: 900;
    font-size: 10px;
    width: 45px;
    height: 45px;
    background: #181412;
    border: 10px solid #CDCCCC;
    border-radius: 30px;
    line-height: 46px;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

.waiting_for_app {
    padding: 33px 12px 15px;
    width: 290px;
    background: #1A1A1A;
    box-shadow: 0 1px 100px rgba(0, 0, 0, 0.1);
    border-radius: 30px 30px 0 30px;
    margin: -20px auto 30px;
    font-size: 41px;
    line-height: 39px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFA700;
}

img.lamp {
    margin: 40px auto 0;
}

.result_user_name {
    font-weight: 900;
    font-size: 22px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #404040;
    line-height: 25px;
    margin-top: 30px;
}

.result_price_text span {
    font-weight: 200;
    font-size: 40px;
    line-height: 30px;
}

.result_price_text {
    text-align: center;
    line-height: 30px;
    font-size: 22px;
    margin-top: 8px;
}

.result_small_text {
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #dfdfdf;
}

.result_large_text {
    font-size: 35px;
    line-height: 42px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #dfdfdf;
}

.pil_bright_logo img {
    margin: 5px auto;
}

.result_med_text {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #DFDFDF;
    max-width: 260px;
    padding-bottom: 140px;
}

img.centered {
    margin: 0 auto;
}

.lumo_image {
    filter: grayscale(1);
}

.row.what_you_get_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #C4C4C4;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #4F4F4F;
    max-width: 100%;
}

.what_you_get_normal_text.row {
    max-width: 335px;
    font-size: 20px;
    line-height: 27px;
    text-align: justify;
    margin-top: 40px;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.what_you_get_each_item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: 20px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #242424;
    line-height: 27px;
    max-width: 315px;
    margin: 0 auto 10px;
}

.what_you_get_item_title span {
    font-size: 24px;
    font-weight: 800;
}

.what_you_get_items {
    margin-bottom: 80px;
}

.what_you_get_items_section {
    color: #dfdfdf;
    font-size: 20px;
    line-height: 27px;
    text-align: justify;
    letter-spacing: -0.03em;
    background-repeat: repeat;
    padding-bottom: 90px;
}

.each_individual_item_title {
    text-align: center;
    font-size: 35px;
    line-height: 45px;
    color: #FF9900;
    margin: 15px;
}

.row.each_individual_item {
    padding-top: 60px;
}

.each_individual_item_text {
    max-width: 320px;
    margin: auto;
}

.individual_item_top_container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.individual_item_top_container > div {
    margin-right: auto;
    margin-left: -10px;
}

.individual_item_top_container img.centered {
    margin-right: 0;
}

.individual_item_top_container {
    margin-bottom: 20px;
}

img.centered.before_after_image {
    margin-top: 50px;
    margin-bottom: 30px;
}

.row.classify_practice_text {
    max-width: 320px;
    text-align: center;
}

.classification_content {
    display: flex;
    font-weight: 500;
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    color: #CFBC79;
    align-items: center;
    justify-content: center;
}

.row.each_classification_row {
    margin-top: 40px;
}

.each_classification_title {
    display: flex;
    align-items: center;
    font-size: 31px;
    line-height: 32px;
    justify-content: center;
    font-weight: 900;
    margin-bottom: -2px;
    GAP: 12px;
}

.classify_practice_text.row {
    margin-top: 30px;
}

.road_map_section {
    padding-top: 60px;
}

.road_map_section .what_you_get_normal_text.row {
    text-align: center;
}

.roadmap_items_container {
    font-size: 18px;
    line-height: 26px;
    max-width: 300px;
    margin: auto;
    text-align: justify;
    letter-spacing: -0.04em;
    color: #242424;
    background: url(../image/road_dash.png) no-repeat;
    background-position-x: center;
    background-position-y: 60px;
    background-size: auto;
}

.each_roadmap_item_row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 91px;
}

.each_roadmap_item_row img {
    margin-top: 10px;
}

section.each_section.rene_benz {
    background: #DEDEDE;
    padding-top: 45px;
    padding-bottom: 65px;
    text-align: center;
    color: #434343;
}

.rene_benz_title {
    font-size: 38px;
    line-height: 35px;
    font-weight: 900;
    color: #DF1F1F;
}

.rene_benz_text {
    max-width: 250px;
    margin: 10px auto 20px;
    font-weight: 300;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

section.each_section.rene_benz img {
    margin-bottom: 20px;
}

.each_topic_row {
    margin-bottom: 35px;
    margin-top: 35px;
}

.topic_blur_box_content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: -12px;
}

.topic_blur_box_content.left_topic {
    flex-direction: row-reverse;
    text-align: left;
}

.topic_blur_box_content.left_topic .topic_contents_cul img {
    margin-right: auto;
    margin-left: 0;
}

.topics_sub_title {
    letter-spacing: -0.04em;
    color: #868686;
    font-size: 15px;
    line-height: 26px;
}

.topics_main_title {
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.04em;
    color: #DFDFDF;
    margin-top: 8px;
}

.each_topic_row.row .blur_box {
    padding: 1px 14px 15px;
    border-radius: 10px;
}

.total_results_section {
    padding-top: 0;
    padding-bottom: 60px;
}

.total_result_text {
    max-width: 320px;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #242424;
    margin: 40px auto 8px;
}

.total_results_section .swiper-button-next, .total_results_section .swiper-button-prev {
    top: 50%;
    border-color: #fff;
}

.total_results_section .swiper-slide {
    padding: 0;
}

.new_price {
    display: flex;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFC700;
    font-weight: 800;
    font-size: 40px;
    line-height: 30px;
    gap: 8px;
    margin-top: 5px;
    align-items: center;
}

.old_price {
    font-weight: 700;
    font-size: 28px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #9A9A9A;
    right: 10px;
    position: relative;
}

.price_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 270px;
    margin: 25px auto;
}

.old_price:before {
    content: '';
    mix-blend-mode: screen;
    opacity: 0.9;
    border: 2px solid #9A9A9A;
    width: 110%;
    position: absolute;
    top: 38%;
    right: -5%;
    transform: rotate(-4deg);
}

section.container.each_section.final_section {
    background: url(../image/footer_bg.png) no-repeat top center;
    padding-top: 490px;
    padding-bottom: 40px;
    background-size: 390px;
}

[hidden] {
    display: none;
}

.top_row_video_player {
    margin: 0 -10px;
    min-height: 610px;
    position: relative;
}

.each_mind_quote_content img {
    position: absolute;
    top: -26px;
}

.each_mind_quote_content.left_question img {
    left: 10px;
}

.rene_benz_curve_container {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.each_classification_title img:last-child {
    transform: scaleX(-1);
}

.each_classification_title img {
    position: relative;
    top: 9px;
}

.row.rene_about_image.full_width img {
    width: 100%;
    max-width: 440px;
    margin: auto;
}

img.pilgrim_top {
    position: absolute;
    top: 0;
}

video#video_background {
    position: absolute;
    mix-blend-mode: screen;
    top: 130px;
    right: 32px;
}

.top_rene_main_image {
    position: absolute;
    top: 71px;
    transform: scale(1.1);
    right: 75px;
}

.top_logo_image {
    position: absolute;
    top: 205px;
    right: 125px;
}

.top_logo_text {
    position: absolute;
    top: 335px;
    right: 32px;
}

.top_package_main_image {
    top: 370px;
    position: absolute;
    left: 0;
}
