/* BASIC css start */
/*
 * [ÇÊÀ£¸ô PC ¸ÞÀÎ CSS - ¼º´É/À¯Áöº¸¼ö ÃÖÀûÈ­º»]
 * Àû¿ë À§Ä¡: ±âÁ¸ 2.txt(CSS) ÀüÃ¼ ±³Ã¼
 * ¿¬µ¿ ÆÄÀÏ: 01_ÇÊÀ£¸ô_¸ÞÀÎ_HTML_ÃÖÀûÈ­.txt / 03_ÇÊÀ£¸ô_¸ÞÀÎ_JS_ÃÖÀûÈ­.txt
 *
 * ÁÖ¿ä º¯°æ
 * - »èÁ¦µÈ sec1/sec10/sec11 ½ºÅ¸ÀÏ Á¦°Å
 * - ¼ôÅ¬¸³ ÀÎ¶óÀÎ CSS¸¦ ÀÌ ÆÄÀÏ·Î ÅëÇÕ
 * - JS·Î °è»êÇÏ´ø ÁÂÃø ¿©¹éÀ» CSS calc·Î Ã³¸®
 * - transition: all Á¦°Å
 * - ¸®ºä ½æ³×ÀÏ Á¤»ç°¢Çü Ã³¸®¸¦ CSS aspect-ratio·Î º¯°æ
 */

:root {
    --fw-content-width: 1780px;
    --fw-side-space: 40px;
    --fw-section-gap: 100px;
}

#content {
    width: auto;
}

/* ==================================================================
   1. ¸ÞÀÎ ºñÁÖ¾ó
   ================================================================== */
.fw-main-visual-v2 {
    position: relative;
    width: 100% !important;
    height: 780px !important;
    margin-bottom: 50px;
    overflow: hidden !important;
    background: #fdfdfd !important;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.fw-slider-list-v2 {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fw-slide-item-v2 {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-position: center !important;
    background-size: cover !important;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s !important;
}

.fw-slide-item-v2.active {
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible;
}

.fw-v2-inner {
    position: relative !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    width: 100%;
    max-width: var(--fw-content-width) !important;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--fw-side-space) !important;
    box-sizing: border-box !important;
}

.fw-slide-item-v2.text-left .fw-v2-inner {
    justify-content: flex-start !important;
    text-align: left !important;
}

.fw-slide-item-v2.text-right .fw-v2-inner {
    justify-content: flex-end !important;
    text-align: right !important;
}

.fw-slide-item-v2.text-center .fw-v2-inner {
    justify-content: center !important;
    text-align: center !important;
}

.fw-slide-overlay-v2 {
    position: absolute !important;
    inset: 0 !important;
    z-index: 5 !important;
}

.fw-slide-content-v2 {
    max-width: 700px !important;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s 0.5s ease, transform 1s 0.5s ease !important;
}

.fw-slide-item-v2.active .fw-slide-content-v2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fw-slide-script {
    display: block !important;
    margin-bottom: 5px !important;
    font-family: 'Dancing Script', cursive !important;
    font-size: 72px !important;
}

.fw-slide-title-v2 {
    margin: 0 0 25px !important;
    font-size: 70px !important;
    font-weight: 200 !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    text-transform: uppercase !important;
}

.fw-slide-title-v2 strong {
    display: block !important;
    margin-top: 10px !important;
    font-weight: 800 !important;
}

.fw-slide-desc-v2 {
    margin-bottom: 45px !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    word-break: keep-all !important;
}

.fw-slide-link-v2 {
    display: inline-block !important;
    padding: 16px 50px !important;
    border: 1px solid transparent !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    text-decoration: none !important;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s !important;
}

/* ´ÙÅ© Å×¸¶ */
.fw-slide-item-v2.dark-theme .fw-slide-content-v2,
.fw-slide-item-v2.dark-theme .fw-slide-content-v2 *,
.fw-slide-item-v2.dark-theme .fw-slide-script,
.fw-slide-item-v2.dark-theme .fw-slide-title-v2,
.fw-slide-item-v2.dark-theme .fw-slide-desc-v2 {
    color: #fff !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3) !important;
}

