@charset "utf-8";
 @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');
 

:root {
	--body-font: "Poppins", sans-serif;
	--body-color: #000;
	--primary-color: #091F36;
	--secondary-color: #EC1C24;
	--tertiary-color: #324558;
	--quaternary-color:#25394D;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F7F7F8;
	--grey-dark: #6D6D6D;		 	 
	--thin:100;
	--light:300;
	--medium:500;
	--bold:600;
	--heavy:700;
	--gradient:linear-gradient(to top right, var(--primary-color), var(--secondary-color));
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 1.5;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	 
}


/* *********Scrollbar Styling *************/
* {
  scrollbar-width: thin;
  scrollbar-color: var(--grey)  var(--primary-color);  
}

 
 

::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 20px!important; 
  border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;    
}

/******************/

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
  background: var(--primary-color);
  color: var(--white);
  -webkit-text-fill-color: var(--white); /* important */
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	transition: all 0.4s ease;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:var(--white)!important;	 
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

 
 

/*************** PRELOADER ***************/
 
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 99999999; /* Ensure it sits on top of everything */
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* The Spinner */
.pulse {
	width: 80px;
	height: 80px;
	/*border-radius: 50%;*/
	animation:pulse 1.5s infinite;
	background-image: url(../images/loader-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:70%;
        }

        /* Keyframes for rotation */
     @keyframes pulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.2);
    opacity:.7;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

        /* Hide class to be added via JS */
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

 
/*************** RESPONSIVE ***************/

@media(max-width:768px){

    .spinner{
        width:38px;
        height:38px;
    }

    .loader-text{
        font-size:22px;
        padding:0 20px;
    }
}

@media(max-width:480px){

    .loader-text{
        font-size:18px;
        line-height:1.5;
    }
}
 
/*********************************/

.container {
	width: 1400px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    transition: all 0.4s ease;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    transition: all 0.4s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


 .hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  transition: all 0.4s ease;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;
	display:block;
	position: relative;
	}

.section-spacing{
   padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}
.overlay-text{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	z-index:3;
	background-image: linear-gradient(to bottom, rgba(28,51,73,0), rgba(28,51,73,1));
	padding:40px;
	color:var(--white);
}
.overlay-text p:last-child{
	margin:0;
}
/*********************************************/ 
 

 header{
	 width:100%; 
	 position:relative;
	 left:0;
	 top:0;
	 padding:10px 0;
	 z-index:5;
	 transition: all 0.4s ease;
	 background-color:var(--white);
}
 header.smaller {
	padding:5px 0;
	position: fixed;
	background-image:none;	
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:200px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
	} 
.call-bt{}
.call-bt a{
	display:inline-flex;
	padding:0 20px;
	color:var(--primary-color);
	font-size:16px;
	line-height:normal;
	font-weight:var(--bold);
	border-left:1px solid var(--grey);
	gap:0 10px;
	align-items: center;
}
.call-bt a i{
	background-color:var(--primary-color);
	color:var(--white);
	width:35px;
	height:35px;
	display:flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size:12px;
}
.call-bt a:hover{	 
	 
}   
.saudi-vision-2030{
	position:absolute;
	right:50px;
	bottom:50px;
	z-index:5;
}
.saudi-vision-2030 img{
	width:140px;
	display:block;
	filter: brightness(0) invert(1);
}
/***********social ***********/
 

.link, .link-stroke{}

.link a, .link-stroke a{
	color:var(--white);
	font-weight:var(--medium);
	background-color:var(--primary-color);
	border-radius: 50px;
	font-size: 12px;
	height:46px;
	padding:0 50px 0 20px;
	display:inline-flex;
 	align-items: center;	 
	position: relative;
	overflow:hidden;
	margin:0;	 
	transition: all 0.4s ease;
 

}
.link-stroke a{
	background-color:transparent;
	border:1px solid var(--white);
}
.link a:hover {
	color:var(--white);
 
}
.link a:before{
	width:46px;
	height:46px;
	position:absolute;
	top:0;
	right:0;
	content:'';
	z-index:2;
	transition: all 0.4s ease; 
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:15px;
}
.link a:hover:before{
	width:40px;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
	}
 .link a:after{
 	width:0;
 	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--tertiary-color);
	content:'';
	z-index:0;
	transition: all 0.4s ease;
 
 }
 .link a:hover:after{
 	width:100%;
 }
 .link a span{
	 position:relative;
 	z-index:2;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--font-bold);
 }
 
