@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

/*========== Colors ==========*/
    --first-color: #bbb;
    --button-color: hsl(274, 28%, 59%);
    --button-color-alt: hsl(0, 0%, 21%);
    --title-color: #fff;
    --text-color: #000;
    --text-color-light: hsl(0, 0%, 55%);
    --body-color: hsl(0, 0%, 99%);
    --container-color: #fff;
    --border-color: hsl(0, 0%, 94%);
    --bd-color: #ededed;

/*========== Font and typography ==========*/
    --body-font: 'Roboto', sans-serif;
    --biggest-font-size: 2rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 2rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

/*========== Font weight ==========*/
    --font-medium: 500;
    --font-bold: 700;

/*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

/*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* font-family: 'Lato', sans-serif; */
    font-family: 'Noto Sans KR', sans-serif;
}

pre {
    font-family: 'Noto Sans KR', sans-serif;
    white-space: pre-line;
}

body {
    margin: 0;
    /* background-color: var(--body-color); */
    color: var(--text-color);
    /*For animation dark mode*/
    transition: .4s;
    top:0 !important;
}

h1, h2, h3, h4 {
    font-weight: var(--font-medium);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next {
    color: #fff !important;
}

.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1170px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden;
}

.section {
    padding: 3.5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    box-shadow: 0 4px 12px hsla(0, 0%, 20%, .1);
    display: inline-flex;
    padding: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
}

.scrollup:hover {
    opacity: 1;
}

.scrollup_icon {
    font-size: 1.5rem;
    color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: .6rem;
    background: hsl(0, 0%, 74%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 17%);
}
/*=============== HEADER & NAV ===============*/
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    /*For animation dark mode*/
    transition: .4s;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
}

.nav_top {
    display: none;
}

.nav_logo, 
.nav_toggle, 
.nav_shop, 
.nav_close {
    color: #2d2d2d;
}

.nav_toggle i {
    color: #2d2d2d;
}

.nav_logo {

    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.nav_logo img {
    width: 140px;
}

.nav_logo-icon {
    font-size: 1.25rem;
}

.nav_btns {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav_toggle, 
.nav_shop {
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav_menu {
        position: fixed;
        background-color: #fff;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        padding: 6rem 2rem 3.5rem;
        transition: .3s;
    }
}

.nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    z-index: 1;
    cursor: pointer;
}

.nav_item {
    padding: 5px 15px;
}

.nav_link {
    color: #2d2d2d;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    font-size: var(--normal-font-size);
    transition: .3s;
}

.nav_link:hover {
    color: var(--first-color);
}

.nav_close {
    font-size: 2rem;
    position: absolute;
    top: .9rem;
    right: 1.25rem;
    cursor: pointer;
}

/* Show menu */
.show-menu {
    right: 0;
}

/* Change background header */
.scroll-header {
    background-color: #fff;
    box-shadow: 0 1px 4px hsla(0, 4%, 15%, .10);
}

/* Active link */
.active-link {
    color: var(--first-color);
}

.on p {
    color: #c23724;
}

.logo_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav_login {
    display: none;
}

.nav_register {
    display: none;
}

.nav_log_btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.nav_log_btn button{
    width: 120px;
    height: 30px;
    border-radius: 5px;
}

/* =========================== */

.home {
    position: relative;
}

.home_bac {
    position: absolute;
    z-index: -3;
    min-height: 550px;
    width: 100%;
    object-fit: cover;
}

.home_btn {
    padding-top: 250px;
    text-align: center;
}


.home_btn button {
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    color: #fff;
    width: 130px;
    height: 30px;
    border-radius: 30px;
    box-shadow: 1px 1px 20px 5px rgb(0, 0, 0, .6);
    font-size: 13px;
    font-weight: bold;
}

.btn_bac {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6d377a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
    color: #6d377a;
    font-size: 20px;
}

.home_menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 30px;
    margin-bottom: 10px;
    position: relative;
}

.home_menu_btn::before {
    content: '';
    position: absolute;
    bottom: 68px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background-color: #bbb;
    z-index: -1;
}

.bome_menu_box.on1 .btn_bac {
    background-color: #bb3838;
    position: relative;
}

.bome_menu_box.on1 .btn_bac .btn_icon {
    background-color: #bb3838;
    color: #fff;
}

