@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;}

/*--- HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header .container{display:flex;flex-direction:row;justify-content:space-between;}
header .container .logo{max-width:190px;flex:0 0 190px;padding:20px 0;}
header .container .menu{max-width:calc(100% - 190px);flex:0 0 calc(100% - 190px);padding-left:100px;}
header .container .menu .menu-bar{display:none;width:}
header .container .menu>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:space-between;height:100%;}
header .container .menu>ul>li{}
header .container .menu>ul>li>a{display:flex;flex-direction:column;justify-content:center;height:100%;padding:0 20px;position:relative;position:relative;}
header .container .menu>ul>li>a *{position:relative;z-index:99;}
header .container .menu>ul>li>a:before{content:'';width:100%;height:0%;position:absolute;top:0;left:0;background:#B42940;opacity:0;visibility:hidden;z-index:-1;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
header .container .menu>ul>li>a:after{content:'';width:100%;height:0%;position:absolute;bottom:0;left:0;background:#B42940;opacity:0;visibility:hidden;z-index:-1;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
header .container .menu>ul>li>a:hover{color:#fff;}
header .container .menu>ul>li>a:hover:before{height:50%;opacity:1;visibility:visible;}
header .container .menu>ul>li>a:hover:after{height:50%;opacity:1;visibility:visible;}
header .container .menu>ul>li>.sub-menu-bar{display:none;}
header .container .menu>ul>li>ul{position:absolute;background:#B42940;z-index:99;padding:20px 20px 20px 40px;transform:translate(0,30px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
header .container .menu>ul>li:hover>ul{transform: translate(0,0);opacity:1;visibility:visible;}
header .container .menu>ul>li>ul>li{}
header .container .menu>ul>li>ul>li>a{display:block;line-height:30px;color:#fff;text-transform:uppercase;}
header .container .menu>ul>li>ul>li>a:hover{color:#000;}
@media only screen and (max-width:991px){
    header .container{align-items:center;position:relative;}
    header .container .menu{padding-left:0;text-align:right;}
    header .container .menu .menu-bar{display:block;padding:10px 0;}
    header .container .menu>ul{position:absolute;display:none;right:0;width:100%;background:rgba(0,0,0,.9);z-index:99;height:fit-content;flex-direction:column;}
    header .container .menu>ul>li{position:relative;}
    header .container .menu>ul>li>a{color:#fff;padding:10px;}
    header .container .menu>ul>li>.sub-menu-bar{display:block;position:absolute;position:absolute;top:0;left:0;height:40px;width:40px;text-align:center;display:flex;flex-direction:column;justify-content:center;font-size:1.5em;color:#fff;}
    header .container .menu>ul>li>ul{position:relative;display:none;transition:unset;-webkit-transition:unset;-moz-transition:unset;-o-transition:unset;opacity:1;visibility:visible;transform:translate(0,0);}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider .swiper-slide {position:relative;}
.slider .swiper-slide img {display: block;width: 100%;height: 100vh;object-fit: cover;}
.slider .swiper-slide .text {display:flex;flex-direction:column;justify-content:center; height:100%;position:absolute;width:30%;left:15%;top:0;z-index:999;gap:10px;}
.slider .swiper-slide .text h2{font-size:2.5em;font-weight:500;color:#fff;opacity:1;visibility:hidden;transform:translate(0,50px);transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text h2{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.3s;}
.slider .swiper-slide .text p{font-size:1.06em;color:#fff;width:75%;opacity:1;visibility:hidden;transform:translate(0,50px);transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text p{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.6s;}
.slider .swiper-slide .text .more{display:block;width:200px;line-height:33px;background:#B42940;color:#fff;font-size:1em;text-align:center;text-transform:uppercase;opacity:1;visibility:hidden;transform:translate(0,50px);transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text .more{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.9s;}
.slider .swiper-pagination {position: absolute;top:0;left:unset;width:fit-content;right:10%;display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%;gap:10px;}
.slider .swiper-pagination-bullet {height:63px;width:63px;border-right:5px solid #B42940;color:#fff;line-height:63px;text-align:center;font-size:1.5em;border-radius:0;opacity:1;background:unset;}
.slider .swiper-pagination-bullet-active {background:#B42940;}
@media only screen and (max-width:767px){
    .slider .swiper-slide .text{left:15px;width:75%;}
    .slider .swiper-pagination {right:15px;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{background:#F3F5F9;padding:50px 0 0 0;}
.m1 .img{margin-bottom:50px;display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%;}
.m1 .img img{width:100%;height:auto;}
.m1 .content{display:flex;flex-direction:column;justify-content:space-between;height:100%;padding:50px 0;margin-bottom:50px;}
.m1 .content h2{color:#828CA9;font-size:1.68em;letter-spacing: 5.4px;text-transform:uppercase;}
.m1 .content h3{font-size:3.18em;font-weight:900;line-height:2em;}
.m1 .content h3>span{display:block;width:fit-content;position:relative;padding-right:30px;}
.m1 .content h3>span>span{position:relative;z-index:9;}
.m1 .content h3>span:nth-child(1):before{content:'';width:100%;height:100%;background:#fff;transform: skewX(-20deg);position:absolute;top:0;left:0;z-index:0;}
.m1 .content h3>span:nth-child(2) {color:#B42940}
.m1 .content .text{font-size:1.06em;line-height:27px;}
.m1 .content .list{display:flex;flex-direction:row;justify-content:space-between;}
.m1 .content .list>a{display:inline-block;width:fit-content;padding-left:40px;position:relative;line-height:89px;font-size:1.31em;font-weight:900;color:#18386B;}
.m1 .content .list>a:before{content:'';width:89px;height:89px;background:#18386B;opacity:.06;border-radius:50%;position:absolute;top:0;left:0;}
.m1 .m1-bottom{border-top:1px solid #C0C2C4;}
.m1 .m1-bottom .box{display:flex;flex-direction:column;padding:60px 0;justify-content:center;align-items:center;gap:30px;position:relative;}
.m1 .m1-bottom .box span{color:#8D96A3;font-size:1.06em;text-align:center;}
.m1 .m1-bottom .row .col-lg-3:nth-child(1) .box:before,
.m1 .m1-bottom .row .col-lg-3:nth-child(2) .box:before,
.m1 .m1-bottom .row .col-lg-3:nth-child(3) .box:before{content:'';width:1px;height:100%;background:#C0C2C4;position:absolute;right:-15px;top:0;}
@media only screen and (max-width:767px){
    .m1 .content h3{font-size:2.18em;}
    .m1 .content .list>a{padding-left:20px;}
    .m1 .m1-bottom .row .col-lg-3:nth-child(1) .box:before,
    .m1 .m1-bottom .row .col-lg-3:nth-child(2) .box:before,
    .m1 .m1-bottom .row .col-lg-3:nth-child(3) .box:before{content:'';width:100%;height:1px;background:#C0C2C4;position:absolute;right:unset;top:unset;left:0;bottom:0;}
}
@media only screen and (min-width: 768px) and (max-width:991px){
    .m1 .img img{max-width: 50%;height: auto;display: block;margin: 0 auto;}
    .m1 .m1-bottom .box span{text-align: center;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:50px 0;}
.m2 .title{text-align:center;margin-bottom:50px;}
.m2 .title h2{color:#828CA9;font-size:1.68em;letter-spacing: 5.4px;text-transform:uppercase;}
.m2 .title p{font-size:1.06em;color:#000;padding:0 18%;}
.service-box{position:relative;border-radius:32px;margin-bottom:30px;overflow:hidden;}
.service-box a{display:block;}
.service-box img{width:100%;height:500px;object-fit:cover;border-radius:32px;position:relative;z-index:7;}
.service-box:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(to bottom,transparent,#0C1C36);z-index:8;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:before{top:-100%;}
.service-box h2{position:absolute;bottom:10%;left:0;right:0;text-align:center;color:#fff;z-index:9;font-size:1.37em;}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:50px 0;}
.m3 .top-img{margin-bottom:50px;border-radius:120px;overflow:hidden;}
.m3 .top-img img{width:100%;height:auto;}
.m3 .top-text{display:flex;flex-direction:column;justify-content:center;margin-bottom:50px;height:100%;}
.m3 .top-text h2{color:#828CA9;font-size:1.68em;letter-spacing: 5.4px;text-transform:uppercase;}
.m3 .top-text p{font-size:1.06em;color:#000;}
.m3 .m3-bottom{position:relative;}
.m3 .m3-bottom:before{content:'';width:100%;height:1px;background:#C0C2C4;position:absolute;left:0;top:72px;z-index:-1;}
.m3 .m3-bottom .box{margin-bottom:30px;}
.m3 .m3-bottom .box .img img{display:block;margin:0 auto;max-width:100%;height:auto;}
.m3 .m3-bottom .box .content{padding:30px;}
.m3 .m3-bottom .box .content h3{font-size:1.37em;color:#000;font-weight:700;text-align:center;margin-bottom:30px;}
.m3 .m3-bottom .box .content p{font-size:.81em;line-height:27px;text-align:center;}
@media only screen and (max-width:767px){
    .m3 .top-text{text-align:center;}
}
@media only screen and (min-width: 768px) and (max-width:991px){
    .m3 .top-text{text-align:center;}
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:50px 0;}
.m4 .title{display:flex;flex-direction:column;justify-content:center;height:100%;margin-bottom:50px;}
.m4 .title h2{font-size:1.68em;}
.m4 .title h2 a{display:flex;letter-spacing: 5.4px;padding:55px;justify-content:space-between;background:#B42940;border-radius:19px;margin-right:30px;text-transform:uppercase;color:#fff;align-items:center;position:relative;}
.m4 .title h2 a:before{content:'';width:100%;height:100%;left:30px;border:1px solid #18386B;border-radius:19px;position:absolute;top:-30px;z-index:-1;}
.m4 .title h2 a span{display:block;width:46px;height:46px;line-height:46px;text-align:center;color:#B42940;background:#fff;border-radius:50%;}
.swiper-nav{width:100% !important;height:50px !important;overflow:hidden;position:relative;display:flex;flex-direction:row;gap:10px;align-items:center;justify-content:center;}
.swiper-nav div:nth-child(2){height:2px !important;background:#18386B;border-radius:6px;width:46px;}
.swiper-nav div:nth-child(1) img{transform:translate(0,-9px);}
.swiper-nav div:nth-child(3) img{transform:translate(0,7px);}
.swiper-nav div:nth-child(1):active{transform:translate(-7px,0);}
.swiper-nav div:nth-child(3):active{transform:translate(7px,0);}
.m4 .blog-box{}
.m4 .blog-box .img img{width:100%;height:260px;object-fit:cover;border-radius:54px;}
.m4 .blog-box .content{padding:20px 30px;}
.m4 .blog-box .content h3{font-size:1.06em;font-weight:700;line-height:1.2em;min-height:2.4em;}
.m4 .blog-box .content h3>a{color:#000;}
.m4 .blog-box .content h3:hover>a{color:#B42940;}
.m4 .blog-box .content p{font-size:.81em;color:#000;line-height:27px;}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:50px 0 0 0;background:url('../images/footer-bg.jpg') no-repeat bottom center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
footer .f-wrapper{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:50px;align-items:center;}
footer .f-wrapper .f-right{display:flex;flex-direction:row;gap:50px;}
footer h3{font-size:1.25em;font-weight:700;margin-bottom:30px;color:#18386B;}
footer .f-logo{margin-bottom:50px;}
footer .f-logo img{width:100%;height:auto;}
footer .list{margin-bottom:50px;}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{display:flex;align-items:center;}
footer .list>ul>li>span,footer .list>ul>li>a{display:inline-block;font-size:.9em;line-height:2em;transition:all .2s ease-in-out;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;}
footer .list>ul>li>span:hover,footer .list>ul>li>a:hover{padding-left:5px;}
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:767px){
    footer .f-wrapper{flex-direction:column;}
    footer .f-wrapper .f-right{flex-direction:column;gap:unset;text-align:center;}
    footer .list>ul>li{display:block;}
    footer .list>ul>li>span,footer .list>ul>li>a{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;color:#fff;}
.page .page-head p{font-size:1.1em;font-weight:200;margin-bottom:25px;color:#fff;}
.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;}

.page .page-head .title nav ol li{color:#fff;}
.page .page-head .title nav ol li a{color:#fff;}
.page .page-head .title .breadcrumb-item+.breadcrumb-item::before{color:#fff;}

/*--- 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);}