/* ================================ */
/* ================================ */
[mn]{
    background-repeat: no-repeat;
    background-size: cover;
}

.float.btnbx{
    position: absolute;
    top: 90px;
    right: 15px;
    z-index: 30;
    width: 120px;
    line-height: 0;
    position: fixed;

    @media(width<575px){
        top: auto;
        right: auto;
        left: 15px;
        bottom: 60px;
        position: fixed;
        width: 90px;
    }

    img{
        max-height: 60px;
    }
}
.subttl {
    color: #00f0e0;
    font-family: var(--ft-t2);
    margin: 15px 0;
    font-size: 120%;
    line-height: 1.2;
}

[mn="menu"]{
    padding: 30px 0 9px;
    color: #fff;
    font-weight: 400;

    position: absolute;
    z-index: 20;

    .logo{
        line-height: 1;
    }

    .logo img{
        max-height: 90px;
    }
}

nav {
    line-height: 1;
}

nav :is(ul, li) {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ft-t1);
    /* font-size: 110%; */
    /* text-transform: uppercase; */
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

nav a:hover,
nav a.active {
    color: var(--clr01)
}

nav>ul {
    gap: 30px;
}
.mobilenavw nav>ul {
    gap: 15px;
}
nav>ul>li>a{
text-transform: uppercase;
}
nav>ul li a i {
    margin: 0 0 0 6px;
}

nav>ul>li~li {
    /* margin: 0 0 0 12px;
    padding: 0 0 0 12px; */
    position: relative
}

