*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	--card-clr: #161922;
	--body-clr: #191d28;
	--primary-clr: #ff7d10;
	--heading-clr: #dadada;
	--text-clr: #767a86;
}

h1{
	font-size:1.8rem;
	font-weight: 900;
	margin-bottom: 10px;
}
h2{
	font-size: 1.3rem;
	font-weight: 700;
	color: #ff7d10;
}
p{
	font-size: 1rem;
	font-weight: 300px;
	text-align: justify;
}

.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: rgb(255, 125, 16);
  }
 /*#######################        navigation             ################## */

.navbar-brand .company{
	color: rgb(255, 125, 16) !important;
}
.bg-color{
	background-color: rgba(23, 32, 42,.8) !important;
 }
.navbar-brand{
 font-size:1.6rem !important;
 font-weight: 700;
}
.fa-2x{
	font-size: 1.6rem;
}
.nav-link:hover{
	color: #ff7d10 !important;
}
.btn-bg{
	background-color:transparent;
	border: 2px solid #fff;
	color: #fff;
}
.btn-bg:hover{
	color: #fff;
	background-color:#ff7d10;	
}

.header{
	background-image:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.45)), url(../image/banner.webp);
	color: #fff;
	height: 90vh;
}

.header-content{
	padding:.5rem 10rem;
}
.title{
	color:#fff;
	font-size:3rem;
	font-weight: bolder;
}
.title-content{
	text-align: center;
	font-size: 1.5rem;
	font-weight: 800;
}
.word {
	color:#ff7d10;
}

.border-left{
	border-left: 4px solid #ff7d10;
	padding-left: 10px;
}
.footer-border{
	border-bottom: 2px solid #ff7d10 !important;
	padding-bottom: 10px;
	width:8rem;
	text-align: center;
	display: flex;
	justify-content: center;
}
.footer-border-2{
	border-bottom: 2px solid #ff7d10 !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:#ff7d10;
}

/* next page */

.header-2{
	background-image:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.45)), url(../image/banner-2.jpg);
	color: #fff;
	height: 40vh;
}

.page{
	font-size: 3rem;
	color: #fff;
	font-weight: bold;
	transform: translateY(50px);
}

/* gallery */

.wrapper{
	max-width: 1100px;
  }
  .wrapper nav{
	display: flex;
	justify-content: center;
	align-items: center;
  }
   .wrapper .items{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 600px;
	width:100%;
	justify-content: space-between;
  } 
  .items span{
	padding: 7px 25px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	color: #e06614;
	border-radius: 50px;
	border: 2px solid #e06614;
	transition: all 0.3s ease;
  }
  .items span.active,
  .items span:hover{
	color: #fff;
	background: #e06614;
  }
  
  .gallery{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
  }
  .gallery .image{
	width: calc(100% / 3);
	padding: 7px;
  }
  .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);
  }
  .gallery .image.hide{
	display: none;
  }
  .gallery .image.show{
	animation: animate 0.4s ease;
  }
  @keyframes animate {
	0%{
	  transform: scale(0.5);
	}
	100%{
	  transform: scale(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);
  }
  .preview-box.show{
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	transition: all 0.3s ease;
  }
  .preview-box .details{
	padding: 13px 15px 13px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  .details .title{
	display: flex;
	font-size: 18px;
	font-weight: 400;
  }
  .details .title p{
	font-weight: 500;
	margin-left: 5px;
  }
  .details .icon{
	color: #e06614;
	font-style: 22px;
	cursor: pointer;
  }
  .preview-box .image-box{
	width: 100%;
	display: flex;
  }
  .image-box img{
	width: 100%;
	border-radius: 0 0 3px 3px;
  }
  .sadow{
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	display: none;
	background: rgba(0,0,0,0.4);
  }
  .sadow.show{
	display: block;
  }
  
  @media (max-width: 1000px) {
	.gallery .image{
	  width: calc(100% / 3);
	}
  }
  @media (max-width: 800px) {
	.gallery .image{
	  width: calc(100% / 2);
	}
  }
  @media (max-width: 700px) {
	.wrapper nav .items{
	  max-width: 600px;
	}
	nav .items span{
	  padding: 7px 15px;
	}
  }
  @media (max-width: 600px) {
	.wrapper{
	  margin: 30px auto;
	}
	.wrapper nav .items{
	  flex-wrap: wrap;
	  justify-content: center;
	}
	nav .items span{
	  margin: 5px;
	}
	.gallery .image{
	  width: 100%;
	}
  } 


  /* 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 h2{
	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 !important;
	}
	.header-content{
		padding:.5rem 0rem;
	}
	.title{
		color:#fff;
		font-size:1.5rem;
		font-weight: bolder;
	}
	.title-content{
		text-align: center;
		font-size: 1.1rem;
		font-weight: 800;
	}

}