.bome_menu_box.on1 .btn_bac::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -20px;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 1px;
    background-color: #c23724;
    z-index: -1;
}

.bome_menu_box {
    text-align: center;
    display: grid;
    justify-items: center;
    cursor: pointer;
}

.home_text_p {
    font-size: 13px;
    color: #fff;
    margin-top: 10px;
}

.home_text_p i {
    color: transparent;
}

.bome_menu_box.on1 .home_text_p i {
    color: #bb3838;
}

.home_search {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.home_search_box {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.search_drop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20%;
    background-color: #fff;
    height: 100%;
    padding: 0 20px;
    border-right: 1px solid #ddd;
    cursor: pointer;
    position: relative;
}

.search_drop i {
    color: #bbb;
    font-size: 25px;
    display: none;
}

.search_btn {
    width: 20%;
    background-color: #c0382b;
    color: #fff;
    height: 100%;
    font-weight: bold;
}

.search_drop_div {
    position: absolute;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 65px;
    z-index: 1;
}

.drop_item {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.search_drop.dr i {
    color: #ffce12;
}

/* ======================== */

.banner {
    position: relative;
    min-height: 240px;
}

.banner_bac {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    z-index: -1;
}

.banner_img {
    width: 200px;
    height: 240px;
    background-color: #eeeeee;
}

.banner_text {
    color: #fff;
}

.banner_text p {
    font-size: 13px;
}

.banner_text h1 {
    margin-bottom: 10px;
}

.banner_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner_icon_box {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 13px;
    justify-content: end;
}

.banner_icon i {
    font-size: 17px;
    opacity: .5;
    cursor: pointer;
    margin-left: 5px;
}

.banner_icon i.on2 {
    opacity: 1;
}

.banner_day_box {
    background-color: #fff;
    width: 60px;
    height: 70px;
    text-align: center;
    border-radius: 10px;
    padding: 18px 0;
    line-height: 130%;
}

.banner_day_box p {
    font-size: 13px;
    color: #bbb;
}

.banner_day_box h1 {
    font-size: 30px;
    color: #bb3838;
}

.banner_day_div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

/* ==================== */
.story_container {
    row-gap: 7.5rem;

}

.story_title {
    font-size: 35px;
    margin-bottom: 5px;
}

.story_description {
    margin-bottom: var(--mb-2-5);
}

.story_images {
    position: relative;
}

.story_square {
    width: 250px;
}

.story_img {
    background-color: #eee;
    width: 250px;
    height: 250px;
    position: absolute;
    left: 3rem;
    top: -3rem;
}

.story_square {
    height: 250px;
}

.story_text {
    color: #bbb;
}

.story_line {
    width: 3px;
    height: 30px;
    background-color: #c23724;
    margin: 20px 0;
}

.story_section-title {
    color: #c0382b;
}

.story_info {
    margin: 100px 0;
}

.story_info_title {
    color: #c0382b;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.story_info_title::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 55%;
    margin: 0 auto;
    width: 45%;
    height: 1px;
    background-color: #ddd;
    z-index: -1;
}

.story_info_title::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 55%;
    right: 0;
    margin: 0 auto;
    width: 45%;
    height: 1px;
    background-color: #ddd;
    z-index: -1;
}

.story_info_box {
    text-align: center;
}

.story_info_box {
    margin: 20px 0;
}

.story_line2 {
    width: 40px;
    height: 3px;
    background-color: #c0382b;
    margin: 30px auto;
}

.story_icon_box {
    display: flex;
    align-items: flex-start;
    text-align: start;
    gap: 15px;
}

.story_icon_box h1 {
    color: #c0382b;
    font-size: 38px;
}

.story_icon_box p {
    color: #bbb;
    font-size: 13px;
}

.story_icon_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* =================================== */

.event {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f5f5f5;
    height: auto;
}

.event_profile_box {
    width: 100%;
    height: 540px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.event_profile {
    width: 100%;
    height: 100%;
    border: 1px solid #bbb;
}

.event_profile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-wrap: wrap;
    align-content: center;
}

.event_profile_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    margin-bottom: 30px;
}

.event_profile_text {
    width: 100%;
}

.event_profile2 {
    width: 100%;
}

.event_profile2_box1 {
    width: 50%;
    height: 540px;
    background-color: #444444;
}

