@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Urbanist", sans-serif;
    color:var(--text-color);
    background:#EAEAEA;
}
@media only screen and (min-width:1441px){
    body{
        font-size:16px;
    }
    .container{
        max-width:1440px;
    }
}
a{
    color:var(--text-color);
    text-decoration: none;
    transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
}
a:hover{
    color:var(--text-color-2);
}

p{margin-bottom:10px;}

.text-align{text-align:center;}

/*--- HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header{position:relative;z-index:99;}
header .h-top{background:#F3F3F3;}
header .h-body{background:#FFFFFF;position:relative;}
header .menu{position:relative;}
header .menu .menu-bar{display:none;}
header .menu > ul{list-style:none;margin:0;padding:5px 0;display:flex;flex-direction:row;justify-content:flex-end;}
header .menu > ul > li > a{display:block;padding:5px 20px;color:#7E7E7E;font-size:1.25em;}
header .menu > ul > li > a:hover{background:#444444;border-radius:5px;color:#ffffff;}
header .h-body-wrapper{display:grid;grid-template-columns:290px 1fr;gap:10px;}
header .logo{position:relative;width:100%;height:auto;}
header .logo img{max-width:100%;height:auto;position:absolute;top:0;left:0;width:100%;padding:10px 30px 30px 30px;border-radius:0 0 30px 30px;background:#ffffff;}
header .category{padding:60px 0 0 0;width:100%;position:relative;}
header .category .cat-bar{display:none;color:#120398;}
header .category > ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:space-between;gap:5px;}
header .category > ul > li > a{display:flex;align-items:center;gap:10px;font-size:1.06em;font-weight:700;color:#120398;text-transform:uppercase;position:relative;border-radius:10px 10px 0 0;padding:10px;overflow:hidden;}
header .category > ul > li > a > img{width:40px;height:40px;object-fit:contain;position:relative;z-index:9;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .category > ul > li > a > span{display:block;line-height:1.1;position:relative;z-index:9;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .category > ul > li > a:before{content:'';width:100%;height:0;position:absolute;bottom:0;left:0;background:#FF5500;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
header .category > ul > li > a:hover::before{height:100%;}
header .category > ul > li > a:hover img{filter: brightness(0) invert(1);}
header .category > ul > li > a:hover span{color:#ffffff;}
header .category > ul > li > ul{list-style:none;margin:0;padding:30px 50px;width:100%;display:grid;grid-template-columns:repeat(4, 1fr);gap:30px;position:absolute;z-index:9;background:#ffffff;left:0;border-radius:0 0 80px 80px;transform:translate(0,30px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .category > ul > li:hover > ul{transform:translate(0,0);opacity:1;visibility:visible;}
header .category > ul > li > .cat-sub-bar{display:none;}
header .category > ul > li > ul > li > a{display:flex;flex-direction:column;font-size:.93em;color:#121D5F;font-weight:700;text-transform:uppercase;line-height:1.1;min-height:2.2em;margin-bottom:10px;}
header .category > ul > li > ul:hover ~ li{border:1px solid red;}
header .category > ul > li > ul > li > .cat-sub-bar-2{display:none;}
header .category > ul > li > ul > li > ol{list-style:none;margin:0;padding:0;}
header .category > ul > li > ul > li > ol > li{margin-bottom:5px;}
header .category > ul > li > ul > li > ol > li > a{display:block;font-size:.81em;color:#121D5F;}
header .category > ul > li > ul > li > ol > li > a:hover{color:#FF5500;}

@media only screen and (max-width:767px){
    header .h-top{padding:5px 0;}
    header .menu{display:flex;flex-direction:column;align-items:end;}
    header .menu .menu-bar{display:block;border:1px solid #aaaaaa;line-height:30px;text-align:center;border-radius:5px;width:fit-content;padding:0 10px;} 
    header .menu > ul{display:none;position:absolute;width:fit-content;padding:20px;background:rgba(17,4,152,.9);z-index:9;flex-direction:column;border-radius:10px;z-index:99;top:30px;}
    header .menu > ul > li > a{color:#ffffff;border-bottom:1px dashed #999999;padding:10px;text-align:right;font-size:.9em;}
    header .menu > ul > li:last-child > a{border:0;}
    header .h-body-wrapper{display:flex;grid-template-columns:unset;gap:unset;flex-direction:column;}
    header .logo{text-align:center;margin-bottom:15px;}
    header .logo img{max-width:50%;height:auto;position:relative;margin:0 auto;border:1px solid #F3F3F3;border-top:0;}
    header .category{padding:0;margin-bottom:15px;}
    header .category .cat-bar{display:block;padding:10px;border-radius:5px;background:#f65503;color:#ffffff;}
    header .category > ul{display:none;position:absolute;flex-direction:column;background:#ffffff;flex-direction:column;width:100%;padding:0;border-radius:0 0 20px 20px;font-size:1em;}
    header .category > ul > li > a{border-bottom:1px dashed #dddddd;}
    header .category > ul > li:last-child > a{border:0;}
    header .category > ul > li > a > img{width:30px;height:30px;}
    header .category > ul > li{position:relative;}
    header .category > ul > li > .cat-sub-bar{display:block;position:absolute;top:0;right:0;width:50px;height:50px;text-align:center;line-height:50px;}
    header .category > ul > li > ul{display:none;grid-template-columns: 1fr;gap:unset;border-radius:0;transform:unset;position:relative;padding:10px;opacity:1;visibility:visible;transition:unset;-webkit-transition:unset;-moz-transition:unset;-o-transition:unset;}
    header .category > ul > li > ul > li{position:relative;}
    header .category > ul > li > ul > li > .cat-sub-bar-2{display:block;position:absolute;top:0;right:0;width:35px;height:35px;text-align:center;line-height:35px;}
    header .category > ul > li > ul > li > a{display:block;padding:10px;border-bottom:1px dashed #dddddd;margin:0;}
    header .category > ul > li > ul > li > ol{display:none;}
    header .category > ul > li > ul > li > ol > li{margin-bottom:0;}
    header .category > ul > li > ul > li > ol > li > a{padding:10px;font-size:.9em;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    header .h-top{padding:5px 0;}
    header .menu{display:flex;flex-direction:column;align-items:end;}
    header .menu .menu-bar{display:block;border:1px solid #aaaaaa;line-height:30px;text-align:center;border-radius:5px;width:fit-content;padding:0 10px;} 
    header .menu > ul{display:none;position:absolute;width:fit-content;padding:20px;background:rgba(17,4,152,.9);z-index:9;flex-direction:column;border-radius:10px;z-index:99;top:30px;}
    header .menu > ul > li > a{color:#ffffff;border-bottom:1px dashed #999999;padding:10px;text-align:right;font-size:.9em;}
    header .menu > ul > li:last-child > a{border:0;}
    header .h-body-wrapper{display:flex;grid-template-columns:unset;gap:unset;flex-direction:column;}
    header .logo{text-align:center;margin-bottom:15px;}
    header .logo img{max-width:50%;height:auto;position:relative;margin:0 auto;border:1px solid #F3F3F3;border-top:0;}
    header .category{padding:0;margin-bottom:15px;}
    header .category .cat-bar{display:block;padding:10px;border-radius:5px;background:#f65503;color:#ffffff;}
    header .category > ul{display:none;position:absolute;flex-direction:column;background:#ffffff;flex-direction:column;width:100%;padding:0;border-radius:0 0 20px 20px;font-size:1em;}
    header .category > ul > li > a{border-bottom:1px dashed #dddddd;}
    header .category > ul > li:last-child > a{border:0;}
    header .category > ul > li > a > img{width:30px;height:30px;}
    header .category > ul > li{position:relative;}
    header .category > ul > li > .cat-sub-bar{display:block;position:absolute;top:0;right:0;width:50px;height:50px;text-align:center;line-height:50px;}
    header .category > ul > li > ul{display:none;grid-template-columns: 1fr;gap:unset;border-radius:0;transform:unset;position:relative;padding:10px;opacity:1;visibility:visible;transition:unset;-webkit-transition:unset;-moz-transition:unset;-o-transition:unset;}
    header .category > ul > li > ul > li{position:relative;}
    header .category > ul > li > ul > li > .cat-sub-bar-2{display:block;position:absolute;top:0;right:0;width:35px;height:35px;text-align:center;line-height:35px;}
    header .category > ul > li > ul > li > a{display:block;padding:10px;border-bottom:1px dashed #dddddd;margin:0;}
    header .category > ul > li > ul > li > ol{display:none;}
    header .category > ul > li > ul > li > ol > li{margin-bottom:0;}
    header .category > ul > li > ul > li > ol > li > a{padding:10px;font-size:.9em;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    header .h-body-wrapper{display:grid;grid-template-columns:150px 1fr;gap:10px;}
    header .category{padding:30px 0 0 0;}
    header .category > ul > li > a{font-size:.9em;padding:10px 5px;gap:5px;}
    header .category > ul > li > a > img{width:25px;height:25px;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{padding:150px 0;background: transparent radial-gradient(closest-side at 47% 50%, #FF5500 0%, #FF5500BA 51%, #FF5500 100%) 0% 0% no-repeat padding-box;}
.slider .slider-wrapper{display:grid;grid-template-columns:30% 1fr;gap:150px;}
.slider .slider-wrapper .s-left{}
.slider .slider-wrapper .s-left .content{height:100%;display:flex;flex-direction:column;justify-content:space-evenly;}
.slider .slider-wrapper .s-left .content .text{}
.slider .slider-wrapper .s-left .content .text strong{display:block;font-size:3.6em;line-height:1.2;color:#ffffff;margin-bottom:20px;}
.slider .slider-wrapper .s-left .content .line{width:100%;height:1px;background:#ffffff;position:relative;}
.slider .slider-wrapper .s-left .content .line:before{content:'';width:72px;height:4px;position:absolute;top:-2px;left:0;background:#FFFFFF;}
.slider .slider-wrapper .s-left .content h2{font-size:2.43em;color:#ffffff;font-weight:300;}
.slider .slider-wrapper .s-left .content .more{display:inline-block;padding:0 30px;color:#121855;width:fit-content;border-radius:30px;line-height:52px;background:#ffffff;}
.slider .slider-wrapper .s-right{position:relative;}
.slider .slider-wrapper .s-right .images{position:relative;width:100%;height:100%;display:flex;align-items:center;gap:30px;height:75vh;}
.slider .slider-wrapper .s-right .img1{max-width:calc(50% - 30px);flex:0 0 calc(50% - 30px);margin-right:-100px;position:relative;z-index:1;box-shadow: 5px 9px 10px #00000079;}
.slider .slider-wrapper .s-right .img1 img{width:100%;height:100%;object-fit:cover;}
.slider .slider-wrapper .s-right .img2{flex:1;overflow:hidden;position:relative;z-index:0;box-shadow: 0px 3px 6px #00000029;}
.slider .slider-wrapper .s-right .img2 img{width:100%;height:50vh;object-fit:cover;}
.slider .slider-wrapper .s-right .icon{position:absolute;bottom:0;right:0;z-index:9;max-width:35%;height:auto;}
.slider .slider-wrapper .s-right .icon img{width:100%;height:auto;}
.progressbar{display:flex;flex-direction:column;justify-content:center;align-items:center;width:290px;height:290px;position:absolute;left:0;top:15%;z-index:9;transform:translate(-50%,0);}
.progressbar:before{content:'';width:80%;height:1px;background:#C6B8AA;left:0;top:0;transform:rotate(45deg);transform-origin: -10% -10%;}
.progressbar .circle{position:absolute;top:calc(50% - 47.2px);left:0;right:0;margin:0 auto;z-index:1;width:95px;height:95px;background:#C3A457;border-radius:50%;font-size:20px;color:#FFFFFF;line-height:95px;text-align:center;}
.ring {transform: rotate(-90deg);}
circle {fill: none;stroke-width:2;}
circle:first-child {stroke: #fff;}
.progress {stroke: #C6B8AA;stroke-linecap: round;transition: stroke-dashoffset 0.05s linear;}

@media only screen and (max-width:767px){
    .slider{padding:50px 0;}
    .slider .slider-wrapper{grid-template-columns:1fr;gap:50px;}
    .slider .slider-wrapper .s-left .content{gap:10px;}
    .slider .slider-wrapper .s-left .content .text strong{font-size:2.7em;}
    .slider .slider-wrapper .s-left .content h2{font-size:1.5em;}
    .slider .slider-wrapper .s-right .images{height:fit-content;}
    .slider .slider-wrapper .s-right .img1{max-width:calc(60% - 30px);flex:0 0 calc(60% - 30px);}
    .slider .slider-wrapper .s-right .img2 img{height:auto;aspect-ratio:1 / 1;}
    .progressbar{transform: scale(.5) translate(50%,-75%);top:0;left:unset;bottom:unset;right:0;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .slider{padding:50px 0;}
    .slider .slider-wrapper{grid-template-columns:1fr;gap:50px;}
    .slider .slider-wrapper .s-left .content{gap:10px;}
    .slider .slider-wrapper .s-left .content .text strong{font-size:2.7em;}
    .slider .slider-wrapper .s-left .content h2{font-size:1.5em;}
    .slider .slider-wrapper .s-right .images{height:fit-content;}
    .slider .slider-wrapper .s-right .img1{max-width:calc(50% - 30px);flex:0 0 calc(50% - 30px);}
    .slider .slider-wrapper .s-right .img2 img{height:auto;aspect-ratio:1 / 1;}
    .progressbar{transform: scale(.5) translate(50%,-75%);top:0;left:unset;bottom:unset;right:0;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .slider{padding:100px 0;}
    .slider .slider-wrapper{gap:75px;}
    .slider .slider-wrapper .s-left .content .text strong{font-size:2.7em;}
    .slider .slider-wrapper .s-left .content h2{font-size:1.5em;}
    .progressbar{transform: scale(.7) translate(-50%,0);}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:0 0 50px 0;position:relative;overflow:hidden;}
.m1:before{content:'';width:100%;height:30%;position:absolute;left:0;top:0;background:#FF5500;}
.m1:after{content:'';width:100%;height:70%;position:absolute;left:0;top:30%;background:#FFAD74;}
.m1 .m1-body{position:relative;z-index:9;}
.m1 .m1-body:before{content:'';width:120%;height:100%;position:absolute;top:0;left:0;background:url('../images/m1-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.m1 .m1-body *{position:relative;z-index:9;}
.m1 .m1-body .icon{position:absolute;bottom:0;right:0;max-width:25%;height:auto;transform:translate(0,50px);}
.m1 .box{padding:100px 30px;}
.m1 .box .slogan{display:block;font-size:3.81em;color:#ffffff;font-weight:700;line-height:1.2;margin-bottom:50px;}
.m1 .box .more{display:flex;align-items:center;gap:20px;font-size:1.37em;margin-bottom:75px;}
.m1 .box .more:hover{padding-left:10px;}
.m1 .box .more span{color:#ffffff;position:relative;line-height:40px;display:block;}
.m1 .box .more span:before{content:'';width:50%;height:1px;background:#ffffff;position:absolute;bottom:0;left:0;}
.m1 .box .more img{width:25px;height:auto;}
.m1 .box > ul{list-style:none;margin:0;padding:0;}
.m1 .box > ul > li{margin-bottom:20px;}
.m1 .box > ul > li > a{display:inline-block;color:#ffffff;font-size:1.56em;font-weight:600;}
.m1 .box > ul > li > a:hover{padding-left:10px;}
.m1 .text{padding:100px 0;color:#ffffff;font-size:1.06em;}
@media only screen and (min-width:992px) and (max-width: 1199px){
    .m1 .box .slogan{font-size:2.5em;margin-bottom:30px;}
    .m1 .box .more{margin-bottom:50px;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.products-wrapper{padding:50px 0;}
.products-wrapper .title{margin-bottom:50px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:50px;}
.products-wrapper .title h2{font-size:2.06em;font-weight:700;width:fit-content;}
.products-wrapper .title h2 a{display:block;line-height:50px;color:#DC752D;border-bottom:2px solid #DC752D;}
.products-wrapper .title .swiper-nav{display:flex;flex-direction:row;gap:15px;}
.products-wrapper .products-tab-list{margin-bottom:50px;}
.products-wrapper .products-tab-list button{background:unset;border:0;font-size:1.12em;color:#121D5F;text-transform:uppercase;position:relative;display:flex;align-items:center;width:100%;text-align:center;justify-content:center;line-height:1.2;min-height:2.4em;}
.products-wrapper .products-tab-list button:before{content:'';width:1px;height:100%;background:#121D5F;position:absolute;right:-10px;}
.products-wrapper .products-tab-list .active{font-weight:900;}
.d-grid{display:grid;}
.d-grid-4{grid-template-columns: repeat(4, 1fr);gap:30px;}
.product-box{margin-bottom:30px;background:#ffffff;border-radius:25px;padding:20px 30px;box-shadow: 0px 7px 12px #00000029;}
.product-box .img{}
.product-box .img img{width:100%;height:auto;aspect-ratio: 1 / 1;object-fit:contain;}
.product-box .content{padding:20px;border-top:1px solid #}
.product-box .content h3{font-weight:700;font-size:1em;text-align:center;}
.product-box .content h3 a{color:#121D5F;}
.product-box .content p{text-align:center;}
.product-box .content .whatsapp{display:flex;flex-direction:row;align-items:center;gap:15px;font-size:.68em;background:#FAFAFA;border-radius:10px;color:#5A5A5A;width: fit-content;padding:5px 10px;}
.products-wrapper .all{text-align:center;display:flex;justify-content:center;}
.products-wrapper .all a{border:1px solid #121D5F;border-radius:29px;line-height:55px;padding:0 30px;display:flex;align-items:center;gap:10px;color:#121D5F;width:fit-content;}
@media only screen and (min-width:992px) and (max-width:1199px){
    .products-wrapper .products-tab-list ul > li:before{transform:translate(20px,0);}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:75px 0;}
.m2 .title{margin-bottom:50px;}
.m2 .title h2{font-size:3.43em;font-weight:700;color:#121D5F;text-align:center;position:relative;}
.m2 .title h2:before{content:'';width:160px;height:2px;background:#121D5F;position:absolute;left:0;right:0;bottom:0;margin:0 auto;}
.m2 .box{margin-bottom:30px;}
.m2 .box img{width:100%;height:150px;object-fit:contain;}
.m2 .m2-buttons{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;}
.m2 .m2-buttons:before{content:'';width:100%;height:2px;background:#121D5F;position:absolute;left:0;right:0;top:calc(50% - 1px);}
.m2 .m2-buttons .swiper-nav{display:flex;flex-direction:row;gap:20px;align-items:center;background:#EAEAEA;padding:0 30px;position:relative;z-index:9;}
.m2 .m2-buttons .swiper-nav .swiper-b-prev:active{transform:translate(-5px,0);opacity:.3;}
.m2 .m2-buttons .swiper-nav .swiper-b-next:active{transform:translate(5px,0);opacity:.3;}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:75px 0;position:relative;}
.m3:before{content:'';width:100%;height:60%;background:#121D5F;position:absolute;left:0;top:0;z-index:-99;}
.m3:after{content:'';width:100%;height:40%;background:#040824;position:absolute;left:0;bottom:0;z-index:-99;}
.m3 .title{margin-bottom:50px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:50px;}
.m3 .title h2{font-size:3.43em;font-weight:700;width:fit-content;}
.m3 .title h2 a{display:block;line-height:50px;color:#ffffff;border-bottom:2px solid #ffffff;}
.m3 .title .swiper-nav{display:flex;flex-direction:row;gap:15px;}
.m3 .title .swiper-nav .swiper-bl-prev:active{transform:translate(-5px,0);opacity:.3;}
.m3 .title .swiper-nav .swiper-bl-next:active{transform:translate(5px,0);opacity:.3;}
.blog-box{margin-bottom:30px;padding:25px;border-radius:50px;background:#ffffff;position:relative;}
.blog-box .img{}
.blog-box .img img{width:100%;height:175px;object-fit:cover;border-radius:30px;}
.blog-box .content{padding-top:30px;padding-right:120px;}
.blog-box .content h3{font-size:1.25em;font-weight:700;line-height:1.2em;min-height:2.4em;}
.blog-box .content h3 a{color:#121D5F;}
.blog-box .content p{font-size:1em;color:#121D5F;line-height:1.2em;min-height:3.6em;}
.blog-box .content .more{position:absolute;bottom:0;right:0;width:fit-content;height:fit-content;background:#040824;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:20px 5px 5px 20px;border-radius: 50% 0 0 0;}
.blog-box .content .more a{display:block;width:82px;height:82px;line-height:82px;text-align:center;border-radius:50%;background:#ffffff;}
.blog-box .content .more .bl{width:40px;height:40px;position:absolute;left:0;bottom:0;transform:translate(-100%,0);}
.blog-box .content .more .bl:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:#ffffff;border-radius:50%;z-index:2;}
.blog-box .content .more .bl:after{content:'';width:20px;height:20px;background:#040824;position:absolute;bottom:0;right:0;z-index:1;}
.blog-box .content .more .rt{width:40px;height:40px;position:absolute;right:0;top:0;transform:translate(0,-100%);}
.blog-box .content .more .rt:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:#ffffff;border-radius:50%;z-index:2;}
.blog-box .content .more .rt:after{content:'';width:20px;height:20px;background:#040824;position:absolute;bottom:0;right:0;z-index:1;}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{overflow:hidden;background:url('../images/footer-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
footer .f-wrapper{display:flex;flex-direction:row;margin-bottom:50px;position:relative;}
footer .f-wrapper:before{content:'';width:150%;position:absolute;left:-25%;bottom:0;}
footer .f-left{border-right:1px solid #707070;max-width:20%;flex:0 0 20%;padding-top:95px;}
footer .f-right{flex:1;}
footer .f-right .f-right-top{padding:10% 7%;position:relative;}
footer .f-right .f-right-top:before{content:'';width:100%;border-bottom:1px solid #707070;position:absolute;bottom:0;left:0;}
footer .f-left .logo{padding-bottom:30px;position:relative;}
footer .f-left .list{padding-top:30px;margin-bottom:95px;}
footer .f-left .list>h3{font-size:1.25em;font-weight:600;color:#121764;margin-bottom:20px;position:relative;display:flex;flex-direction:row;gap:10px;}
footer .f-left .list>h3:before{content:'';width:10px;height:20px;background:#121764;}
footer .f-left .list>ul{list-style:none;margin:0;padding:0;}
footer .f-left .list>ul>li{margin-bottom:10px;}
footer .f-left .list>ul>li>a{font-weight:200;font-size:1.25em;color:#121764;text-transform:uppercase;}
footer .f-right .slogan{font-size:2.75em;position:relative;width:fit-content;margin-bottom:75px;color:#5A5A5A;}
footer .f-right .slogan>span{position:relative;z-index:9;}
footer .f-right .slogan>span>span{display:block;}
footer .f-right .slogan .icon{position:absolute;top:0;right:0;}
footer .f-right .contact{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
footer .f-right .contact .c-left a{display:block;font-size:2.37em;font-weight:200;}
footer .f-right .contact .c-right{display:grid;grid-template-columns:40% 1fr;gap:20px;}
footer .f-right .contact .c-right .whatsapp a{display:flex;flex-direction:column;justify-content:center;align-items:center;width:130px;height:130px;background:#FAFAFA;border-radius:20px;gap:20px;}
footer .f-right .contact .c-right .whatsapp i{font-size:2.4em;color:#ffffff;}
footer .f-right .contact .c-right .whatsapp span{font-weight:200;}
footer .f-right .contact .c-right .social-media{display:flex;flex-direction:row;gap:20px;justify-content:center;align-items:center;background:#FAFAFA;border-radius:20px;height:130px;}
footer .f-right .contact .c-right .social-media img{width:20px;height:20px;object-fit:contain;}
footer .f-right .contact .c-right .social-media i{font-size:20px;}
footer .contracts{margin-bottom:30px;display:flex;flex-wrap:wrap;justify-content:center;gap:10px;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;}
footer .copyright{margin-bottom:5px;font-size:11px;text-align:center;padding-top:25px;}
footer .swa{margin-bottom:50px;text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;}
@media only screen and (max-width:767px){
    footer .f-wrapper{flex-direction:column;}
    footer .f-wrapper:before{display:none;}
    footer .f-left{max-width:100%;flex:0 0 100%;padding-top:0;border:0;border-bottom:1px solid #707070;}
    footer .f-left .logo{text-align:center;padding:30px 0;}
    footer .f-left .logo:before{width:100%;}
    footer .f-left .list{text-align:center;margin-bottom:30px;}
    footer .f-right{border-bottom:1px solid #707070;}
    footer .f-right .slogan{font-size:2.5em;}
    footer .f-right .f-right-top{padding:15px;}
    footer .f-right .f-right-top:before{width:100%;}
    footer .f-right .contact{display:block;grid-template-columns:unset;gap:unset;}
    footer .f-right .contact .c-left{margin-bottom:30px;}
    footer .f-right .contact .c-left a{font-size:1.5em;margin-bottom:5px;}
    footer .f-right .f-right-bottom{padding:50px 15px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    footer .f-wrapper{flex-direction:column;}
    footer .f-wrapper:before{display:none;}
    footer .f-left{max-width:100%;flex:0 0 100%;padding-top:0;border:0;border-bottom:1px solid #707070;}
    footer .f-left .logo{text-align:center;padding:30px 0;}
    footer .f-left .logo:before{width:100%;}
    footer .f-left .list{text-align:center;margin-bottom:30px;}
    footer .f-right{border-bottom:1px solid #707070;}
    footer .f-right .slogan{font-size:2.5em;}
    footer .f-right .f-right-top{padding:15px;}
    footer .f-right .f-right-top:before{width:100%;}
    footer .f-right .contact{display:block;grid-template-columns:unset;gap:unset;}
    footer .f-right .contact .c-left{margin-bottom:30px;}
    footer .f-right .contact .c-left a{font-size:1.5em;margin-bottom:5px;}
    footer .f-right .f-right-bottom{padding:50px 15px;}
}

/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:175px 0 35px 0;background:var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;color:#ffffff;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;color:#ffffff;}
.simple-page .page-head .title nav ol li{color:#ffffff;}
.simple-page .page-head .title nav ol li a{color:#ffffff;}
.simple-page .page-head .title .breadcrumb-item+.breadcrumb-item::before{color:#ffffff;}
.page .page-head .breadcrumb{font-size:.8em;}
.page .page-body{padding:50px 0 20px 0;}
.page .page-foot{padding:50px 0 20px 0;background:var(--bg-color);margin-bottom:50px;}
.page .page-form{margin-bottom:50px;}

/*--- COOKIE-POLICY -----------------------------------------------------------------------------------------------------------------------------------------------------*/
.cookie-accept {position:fixed;bottom:-100%;left:0;right:0;width:100%;z-index:99;border:1px solid #ddd;background:#fff;display:flex;justify-content:center;align-items:center;transition:bottom 1s ease-in-out;-webkit-transition:bottom 1s ease-in-out;-moz-transition:bottom 1s ease-in-out;-o-transition:bottom 1s ease-in-out;padding:20px;}
.cookie-accept.active {bottom:0;}
.cookie-accept .close {position:absolute;right:15px;top:-15px;width:30px;height:30px;border:1px solid #ddd;line-height:30px;text-align:center;font-size:1.5em;background:#fff;}
.cookie-accept .icon {text-align: center;}
.cookie-accept .icon i {font-size:4em;}
.cookie-accept .content {padding:1.5em;}
.cookie-accept .content strong {display:block;font-size:1.5em;line-height:1;margin-bottom:10px;}
.cookie-accept .content p {font-size:1.1em;font-weight:200;margin:0;}
.cookie-accept .buttons ul {list-style:none;margin:0;padding:0;display:flex;gap:10px;}
.cookie-accept .buttons ul > li {flex:1 1 auto;}
.cookie-accept .buttons ul > li > a{display:flex;padding:10px 20px;background:#aaa;color:#fff;text-align:center;text-decoration:none;align-items:center;height:100%;}
@media only screen and (max-width: 767px) {
    .cookie-accept {flex-direction: column;}
}
/*--- FORM --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:1em;font-weight:700;margin-bottom:5px;}
.form-group .form-control{min-height:45px;border:0;border:1px solid #eee;font-size:1em;}
.form-group .form-control::placeholder{font-size:1em;}
.form-group input[type="checkbox"]{width:25px;height:25px;}
.form-checkbox-group{display:flex;line-height: 25px;}
.form-checkbox-group>input{accent-color:var(--primary-color);}
.form-checkbox-group a{padding-left:15px;}
.form-group button{background-color:var(--primary-color);color:#fff;font-size:1em;}
.form-group button:hover{background-color:var(--secondary-color);color:#fff;}
/*rating*/
.stars {width:100%;text-align: center;border:1px solid #eee;border-radius:5px;overflow: hidden;display: flex;justify-content: center;flex-direction: row-reverse;margin-bottom:20px;}
.stars-focus{box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);}
input.star {display: none;}
label.star {margin:0;padding: 0 5px;font-size: 30px;color: #ddd;transition: all .2s;}
input.star:checked ~ label.star:before {content: '\f005';color: #FD4;transition: all .25s;font-weight: 900;}
input.star-5:checked ~ label.star:before {color: #FE7;}
input.star-1:checked ~ label.star:before {color: #F62;}
input.star-2:hover ~ label.star-1 {color: #F62;}
input.star-3:hover ~ label.star-1, input.star-3:hover ~ label.star-2 { color: #F62; }
input.star-4:hover ~ label.star-1, input.star-4:hover ~ label.star-2, input.star-4:hover ~ label.star-3 { color: #F62; }
input.star-5:hover ~ label.star-1, input.star-5:hover ~ label.star-2, input.star-5:hover ~ label.star-3, input.star-5:hover ~ label.star-4 {color: #F62;}
label.star:hover {color: #ffa300;}
label.star:before {content: '\f005';font-family: 'Font Awesome 5 Free';font-weight: 400;}
/*security-input*/
.security-group{margin-bottom:20px;position:relative;}
.security-group label{display: block;font-size:14px;font-weight:700;margin-bottom:5px;}
.security-group .img{position:absolute;bottom:0;left:0;}
.security-group .img img{min-height:45px;}
.security-group .img button{border:0;min-height:45px;min-width:45px;margin:0;background:transparent;}
.security-group input{text-indent:175px;min-height:45px;min-height:45px;border:1px solid #eee;font-size:1em;}
/*--- LOADING ---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#loading{width:100%;height:100vh;position:fixed;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999999;display:flex;flex-direction:column;justify-content:center;align-items:center;}
@keyframes spin{to{transform: rotate(360deg);}from{transform: rotate(0);}}
#loading:before{content:'\f110';color:#fff;font-family: 'Font Awesome 6 Free';font-weight:900;animation: spin infinite 1s linear;}
/*--- NO-CONTENT --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.no-content{padding:40px 20px;border:1px dashed #eee;border-radius:10px;text-align:center;margin-bottom:30px;}
.no-content>i{font-size:30px;margin-bottom:15px;color:#aaa;}
.no-content>p{font-size:18px;padding:0;margin:0;font-weight:200;}
/*--- HEMEN ARA - WHATSAPP --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}
@keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}

.fixed-button{position:fixed;bottom:15px;left:15px;display:flex;flex-direction:column;gap:15px;display:none;}
.fixed-button>a{height:40px;width:40px;text-align: center;border-radius:80px;z-index: 999;color: white;position:relative;}
.fixed-button>a>i{line-height:40px;font-size:25px;}
.fixed-button>a .ripple{position: absolute;width:120px;height:120px;z-index: -1;left: 50%;top: 50%;opacity: 0;margin: -60px 0 0 -60px;border-radius:80px;-webkit-animation: ripple 1.8s infinite;animation: ripple 1.8s infinite;}
.fixed-button>a .ripple:nth-child(2) {animation-delay: .3s;-webkit-animation-delay: .3s;}
.fixed-button>a .ripple:nth-child(3) {animation-delay: .6s;-webkit-animation-delay: .6s;}

.whatsAppBg{background-color: #068404 !important;background-image: linear-gradient(90deg, #068404, #0ba909);}
.hemenAraBg {background-color: #004080 !important;background-image: linear-gradient(90deg, #004080, #0073e6);}