@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Poppins", sans-serif;
    color:var(--text-color);
}
@media only screen and (min-width:1441px){
    body{
        font-size:16px;
    }
}
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;}
.more{display:inline-block;line-height:50px;background:#fff;color:#000000;border-bottom:2px solid #EC5F2C;min-width:160px;width:fit-content;text-align:center;}
/*--- HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header{border-top:45px solid #000000;position:relative;z-index:99;}
header .logo{position:absolute;left:0;right:0;margin:0 auto;width:307px;height:auto;margin:0 auto;padding:20px 50px;background: #FFFFFF 0% 0% no-repeat padding-box;box-shadow: 6px 12px 18px #00000029;border-radius: 0px 0px 36px 36px;}
header .logo img{width:100%;height:auto;}
header .menu{position:relative;}
header .menu .menu-bar{display:none;}
header .menu .menu-wrapper{display:flex;flex-direction:row;justify-content:space-between;}
header .menu .menu-wrapper ul{list-style:none;margin:0;padding:0;display:flex;gap:60px;}
header .menu .menu-wrapper ul>li{}
header .menu .menu-wrapper ul>li>a{display:block;padding:60px 10px;font-weight:500;position:relative;overflow:hidden;}
header .menu .menu-wrapper ul>li>a *{position:relative;z-index:99;}
header .menu .menu-wrapper ul>li>a:hover{color:#fff;}
header .menu .menu-wrapper ul>li>a:before{content:'';width:100%;transform:skewY(15deg);height:0;top:-25%;left:0;z-index:-1;position:absolute;background:#EC5F2C;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 .menu .menu-wrapper ul>li>a:hover:before{height:100%;}
header .menu .menu-wrapper ul>li>a:after{content:'';width:100%;transform:skewY(15deg);height:0;bottom:-25%;left:0;z-index:-1;position:absolute;background:#EC5F2C;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 .menu .menu-wrapper ul>li>a:hover:after{height:100%;}
@media only screen and (max-width:767px){
    header .logo{position:relative;width:240px;margin-bottom:20px;max-width:100%;}
    header .menu{margin-bottom:20px;}
    header .menu .menu-bar{display:block;background:#EC5F2C;padding:10px;color:#fff;}
    header .menu .menu-wrapper{flex-direction:column;background:rgba(0, 0, 0, .9);position:absolute;z-index:99;width:100%;display:none;}
    header .menu .menu-wrapper ul{flex-direction:column;gap:0;}
    header .menu .menu-wrapper ul>li>a{padding:10px 20px;color:#fff;border-bottom:1px solid #444;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    header .logo{position:relative;width:280px;margin-bottom:20px;}
    header .menu{margin-bottom:20px;}
    header .menu .menu-bar{display:block;background:#EC5F2C;padding:10px;color:#fff;}
    header .menu .menu-wrapper{flex-direction:column;background:rgba(0, 0, 0, .9);position:absolute;z-index:99;width:100%;display:none;}
    header .menu .menu-wrapper ul{flex-direction:column;gap:0;}
    header .menu .menu-wrapper ul>li>a{padding:10px 20px;color:#fff;border-bottom:1px solid #444;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    header .logo{width:200px;}
    header .menu .menu-wrapper ul{gap:30px;}
    header .menu .menu-wrapper ul>li>a{padding:30px 10px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    header .logo{width:250px;}
    header .menu .menu-wrapper ul>li>a{padding:45px 10px;}
}
/*--- Slide ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{width:100%;height:90vh;position:relative;background:url('../images/slide-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.slider .bg-box{width:30%;height:0;right:15%;top:0;position:absolute;background:#EC5F2C;z-index:0;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;}
.slider .swiper-slide-active .bg-box{height:100%;opacity:1;visibility:visible;transition-delay:.3s;}
.slider .swiper{width:100%;height:100%;}
.slider .swiper-slide{width:100%;height:100%;padding:2% 5%;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-end;}
.slider .swiper-slide .img{position:relative;z-index:99;opacity:0;visibility:hidden;transform:translate(30px,0);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;}
.slider .swiper-slide-active .img{opacity:1;visibility:visible;transition-delay:.6s;transform:translate(0,0);}
.slider .content{position: absolute;top:0;left:15%;color:#fff;z-index:999;display:flex;height:100%;width:35%;flex-direction:column;justify-content:center;}
.slider .content h2{font-size:5em;font-weight:600;margin-bottom:50px;opacity:0;visibility:hidden;transform:translate(-30px,0);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;}
.slider .swiper-slide-active .content h2{opacity:1;visibility:visible;transition-delay:.9s;transform:translate(0,0);}
.slider .content p{font-size:1.06em;padding-left:10px;border-left:5px solid #EC5F2C;margin-bottom:50px;width:75%;opacity:0;visibility:hidden;transform:translate(0,30px);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;}
.slider .swiper-slide-active .content p{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:1.2s;}
.slider .content .more{opacity:0;visibility:hidden;transform:translate(0,-30px);}
.slider .swiper-slide-active .content .more{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:1.5s;}
@media only screen and (max-width:991px){
    .slider{height:auto;}
    .slider .swiper-slide{padding:30px 15px;}
    .slider .swiper-slide .img{width:100%;height:auto;margin:30px 0;}
    .slider .content{position:relative;left:0;text-align:center;width:100%;height:auto;}
    .slider .content h2{font-size:2.5em;padding:0;margin-bottom:20px;}
    .slider .content p{width:100%;border-left:0;margin-bottom:20px;}
    .slider .content .more{margin:0 auto;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .slider .swiper-slide .img{width:75%;height:auto;}
    .slider .content{left:7%;}
    .slider .content h2{font-size:3em;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .slider .swiper-slide .img{width:80%;height:auto;}
    .slider .content{left:7%;}
    .slider .content h2{font-size:3.5em;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{background:#1A1A1A;display:grid;grid-template-columns:repeat(2, 1fr);}
.m1 .img img{width:100%;height:auto;}
.m1 .content{display:flex;flex-direction:column;gap:50px;justify-content:center;padding:30px 25% 30px 30px;height:100%;}
.m1 .content h2{color:#fff;font-size:2.18em;font-weight:700;}
.m1 .content .text{color:#fff;}
@media only screen and (max-width:767px){
    .m1{display:block;grid-auto-columns:unset;}
    .m1 .content{padding:30px 15px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1 .content{padding:30px 15px;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{position:relative;padding:35px 0;background:#F8F8F8;}
.m2:before{content:'';width:100%;height:80%;position:absolute;top:0;left:0;z-index:1;background:url('../images/m2-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.m2 .title{display:flex;flex-direction:column;gap:40px;justify-content:center;height:100%;padding-bottom:20%;position:relative;z-index:9;}
.m2 .title h2{font-size:2.18em;font-weight:700;color:#fff;}
.m2 .title p{color:#fff;}
/*service*/
.service-box{border-radius:0 150px;overflow:hidden;position:relative;z-index:9;margin-bottom:30px;}
.service-box .bg{width:100%;height:657px;object-fit:cover;}
.service-box .mask{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;padding-top:35%;}
.service-box .mask:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(236, 95, 44, 1);mix-blend-mode: multiply;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;}
.service-box:hover .mask:before{opacity:0;visibility:hidden;}
.service-box .mask > *{position:relative;z-index:9;}
.service-box .mask .num{font-size:4.5em;color:#fff;-webkit-text-fill-color:transparent;-webkit-text-stroke-color:#fff;-webkit-text-stroke:2px;font-weight:900;}
.service-box .mask h3{font-size:2.06em;color:#fff;}
.m2 .swiper-nav{display:flex;flex-direction:row;gap:20px;}
.m2 .swiper-pagination{position:relative;color:#fff;font-size:1.25em;text-align:left;}
.m2 .swiper-service-prev:active{transform:translate(-5px,0);opacity:.5;}
.m2 .swiper-service-next:active{transform:translate(5px,0);opacity:.5;}
@media only screen and (max-width:991px){
    .m2 .title{padding-bottom:0;gap:10px;align-items:center;margin-bottom:20px;text-align:center;}
    .m2 .swiper-pagination{text-align:center;}
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:50px 0;background:#F8F8F8;}
.m3 .title{margin-bottom:50px;}
.m3 .title h2{font-size:2.18em;font-weight:700;color:#EC5F2C;}
.m3 .title p{color:#000000;}
.m3 .box{margin-bottom:50px;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;}
.m3 .box:hover{transform:translate(0,35px);}
.m3 .box .img{position:relative;}
.m3 .box .img .icon{display:flex;flex-direction:column;justify-content:center;align-items:center;width:63px;height:63px;background:#EC5F2C;border-radius:50%;left:0;right:0;margin:0 auto;position:absolute;opacity:0;visibility:hidden;transform:translate(0,0);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;}
.m3 .box:hover .img .icon{opacity:1;visibility:visible;transform:translate(0,-50%);}
.m3 .box .img .icon img{width:25px;height:auto;transform: rotate(-20deg);}
.m3 .box .img img{width:100%;height:356px;object-fit:cover;}
.m3 .box .content{padding-top:20px;}
.m3 .box .content h3{font-size:1.12em;font-weight:700;color:#000;line-height:1.7em;}
.m3 .box .content p{line-height:2em;min-height:10em;}
.m3 .all{margin-top:50px;text-align:center;}
@media only screen and (max-width:767px){
    .m3 .box .img img{height:250px;}
}
.list-group-item.active {background-color: #d77300;border-color: #d77300;}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:50px 0;background:#fff;}
footer .f-top{overflow:hidden;margin-bottom:50px;}
footer .logo{width:33.33%;margin:0 auto;position:relative;}
footer .logo:before{content:'';width:100%;height:3px;background:#6C6C6C;position:absolute;top:calc(50% - 1.5px);left:0;transform:translate(-100%,0);}
footer .logo:after{content:'';width:100%;height:3px;background:#6C6C6C;position:absolute;top:calc(50% - 1.5px);right:0;transform:translate(100%,0);}
footer .logo img{width:50%;height:auto;display:block;margin:0 auto;}
footer .f-body{margin-bottom:50px;}
footer .f-body ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:20px;justify-content:center;}
footer .f-body ul>li{border-right:2px solid #000;padding-right:20px;}
footer .f-body ul>li:last-child{border:0;}
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;}
footer .contracts{margin-bottom:50px;display:flex;flex-wrap:wrap;justify-content:center;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;}
@media only screen and (max-width:991px){
    footer .logo{width:70%;}
    footer .f-body ul{flex-direction:column;}
    footer .f-body ul>li{border:0;text-align:center;}
}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:75px 0 35px 0;background:var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;}
.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 --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.fixed-button{position:fixed;bottom:30px;left:15px;display:flex;flex-direction:column;gap:10px;z-index:999;}
.fixed-button>a{position:relative;}
.fixed-button>a>img{width:70px;height:70px;object-fit:contain;}
.fixed-button>a:hover{transform:scale(1.1);}s