/*========================*/

/*     BASIC SETUP        */

/*========================*/

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/*================Css=============*/
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body{
	font-family: 'Titillium Web', sans-serif;
	text-rendering: optimizeLegibility;
	line-height: 1.3;
}

ul li{
	list-style-type: none;
}

h1{
	font-size: 3.4rem;
	color: #fff;
}
/*========================*/

/*    REUSABLE COMPONENTS */

/*========================*/

.row{
	max-width: 114rem;
	margin: 0 auto;
}
section{
	padding: 8rem 0;
	/* overflow: hidden; */
}
h2{
	font-size: 4rem;
	text-transform: uppercase;
	letter-spacing: .3rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 2rem;
	color: #fff;
	text-align: center;
}
h2::after{
	content: "";
	display: block;
	height: .4rem;
	background: #fff;
	width: 8.5rem;
	margin: auto;
	margin-top: 2rem;
}
h3{
	font-size: 2.4rem;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
}
h4{
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 2.5rem;
}
 
/* BUTTON */
.btn:link,
.btn:visited,
.btn{
	background: #333;
	border-bottom: .3rem solid #000;
	color: #fff;
	padding: 1.5rem 6rem;
	border-radius: .5rem;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	margin-top: 4.5rem;
	font-size: 1.6rem;
}
.ld{
	font-size: 1.8rem;
	width: 60%;
	margin-left: 20%;
	line-height: 3rem;
}
.box{
	padding: 1%;
}
.box p{
	font-size: 1.6rem;
	font-weight: 300;
	margin-top: 2rem;
	color: #fff;
}

/*========================*/

/*  HEADER SECTION */

