*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}
:root{
	--bg-color: #ffffff;
	--text-color: #252525;
	--second-color: #6d6d6d;
	--main-color: #E94E1B;
	--big-font: 3.8rem;
	--h2-font: 2.6rem;
	--p-font: 1.1rem;
}
body{
	margin:0;
	background: var(--bg-color);
	color: var(--text-color);
	overflow-x: hidden;
}

header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #00000059;
	padding: 23px 13%;
	transition: all .40s ease;
}
.logo img{
	height: auto;
	width: 160px;
	max-width: 100%;
}
.navbar{
	display: flex;
}
.navbar a{
	color: var(--bg-color);
	font-weight: 600;
	font-size: var(--p-font);
	padding: 10px 22px;
	transition: all .40s ease;
}
.navbar a:hover{
	color: var(--main-color);
}
.header-icons{
	display: flex;
	align-items: center;
}
.header-icons i{
	margin-left: 10px;
	font-size: 24px;
	color: var(--bg-color);
	transition: all .40s ease;
	margin-right: 15px;
}
.header-icons i:hover{
	transform: scale(1.2);
	color: var(--main-color);
}
#menu-icon{
	font-size: 34px;
	color: var(--bg-color);
	z-index: 10001;
	cursor: pointer;
	display: none;
}
.fa {
	padding: 20px;
	font-size: 30px;
	width: 30px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
  }

  /* Home slide info start*/

  .home{
	height: 90vh;
	overflow:hidden;
	position: relative;
}

.home .slide{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index:1; 
	display:none;
	padding:0 15px;
	animation: slide 2s ease;
}
.home .slide.active{
	display: flex;
}
@keyframes slide{
	0%{
		transform:scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.container{
	max-width: 1170px;
	margin:auto;
	
}

.home .container{
	 flex-grow: 1;
}
.home .caption{
	width:50%;
}
.home .caption h1{
	font-size:60px;
	margin: 15px 0 15px;
	color: var(--bg-color);
    text-shadow: 2px 2px 3px rgb(0, 0, 0);	
}

.home .caption h6{
	font-size:25px;
	color:#ffffff;
	margin:0;
	font-weight: 600;
	letter-spacing: 2px;
    text-shadow: 2px 2px 3px rgb(0, 0, 0);	
}

.home .slide.active .caption h1{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1s;

}
.home .slide.active .caption h6{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1s;

}
.home .caption p{
	font-size: 18px;
	margin:15px 0 30px;
	color:#ffffff;
	font-weight: 500;
	margin-bottom: 48px;
    text-shadow: 2px 2px 3px rgb(0, 0, 0);
	background-origin: border-box;
	background-color: rgba(22, 22, 22, 0.500);
	border-radius: 5px;
	padding: 10px;
	text-align: justify;

}
.home .slide.active .caption p{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.2s;
}
.home .caption a{
	display: inline-block;
	padding:10px 30px;
	background-color: #f5581b;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
	border-radius: 20px;
}

.home .caption a:hover{
	display: inline-block;
	padding:10px 30px;
	background-color: #000000;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
}

.home .slide.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;

}

@keyframes captionText{
	0%{
		opacity:0; transform: translateX(-100px);
	}
	100%{
	 opacity:1; transform: translateX(0px);	
	}
}

.home .controls .prev,
.home .controls .next{
 position: absolute;
 z-index:2;
 top:50%;
 height:40px;
 width: 40px;
 margin-top: -20px;
 color:#ffffff;
 background-color: #FF5722;
 text-align: center;
 line-height: 40px;
 font-size:30px;
 cursor:pointer;
 transition: all .5s ease;
}
.home .controls .prev:hover,
.home .controls .next:hover{
	background-color: #000000;
}
.home .controls .prev{
 left:0;
}
.home .controls .next{
 right:0;


}

.home .indicator{
	position: absolute;
	left:50%;
	bottom:30px;
	z-index: 2;
	transform: translateX(-50%);
}

.home .indicator div{
	display: inline-block;
	width:25px;
	height: 25px;
	color:#ffffff;
	background-color: #FF5722;
	border-radius:50%;
	text-align: center;
	line-height: 25px;
	margin:0 3px;
}

.home .indicator div.active{
 background-color: #000;
}

/*responsive*/
@media(max-width: 767px){
	.controls{
		display: none;
	}
}


  
  /* Home slide info end*/

section {
	padding: 80px 13%;
}

header.sticky{
	background: #000000;
	padding: 12px 13%;
	box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
}

.center-text{
	text-align: center;
	padding: 25px;
	padding-bottom: 3px;
}
.center-text h5{
	color: var(--main-color);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.center-text h2{
	font-size: var(--h2-font);
	line-height: 1.2;
}
.projects{
	background: url(../img/coursebg.png);
	background-size: cover;
	background-position: center;
}
.projects-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, auto));
	gap: 1.5rem;
	align-items: center;
	text-align:  center;
	margin-top: 5rem;
}
.box img{
	height: auto;
	width: 110px;
	margin-bottom: 20px;
	align-items: center;
}
.box{
	padding: 30px 40px;
	border: 1px solid #e9ecef;
	border-radius: 20px;
	box-shadow: -11.729px -11.729px 32px rgb(255 255 255 / 15%);
	transition: all .40s ease;
}
.box:hover{
	transform: translateY(-15px);
}
.box h3{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.3;
	transition: all .40s ease;
}
.box h3:hover{
	color: var(--main-color);
}
.box p{
	font-size: var(--p-font);
	color: var(--second-color);
	font-weight: 500;
}
.main-btn{
	text-align: center;
	margin-top: 5rem;
}
.btn{
	display: inline-block;
	padding: 16px 30px;
	font-size: var(--p-font);
	font-weight: 700;
	background: var(--main-color);
	color: var(--bg-color);
	border-radius: 30px;
	transition: all .40s ease;
}
.btn:hover{
	transform: scale(0.9) translateY(-5px);
}

