@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: #050a30;
}
body{
	color: #ededed;
	font-family: "Montserrat", sans-serif;
}
li, a, button{
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #ecf0f1;
	text-decoration: none;
}

header{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 10%;
}

.logo{
	cursor: pointer;
	margin-right: auto;
}

.nav__links{
	list-style: none;
}

.nav__links li{
	display: inline-block;
	padding: 0px 20px;
}

.nav__links li a{
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover{
	color: #0066a9;
}

button{
	padding: 9px 25px;
	background-color: rgba(0,136,169,1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	margin-left: 20px;
}

button:hover{
	background-color: rgba(0,136,169,0.8);
}

.home{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.home-content{
	max-width: 600px;
}

.home-content h1{
	font-size: 56px;
	font-weight: 700;
}

.home-content h3{
	font-size: 32px;
	font-weight: 700;
	color: #00abf0;
}

.home-content p{
	font-size: 16px;
}

.home-content .btn-box{
	display: flex;
	padding-top: 30px;
}
.btn-box a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.aboutHome{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.about-content{
	max-width: 600px;
}

.about-content h1{
	font-size: 56px;
	font-weight: 700;
	color: #00abf0;
}

.about-content p{
	font-size: 16px;
}

.home2{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.home-content2{
	max-width: 600px;
}

.home-content2 h1{
	font-size: 56px;
	font-weight: 700;
	color: #00abf0;
}

.home-content2 p{
	font-size: 16px;
}

.home-content2 .btn-box2{
	display: flex;
	padding-top: 30px;
}
.btn-box2 a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

#icon{
	height: 100px;
	width: 100px;
}