*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
}
section{
	padding: 100px 100px;
}
body{
	background-color: #E5E5E5;
}

@media (max-width: 700px){
	body{
		width: 100%;
	}
	section{
		padding: 20px 20px;
	}
}


/*-------- Sticky Navbar Section --------*/
.sticky-navbar{
	background: none;
	width: 100%;
	height: 100px;
}
header {
	z-index: 999;
	display: flex;
	padding: 30px;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: 500ms;
}
#openBtn{
	display: none;
}
nav {
	margin-left: 625px;
}
nav a {
	display: inline-block;
	margin-left: 10px;
	font-size: 15px;
	text-decoration: none;
	font-family: sans-serif;
	color: white;
	text-transform: uppercase;
	border-bottom:  3px solid transparent;
	padding: 10px 1px;
	transition: 200ms;
}
.overlay-navbar{
	display: none;
}
nav a:hover {
	border-color: #fff;
}
.logo img{
	width: 80px;
	flex: 1;
	margin-left: 40px;
}
.bgc {
	height: auto;
	background: #6f93ff;
	padding: 10px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.bgc .logo img {
	width: 80px;
	margin-left: 10px;
}
.bgc nav{
	margin-left: 55%;
}
.bgc nav a {
	color: #222;
}

@media (max-width: 700px){
	header{
		width: 100%;
	}
	.mobile-navbar{
		position: absolute;
		align-items: right;
		right: 20px;
	}
	#openBtn{
		display: inline-block;
		text-decoration: none;
		color: white;
		position: relative;
		top: -5px;
		font-size: 20px;
		cursor: pointer;
	}
	header nav{
		display: none;
	}
	header .logo img{
		width: 80px;
		margin-left: 0;
	}
	.sticky-navbar{
		display: flex;
	}

	.overlay-navbar{
		position: fixed;
		display: block;
		background-color: #6f93ff;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
		height: auto;
		width: 100%;
		z-index: 9999;
		text-align: center;
		padding: 50px;
		top: -300px;
		transition: 0.5s;
		
	}
	.overlay-navbar ul{
		top: 50px;
	}
	.overlay-navbar .fa{
		position: absolute;
		font-size: 20px;
		color: white;
		align-items: right;
		right: 20px;
		top: 30px;
		cursor: pointer;


	}
	.overlay-navbar ul li a{
		color: white;
		line-height: 30px;
		text-decoration: none;
	
	}

}	




/*-------- Slider Banner Section --------*/
.banner{
	position: relative;
	width: 100%;
	min-height: 100vh;
	top: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.5);
  }
  
  .banner:before{
	z-index: 777;
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  }
  
  .banner .content{
	z-index: 888;
	position: relative;
	color: #fff;
	top: auto;
	left: auto;
	display: none;
	margin-bottom: 100px;
  }
  
  .banner .content.active{
	display: block;
  }
  
  .banner .content h1{
	width: 100%;
	font-size: 40px;
	letter-spacing: 5px;
	line-height: 75px;
	text-align: center;
  }
  
  .banner .content p{
	font-size: 30px;
	margin-bottom: 65px;
	text-align: center;
	
  }
  
  .banner .content a{
	background: #fff;
	position: relative;
	left: 41%;
	padding: 15px 35px;
	color: #1680AC;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	border-radius: 2px;
  }
  
  .banner img{
	z-index: 000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .slider-navigation{
	z-index: 888;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-23px, 70px);
	margin-bottom: -15%;
  }
  
  .slider-navigation .nav-btn{
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
	transition: 0.3s ease;
  }
  
  .slider-navigation .nav-btn.active{
	background: #2696E9;
  }
  
  .slider-navigation .nav-btn:not(:last-child){
	margin-right: 20px;
  }
  
  .slider-navigation .nav-btn:hover{
	transform: scale(1.2);
  }
  
  .image-slide{
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
  }
  
  .image-slide.active{
	clip-path: circle(150% at 0 50%);
	transition: 2s ease;
	transition-property: clip-path;
  }
  
  @media (max-width: 700px){
	section{
	  padding: 100px 20px;
	}
  
	.banner .media-icons{
	  right: 15px;
	}

	.banner .content{
		align-items: center;
		padding-bottom: 50px;
		text-align: center;
	}
	.banner .content h1{
		font-size: 25px;
		width: 100%;
		letter-spacing: 0;
		line-height: 35px;
		text-align: center;
	}

	.banner .content p{
		font-size: 20px;
		margin-bottom: 65px;
		text-align: center;
		
	  }

	  .banner .content a{
		background: #fff;
		position: relative;
		color: #1680AC;
		font-size: 1.1em;
		font-weight: 500;
		left: auto;
		border-radius: 2px;
	  }

	  .slider-navigation{
		z-index: 888;
		width: 100%;
		left: auto;
		justify-content: center;
		align-items: center;
		right: auto;
		margin-bottom: -50%;
		transform: translate(0, 50%);
	  }
	  
}