.heading{
	font-size:50px;
	line-height:60px;
}
.heading span{ 
	color:var(--secondary-color);	
}
.subheading {
	font-size: 40px;
	line-height:normal; 
}
 
.subtitle{
	font-size: 22px;
	 
 
}
.bold, strong{
	font-weight:var(--bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap;
	margin-bottom:25px;
}
 .section-title span{
	display:inline-flex;	 
	font-size:12px;
	line-height:normal;
	position:relative;
	padding:0 0 0 35px;
	text-transform:uppercase;
	 
}
 .section-title span:after{
 	width:25px;
	height:1px;
	background-color:var(--secondary-color);
	position:absolute;
	left:0;
	top:50%;
	content:'';
 }
/****************************/
  
.pos-rel{
	position:relative;
}
.levelup{
	position:relative;
	z-index:3;
} 

/*********marquee ******************/

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--primary-color);
  padding:20px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee-content {
  display: flex;
  padding:5px 0;
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 0 0 50px;
	white-space: nowrap;
    color:  var(--white);
	font-size: 20px;
	font-weight:var(--bold);
	text-transform:uppercase;
	margin:0 15px;
	background-image: url(../images/icons/brand-icon.svg);
	background-repeat: no-repeat;
	background-position: left center; 
	background-size:35px;
}

.marquee-item span.brand {
	font-style:italic;
	font-family:var(--font-bold); 
	font-size: 20px;  
}

.logos-wrapper{
	background-color:transparent !important;
}
.brand-logo{
	margin:0 5px;
	width:150px;
	padding:10px 30px;
	 
}
.brand-logo img{
	width:100%;
	display:block;
} 
/* Smooth infinite scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


 
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

 
 /**********************news**********************/
 
 .news-widget{
  	padding:0;
	background-color:var(--grey-light);
  }

.news-widget img{
	max-width:100%;
}

  .news-style{
  	padding:30px;
 
 
  }
  .news-style h2{
  	font-size:22px;
  	line-height:normal;
 	color:var(--primary-color);
  } 
.date{
	font-size:10px;
	line-height:10px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
	
}
.date span{
	color:var(--white);
	display:inline-flex;
	align-items: center;
	gap: 0 10px;
	padding:8px 15px;
	background-color:var(--primary-color);
	}