.fw-slide-item-v2.dark-theme .fw-slide-overlay-v2 {
    background: rgba(0, 0, 0, 0.25) !important;
}

.fw-slide-item-v2.dark-theme .fw-slide-link-v2 {
    color: #fff !important;
    border-color: #fff !important;
}

.fw-slide-item-v2.dark-theme .fw-slide-link-v2:hover {
    color: #111 !important;
    background: #fff !important;
}

/* ¶óÀÌÆ® Å×¸¶ */
.fw-slide-item-v2.light-theme .fw-slide-content-v2,
.fw-slide-item-v2.light-theme .fw-slide-content-v2 *,
.fw-slide-item-v2.light-theme .fw-slide-script,
.fw-slide-item-v2.light-theme .fw-slide-title-v2,
.fw-slide-item-v2.light-theme .fw-slide-desc-v2 {
    color: #111 !important;
}

.fw-slide-item-v2.light-theme .fw-slide-overlay-v2 {
    background: rgba(255, 255, 255, 0.1) !important;
}

.fw-slide-item-v2.light-theme .fw-slide-script {
    color: #333 !important;
}

.fw-slide-item-v2.light-theme .fw-slide-desc-v2 {
    color: #444 !important;
}

.fw-slide-item-v2.light-theme .fw-slide-link-v2 {
    color: #111 !important;
    border-color: #111 !important;
}

.fw-slide-item-v2.light-theme .fw-slide-link-v2:hover {
    color: #fff !important;
    background: #111 !important;
}

/* ¸ÞÀÎ µµÆ® */
.fw-slider-dots-v2 {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    z-index: 30 !important;
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    transform: translateX(-50%) !important;
}

.fw-dot-v2 {
    width: 8px !important;
    height: 8px !important;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50% !important;
    background: rgba(128, 128, 128, 0.4) !important;
    cursor: pointer !important;
    transition: width 0.3s, border-radius 0.3s, background-color 0.3s;
}

.fw-dot-v2.active {
    width: 40px !important;
    border-radius: 10px !important;
    background: #111 !important;
}

.fw-main-visual-v2.is-dark .fw-dot-v2.active {
    background: #fff !important;
}

.fw-dot-v2:focus-visible,
.fw-slide-link-v2:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

/* ==================================================================
   2. °øÅë ¼½¼Ç
   ================================================================== */
section {
    width: 100%;
}

section:not(:last-child) {
    margin-bottom: var(--fw-section-gap);
}

.sec_inner {
    width: min(var(--fw-content-width), calc(100% - (var(--fw-side-space) * 2)));
    margin: 0 auto;
}

section h2 {
    margin-bottom: 25px;
    color: #000;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 500;
}

section h2.en {
    font-weight: 600;
}

.section img {
    max-width: 100%;
}

/* ==================================================================
   3. sec2 - ±âÈ¹ ¹è³Ê ½½¶óÀÌµå
   ================================================================== */
#sec2 .sec_inner {
    width: 100%;
}

#sec2 .sec_inner h2 {
    width: min(var(--fw-content-width), calc(100% - (var(--fw-side-space) * 2)));
    margin: 0 auto 25px;
}

#sec2 .sec2_cont,
#sec5 .sec5_cont {
    padding-left: max(20px, calc((100vw - var(--fw-content-width)) / 2));
}

#sec2 .swiper,
#sec5 .swiper {
    padding-bottom: 40px;
}

#sec2 .swiper ul li {
    width: 22%;
}

#sec2 .img_sec a {
    display: block;
    overflow: hidden;
}

#sec2 .img_sec a img {
    display: block;
    width: 100%;
    transition: transform 0.3s;
}

#sec2 .img_sec a:hover > img {
    transform: scale(1.05);
}