/*-------- Services Section --------*/

.services{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 120px;
    margin-bottom: -10%;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.grid {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit, 350px);
	gap: 2rem;
	padding-top: 2rem;
  }
  
  .item {
	position: relative;
	height: 200px;
	width: 350px;
	display: flex;
	justify-content: center;
	padding-top: 20px;
	overflow-y: hidden;
	background-color: #B6C8FF;
	border-radius: 15px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  }
  .item h3 {
	margin: 0;
	display: block;
	background-color: #6f93ff;
	padding: 1rem;
	transform: translate3d(0, -100%, 0);
	transition: transform 300ms;
  }
  
  .item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  }
  
  
  .item a:hover ~ .item__overlay, .item a:focus ~ .item__overlay {
	transform: translate3d(0, 0, 0);
  }
  .item a:hover ~ .item__overlay h3, .item a:focus ~ .item__overlay h3 {
	transform: translate3d(0, 0, 0);
  }
  .item a:hover ~ .item__overlay .item__body, .item a:focus ~ .item__overlay .item__body {
	opacity: 1;
  }
  
  .grid i{
	  font-size: 120px;
	  position: absolute;
	  display: block;
	  color: rgb(80, 80, 80);
  }
  
  .item__overlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	position: absolute;
	width: 100%;
	top: 0;
	transition: transform 300ms;
	background-color: #B6C8FF;
	transform: translate3d(0, 100%, 0);
  }
  
  .item__body {
	flex-grow: 1;
	padding: 1rem;
	opacity: 0;
	transition: opacity 500ms 100ms;
  }
  .item__body p {
	margin: 0;
	color: black;
  }

  .item__body .p2 {
	margin: 0;
	margin-top: -15px;
	color: black;
	font-size: 11px;
  }

  .item__body .p3 {
	margin: 0;
	margin-top: -15px;
	color: black;
	font-size: 12px;
  }

  .item__body a{
	background: #6f93ff;
	position: relative;
	padding: 5px 10px;
	color: rgb(80, 80, 80);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 5px;
  }

  .item .fake_button{
	color: #000;
	width: 100px;
	position: relative;
	padding: 5px 10px;
	color: none;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 5px;
  }
@media (max-width: 700px){
	.services{
		width: 100%;
		justify-content: center;
		align-items: center;
	}
	.grid {
		display: grid;
		justify-content: center;
		grid-template-columns: repeat(auto-fit, 160px);
	}
	.item {
		position: relative;
		height: 100px;
		width: 180px;
		display: flex;
		justify-content: center;
		padding-top: 20px;
		overflow-y: hidden;
		background-color: #B6C8FF;
		border-radius: 15px;
		box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	  }
	  .item h3 {
		margin: 0;
		display: block;
		font-size: 12px;
		background-color: #6f93ff;
		padding: 0.3rem;
		transform: translate3d(0, -90%, 0);
		transition: transform 300ms;
	  }
	  .item__body {
		flex-grow: 1;
		padding: 1rem, 0;
		opacity: 0;
		transition: opacity 500ms 100ms;
	  }
	  .item__body p{
		  font-size: 5px;
		  line-height: 11px;
		  margin: -15px;
	  }

	  .item__body .p2{
		font-size: 5px;
		line-height: 11px;
		margin: -15px;
	}

	.item__body .p3{
		font-size: 5px;
		line-height: 11px;
		margin: -15px;
	}

	  .item a {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	  }

	.grid i{
		font-size: 50px;
		position: absolute;
		display: block;
		color: rgb(80, 80, 80);
	}
}

/*-------- Location Section --------*/
.location{
    width: 100%;
    margin: auto;
    margin-bottom: 0;
    text-align: center;
    padding-top: 120px;
    position: relative;
    justify-content: center;
}
.location h1{
    font-size: 36px;
    font-weight: 600;
}
.location p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.location h6{
	padding-top: 5px;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 25px;
}


@media (max-width: 700px){
	.location h1{
	 	font-size: 30px;
	}	

	.location h6{
		padding-top: 5px;
		display: block;
		font-family: "Poppins", sans-serif;
		font-size: 15px;
	}
}
/*-------- Client Section --------*/
.client{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 0;
	margin-bottom: -50px;
}