@media (max-width: 767px) {
    nav>ul>li ul {
        padding: 0 0 0 12px !important
    }

    nav>ul>li>ul li {
        width: 100%;
        font-size: 80%;
    }

    nav>ul>li>ul li~li {
        border-top: 1px solid #eee
    }

    nav>ul>li>ul a {
        text-transform: initial;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (min-width: 767px) {
    nav>ul>li>ul {
        position: absolute;
        bottom: -15px;
        right: 50%;
        translate: 50% 100%;
        scale: 1 0;
        /* display: none; */
        min-width: 250px;
        background-color: #fff;
        padding: 9px;
        transition: .6s all .3s ease;
        display: block;
        transform-origin: top;
        border: 1px solid #999;
        border-radius: 3px;
    }

    nav>ul>li:hover{
        z-index: 4;
    }
    nav>ul>li:hover>ul {
        transition: .6s all ease;
        scale: 1 1;
        
    }

    nav>ul>li>a:not(.vbtn) {
        padding: 9px;

 
        .main_nav{
            translate: 0 0;
            display: block;
            text-align: center;
        } 

        &::after{
            content: '';
            width: 0%;
            height: 3px;
            display: block;
            position: absolute;
            bottom: 0;
            left: 0; 
            background-color: var(--clr01x, #fff);
            transition: .6s all cubic-bezier(0.075, 0.82, 0.165, 1);
        }

        &:hover,
        &.active{
            color: #fff;
            &::after{ 
                width: 100%; 
            }
        } 
    }
    nav>ul>li>ul a {
        text-transform: initial;
        width: 100%;
        justify-content: flex-start;
        padding: 9px !important;
        border-radius: 3px;
    }

    nav>ul>li>ul a:hover,
    nav>ul>li>ul a.active {
        /* background-color: #444; */
        color: var(--clr01);
    }

    nav>ul>li>ul li {
        width: 100%;
        justify-content: flex-start;
    }

    nav>ul>li>ul li~li {
        /* margin-top: 9px; */
    }
}

@media (min-width: 767px) {
    /* nav > ul > li::after {
        content: '';
        display: block;
        right: 0;
        top: 50%;
        translate: 0 -50%;
        height: 12px;
        width: 2px;
        background-color: #999;
        position: absolute;
    }
    nav > ul > li:last-child::after {
        display: none;
    } */
}

.dekstopnav .main>* {
    padding: 3px 0
}
 

.mobilenav {
    position: fixed;
    height: 100vh;
    background-color: rgba(0 0 0 / 50%);
    z-index: 50;
    padding: 0 0 0 0;
    width: 100% !important;
    display: block;
    translate: -101% 0;
    opacity: 0;
    transition: .6s all .3s ease;
}

.mobilestickbx {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 15px;
    width: 100% !important;
    background-color: var(--clr01, #fff);
    z-index: 50;
    /* border-bottom: 1px solid #ccc; */
}

.mobilestickbx .mobilesocialcon {
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%
}

.mobilestickbx img {
    max-height: 45px
}

.mobilestickbx ._imgobj {
    max-width: 28vw;
}

.mobilenav nav a {
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    color: inherit;
    text-decoration: none;
    padding: 6px 0;
    font-size: 150%;

    .sub_nav{
        width: 100%;
        font-family: var(--ft-t1);
        font-weight: bold;
        font-size: 80%;
        margin: 6px 0 0;
    }
}

.mobilenav.active {
    translate: 0 0;
    opacity: 1;
    transition: .3s all ease;
}

.mobilenavw {
    transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1);
    height: 100vh;
    background-color: #fff;

    width: calc(100% - 90px) !important;
    display: block;
    overflow: hidden;
    overflow-y: auto;
    translate: -101% 0;
    opacity: 0;
    max-width: 400px;
}

.mobilenav.active .mobilenavw {
    transition: .9s all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    translate: 0 0;
    opacity: 1;
}

.mobilenav nav {
    padding: 90px 24px 15px;
}

.mobilenav .infobx {
    padding: 0 24px 60px;
}

.mobilenav .infow {
    border-top: 1px solid #ccc;
    padding: 21px 0 0;
}

.mobilenav nav :is(ul, li) {
    margin: 0;
    padding: 0;
}

.mobilenav nav>ul>li {
    flex: 0 0 100%;
}

.mobilenav nav a {
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    color: inherit;
    text-decoration: none;
    flex-wrap: wrap;
}
.mobilenav nav a.vbtn {
   padding: 15px !important; 
}

.mobilenav nav .med a {
    width: auto;
    flex: auto
} 

/* ===================== */
.menuburger {
    --square: 35px;
    --height: 3px;
    --top: 9px;
    --vpadding: 15px;
    --bgclr: var(--clr01x, #fff);
    --radius: 5px;
    position: fixed;
    width: var(--square) !important;
    height: var(--square);
    top: var(--vpadding);
    right: calc(var(--vpadding) + 9px);
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 55;
    scale: 0.7;

 
}

.menuburger .icon {
    transition-duration: 0.5s;
    position: relative;
    height: var(--height);
    width: var(--square);
    top: 0;
    background-color: var(--bgclr);
    border-radius: var(--radius)
}

.menuburger .icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: var(--square);
    height: var(--height);
    background-color: var(--bgclr);
    content: "";
    top: calc(-1 * var(--top));
    border-radius: var(--radius)
}

.menuburger .icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: calc(var(--square) / 2);
    height: var(--height);
    background-color: var(--bgclr);
    content: "";
    top: var(--top);
    border-radius: var(--radius)
}

.menuburger.open {
    --bgclr: var(--clr02x, #fff);
}

.menuburger.open .icon {
    transition-duration: 0.5s;
    transform: rotateZ(180deg);
}

.menuburger.open .icon:before {
    transform: rotateZ(45deg) scaleX(0.75) translate(var(--top), -6px);
}

.menuburger.open .icon:after {
    width: var(--square);
    transform: rotateZ(-45deg) scaleX(0.75) translate(var(--top), 6px);
}


.mobilestickbxp,
.dekstickbx {
    width: 100% !important;
}

.dekstickbx {
    padding: 9px 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10; 
    /* border-bottom: 1px solid #eee; */
    transition: 2s all cubic-bezier(0.075, 0.82, 0.165, 1);
    translate: 0 -101%;
    background-color: #021e05;
    color: #fff;
}

body.scrolled .dekstickbx {
    translate: 0 0;
}

.dekstickbx .logo img {
    max-height: 55px;
}

.dekstickbx .logo ._imgobj img {
    max-height: 15px;
}

@media (max-width: 767px) {

    .dekstickbx,
    [mn="menu"] {
        display: none;
    }
}

@media (max-width: 575px) {
    .mobilestickbx>* {
        /* justify-content: flex-end; */

    }
}

@media (min-width: 767px) {

    .menuburger,
    .mobilestickbxp,
    .mobilestickbx,
    .mobilenav {
        display: none !important;
    }
}
.topmenu { 
    height: 12px;
    width: 100% !important;
    background-image: linear-gradient(270deg, 
    rgba(0,207,78,1) 0%,  
    rgba(19,168,158,1) 100%);
} 
:where(.mobilenav, .topmenu) .iconbx a {
    text-decoration: none;
}

:where(.mobilenav, .topmenu) .iconbx { 
    --clr: var(--secftclr, #000);
    --clrhov: var(--secftclr, #000);
    --font: inherit;
    font-size: 80%;
    margin: 0 6px 0 0;
}

:where(.mobilenav, .topmenu) .iconbx h4 {
    font-family: inherit;
    font-size: inherit;
    color: inherit; 
    margin: 0 0 3px;
}
/* ============ */
/* ============ */
/* ============ */
nav .horibar {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    margin: 0;
    transition: .4s all ease;
    opacity: 0;
    display: none;
}

nav li>a.active .horibar,
nav a:hover .horibar {
    opacity: 1
}

nav .horibar:before {
    width: 20px;
}

nav .horibar:after {
    width: 10px;
}

nav .med .scon {
    border-radius: 3px;
}

.mobilenavw .horibar {
    display: none;
}

.mobilenav .med .scon {
    border-radius: 3px
}

/* .mobilenavw .med .bimg, */
nav .med .bimg {
    background-color: #fff
}

nav .mediabx .unit {
    margin: 0 0 0 9px
}

.dekstickbx nav .med .bimg {
    background-color: #000
}

.med .scon.special {
    overflow: visible;
}

.med .scon.special ul {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    padding: 12px;
    translate: 0 100%;
    background: #fff;
    display: none;
    list-style: none;
    margin: 0 !important;
}

.med .scon.special ul a {
    color: inherit
}

.med .scon.special ul li~li {
    margin: 9px 0 0;
}

.med .scon.special ul li {
    width: 100%;
}

.med .scon.special:hover ul {
    display: block;
}

@media (max-width: 767px) {
    .mobilenav .med .scon.special ul {
        border: 1px solid #ccc;
        border-radius: 3px;
    }
}

[mn="menu"] img.decor {
    max-height: 100%;
} 
 

body.nobanner [mn="menu"] .dekstopnav>* {
    margin-top: 0px;
}

nav .login {
    color: #ec008c
}

li .med .scon {
    border: 0 !important;
    background-color: transparent;
}

li .med .bimg {
    background-color: var(--clr01);
}

.med .count {
    --square: 15px;
    width: var(--square);
    height: var(--square);
    position: absolute;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 75%;
    font-family: var(--ft-t2);
}

.medstick {
    position: fixed;
    right: 5px;
    top: 81px;
    z-index: 10;
    width: 40px;
}

@media (min-width: 767px) {
    .medstick {
        display: none;
    }
}

.mobilestickbx .med {
    margin-left: 21px;
}

.mobilestickbx .med .scon {
    max-width: 30px;
    width: 30px;
    background-color: transparent;
    border: 0;
    overflow: initial;
}

.mobilestickbx .med .scon {
    max-width: 30px;
    width: 30px;
    background-color: transparent;
    border: 0;
    margin: 0;
}

.mobilestickbx .med .bimg-w {
    background-color: transparent;
}

.mobilestickbx .med .bimg {
    background-color: #000;
    min-width: 18px;
    min-height: 18px;
}

.mobilenav .mediabx {
    padding: 15px 24px;
}
.mobilenav .mediabx,
.dekstickbx .mediabx,
.mobilestickbx .mediabx,
[mn="menu"] .mediabx {
    --bgclr: var(--clr01x, #fff);
    --bghovclr: var(--clr01);
    --pd: 6px;
    --mediaborderradius: 3px;
    --iconclr: var(--clr01);
    --mediaborder: 2px solid #ccc;
    --mediahovborder: 2px solid var(--bghovclr);
 
}

/* ================================ */
/* ================================ */


[mn="100"] {  
    --secpt: 0px;
    --secpb: 0px;
    text-align: center;
    z-index: 3;
    color: #fff;
    font-size: 120%;

    @media(width<=575px){
        font-size: 100%;

        & h4 {
            font-size: 120%;
        }
        .textbx{
            font-size: 80%;
        }
    }

    & ol {
        list-style-type: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;

        & li{
        z-index: 1;
        position: relative;
        padding: 0 0 0 21px;
        flex: 0 0 50%;
        max-width: 50%;

        @media(width<767px){
            flex: 0 0 100%;
            max-width: 100%;
        }
        }

        & li::after{
        content: '';
        background-image: url(_src/list_icon.png);
        aspect-ratio: 1;
        width: 19px;
        position: absolute;
        left: 0;
        top: 0;
        translate: -12% 4px;
        background-size: contain;
        }
    }
    .bglyr{
        width: 50%;

        &::after{
        content: '';
        left: auto;
        right: 0;  
        bottom: 0;
        position: absolute;
        display: block;
        height: 100%; 
        width: 150px;
        background: linear-gradient(90deg, #eee0 0%, #eee 100%);  
        }

        @media(width<767px){
            width: 100%; 
            opacity: .15;

            &::after{
                display: none !important;
            }
        }
    }
    .contentbx{ 

        /* &::after{
        content: '';
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        content: '';
        width: 100vw;
        height: 100%;
        background-color: var(--clr01, #999);
        margin: 15px 0 0 !important; 
        z-index: -1;
        opacity: .8;
        transform: skew(-15deg, 0); 
        } */
        @media(width < 575px){
        padding: 0; 

        &::after {
            margin: 0 !important;
            right: -15px;
        }

        }
    }

    & h4 {
        color: inherit;
    }

    .h_decor{
        --icon_div: 45px;
        position: relative; 
        margin: 0 0 15px;
        padding: 0 0 15px;
        border-bottom: 3px solid #ccc;

        ._ittl{
        margin: 0;
        flex: 0 0 calc(100% - var(--icon_div));
        max-width: calc(100% - var(--icon_div));
        }

        .ttldecor-{
        display: none;
        }
        .h4 {
        line-height: 1;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 150%; 
        color: #000; 
        
        }

        .h_icon{
        flex: 0 0 var(--icon_div);
        max-width: var(--icon_div);
        }

        /* &::before, */
        &::after{
        content: '';
        position: absolute;
        display: block;
        height: 9px;
        width: 45px;
        background-color: var(--clr01);
        min-width: 30px;
        left: 0;
        bottom: 0;
        translate: 0 calc(50% + 2px);
        }
    }


    ._video{
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;

        & video{
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
        object-position: center bottom;
        }
    } 

    .decor_bar {
        width: 60px;
        aspect-ratio: 60 / 302;
        display: block;
        position: absolute;
        left: 60px;
        bottom: -60px;
        z-index: 10;
        pointer-events: none; 

        @media(width<575px){
            display: none;
        }
    }
}  

[mn="100"] ._imgsec{
margin: 0 0 15px; 
}
[mn="100"] ._subttl{
font-size: 150%;
} 
[mn="100"] .swiper {
    display: flex;
 
    /* min-height: 100vh; */
    /* clip-path: ellipse(90% 100% at 50% 0%); */

    @media(width<575px){
        .swiper-pagination{
            bottom: 0;
            display: none;
        }
    }
}  
[mn="100"] .swiper-wrapper {
    display: flex; 
    height: auto;
}  
[mn="100"] .swiper-slide {
    padding: 30px;  
    overflow: clip;
    background-color: #eee; 

    @media(width>767px){
        padding-top: 200px;
    }
    @media(width<=767px){
        padding: 15% 15px;
    }
    

    & > * {
        filter: drop-shadow(0px 2px 3px rgba(0,0,0,.85));
        /* text-shadow: 0px 2px 9px rgba(0,0,0,.85); */
    }
 
    &[video]{
        cursor: pointer;
    }

    .textbx{
        width: 800px;
        max-width: 100%;
        margin: 0 auto;

        & p {
            @media(width<575px){
                display: none;
            }
        }
    }

    .taste{
        margin: 9px 0 0;
    }
}  
[mn="100"] .swiper-button-next, 
[mn="100"] .swiper-button-prev {
--square: 35px;
aspect-ratio: 1 / 1 !important;
background-color: var(--clr01x, rgba(255 255 255 / 50%));
width: var(--square);
height: var(--square);
height: auto;
border-radius: 50%;
}
[mn="100"] .swiper-button-next:after, 
[mn="100"] .swiper-button-prev:after {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
[mn="100"] .swiper-pagination{
    gap: 30px;
    bottom: 45px;
}
[mn="100"] .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0 !important;
    background-color: #fff;
    color: #fff;
    font-family: var(--ft-t1); 
    border-radius: 0;
    opacity: 1;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    border-radius: 50%;
    position: relative;

    &::after{
        --square: 30px;
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        height: var(--square);
        width: var(--square);
        background-color: rgba(255, 255, 255, .5);
        z-index: 1;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        cursor: pointer;
        transition: .3s all ease;
        opacity: 0;
    }
}
[mn="100"] .swiper-pagination-bullet-active {
    &::after{ 
        opacity: 1;
    }
} 
@media only screen and (max-width: 767px) {  
    [mn="100"] .swiper-slide { 
        font-size: 110%; 
        font-weight: bold;
    }  
    [mn="100"] .bglyr:after  {
        content: '';
        display: block; 
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(0,0,0,.3); */
    }   
}
@media only screen and (min-width: 767px) {  
    [mn="100"] .txtbx { 
        width: 100%; 
    }  
}
@media only screen and (max-width: 575px) {  
    [mn="100"] .swiper-button-next, 
    [mn="100"] .swiper-button-prev { 
    --square: 25px; 
    } 
}

[mn="100"] .socialbtn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    color: #fff;
    font-family: var(--ft-t1); 
    @media(width<575px){
        right: 15px;
        bottom: 15px;
    }
} 


/* =================================== */
/* =================================== */

[mn="footer"] {
    margin-top: auto;  
    background-color: #edede3;

    @media(width<=767px){
        font-size: 100%;
    }

    .foot_logo_2 {
        display: none;
    }

    .contact {
        --div: 30px;

        .l {
            flex: 0 0 var(--div);
            max-width: var(--div); 
            padding: 3px 0 0;
            text-align: center;

            .bg-mask{
                background-color: var(--secftclr);
            }

            .bimgw{
                width: 25px;
            }
        }

        .r {
            flex: 0 0 calc(100% - var(--div));
            max-width: calc(100% - var(--div));
            padding-left: 9px;
 
        }

        & img {
            max-height: 21px;
            max-width: 21px;
        }

        /* @media(width<767px){
            .l, .r {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0 !important;
            }
        } */
    } 

    ._content{
        @media(width>991px){
            font-size: 70%;
        }
    }
    .contactbx{
        @media(width>991px){
            justify-content: flex-end;
        }
        /* @media(width<=767px){
            justify-content: center;
        } */
    }

    .foot_logo{
        margin: 0 0 21px;
    }

    .sitemap {
        line-height: 1.1;

        & :is(ul) {
            list-style-type: none;
            list-style: none;
            margin: 0;
            padding: 0;
        }
    }

    .sitemap li {
        margin: 0 0 21px
    }

    ._imgobj {
        margin: 0 0 3px
    }

    a {
        color: inherit;
        text-decoration: none;
    } 

    .mediabx {
        --gap: 6px;
        --square: 45px;
        --iconclr: var(--clr01);
        --iconhovclr: var(--clr01x, #fff);
        --bgclr: var(--clr02x, transparent);
        --bghovclr: var(--clr02, #fff); 
        --mediaborder: 2px solid transparent;
        --mediahovborder: 2px solid var(--clr02, #fff);
        margin: 0;
 

        & a {
            padding: 0;
            border-radius: 50%;
            
        }
    } 

    .ttl { 
        line-height: 1;
        margin: 0 0 12px;
        font-weight: 700;

        & ~ * {
            font-size: 90%;
        }

        &::after {
            content: '';
            display: block;
            height: 3px;
            width: 45px;
            background-color: var(--secftclr);
            margin: 9px 0 0; 
            display: none;
        }
    }

    .copyright {
        padding: 30px 0; 
        margin: 30px 0; 
        border-top: 1px solid  #fff;
        /* background-color: var(--clr01); */
    }

    &::after {
        /* content: ''; */
        display: block;
        height: 2px;
        position: absolute;
        width: 100%;
        background-color: #ccc;
        top: 0;
        left: 0;
    }

    a {
        text-underline-offset: 3px;
    }

    a:hover {
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .empty {
            display: none;
        }
    }

    @media (max-width: 767px) { 
        .copyright .container>.f {
            justify-content: center;
            text-align: left;
        }

        .copyright .container>.f>* {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
}
 


/* =================================== */
/* =================================== */

[mn="101"] {
    --secftclr: #fff;
    --hclr: #fff;
    background-attachment: fixed; 

    .categorylistbx{
        --listset-count: 4;
        text-align: center;

        @media(width<=991px){
            --listset-count: 2;
        }

        img{
            max-height: 200px;
            width: 250px;
            object-fit: contain;
            filter: drop-shadow(2px 4px 6px black);

            @media(width<=767px){
                max-height: 150px;
            }
        }
    }
}


/* =================================== */
/* =================================== */

[mn="102"] {
    background-color: #edede3; 
    .subttl{
        color: #004a45;
    }
}


/* =================================== */
/* =================================== */

[mn="103"] {
    @media(width>991px){
        padding-bottom: calc(var(--secpb) + 30px);
    }
    h4{
        text-align: inherit;
    }
    .txtbx{
        z-index: -2;
        padding: 45px;
        &::after{
            content: '';
            position: absolute;
            z-index: -1;
            height: 100%;
            width: calc(100% + 200px);
            top: 0;
            left: 0;
            background-color: #edede3;

            @media(width<=991px){
                width: 100%;
            }
        }
    }

    .imgbx{
        line-height: 0;
        @media(width>991px){
            translate: 0 30px
        }
    }
}


/* =================================== */
/* =================================== */

[mn="104"] {
    --secftclr: #fff;
    --hclr: #fff;
    background-color: #021e05;
    overflow: clip;



    .title{
        font-size: 120%;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 21px;
    }

    .categorylistbx{
        --listset-count: 3;
        --listset-gap: 45px;
        margin: 60px 0 0;

        @media(width<991px){
            --listset-count: 1;
        }

        .categorybx{
            color: #021e05;
            text-align: center;
            padding: 30px;
            background-color: #ffff8d;
            border-top-right-radius: 50px;
            border-bottom-left-radius: 50px;

            .bimgbx{
                margin: 0 0 21px;
                .bimgw{
                    width: 100px;
                }
            }

            &:nth-child(2n+2){
                background-color: #dfe4de;
            }
        }
    }

    .leave_{
        position: absolute;
        z-index: 3; 
        max-width: 25%;

        @media(width<=575px){
            max-width: 45%;
        }

        &.leave_1{
            left: 0;
            top: 0;
            translate: -50% calc(-30% - 0px);
            z-index: -3;
        }
        &.leave_2{
            right: 0;
            bottom: 0;
            translate: 50% calc(30% + 0px);
        }
    }
}



/* =================================== */
/* =================================== */

[mn="105"] {
    background-color: #dfe4de;
    [dna="1"]{
        &.categorylistbx{
            --listset-count: 2;
            @media(width<991px){
                --listset-count: 1;
            }
        }
        &.categorylistw{

        }
        &.categorybx{
            
        }
    }
    [dna="2"]{
        &.categorylistbx{
            --listset-count: 1;
        }
        &.categorylistw{

        }
        &.categorybx{
            padding: 30px;
            padding-top: 20%;
            color: #fff;

            h4{
                color: inherit;
                margin: 0 0 15px;
            }

            .desc{
                width: 410px;
                max-width: 100%;
            }
        }
    }

    .cat-l{
        .categorybx:first-child{
            border-top-left-radius: 100px;
        }
    }
    .cat-r{
        .categorybx:last-child{
            border-bottom-right-radius: 100px;
        }
    }
}

/* =================================== */
/* =================================== */

[mn="109"] {
    background-color: #dfe4de;
    [dna="1"]{
        &.categorylistbx{
            --listset-count: 3;
            @media(width<=991px){
                --listset-count: 2;
            }
        }
        &.categorylistw{

        }
        &.categorybx{
            &:first-child{
                @media(width<=991px){
                    flex: 0 0 100%;
                    max-width: 100%;
                }
            }
        }
    }
    [dna="2"]{
        &.categorylistbx{
            --listset-count: 1;
        }
        &.categorylistw{

        }
        &.categorybx{
            padding: 25% 30px;
            color: #fff;
            text-align: center;

            @media(width>991px){
                padding: 40% 30px;
            }

            h4{
                color: inherit;
                margin: 0 0 15px;
                font-size: 200%; 

                @media(width<=1200px){
                    &:not(.maintitle){
                        font-size: 120%;
                    }  
                }
                @media(width<=575px){
                    &:not(.maintitle){
                        font-size: 100%;
                    }  
                }
            } 

            .desc{
                width: 410px;
                max-width: 100%;
            }
        }
    } 
}

/* =================================== */
/* =================================== */

[mn="107"]{

}

/* =================================== */
/* =================================== */

[mn="106"] { 
    background-attachment: fixed;
    color: #fff;

    img.logo{
        max-height: 150px;
    }
}

/* ============================================== */
/* ============================================== */

[mn="108"] { 
    background-color: #dfe4de;

    .categorylistbx{
        --listset-count: 3;
        @media(width<575px){
            --listset-count: 2;
        }
    }

    .title{
        line-height: 1.1;
        font-size: 200%;
        font-weight: 700;
        position: absolute;
        top: 50%;
        text-align: center;
        color: #fff;
        translate: 0 -50%;
        width: 100%;

        @media(width<=991px){
            font-size: 100%;
        }
    }

    .bimg{
        position: relative;
        z-index: 1;
        &::after{
            content: '';
            position: absolute;
            display: block;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: linear-gradient(0deg, rgba(2,30,5,0.6) 0%, rgba(2,30,5,0) 100%);
        }
    }

}

@keyframes rotate {
    from {
      transform: rotate(0);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes glow {
    0% {
      background-position: 0 0;
    }
  
    50% {
      background-position: 100% 0;
    }
  
    100% {
      background-position: 0 0;
    }
  }