#sec2 .text_sec {
    width: 100%;
    padding: 25px 0;
}

#sec2 .text_sec p {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.2;
}

#sec2 .text_sec p.big {
    margin-bottom: 16px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

#sec2 .text_sec p.small {
    color: #8d8d8d;
    font-size: 13px;
    font-weight: 400;
}

#sec2 .swiper .swiper-pagination-progressbar,
#sec5 .swiper .swiper-pagination-progressbar {
    top: auto;
    bottom: 0;
    width: min(var(--fw-content-width), calc(100vw - (var(--fw-side-space) * 2)));
    height: 1.5px;
    background: rgba(0, 0, 0, 0.09);
}

#sec2 .swiper-pagination-progressbar-fill,
#sec5 .swiper-pagination-progressbar-fill {
    background: #222;
}

/* ==================================================================
   4. ¼ôÅ¬¸³
   ================================================================== */
.fw-shorts-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
    color: #fff;
    background: #111;
    font-family: 'Pretendard', sans-serif;
}

.fw-shorts-title {
    max-width: var(--fw-content-width);
    margin: 0 auto 30px;
    color: #fff !important;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
}

.fw-shortsSwiper {
    position: relative;
    max-width: var(--fw-content-width);
    margin: 0 auto;
    overflow: hidden;
}

.fw-shorts-section .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    border: 0 !important;
    border-radius: 15px;
    background: #fff;
}

.fw-video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 8 / 12;
    background: #000;
    cursor: pointer;
}

.fw-video-box:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
}

.fw-video-box .fw-poster-img,
.fw-video-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fw-video-box .fw-poster-img {
    z-index: 1;
    transition: opacity 0.8s ease;
}

.fw-video-box video {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.fw-shorts-section .swiper-slide.is-playing .fw-video-box video {
    opacity: 1;
}

.fw-shorts-section .swiper-slide.is-playing .fw-video-box .fw-poster-img {
    opacity: 0.3;
}

.fw-play-icon,
.fw-play-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    color: #fff;
    pointer-events: none;
}

.fw-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    font-size: 10px;
}

.fw-play-status {
    display: none;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 0, 0, 0.85);
    font-size: 16px;
    font-weight: 700;
}

.fw-shorts-section .swiper-slide.is-playing .fw-play-icon {
    display: none;
}

.fw-shorts-section .swiper-slide.is-playing .fw-play-status {
    display: block;
}

.fw-click-tip {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.fw-tip-box {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    font-size: 11px;
}

.fw-info-link {
    display: block;
    text-decoration: none !important;
}

.fw-info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100px;
    padding: 15px;
    border-top: 1px solid #eee;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.fw-prod-img {
    flex-shrink: 0;
    width: 60px;
    height: 75px;
    border-radius: 4px;
    object-fit: cover;
}

.fw-prod-info-text {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.fw-prod-name {
    width: 100%;
    margin: 0 0 8px;
    overflow: hidden;
    color: #222 !important;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fw-view-btn {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #888 !important;
    background: #f9f9f9;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.fw-info-link:hover .fw-view-btn {
    color: #fff !important;
    border-color: #333;
    background: #333;
}

.fw-shorts-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    color: #777;
}

.fw-swiper-pagination {
    position: static !important;
    width: auto !important;
    color: #999;
    font-size: 14px;
}

.fw-swiper-prev,
.fw-swiper-next {
    color: #999;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.fw-swiper-prev:hover,
.fw-swiper-next:hover {
    color: #fff;
}

/* ¼ôÅ¬¸³ À¯Æ©ºê ¸ð´Þ */
.fw-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.fw-video-modal.is-open {
    display: flex;
}

body.fw-modal-open {
    overflow: hidden;
}

.fw-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 92%;
    max-width: 400px;
    animation: fwPop 0.3s ease;
}

@keyframes fwPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fw-close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

.fw-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #000;
}