.date i{
	font-size:12px;
	color:var(--white);
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
   .news-style .foot{
  	 margin-top:20px;}
   
 .news-style .foot  a{
	 color:var(--primary-color);
	 font-size:14px;
	 display:inline-block;
	 padding:0 30px 0 0;
	 background-image: url(../images/icons/arrow.svg);
	 background-repeat: no-repeat;
	 background-position: right center;
	 background-size:15px;
}
 .news-style .foot  a:hover{
	 color:var(--secondary-color);
	  padding:0 25px 0 0;
	 }	 
  /********************services scroller**********************/
  
.display-style{ 
      
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
	 text-align:center;
	 justify-content: center;
	 flex-direction:column;
	 background-color:var(--white);
}
.display-style:hover{
	background-color:var(--primary-color);
	color:var(--white);
}


.display-style .icon{
	 display: flex;
	 justify-content: center;
	 margin-bottom:25px;
	 transition: all 0.4s ease;
	 font-size:40px;
	 align-items: center;
	 color:var(--primary-color);
} 
  
.display-style .icon img{
	width:70px;
	display:block;
} 
.display-style:hover .icon{
	filter: brightness(0) invert(1);
	transform: rotate(360deg);
}
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 30px 120px;
	margin-bottom:25px;
	border-bottom:1px solid var(--grey);
	min-height:100px;
	position:relative;
}
.iconic:before{
	width:80px;
	height:1px;
	content:'';
	position:absolute;
	left:0;
	bottom:-1px;
	background-color:var(--secondary-color);
	z-index:1;
}
.iconic:last-child{
	 
}
.iconic h2{
	font-size: 20px;
	font-weight:var(--bold);
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding: 5px;
	border-radius:50%;
	border:1px solid var(--grey-dark);
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.iconic:hover .webicon{
	transform: rotate(360deg);
	
}
.iconic p:last-child{
	margin:0;
}

.steps{
	grid-template-columns: repeat(4, 1fr);
	display: grid;
 
 	}
.steps .item{
	position:relative;
	padding:20px 30px 20px 0;
	 
}	
.steps .item:before{
	width:100%;
	height:1px;
	position:absolute;
	left:0;
	top:52px;
	border-top:1px dashed var(--grey-dark);
	z-index:-1;
	content:'';
	 
} 
.number{
	margin-bottom:25px;
}
.number span{
	width:65px;
	height:65px;
	background-color:var(--primary-color);
	display:flex;
	text-align:center;
	justify-content: center;
	align-items: center;
	color:var(--white);
	font-size:30px;
	font-weight:var(--bold);
	border-radius: 50%;
	transition: all 0.4s ease;
} 
 .steps .item:hover span{
 	transform: rotate(360deg);
	background-color:var(--secondary-color)
 }

.locations{
	width:50%;
	position:absolute;
	bottom:50px;
	right:0;
	z-index:2;
	padding:0 25px 0 0;
	border-right:8px solid var(--secondary-color);
	font-size:16px;
	line-height:normal;
	font-weight:var(--bold);
	color:var(--white);
	text-transform:uppercase;
	text-align:right;
}

/********services card***********/

 
.card-item{}

  .service-card{
        /*width:420px;
        height:420px;*/
		aspect-ratio: 1 / 1;
        position:relative;
        overflow:hidden;
        cursor:pointer;
		 display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
   
    }

    /* DEFAULT BOX */
    .card-front,
    .card-hover{
        position:absolute;
        inset:0;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        transition:all .6s ease;
        padding:20px;
    }

    .card-front{
		background-color:var(--primary-color);
        color:var(--white);
        z-index:2;
    }

    .card-front .icon,
    .card-hover .icon{         
        margin-bottom:20px;
        /*opacity:.9;*/
    }
	 .card-front .icon img,
    .card-hover .icon img{         
      	width:70px;
	    display:block;
		transition: all 0.4s ease;
	    filter: brightness(0) invert(1);
    }

    .card-front h2{
        font-size:24px;
        line-height:1.1;
        font-weight:var(--medium);
    }

    /* HOVER BOX */
    .card-hover{
        background:var(--tertiary-color);
        color:#fff;
        transform:translateY(100%);
        z-index:3;
    }

    .card-hover p{
        font-size:16px;
        line-height:1.7;
		margin:0;
 
    }

    /* HOVER EFFECT */
    .service-card:hover .card-hover{
        transform:translateY(0);
    }

    .service-card:hover .card-front{
        transform:scale(0.96);
    }
/***********fact***********/

.facts{
    display: flex;
    flex-wrap: wrap;
	flex-direction:column;
	gap:10px 0; 
	}
.facts .item{
    display: flex;
    flex-wrap: wrap; 
	align-items: center;
	justify-content: space-between;
	gap:0 20px;
	min-height:80px;
	} 
	
 
.facts .item h2{
	 
	font-size:54px;
	line-height:60px;
	margin:0;
	font-weight:var(--bold);
	color:var(--white);
}
.facts .item h3{
	 width:45%;
	font-size:14px;
	line-height:20px;
	margin:0;
	font-weight:var(--medium);
	text-transform:uppercase;
	color:var(--white);
	padding:0 0 0 20px;
	border-left:2px solid var(--secondary-color);
}


/***********review**********************/

 .google-review{   
    display: grid;
	grid-template-columns: repeat(5, 1fr);
	background-color:var(--primary-color);
	color:var(--white);
	overflow: hidden;
   
}
 .google-review .item{
 	padding:60px 30px;
	border-right:1px solid rgba(255, 255, 255, 0.1);
 }
 .google-review .item:first-child{
	 background-color:var(--grey-light);
	 padding:0;
 	 
 }
 
 
/*.google-review .item:nth-child(5){
	border-right:0;
  }
*/

.google-review .item:last-child{
	border-right:0;
  }
.review-card{
        width:100%;    
        position:relative;
    }

    .top-section{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:28px;
    }

    .user-info{
        display:flex;
        gap:14px;
        align-items:flex-start;
    }

    .user-image{
        width:50px;
        height:50px;
        border-radius:50%;
        overflow:hidden;
        flex-shrink:0;
    }

    .user-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .user-text h3{
        font-size:14px;
        font-weight:var(--medium);
        margin-bottom:4px;
        line-height:1.1;
    }

    .user-text span{
        font-size:12px;
        color:var(--white);
        font-weight:var(--light);
    }


    .user-text h4{
        font-size:12px;
		margin:0;
        font-weight:var(--light);
		line-height:1.1;
    }
	
	    .google-icon{
        width:20px;
        height:20px;
        margin-top:4px;
    }

    .stars{
	width:110px;
	height:20px;
	margin-bottom:20px;
	background-image: url(../images/icons/google-star.svg);
	background-repeat: no-repeat;
	background-position: center center;        
    }

    .review-text{
        font-size:12px;
        line-height:1.5;
        color:var(--white);
		font-weight:var(--light);
 
    } 
    .review-text p{
	margin:0 0 5px 0;
	}	
    .review-text h2{
	font-size:12px;
	margin:10px 0 0 0;
	font-weight:var(--medium);
	}	
	
.a{
	height:100px;
}
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	transition: all 0.4s ease;
 
}
.float:hover i{
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h2 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h2{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-color:var(--primary-color);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  

.footer-info{    
    display: flex;
	justify-content: space-between;
	gap:0 20px;
	padding:25px 0;
	margin:25px 0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.footer-info .item{}
.footer-logo{
	 
}
.footer-logo img{
	width:150px;
	filter: brightness(0) invert(1);
}

.lower-footer{    
    display: flex;
	justify-content: space-between;
	gap:0 20px;
	padding:10px 0;
	 
}
.cirtificates{
  
 }
.cirtificates img{
	width:200px;
}
.copyright{
	text-transform:uppercase;
	font-size:13px;
	line-height:20px;
	text-align:center;
	word-spacing:2px;
}
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:40px;
	height:40px;
	display:flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	text-align:center;
	background-color:var(--tertiary-color);
}
.social a:hover  {
	color:var(--white);
	background-color:var(--grey-dark);
}

 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--grey-light)	;
 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
 
	 
}
 .add h2{
 	font-size:18px;
	line-height:14px;
	font-weight:var(--medium);	 
	margin:0;
	line-height:normal;
 }
