*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	--card-clr: #161922;
	--body-clr: #191d28;
	--primary-clr: #F1C40F;
	--heading-clr:#fff;
	--text-clr: #767a86;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #FCF3CF;
  }
  
  #preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #FCF3CF;
	border-top-color: #000;
	border-bottom-color: #000;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  
  @keyframes animate-preloader {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }

h1{
	font-size:1.5rem;
	font-weight: 900;
	margin-bottom: 10px;
	color: #F1C40F;

}
h2{
	font-size: 1.3rem;
	font-weight: 700;
	color: #F1C40F;
}
p{
	font-size: 1rem;
	font-weight: 300px;
}

.center-hw{
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.bg-fixed{
	background-position:center;
	background-size: cover;
	background-repeat: no-repeat;

}

.overlay{
	position: absolute !important; 
	bottom: 0 !important; 
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width:100% !important;
	height:100%;
	opacity:1;
	color: #f1f1f1; 
	
  }
  .overlay-25{
	height:25%;
  }
  
  .btn-2{
	background-color:#e06614;
	color:#fff;
  }
  .btn-2:hover{
	color:#fff;
	background-color:#F1C40F;
  }
 /*#######################        navigation             ################## */


.bg-color{
	background-color: rgba(23, 32, 42,.8) !important;
 }
.navbar-brand{
 font-size:1.8rem !important;
 font-weight: 700;
}
.fa-2x{
	font-size: 1.8rem;
}
.nav-link:hover{
	color: #F1C40F !important;
}
.btn-bg{
	background-color:transparent;
	border: 2px solid #fff;
	color: #fff;
}
.btn-bg:hover{
	color: #fff;
	background-color:#F1C40F;	
}

.header{
	background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.65)), url(../image/banner.jpg);
	color: #fff;
	height: 90vh;
	
}

.header-content{
	padding:4.5rem 10rem 0 10rem;
}
.title-word{
	color:#fff;
	font-size:2.5rem;
	font-weight:700;
}
.title-content{
	text-align: center;
	font-size: 1.2rem;
	font-weight: 800;
}
.word {
	color:#F1C40F;
}

.border-left{
	border-left: 4px solid #F1C40F;
	padding-left: 10px;
}

/* services */

.col-p{
	padding: 10px;
  }
  .card:hover{
	background-color: #ACCFCB;
  }


.footer-border{
	border-bottom: 4px solid #F1C40F !important;
	padding-bottom: 10px;
	width:10rem;
	text-align: center;
	display: flex;
	justify-content: center;
}
.footer-border-2{
	border-bottom: 2px solid #F1C40F !important;
	padding-bottom: 10px;
	width:5rem;
	text-align: center;
	display: flex;
	justify-content: center;
}
.footer-page{
	text-decoration: none;
	color: #fff;
}
.footer-page:hover{
	color:#F1C40F;
}

/* next page */

.header-2{
	background-image:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.45)), url(../image/banner.jpg);
	color: #fff;
	height: 50vh;
}

.page{
	font-size: 3rem;
	color: #fff;
	font-weight: bold;
	transform: translateY(50px);
}
/* gallery page */

.gallery-box{
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
  }
  
  .wrapper{
	max-width: 1100px;
  }
  .gallery{
	display: flex;
	flex-wrap: wrap;
  }
  .gallery .image{
	padding: 7px;
	width: calc(100% / 3);
  }
  .gallery .image span{
	display: flex;
	width: 100%;
	overflow: hidden;
  }
  .gallery .image img{
	width: 100%;
	vertical-align: middle;
	transition: all 0.3s ease;
  }
  .gallery .image:hover img{
	transform: scale(1.1);
  }
  
  .preview-box{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: #fff;
	max-width: 700px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	pointer-events: none;
	border-radius: 3px;
	padding: 0 5px 5px 5px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
	z-index: 1040 !important ;
  }
  .preview-box.show{
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	transition: all 0.3s ease;
  }
  .preview-box .details{
	display: flex;
	align-items: center;
	padding: 12px 15px 12px 10px;
	justify-content: space-between;
	
  }
  .preview-box .details .title{
	display: flex;
	font-size: 18px;
	font-weight: 400;
  }
  .details .title p{
	margin: 0 5px;
  }
  .details .title p.current-img{
	font-weight: 500;
  }
  .details .icon{
	color: #007bff;
	font-size: 20px;
	cursor: pointer;
  }
  .preview-box .image-box{
	display: flex;
	width: 100%;
	position: relative;
	
  }
  .image-box .slide{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	height: 50px;
	width: 60px;
	line-height: 50px;
	text-align: center;
	border-radius: 3px;
  }
  .slide.prev{
	left: 0px;
  }
  .slide.next{
	right: 0px;
  }
  .image-box img{
	width: 100%;
	z-index: 1040;
	border-radius: 0 0 3px 3px;
  }
  .shadow{
	position: fixed;
	top:75px;
	left: 0;
	height: 100%;
	width: 100%;
	z-index:2;
	display: none;
	background: rgba(0,0,0,0.45);
  }
  
  @media(max-width: 1000px){
	.gallery .image{
	  width: calc(100% / 2);
	}
  }
  @media(max-width: 600px){
	.gallery .image{
	  width: 100%;
	  padding: 4px;
	}
  }
  

  /* client */

.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--card-clr);
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote i{
	font-size: 45px;
	color: var(--heading-clr);
	margin-right: 20px;
}
.test-card-body .quote h4{
	color: var(--heading-clr);
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-clr);
}
.test-card-body .ratings{
	margin-top: 20px;
}
.test-card-body .ratings i{
	font-size: 17px;
	color: var(--primary-clr);
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-clr);
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--text-clr);
}
/* .owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
} */
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: var(--primary-clr);
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: var(--primary-clr) !important;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: var(--primary-clr) !important;
}


@media(max-width:769px){
	
	h1{
		font-size:1.2rem !important;
		font-weight: 700;
	}
	h2{
		font-size:1rem !important;
		font-weight: 500;
	}
	p{
		font-size:.9rem !important;
		font-weight: 300px;
	}
	.header{
		height: 60vh;
	}
	.header-content{
		padding:3.5rem 0 0 0;
	}
	.title-word{
		font-size:1.5rem;
		font-weight: bolder;
	}
	.title-content{
		text-align: center;
		font-size: 1rem;
		font-weight:300;
	}
	.map{
		height: 350px !important;
	}
	.hero-title{
		font-size:1.4rem !important;
		font-weight: bolder;
	}

}

/*--------------------------------------------------------------
# Other page common css
--------------------------------------------------------------*/

.page-box{
	background-image:
				  linear-gradient(45deg, 
				  rgba(0, 0, 0, 0.75), 
				  rgba(0, 0, 0, 0.50)),
				  url(../image/banner.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

}
.pages{
display: flex;
justify-content: center;
align-items: center;
height: 50vh;
color:#f0bf6a ;
font-weight: bold;
}
.page{
	font-size: 28px;
}
.blog-pad{
	padding: .8rem;
	border: none;
}
.map{
	height: 550px;
}
.hero-title{
	font-size:2rem;
	font-weight: bolder;
}