.fw-iframe-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fw-modal-buy-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    background: #fff;
}

.modal-p-img-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.modal-p-img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.modal-p-info-box {
    flex-grow: 1;
    min-width: 0;
}

.modal-p-info-box h4 {
    margin: 0 0 5px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.fw-modal-buy-btn {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    color: #fff !important;
    background: #000;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
}

/* ==================================================================
   5. sec3 - MD'S CHOICE
   ================================================================== */
#sec3 .sec3_cate {
    margin-bottom: 35px;
}

#sec3 .sec3_cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

#sec3 .sec3_cate ul li a {
    display: block;
    width: 100%;
    color: #979797;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-align: center;
    transition: color 0.3s;
}

#sec3 .sec3_cate ul li.on > a {
    color: #000 !important;
    font-weight: 700;
}

#sec3 .sec3_cate ul li a:hover {
    color: #333;
}

#sec3 .sec3_prd > div {
    position: relative;
    display: none;
}

#sec3 .sec3_prd > div.show {
    display: block;
}

#sec3 .sec3_prd > div ul {
    display: flex;
    flex-wrap: wrap;
}

/* ==================================================================
   6. sec4 - ¾È³» ¹è³Ê
   ================================================================== */
#sec4 .sec_inner ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#sec4 .sec_inner ul li a {
    display: block;
    width: 100%;
}

#sec4 .sec_inner ul li a img {
    display: block;
    width: 100%;
}

/* ==================================================================
   7. sec5 - BEST ITEM
   ================================================================== */
#sec5 {
    width: 100%;
}

#sec5 h2 {
    width: min(var(--fw-content-width), calc(100% - (var(--fw-side-space) * 2)));
    margin: 0 auto 25px;
}

#sec5 .swiper ul li {
    width: 280px;
}

/* ==================================================================
   8. sec6 - ÃßÃµ/Æ¯º° »óÇ°
   ================================================================== */
#sec6 {
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 50px;
}

#sec6 .sec6_cont {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 80px;
}

#sec6 .sec6_cont > div {
    width: calc((100% - 80px) / 2);
    min-width: 0;
}

#sec6 .banner h3 {
    margin-bottom: 30px;
    color: #444;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
}

#sec6 .banner_img a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

#sec6 .banner_img a img {
    display: block;
    width: 100%;
}

#sec6 .banner p {
    margin: 40px 0 60px;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.7px;
}

#sec6 .sec6_cont > div .swiper {
    padding-bottom: 20px;
}

#sec6 .item_list .info .prdname {
    margin-bottom: 5px;
}

#sec6 .item_list .info .price {
    font-weight: 500;
}

#sec6 .swiper-scrollbar {
    height: 2px;
}

#sec6 .swiper :is(.swiper-button-next, .swiper-button-prev) {
    width: 35px;
    height: 50px;
    padding: 10px;
    color: #fff;
    background: #222;
    filter: opacity(0);
    transform: translateY(-50%);
    transition: filter 0.4s;
}

#sec6 .sec6_cont > div:hover :is(.swiper-button-next, .swiper-button-prev) {
    filter: opacity(1);
}

#sec6 .swiper-button-next {
    right: 0;
}

#sec6 .swiper-button-prev {
    left: 0;
}

#sec6 .swiper-button-next::after,
#sec6 .swiper-button-prev::after {
    font-size: 15px;
}

/* ==================================================================
   9. sec7 - BEST REVIEW
   ================================================================== */
#sec7 {
    padding: 100px 0 50px;
    background: #fff;
}

#sec7 .sec7_review > div {
    width: 100%;
}

#sec7 .sec7_review > div > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

#sec7 .sec7_review > div > ul > li {
    flex-grow: 1;
}

#sec7 .li_review .rv_main {
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
}

#sec7 .li_review .rv_main .thumb {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
}

#sec7 .li_review .rv_main .thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