.add i{
	width:40px;
	height:40px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 50%;
	color:var(--white);
	font-size:16px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--tertiary-color);
	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

/******************************team-style*****************/

 
 
/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:200px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
	background-color:var(--primary-color);
	 
}
 
.banner h2 {
	color:var(--white);	
	font-weight:var(--bold);
	font-size:30px;
	line-height:30px;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {     
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding:0;
 
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--white);
	font-family:var(--bold);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " →  "; 
	  color:var(--secondary-color);
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
 
 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 .fix-bg{
 	background-attachment:fixed;
	position:relative;
 }
  .fix-bg:before{
  
	position:absolute;
	left:0;
	top:0;
	content:'';
	width:100%;
	height:100%;
	z-index:1;
	background-image: url(../images/backgrounds/overlayer.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
 }
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/**********forms**************/
 
 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	margin: 0;
	font-size: 14px;
 
}

.sendbutton { 
	color: var(--white);
	font-size: 30px;
	font-family:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 15px 30px;
	font-style: normal;
	display: inline-block;
	font-weight:var(--bold);
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 
  
}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {

.nav-group{
	flex-direction: row-reverse;
	}
 
.call-bt a{
	border-left:0;
}  
.footer-info{    
    flex-direction:column;
	gap:20px 0;
	padding:25px 0;
	margin:25px 0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.footer-info .item{}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
 
 
   

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 
 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 .steps{
	grid-template-columns: repeat(2, 1fr);
}
.locations{
	width:100%; 
	font-size:12px;
	position:relative;
	right:auto;
	bottom:auto;
	text-align:center;
	padding:20px;
	border-right:0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
 
}

  .fix-bg:before{
	background-image: url(../images/backgrounds/overlayer2.svg);
 
 }
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

.loader-text{
    font-size:10px;
	}
 
body {
	font-size:14px;
 
	}
.logo { 
	width:120px;
	position:relative;
	transition: all 0.4s ease; 
}
.nav-group, .call-bt a{
	gap:0;
}
.call-bt a span{
	display:none;
}

.saudi-vision-2030{
	right:20px;
	bottom:20px;
 
}
.saudi-vision-2030 img{
	width:90px;
	 
}
.banner { 
	height:150px;	 
 
}
.banner h2 {
	font-size:20px;
	 
}
.link a, .link-stroke a{
	height:35px;
}
.link a:before{
	height:35px;
	height:35px;
	}
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 20px 70px;	 
}
 
.iconic h2{
	font-size: 16px;
	line-height:20px;
}
.webicon{		 
	width:50px;
	height:50px;
}
.marquee-wrapper {
	padding:10px 0;
}
 
.marquee-item {
	padding: 0 0 0 30px;	 
	font-size: 14px;
	margin:0 10px;
	background-size:20px;
}
.heading{
	font-size:24px;
	line-height:30px;
} 
.subheading{
	font-size:20px;
	line-height:24px;
}
.subtitle{
	font-size:18px;
	line-height:22px;
}  
.google-review{
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-left: 20px;
		background-color:transparent;
        gap: 0;
		 
}

.google-review::-webkit-scrollbar{
    display: none;
}

 .google-review .item{
 	 flex: 0 0 88%;
     scroll-snap-align: start;
     padding: 40px 24px;
     border-right: 1px solid rgba(255,255,255,0.1);
	 background-color:var(--primary-color);
 }
 
.user-info{
 	flex-direction:column;     
}

.user-image{
        width:50px;
        height:50px;
}
    .user-text h3{
        font-size:14px;
 
    }

    .user-text span{
        font-size:12px;
        color:var(--white);
        
    }

    .google-icon{
        width:20px;
        height:20px;
		margin-left:10px;
        
    }
	
.lower-footer{
 	flex-direction:column;
 	gap:20px 0;
 }
 
.copyright{
	text-align:left;	 
}
.overlay-text{
	position:relative;
	left:auto;
	bottom:auto;	 
	background-image: none;
	padding:20px;
	background-color:var(--primary-color);
}

.service-card{
         
}

    /* DEFAULT BOX */
    .card-front,
    .card-hover{
        padding:15px;
    }

 
 
	 .card-front .icon img,
    .card-hover .icon img{         
      	width:60px;
	    }

    .card-front h2{
        font-size:20px;
        line-height:1.1;
        font-weight:var(--medium);
    }

 

    .card-hover p{
        font-size:12px;
        line-height:1.7;
		margin:0;
 
    }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
 .steps{
	grid-template-columns: repeat(1, 1fr);
}	
.steps .item{
	padding:0 0 0 70px;
	} 
.steps .item:before{
	width:1px;
	height:100%;
	position:absolute;
	left:25px;
	top:0;
	border-top:0;
	border-left:1px dashed var(--grey-dark);
	z-index:-1;
	content:'';
	 
} 
.number span{
	width:50px;
	height:50px;
	font-size:20px;
 
}
.steps .item .number{
	position:absolute;
	left:0;
	top:0;
}


 
.facts .item{
	gap:0 10px;
 
	} 
	
 
.facts .item h2{
	 
	font-size:40px;
	line-height:44px;
}
.facts .item h3{
	width:45%;
	font-size:12px;
	 
}

}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}

/* Loading Spinner styles */
.loader-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}