.client h1{
	font-size: 36px;
    font-weight: 600;
}

.client p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.client-logo{
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit, 100px);
	gap: 2rem;
	padding-top: 0;
	margin-bottom: 100px;
}

.client-logo img{
	padding: 20px;
	width: 150px;
}


@media (max-width: 700px){
	.client h1{
		font-size: 30px;
   }	
	.client-logo{
		display: grid;
		justify-content: center;
		align-items: center;
		grid-template-columns: repeat(auto-fit, 50px);
		gap: 2rem;
		padding-top: 0;
		margin-bottom: 50px;
	}
	
	.client-logo img{
		padding: 10px;
		width: 80px;
	}
}
/*-------- Whatsapp Floating Button --------*/
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:30px;
	right: 30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:10px;
	text-align:center;
	justify-content: center;
  	z-index:9999;
}
.float i{
	font-size: 30px;
	margin-top: 10px;
}

.float:hover{
	background-color: white;
	color: #25d366;
}

@media(max-width: 700px){
	.float{
		z-index: 99999;
		bottom: 30px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
	.float i{
		font-size: 25px;
		margin-top: 7.5px;
	}
}

/*-------- Back to Top Floating Button --------*/
.back-to-top {
	display: none;
	position: fixed; /* Fixed/sticky position */
	bottom: 90px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 9999; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: rgb(117, 117, 117); /* Set a background color */
	cursor: pointer; /* Add a mouse pointer on hover */
	border-radius: 10px; /* Rounded corners */
	width: 50px;
	height: 50px;
  }

.back-to-top i{
	color: #000;
	font-size: 30px;
	margin-bottom: 5px;
}
  
.back-to-top:hover {
	background-color: #555; /* Add a dark-grey background on hover */
  }

@media(max-width: 700px){
	.back-to-top{
		display: none;
		z-index: 99999;
		bottom: 90px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
}

/*-------- Footer Section--------*/
.hiasan img{
	margin-bottom: -4px;
	height: 50px;
	width: 100%;
}

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 20px 0;
}
.footer-horizontal{
	width: 25%;
	padding: 0 15px;
}
	
.footer-horizontal .logo-kan{
	margin-bottom: 25px;
	width: 200px;
}
.footer-horizontal .logo-footer{
	margin-bottom: 0;
	width: 200px;
}

.footer-col{
	width: 25%;
	padding: 0 15px;
 }
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h5{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	position: relative;
}
.footer-col h6{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	position: relative;
	margin-left: 50px;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col h2{
  color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: -10px;
}
.footer-col .social-links a{
	display: inline-flex;
	margin-top: 25px;
	text-align: center;
	line-height: 40px;
	
}
.footer-col img{
	margin-top: -20px;
	width: 60px;
}
.down-mobile{
	display: none;
}

/*responsive*/
@media(max-width: 700px){
	.hiasan img{
		height: 18px;
	}
	.container{
		display: none;
	}


	.down-mobile{
		z-index: 1;
		display: block;
		align-content: center;
		background-color: #24262b;
    	padding: 20px 0;
	}
	.down-horizontal{
		display: grid;
		justify-content: left;
		grid-template-columns: repeat(auto-fit, 150px);
		padding-left: 20px;

	}
	.logo-footer{
		width: 100px;
		
	}
	.logo-kan{
		width: 100px;
		margin-top: -7px;
	}
	.down-col{
		width: 100%;
		padding: 0 20px;
	}
	.down-col h4{
		font-size: 18px;
		color: #ffffff;
		text-transform: capitalize;
		margin-bottom: 10px;
		font-weight: 500;
		position: relative;
		padding-top: 20px;
	}
	.down-col h5{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #ffffff;
		font-weight: 500;
		position: relative;
	}
	.down-col h6{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #ffffff;
		font-weight: 500;
		position: relative;
		margin-left: 50px;
	}
	.down-col h4::before{
		content: '';
		position: absolute;
		left:0;
		bottom: -3px;
		background-color: #e91e63;
		height: 2px;
		box-sizing: border-box;
		width: 50px;
	}
	.down-col h2{
		color: white;
		  font-family: Arial, Helvetica, sans-serif;
		  font-size: 12px;
		  margin-top: 0px;
	  }
	  .down-col .social-links a{
		display: inline-flex;
		margin-top: 25px;
		text-align: center;
		line-height: 40px;
		
	}
	.down-col img{
		margin-top: -20px;
		width: 60px;
	}
}