#sec7 .li_review .rv_main .thumb a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sec7 .li_review .rv_main_cont {
    width: 100%;
    max-width: 280px;
    padding: 20px 0;
}

#sec7 .li_review .rv_cont {
    margin-bottom: 15px;
    overflow: hidden;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.5px;
    text-overflow: ellipsis;
}

#sec7 .li_review .rv_info span {
    color: #acacac;
}

#sec7 .li_review .rv_mini {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

#sec7 .li_review .mini_thumb {
    display: inline-block;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
}

#sec7 .li_review .mini_thumb a,
#sec7 .li_review .mini_thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

#sec7 .li_review .mini_thumb img {
    object-fit: cover;
}

#sec7 .li_review .rv_mini ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#sec7 .li_review .rv_mini ul li {
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
}

#sec7 .li_review .rv_mini ul li:nth-child(2) {
    display: flex;
    align-items: center;
}

#sec7 .li_review .rv_mini ul li span {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: #c7c7c7;
    font-family: 'Calibri', sans-serif;
    font-size: 12px;
}

#sec7 .li_review .rv_mini ul li span img {
    display: inline-block;
    width: auto;
    height: auto;
    margin-right: 4px;
}

/* ±âÁ¸ ½ºÅ²¿¡¼­ »ç¿ëÇÏ´Â °æ¿ì¸¦ À§ÇÑ º¸Á¸ ±ÔÄ¢ */
#sec8 h2 {
    margin-bottom: 40px;
    letter-spacing: 9px;
}

/* ==================================================================
   10. ¹ÝÀÀÇü
   ================================================================== */
@media (max-width: 1800px) {
    .fw-v2-inner {
        max-width: 100% !important;
        padding-right: 60px !important;
        padding-left: 60px !important;
    }
}

@media (max-width: 1200px) {
    :root {
        --fw-side-space: 30px;
        --fw-section-gap: 80px;
    }

    #sec2 .swiper ul li {
        width: 35%;
    }

    #sec6 {
        padding-top: 100px;
    }

    #sec6 .sec6_cont {
        flex-direction: column;
        gap: 100px;
    }

    #sec6 .sec6_cont > div {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .fw-main-visual-v2 {
        height: 600px !important;
    }

    .fw-slide-title-v2 {
        font-size: 52px !important;
    }

    .fw-slide-desc-v2 {
        font-size: 22px !important;
    }

    #sec2 .swiper ul li {
        width: 45%;
    }
}

@media (max-width: 768px) {
    :root {
        --fw-side-space: 20px;
        --fw-section-gap: 60px;
    }

    .fw-main-visual-v2 {
        height: 500px !important;
    }

    .fw-v2-inner,
    .fw-slide-item-v2.text-left .fw-v2-inner,
    .fw-slide-item-v2.text-right .fw-v2-inner {
        justify-content: center !important;
        padding-right: 25px !important;
        padding-left: 25px !important;
        text-align: center !important;
    }

    .fw-slide-script {
        font-size: 38px !important;
    }

    .fw-slide-title-v2 {
        font-size: 34px !important;
    }

    .fw-slide-desc-v2 {
        margin-bottom: 30px !important;
        font-size: 15px !important;
    }

    .fw-slide-link-v2 {
        padding: 12px 35px !important;
        font-size: 12px !important;
    }

    .fw-slider-dots-v2 {
        bottom: 25px !important;
    }

    section h2,
    .fw-shorts-title {
        font-size: 26px;
    }

    #sec2 .swiper ul li {
        width: 78%;
    }

    #sec4 .sec_inner ul {
        flex-direction: column;
        gap: 15px;
    }

    #sec6 .banner h3 {
        font-size: 28px;
    }

    #sec6 .banner p {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fw-slide-item-v2,
    .fw-slide-content-v2,
    .fw-video-box .fw-poster-img,
    .fw-video-box video,
    .fw-modal-content {
        animation: none !important;
        transition: none !important;
    }
}

/* BASIC css end */

