
/*header*/

.tp_links {
    display: inline-block;
    display: none;
}

#content_main {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: 0vh;
}

.main_header_area .container {    max-width: 94%;}


.header_area {
  position: fixed;
  width: 100%;
}



.header_area.sticky {backdrop-filter: blur(10px);box-shadow: 0 0 15px rgb(255 231 160 / 80%);transition: all 1s ease;height: 90px;background-color: #181c2fa6;}
.header_area {position: fixed;background:linear-gradient(
    to bottom,
    rgb(38 38 38 / 10%),
    rgb(225 206 153 / 0%)
);padding: 0;top: 0;transition: all 1s ease;}

.main_header_area::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 20px; 

    background: linear-gradient(
        to right,
        rgb(255 255 255 / 86%),
        rgb(150 124 50),
        rgb(255 238 161),
        rgb(155 139 31)
    );

    background-size: 200% 100%;
    animation: flow 2.5s linear infinite;

   
    filter: blur(25px);

   
    border-radius: 50px;
    pointer-events: none;
    z-index: 1;
}

@keyframes flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.nav-header {max-width: 300px;/* opacity: 0; */transition: all 1s ease;/* filter: contrast(0) brightness(100); */}
.sticky .nav-header {
        opacity: 1;
        transition: all 1s ease;
        filter: none;
        max-width: 240px;
        padding: -3px 0 0; 
        filter: drop-shadow(0 0 7px rgb(255 239 191 / 60%));
        
}

.main_header_area .container {max-width: 90%;}
.navigation { align-items: center;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 0 20px;
}

.stellarnav {
    position: relative;
    width: 100%;
    z-index: 9900;
    line-height: normal;
    margin-top: 30px;
}

.stellarnav > ul > li:hover > a::before {
    transform: translateX(-20%) scale(2);
}




.path p, .path p a {
    display:none;
}


.stellarnav>ul>li>a {
    padding: 0px 5px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
    transition: all 0.5s;
    font-family: noto sans-serif;
}
.stellarnav > ul > li:hover > a{
    color: #ffffff;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
    transform: translateY(-10px);
    transition: 0.6s ease;
    
}

.stellarnav > ul > li:before {
    content: ''; display: block; position: absolute; transform: translate(-50%, -50%); transition: 0.5s ease;z-index: -1; opacity: 0;
    top: 60%;left: 50%;width: 0%;height: 7%; 
    background: linear-gradient(
    to right,
    rgb(225 206 153),
    rgb(225 206 153 / 0%)
); clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);}

.stellarnav > ul > li:hover:before { opacity: 1; width: 90%; transition: 0.5s ease;}

.stellarnav li.has-sub > a:after {display:none}

.stellarnav li li {  
    border: none;
}



.stellarnav.desktop li li>a,
.stellarnav.desktop li li.has-sub>a {
    padding: 8px 9px;
    transition: all 0.3s;
    color: #998b74;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    background: #e3e3e3;
}



.stellarnav.desktop li li:hover>a,
.stellarnav.desktop li li.has-sub:hover>a {
    background: #c4b286;
    color: #fff;
}



.me_tp_features a {display: none;}
.me_tp_features {
    margin-bottom: 0;
    display: block;
    position: fixed;
    top: 30px;
    right: 150px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 35%;
}
.pageIndex .header_area.sticky .me_tp_features {    right: 150px; opacity: 1;}
.pageIndex .header_area .me_tp_features {    right: 30px; opacity: 0;}




.bannerindex {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.swiper-banner .swiper-wrapper,
.swiper-banner .swiper-slide {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}


.bannerindex > .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: auto;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .bannerindex > .swiper-pagination {
        bottom: 12px;
    }
}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
@media screen and (max-width: 768px) {
 .bannerindex {
  position: relative;
  height: 0;
  padding-bottom: 47%
 }

 .bannerindex .swiper-banner {
  left: 0;
  margin: 0;
 }

 .bannerindex .swiper-banner .swiper-slide img {
  height: auto;
 } 
}




.swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(7px);
        background-color: #fff;
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
        background-color: transparent;
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}