/*========================*/
header{
	background: linear-gradient(rgba(135, 80, 156, 0.9),rgba(135, 80, 156, 0.9)), url(../img/hero-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	height: 85vh;
	position: relative;
}

.logo{
	height: 3.5rem;
	width: auto;
	margin-top: 3.5rem;
	float: left; 
}

/*main-nav*/
.main-nav {
	float: right;
	margin-top: 4rem;
}
.main-nav li{
	display: inline-block;
	margin-left: 1rem;
}
.main-nav li:first-child {
	margin-left: 0;
}
.main-nav li a:link,
.main-nav li a:visited {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	background: rgba(100, 58, 121, 0);
	padding: .6rem 1.6rem;
	border-radius: .3rem;
	display: inline-block;
	font-size: 1.6rem;
	transition: .3s;
}
.main-nav li:hover a:link,
.main-nav li:hover a:visited {
	background: rgba(100, 58, 121, 1);
}
.active{
	background: rgba(100, 58, 121, 1);
	border-radius: .3rem;
}
/* STICKY  */
.sticky{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(135, 80, 156, 0.9);
	padding: 1rem 0;
	box-shadow: 0 .2rem .5rem rgba(255, 255, 255,0.9);
	z-index: 9999;
}
.sticky .logo{
	margin-top: 0;
}
.sticky .main-nav{
	margin-top: .2rem;
}

.hero-text-box {
 width: 114rem;
 position:absolute;
 top:50%;
 left:50%;
 transform:translate(-50%,-50%);
 text-align: center;
}

.btn-hero:link,
.btn-hero:visited{
	background: #eb7d4b;
	border-color: #c86a40;
}

/* Mobile Menu  */
.mobile-menu span{
	color: #fff;
	font-size: 4rem;
	float: right;
	margin-top: 2rem;
	display: none;
}
.mobile-menu span:hover{
	cursor: pointer;
}
.over{
	width: 0;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1;
	overflow-x: hidden;
	transition: .5s;
}
.overlay{
	position: relative;
	top: 20%;
	width: 100%;
	text-align: center;
}
.overlay a{
	text-decoration: none;
	display: block;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: .3rem;
	color: #999;
	padding: 1rem 0;
}
.overlay a:hover{
	color: #fff;
}
.closebtn{
	position: absolute;
	top: 2rem;
	right: 4.5rem;
	font-size: 6rem;
	text-decoration: none;
	color: #999;
}
.closebtn:hover{
	color: #fff;
}
.sticky .mobile-menu span{
	margin-top: 0;
}


.service-section{
	color: #fff;
	text-align: center;
	background:linear-gradient(rgba(23, 194, 164, 0.9),rgba(23, 194, 164, 0.9)), url(../img/services-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
.service-section h2::after{
	background: #14a58c;
}
.service-icon{
	height: 12rem;
	margin-top: 4.5rem;
	margin-bottom: 3.5rem;
}

.team-section{
	text-align: center;
	background: linear-gradient(rgba(231, 241, 248, 0.9),rgba(231, 241, 248, 0.9)), url(../img/team-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}
.team-section h2{
	color: #3c4761;
}
.team-section h2::after{
	background: #c8d9e5;
}
.team-mem{
	margin-top: 4.5rem;
	margin-bottom: 3.5rem;
	height: 20rem;
	width: 20rem;
	border-radius: 50%;
}
.team-section h3{
	color: #27283d;
}
.role{
	color: #30bae7;
	font-size: 1.6rem;
	margin-top: .5rem;
	display: inline-block;
}
.team-section .box p{
	color: #3c4761;
}
.link{
	margin-top: 4.5rem;
}
.link ul li{
	display: inline-block;
	margin: 0 .5rem;
}
.link ul li a{
	color: #fff;
}
.link ul li a i::before{
	display: inline-block;
	background: #bdd1df;
	height: 2rem;
	width: 2rem;
	border-radius: 50%;
	font-size: 2rem;
	padding: 1rem;
	transition: .5s;
}
.link ul li a:hover i::before{
	background: #393939;
	transform: rotate(360deg);
}

.skill-section{
	text-align: center;
	background: linear-gradient(rgba(255, 255, 255,0.9),rgba(255, 255, 255,0.9)), url(../img/skill-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.skill-section h2,
.skill-section h3{
	color: #3c4761;
}
.skill-section h2::after{
	background: #dfe8ed;
}
.skill-section .box{
	margin-top: 4.5rem;
}
svg.radial-progress circle{
	stroke-width: 5;
}
svg.radial-progress text{
	fill: #3c4761;
	font-size: 1.5rem;
}
svg.web-design circle{
	stroke: #30bae7;
}
svg.html-css circle{
	stroke: #d74680;
}
svg.graphic-design circle{
	stroke: #15c7a8;
}
svg.ui-ux circle{
	stroke: #eb7d4b;
}

.portfolio-section{
	background: linear-gradient(rgba(255, 221, 153,0.9),rgba(225, 221, 153,0.9)),url(../img/portfolio-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	text-align: center;
}
.portfolio-section h2{
	color: #3c4761;
}
.portfolio-section h2::after{
	background: #e5c37f;
}
.filter{
	margin: 4.5rem 0;
}
.filter button{
	background: #ebc985;
	font-size: 1.8rem;
	padding: 1rem 2rem;
	border: 0;
	border-radius: .5rem;
	text-transform: uppercase;
	color: #3c4761;
	margin: 0 .5rem;
	transition: .5s;
}
.filter button:hover{
	cursor: pointer;
	box-shadow: inset 0 .3rem .5rem rgba(61, 71, 97, 0.5);
}
.port-img{
	width: 100%;
	height: auto;
}
.portfolio-section .col:nth-child(3){
	margin-left: 0;
}
.portfolio-section .btn-project{
	background: #17c2a4;
	border-color: #14a58c;
}
.portfolio-section .mixitup-control-active{
	background: #fff;
}

.testionial{
	background: linear-gradient(rgba(215, 70, 128,0.9),rgba(215, 70, 128,0.9)),url(../img/testimonial-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.testionial .ld{
	text-align: center;
	color: #fff;
}
.testionial .col:nth-child(3){
	margin-left: 0;
}
.testionial .col:nth-child(1),
.testionial .col:nth-child(2){
	margin-top: 4rem;
}
.testionial .col:nth-child(3),
.testionial .col:nth-child(4){
	margin-top: 8rem;
}
.client-phot{
	width: 10rem;
	float: left;
}
.client-phot img{
	height: 8rem;
	border-radius: 50%;
	margin-bottom: 3rem;
}
.client-review{
	width: 35rem;
	float: left;
}
.client-review p{
	font-size: 2.1rem;
	font-style: italic;
	color: #fff;
	margin-bottom: 1rem;
}
.client-review .role{
	color: #ffdd99;
}

.contact{
	text-align: center;
	background: linear-gradient(rgba(63, 84, 153,0.9),rgba(63, 84, 153,0.9)),url(../img/contact-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}
.contact h2::after{
	background: #273a71;
}
.contact .ld{
	color: #fff;
}
.contact form{
	margin-top: 5rem;
	width: 70%;
	margin-left: 15%;
}
.contact input[type="text"],
.contact input[type="email"],
.contact textarea{
	background: #273a71;
	border: .1rem solid #273a71;
	width: 100%;
	padding: 1.5rem;
	border-radius: .5rem;
	font-size: 1.8rem;
	margin: .5rem 0;
	color: #fff;
}
.contact textarea{
	height: 20rem;
}
.contact form ::placeholder{
	color: #fff;
	opacity: 1;
}
.btn-submit{
	border: 0;
	border-bottom: .3rem solid #299ec5;
	background: #30bae7;
	transition: .3s;
}
.btn-submit:hover{
	cursor: pointer;
	background: #299ec5;
	border-bottom: #30bae7;
}

.footer-section{
	background: #344b8e;
	padding: 3rem 0;
	text-align: center;
	border-top: .1rem solid rgba(255, 255, 255,0.4);
}
.footer-section li{
	display: inline-block;
	margin: 0 2rem;
}
.footer-section li a{
	color: #fff;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 2.4rem;
}
.footer-section li a:hover{
	color: #30bae7;
}