.event_profile2_box2 {
    width: 50%;
    height: 540px;
    background-color: #4f4f4f;
}

.event_profile2 {
    display: flex;
    align-items: center;
}

.event_div2 {
    width: 100%;
    /* height: 1080px; */
    display: flex;
    justify-content: end;
    padding-top: 100px;
    flex-wrap: wrap;
}

.event_div2_img {
    width: 375px;
    height: 980px;
    background-color: #ddd;
}

.schedule_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.schedule_item {
    width: 25%;
    text-align: center;
    border-right: 1px solid #ddd;
    position: relative;
}

.schedule_item_down {
    display: flex;
    align-items: center;
    height: 100%;
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    color: #fff;
    padding: 10px;
    text-align: start;
    border-right: none;
    flex-wrap: wrap;
}

.schedule_item_down i {
    font-size: 35px;
    display: none;
}

.schedule_item_down p {
    font-size: 12px;
    margin-left: 5px;
}

.schedule_item.on3::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 3px;
    background-color: #c0382b;
}

.schedule_box {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px dotted #ddd;
    padding: 20px 0;
}

.schedule_box:last-child {
    border-bottom: none;
}

.schedule_img_box {
    min-width: 130px;
    height: 170px;
    background-color: #eeeeee;
    text-align: center;
    color: #bbb;
    padding: 20px;
    font-size: 13px;
}

.schedule_text p {
    font-size: 14px;
}

.schedule_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto;
}

.schedule_img_box button {
    background-color: #cccfd6;
    color: #fff;
    border-radius: 10px;
    padding: 0 10px;
}

.schedule_img_box p {
    margin: 10px 0;
}

.pantero_title {
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
}

.pantero_title p {
    font-size: 13px;
}

.pantero_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.banner2 {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_bac2 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.speaker_title {
    max-width: 510px;
}

.speaker_title h1 {
    margin: 10px 0;
}

.speaker {
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaker_img2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #bbb;
}

.speaker_img {
    background-color: transparent;
}

.speaker_box.on4 .speaker_img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.speaker_text {
    text-align: center;
}

.speaker_text h3 {
    margin-top: 20px;
}

.speaker_text p {
    margin-top: 5px;
}

.speaker_section {
    width: 100%;
}
.speaker_bac {
    position: absolute;
    width: 720px;
    height: 100%;
    background-color: #ddd;
    right: 0;
    top: 0;
    z-index: -1;
}

.speaker_div {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    margin-top: 100px;
    flex-wrap: wrap;
}

.speaker_text_icon {
    margin: 20px 0;
    display: none;
}

.speaker_box.on4 .speaker_text .speaker_text_icon {
    display: block;
}

.speaker_text_icon i:hover {
    color: #c23724;
}

.speaker_box {
    cursor: pointer;
}

.fest {
    background-color: #eee;
}

.fest_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    font-weight: bold;
    flex-wrap: wrap;
}

.info_item_img {
    min-width: 74px;
    height: 74px;
    border-radius: 50%;
    background-color: #ddd;
}

.info_item_img_box {
    display: flex;
    align-items: center;
    color: #bbb;
    gap: 20px;
}

.info_item_img_box i {
    font-size: 25px;
}

.info_item {
    background-color: #fbfbfb;
    display: grid;
    align-items: center;
    padding: 15px;
}

.info_item:nth-child(2n) {
    background-color: #fff;
}

.info_item_text p {
    font-size: 12px;
}

.info_list {
    margin: 50px 0;
    border-radius: 20px;
    overflow: hidden;
}

.fest_item {
    position: relative;
    cursor: pointer;
}

.fest_item.on5 p {
    color: #c23724;
}

.fest_item.on5::before{
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #c0382b;
}

.info_item_box_icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.info_item_box_icon i {
    font-size: 25px;
    color: #ddd;
}

.info_item_box button {
    width: 150px;
    height: 40px;
    border-radius: 20px;
    background-color: #ddd;
    color: #fff;
    font-size: 13px;
}

.info_item_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info_item.on6 .info_item_box button {
    background: linear-gradient( 105deg, #bb3838, #6d377a );
}


.fest_btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 100px;
}

.fest_btn_box button {
    background-color: #333333;
    color: #fff;
    width: 220px;
    height: 55px;
    border-radius: 30px;
}

.testimonials {
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    color: #fff;
    position: relative;
}

