@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&family=Spline+Sans:wght@400;700&display=swap');
/*font Variables*/
:root{
	--c-brand: #ecaf50;
	--c-brand-main: #05646b;
	--c-dark:#303050;
	--c-body: #636383;
	--f-main: "Bai Jamjuree", sans-serif;
	--transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
	--shadow: 0px 15px 40px rgba(0,0,0, 0.1);
}
/*Reset & Helpers*/
body{
	font-family:  var(--f-main);
	color: var(--c-body);
	line-height: 1.7;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	color: var(--c-dark);
}
h5{
	color: var(--c-brand-main);
}
h6{
	color: var(--c-brand);
}
a
{
	text-decoration: none;
	color: var(--c-dark);
	transition: var(--transition);
}
a:hover{
	color: var(--c-brand);
}
img{
	width:100%;
}
.dark{
	text-shadow: 2px 1px #000;
	color: white;
}
.success-msg{
    color: 000;
    text-align:center;
    margin: auto;
}
.fail-msg{
    color: 000;
    text-align:center;
    margin: auto;
}
section{
	position: relative;
	padding-bottom: 50px;
	padding-top: 50px;
}
.space{
	padding-top: 120px;
	padding-bottom: 120px;
}
.overlay{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(7,25,30,0.7),rgba(17,80,50,0.7));
    z-index: -1;
}
.hero-section{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.icon-box{
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #05646b;
	color: white;
	font-size: 32px;
	border-radius: 100px;
}
.bg-cover{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment:fixed;

}
.section-padding{
	padding-bottom: 120px;
	padding-top: 120px;
}
.text-brand{
	color: var(--c-brand);
}
.section-title{
	max-width: 560px;
	margin: auto;
}
.line{
	height: 2px;
	width: 60px;
	background-color:  var(--c-brand);
	display: inline-flex;
}
.section-connector{
	position: relative;
}
.section-connector::after{
	content: '';
	width: 2px;
	height: 100px;
	background-color:  var(--c-brand);
	top: -50px;
	left: 50%;
	position: absolute;
}
.featurey i{
	background: -webkit-linear-gradient(#00e0fe, #1107fe);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 55px;
}
/*Navbar*/
.navbar{
	background-color: white;
	transition:  all 0.4s ease;
}
.navbar.scrolled{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #fff;
	box-shadow: var(--shadow);
}
.nav-brand img{
	width: 80px;
}
@media (min-width:992px){
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 16px;
  padding-left: 16px;
}
}
@media (max-width:992px){
	#hero{
		padding-top: 100px;
	}

}
	.navbar	.navbar-nav .nav-link{
		font-weight: 500;
		color: var(--c-dark);
	}
	.navbar	.navbar-nav .nav-link:hover{
		color: var(--c-brand);
	}
	.navbar-brand{
		font-size: 24px;
		font-weight: 700;
		color: var(--c-dark);
}
.social-icon{
	width: 36px;
	height: 36px;
	background-color: var(--c-brand);
	color: #fff;
	border: 2px solid var(--c-brand);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 6px;
}
.social-icon:hover{
	background-color: transparent;
}
/*BTN*/
.btn{
	padding: 10px 24px;
	border-radius: 0;
	border-width: 2px;
	font-weight: 500;
}
.btn-brand,
.btn-brand:focus{
	background-color: var(--c-brand);
	color: #fff;
	border-color: var(--c-brand);
}
.btn-brand:hover{
	background-color: transparent;
	color: var(--c-brand);
	border-color: var(--c-brand);
}

/*Service*/
.service-icon{
	width: 60px;
	height: 60px;
	background-color: var(--c-brand);
	color: #fff;
	font-size: 28px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.custom-link{
	display: inline-flex;
	align-items: center;
}
.custom-link span{
	font-weight: 500;
}
.custom-link i{
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--c-brand);
	border-radius: 100px;
	color: #fff;
	margin-left: 6px;
	transition: all 0.4s ease;
}
.custom-link:hover i{
	transform: translateX(6px);
}
/*Project*/
.project{
	overflow: hidden;
	position: relative;
}
.project .content{
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--c-brand);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.project img,
.project .content{
	transition: var(--transition);
	
}
.project:hover .content{
	top: 0;
}
.project:hover img{
	transform: translateY(-100%);
}
/*Clients*/
.client img{
	opacity: 0.7;
	height: 30%;
}
/*Resume*/
.eduexp{
	position: relative;
}
.eduexp::before{
	content: '';
	height: 100%;
	width: 2px;
	background-color: var(--c-brand);
	position: absolute;
	left: 0;
	top: 0
}
.eduexp::after{
	content: '';
	height: 14px;
	width: 14px;
	background-color: var(--c-brand);
	position: absolute;
	left: -7px;
	top: 0
}
/*Feauters*/
.fear{
	margin-top: 80px;
	
}
.feature-list{
	padding: 0;
	list-style: none;
	
}
.icon-box.sm{
	width: 32px;
	height: 32px;
	font-size: 24px;
	border-radius: 100px;
}
/*Contact*/
#contact .form-control{
	border-radius: 0;
}
#contact .form-control:focus{
	box-shadow: none;
	border-color: var(--c-brand);
}
#contact input.form-control{
	height: 44px;
	border-radius: 0;
}

/*footer*/
footer{
	background-color: var(--c-dark);
	padding-top: 20px;
}
footer h4{
	color: #fff;
}
footer p,
footer li,
footer li a{
	color: rgba(255,255,255,0.70);

} 
.footer-top{
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.footer-bottom{
	padding-bottom: 40px;
	padding-top: 40px;
}
section {
	padding-top: 50px;
}

#home {
	background:linear-gradient(#000, rgba(0,0,0,0.2)),url("../images/facial.jpg");
	background-position: center;
	background-size: cover;
}

.btn-main {
	background-color: #05646b;
	padding: 5px 10px;
	color: #fff;
}
