*, *:before, *:after{
	box-sizing: border-box;	
}
html{
	font-size: 10px;
}
body{
	margin: 0;
	font-family: 'Maven Pro', sans-serif;
}
.main{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100vh;
	background-color: #3584C3;
	max-height: 650px;
	position: relative;
	font-size: 1.4rem;
	color: #fff;
	opacity: .9;
}
.main-overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	z-index: 0;
}
.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 15vh;
	width: 90%;
	position: relative;	
	z-index: 2;
}
.logo a{
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px 25px;
	text-align: center;
	font-weight: bold;
	box-shadow: 2px 2px 18.69px 2.31px rgba(204, 204, 223, 0.5);

}
.menu{
	width: 60%;
}
.menu ul{
	display: flex;
	justify-content: space-around;
	list-style: none;
}
.menu-link{
	text-decoration: none;
	color: #fff;
	font-size: 1.6rem;
	
}

.main-text h1{
	font-size: 8rem;
	font-style: sans-serif;
}

.main-text span{
	content: ' ';
	width: 70%;
	height: 1px;
	background-color: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-left: 15%;

}
.main-text p{
	font-size: 1.8rem;
	text-align: center;
}
.m-menu-link{
	display: none;
	color: #fff;
	font-size: 5rem;
}
.m-menu a{
	font-size: 3.5rem;
}
.m-menu{
	padding: 0;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	font-size: 4rem;
	line-height: 3;
	background-color: #3584C3;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	transition: 0.2s;
}
.m-menu__active{
	transform: translateX(0%);
}
.close-menu{
	position: fixed;
	right: 5rem;
	font-size: 5rem;
	top: 0;
	font-weight: 900;
	color: #fff;
}
.close-menu:hover{
	cursor: pointer;
}


.menu-link:focus{
	opacity: .8;
}

.menu-link:hover{

	border-bottom: 3px solid rgb(255, 255, 255, .9 );
	
}
.sign-in-btn{
	margin-left: 50px;
	border: 1px solid #fff;
	padding: 10px 25px;
	color: #fff;
	text-decoration: none;
	transition: 0.8s;

}
.sign-in-btn:hover{
	cursor: pointer;
	color: #6e45e2;
	background-color: #fff;

}
.header-arrow{
	position: relative;
	z-index: 2;
	height: 15vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.arrow-down{
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 55px;
	box-shadow: 0px 0px 18.69px 2.31px rgba(204, 204, 223, 0.5);
	animation-timing-function:ease;
	-webkit-animation-timing-function:ease;
	
}
.about-me{
	position: relative;
	background-color: #f9fafc;
	padding: 10rem;
	height: 100%;
	min-height: 600px;
	

}
.am-header{
	text-align: center;
	margin-bottom: 5rem;

}
.am-header span{
	text-transform: uppercase;
	font-size: 3rem;
	color: #9fa4af;
}
.am-header span:before{
	content: ' ';
	width: 25px;
	height: 1px;
	background-color: #ccc;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;

}
.am-header span:after{
	content: ' ';
	width: 25px;
	height: 1px;
	background-color: #ccc;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
.am-table{
	position: relative;
	display: inline-block;
	border: 1px solid #ccc;
}
.am-image{
	width: 200px;
	height: 200px;
	background: url(../img/bg.jpg) no-repeat center;
	background-size: cover;
	border-radius:110px;
	
}
.am-tags{
	display: flex;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;

}
.am-tag{
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	width: 42%;
	padding: 10px;

}
.am-tag h2{
	font-size: 2.4rem;
	color: #3584C3;
}
.am-tag img{
	width: 200px;	
	height: 200px;
	border-radius: 50%;
	background-size: cover;
}
.am-tag span{
	color: #3584C3;
}
.am-tag h3{
	font-size: 1.3rem;
	color: #ccc;
}
.am-tag h3:before{
	content: ' ';
	width: 18px;
	height: 1px;
	background-color: #ccc;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.am-tag p{
	font-size: 1.6rem;
	text-align: center;
	color: #9fa4af;
}
.call-to-action{
	background-color: #293849;
	background-size: cover;
	text-align: center;
	position: relative;
	padding: 10rem;
	
}
.call-to-action span{
	font-weight: 500;
	font-size: 5rem;
	text-transform: uppercase;
	color: #fff;
}
.call-to-action p, a{
	font-size: 1.6rem;
	color: #fff;
	text-decoration: none;
}
.cta-btn{
	cursor: pointer;
	display: inline-block;
	border:none;
	border:1px solid #fff;
	background-color: #293849;
	color:#fff;
	font-size: 1.3rem;
	text-transform: uppercase;
	width: 19rem;
	height: 5rem;
	margin: 5rem;

}
.cta-btn:hover{
	cursor: pointer;
	display: inline-block;
	border:none;
	background-color: #fff ;
	color:#293849;
	font-size: 1.3rem;
	text-transform: uppercase;
	width: 19rem;
	height: 5rem;
	margin: 5rem;
	transition: 0.5s;
}

.cta-wrap{
	z-index: 2;
	position: relative;
}
.footer-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #6a6a77;
}
.footer{
	height: 20vh;
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;


}
.f-logo a{
	text-decoration:none;
	padding: 10px 20px;
	text-align: center;
	color: #fff;
	font-size: 1.5rem;
	border: 1px solid #fff;
	box-shadow: 2px 2px 18.69px 2.31px rgba(204, 204, 223, 0.5);

}
.footer-menu{
	width: 50%;
}
.footer-menu ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	list-style: none;
}
.footer-menu-link{
	text-decoration: none;
	font-size: 1.4rem;
	color: #fff;
}
.footer-sign-in:hover{
	cursor: pointer;
	background-color: #fff;
	color: #6a6a77;
}

.footer-sign-in{
	margin-left: 6rem;
	border: 1px solid #fff; 
	color: #fff;
	padding: 10px 20px;
	border-radius: 100px;
	text-transform: uppercase;
	transition: 0.2s;
}
.line{
	display: block;
	width: 90%;
	height: 1px;
	margin: auto;
}
.legal{
	display: flex;
	justify-content: space-between;
	padding-left: 5%;
	padding-right: 5%;
	align-items: center;
	background-color: #6a6a77;

}
.social-links a{
	color: #fff;
	font-size: 2rem;
	display: inline-block;
	margin-right: 1rem;
}
.copy{
	font-size: 1.4rem;
	color: #ccc;
}
.arrow_d{
	animation-name:bounceInDown;
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-moz-animation-direction: alternate;
	-ms-animation-direction: alternate;
	-o-animation-direction: alternate;
	animation-direction: alternate;
	
}