.testimonials_bac1 {
    position: absolute;
    bottom: 0;
    left: 250px;
    width: 250px;
    display: none;
}
.testimonials_bac2 {
    position: absolute;
    top: -90px;
    right: 300px;
    width: 260px;
    display: none;
}
.testimonials_bac3 {
    position: absolute;
    bottom: -90px;
    right: 550px;
    width: 200px;
    display: none;
}

.testimonials_title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 10px;
    gap: 10px;
}

.testimonials_title p {
    font-size: 11px;
    letter-spacing: 5px;
}

.testimonials_box {
    text-align: center;
    padding: 60px 0;
}

.testimonials_text_box {
    max-width: 900px;
    margin: 0 auto;
}

.setarted {
    margin-bottom: 100px;
}

.setarted_title {
    text-align: center;
    margin: 0 auto;
}

.setarted_title p {
    font-size: 12px;
    color: #bb3838;
}

.setarted_title h1 {
    font-weight: bold;
    font-size: 35px;
    margin: 10px 0;
}

.set_images {
    position: relative;
    margin-top: 250px;
}

.set_images:nth-child(1) {
    margin-top: 0;
}

.set_img {
    background-color: #f6f6f6;
    width: 250px;
    height: 480px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.setarted_div {
    margin-top: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.set_top {
    width: 100%;
    height: 110px;
    background-color: #bb3838;
    color: #fff;
    padding: 25px 30px;
}

.set_bot {
    padding: 30px;
}

.set_item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666666;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.set_item i {
    font-size: 20px;
}

.set_btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.set_btn button {
    width: 170px;
    height: 50px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 13px;
}

.set_img:hover {
    background-color: #fff;
    box-shadow: 1px 1px 20px 3px rgb(0, 0, 0, .2);
}

.set_img:hover .set_btn button {
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    color: #fff;
}

.faq {
    background-color: #eeeeee;
    padding-bottom: 100px;
}

.faq_title p {
    font-size: 11px;
    color: #c0382b;
    letter-spacing: 5px;
    font-weight: bold;
}

.faq_item {
    background-color: #f9f9f9;
    padding: 15px;
}

.faq_item:nth-child(2n) {
    background-color: #fff;
}

.faq_btn {
    background-color: #eeeeee;
    color: #bbb;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.faq_btn2 {
    background-color: #c0382b;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: none;
}

.faq_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.faq_text_box {
    display: none;
}

.faq_item.on7 .faq_btn{
    display: none;
}

.faq_item.on7 .faq_btn2{
    display: block;
}

.faq_item.on7 .faq_text_box {
    display: block;
}

.faq_item.on7 .faq_text {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq_list {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.faq_now {
    margin-top: 20px;
}

.faq_now_btn {
    width: 170px;
    height: 50px;
    background-color: #333333;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
}

.faq_now_btn2 {
    min-width: 170px;
    height: 50px;
    background: linear-gradient( 105deg, #bb3838, #6d377a );
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    margin-left: 10px;
}

.blog_img {
    width: 200px;
    height: 170px;
    background-color: #cccccc;
    border-radius: 20px;
}

.blog_text p {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 10px;
}
.blog_text h3 {
    margin-bottom: 20px;
}

.blog_text button {
    background-color: transparent;
    font-size: 11px;
    font-weight: bold;
}

.blog_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.blog_div {
    margin-top: 50px;
}

.blog_box_div {
    width: 100%;
    min-height: 170px;
    background-color: #bb3838;
    padding: 20px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 20px;
    gap: 30px;
}

.subscribe {
    position: relative;
    min-height: 300px;
}

.subscribe_bac {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.subscribe_title p {
    color: #ffce12;
    letter-spacing: 3px;
    font-size: 13px;
}

.subscribe_title h1 {
    font-size: 39px;
}

.subscribe_section {
    color: #fff;
    min-height: 300px;
    flex-wrap: wrap;
}

.subscribe_inp {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subscribe_inp input {
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0 20px;
    width: 100%;
}

.subscribe_inp input::placeholder {
    font-size: 12px;
    color: #bbb;
}

.subscribe_inp button {
    min-width: 140px;
    background-color: #ffce12;
    height: 100%;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}

.footer {
    background-color: #333333;
    color: #fff;
}

.footer_div1 {
    max-width: 400px;
}

.footer_div1_icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_div1_icon i {
    color: #ffce12;
}

.footer_div1_icon2_title {
    line-height: 200%;
    margin-top: 10px;
}

.footer_div1_icon2_title h1 {
    font-size: 50px;
}

.footer_div1_icon2_title p {
    font-size: 13px;
    font-weight: bold;
    margin-left: 4px;
}

.footer_icon_box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
}

.footer_div1_icon2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_icon_box_div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_div2 {
    max-width: 220px;
}

.footer_div2_item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #bbb;
    color: #bbb;
    padding: 8px 0;
    font-size: 13px;
    cursor: pointer;
}

.footer_div2_item:hover {
    color: #ffce12;
    padding: 8px 10px;
}

.footer_div3_img {
    width: 370px;
    height: 300px;
    background-color: #444444;
}

.footer_section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer_bottom {
    background-color: #2e2e2e;
    width: 100%;
    height: 100px;
}

.reserved_text2 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reserved_text2 p {
    cursor: pointer;
}

.reserved_text2 p:hover {
    color: #bbb;
}

.reserved_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    color: #4f4f4f;
}


/* ================================== */

@media screen and (min-width: 767px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .section {
        padding: 5.5rem 0 1rem;
    }

    .nav {
        height: calc(var(--header-height) + 3.5rem);
        justify-content: space-between;
        column-gap: 6rem;
        margin: 0 auto;
    }
    .nav_toggle, 
    .nav_close {
        display: none;
    }
    .nav_list {
        flex-direction: row;
    }
    .nav_item {
        padding: 5px 0;
        margin: 0 20px;
    }
    .nav_link {
        text-transform: initial;
        font-size: var(--small-font-size);
    }
    .nav_btns {
        margin-left: auto;
    }
    .nav_logo img {
        width: 180px;
    }

    .nav_top {
        display: block;
    }
    .on {
        position: relative;
    }
    .on::before {
        content: '';
        position: absolute;
        bottom: -41px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 5px;
        background-color: #c23724;
    }
    .nav_login {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: bold;
        border-left: 1px solid #eee;
        height: 40px;
        padding: 0 20px;
        padding-right: 10px;
    }
    
    .nav_login i {
        font-size: 16px;
    }
    
    .nav_register {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: bold;
        border-left: 1px solid #eee;
        height: 40px;
        padding: 0 20px
    }
    
    .nav_register i {
        font-size: 21px;
        margin-top: 2px;
    }

    .nav_log_btn {
        display: none;
    }

    .home_menu_btn {
        gap: 100px;
    }

    .home_btn {
        padding-top: 530px;
    }
    .search_drop i {
        display: block;
    }

    .home_btn button {
        width: 180px;
        height: 50px;
        font-size: 14px;
    }
    .home {
        min-height: 910px;
    }

    .home_bac {
        height: 100%;
    }
    .story_container,
    .newsletter_bg {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .story_images {
        order: -1;
    }
    .story_container {
        column-gap: 13rem;
    }

    .story_container {
        padding-top: 3rem;
    }
    .story_img {
        left: 3rem;
        top: -2rem;
    }
    .story_container {
        column-gap: 8rem;
    }

    .story_square {
        width: 450px;
    }
    .story_img {
        width: 520px;
        height: 500px;
        background-color: #eeeeee;
    }

    .story_square {
        height: 450px;
    }

    .event_profile_box {
        max-width: 900px;
    }
    .event_profile2 {
        max-width: 900px;
    }
    .event_div1 {
        width: 100%;
    }

    .event_div2 {
        width: 100%;
        flex-wrap: nowrap;
    }
    .schedule {
        max-width: 570px;
    }
    .event_div2_img {
        max-width: 375px;
    }

    .schedule_item_down {
        flex-wrap: nowrap;
    }

    .event {
        flex-wrap: nowrap;
    }

    .schedule_item_down i {
        display: block;
    }

    .info_item {
        grid-template-columns: repeat(2,1fr);
    }

    .faq_section {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
    }

    .testimonials_bac1 {
        display: block;
    }
    
    .testimonials_bac2 {
        display: block;
    }

    .testimonials_bac3 {
        display: block;
    }

    .set_images {
        margin-top: 0;
    }

    .subscribe_section {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
        align-items: center;
    }
}