.wa a{
	display: inline-block;
	padding: 16px 30px;
	font-size: 1.1em;
	font-weight: 700;
	background: #000;
	color: #e9ecef;
	border-radius: 30px;
	transition: all .40s ease;
	
}
.wa a:hover{
	transform: scale(1.0) translateY(-5px);
	background: var(--main-color);
	
}


.services{
	background: url(../img/coursebg.png);
	background-size: cover;
	background-position: center;
}

.services-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, auto));
	gap: 2rem;
	align-items: center;
	margin-top: 4rem;
	cursor: pointer;
	border-radius: 15px;
}
.row{
	background: var(--bg-color);
	padding: 0px 0px 10px 0px;
	border-radius: 20px;
	box-shadow: 0px 5px 40px rgb(19 8 73 / 13%);
	transition: all .40s ease;
}
.row:hover{
	transform: translateY(-15px);
}
.row img{
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 15px 15px 0px 0px;
}
.services-text{
	padding: 35px 20px;
}
.services-text h5{
	color: var(--main-color);
	font-size: 18px;
	font-weight: 700;
}
.services-text h3{
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	margin: 15px 0 15px;
	transition: all .40s ease;
}
.services-text h3:hover{
	color: var(--main-color);
}
.services-text h6{
	color: #696969;
	font-size: var(--p-font);
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.rating{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.star i{
	color: var(--main-color);
	margin-right: 2px;
	font-size: 17px;
}
.review p{
	color: #696969;
	font-size: var(--p-font);
	font-weight: 400;
	letter-spacing: 1px;
}

.cta-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	gap: 2rem;
	align-items: center;
	text-align: center;
	margin-top: 5rem;
	padding: 20px;
}

.about{
	background: url(../img/aboutbg.png);
	background-size: cover;
	background-position: center;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	align-items: center;

}

.about-img img{
	width: 100%;
	height: auto;

}
.about-text h2{
	font-size: var(--h2-font);
	line-height: 1.2;
	margin-top: 20px;
	margin-bottom: 20px;
}
.about-text p{
	font-size: var(--p-font);
	color: var(--second-color);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 30px;
}
.about-text h4{
	font-size: 20px;
	margin-bottom: 10px;
}
.about-text h5{
	font-size: 20px;
	margin-bottom: 40px;
}

.contact{
	padding: 60px 13%;
	background: #000000;
}
.main-contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
}
.contact-content img{
	height: auto;
	width: 160px;
	max-width: 100%;
	margin-bottom: 30px;
}
.contact-content li{
	margin-bottom: 18px;
}
.contact-content li a{
	display: block;
	color: var(--bg-color);
	font-weight: 500;
	font-size: 15px;
	transition: all .40s ease;
}
.contact-content li a:hover{
	transform: translateX(10px);
	color: var(--main-color);
}
.contact-content li {
	display: block;
	color: var(--bg-color);
	font-weight: 500;
	font-size: 15px;
	transition: all .40s ease;
}

.last-text p{
	text-align: center;
	padding: 18px;
	color: var(--second-color);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}
.contact h3{
	color: var(--main-color);
}
.contact h4{
	color: var(--main-color);
}

.contact p{
	color: var(--bg-color);
}

@media (max-width: 1410px){
	header{
		padding: 10px 3%;
		transition: .2s;
	}
	header.sticky{
		padding: 12px 3%;
		transition: .2s;
	}
	section{
		padding: 70px 3%;
		transition: .2s;
	}
	.container{
		padding: 70px 3%;
		transition: .2s;
	}
	.contact{
		padding: 60px 3%;
		transition: .2s;
	}

}

@media (max-width: 1050px){
	:root{
		--big-font: 3.2rem;
	  	--h2-font: 2rem;
	  	--p-font: 1rem;
	  transition: .1s;
	}
	.home{
		height: 84vh;
	}
}

@media (max-width: 1025px){
	#menu-icon{
		display: block;
	}
	.navbar{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 300px;
		height: 110vh;
		background: var(--text-color);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 170px 30px;
		transition: all .40s ease;
	}
	.navbar a{
		display: block;
		margin: 1.3rem 0;
		color: var(--bg-color);
	}
	.navbar a:hover{
		color: var(--main-color);
		transform: translateY(-5px);
	}
	.navbar.open{
		right: 0;
	}
}

@media (max-width: 890px){
	.home{
		height: 150vh;
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.home-text{
		padding-top: 20px;
	}
	.home-img{
		text-align: center;
	}
	.home-img img{
		height: auto;
		width: 100%;
	}
	.about{
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
@media (max-width: 600px){
	.home{
		height: 120vh;
	}
}

	/* media modified start*/

	@keyframes fade {
		from{opacity: 0.3}
		to {opacity: 1}
	  }
	  
	  @media (max-width: 992px){
		.slides .navigation .prev, .slides .navigation .next{
		  font-size: 18px;
		  padding: 13px;
		}
	  }
	
	  @media (max-width: 768px){
		.slides .navigation .prev, .slides .navigation .next{
		  font-size: 15px;
		  padding: 10px;
		}
	  }
	  
	  @media (max-width: 576px){
		.slides .navigation .prev, .slides .navigation .next{
		  font-size: 12px;
		  padding: 7px;
		}
	  }
	  
	  @media (max-width: 360px){
		.slides .navigation .prev, .slides .navigation .next{
		  font-size: 11px;
		  padding: 6px;
		}
	  }

	/* media modified end*/

