/*navigation*/
.header__nav {
	width: 100%;
	list-style: none;
	background-color: transparent;
	animation:  scroll 1s ease-in-out 0.2s;
}
.header__nav--1 {
	float: left;
	display: inline-block;
}
.header__nav--2 {
	float: right;
}
.header__nav a {
	color: #8395a7;
	transition: color ease 0.3s;
	margin-right: 2rem;
	font-size: 1.2rem;
}
.header__nav a:hover {
	color: #ff6b6b;
}
.header__nav--2 a:last-child{
	background-color: #c8d6e5;
	color: #222f3e;
	padding: 1rem 2rem;
	border-radius: 50px;
	margin-right: 0;
	transition: background-color ease 0.3s;
}
.header__nav--2 a:last-child:hover{
	background-color: #ff6b6b;
}

/*dropdown*/
.nav__dd--1 {
	position: relative;
	display: inline-block;
}
.nav__dd--1:hover  .nav__dd-contents--1 {
	display: block;
	animation: appear 0.25s ease-in-out 0.001s;
}
.nav__dd-contents--1 {
	display: none;
	position: absolute;
	z-index: 1;
}

/*dropdown 2*/
.nav__dd--2 {
	position: relative;
	display: inline-block;
}
.nav__dd--2:hover  .nav__dd-contents--2 {
	display: block;
	animation: appear 0.25s ease-in-out 0.001s;
}
.nav__dd-contents--2 {
	display: none;
	position: absolute;
	z-index: 1;
}


/*header*/
.header {
	height: 80vh;
	background-image: linear-gradient(#222f3edd,#222f3edd), url(../img/backgrounds/bg-14.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	animation:  background-zoom 1s ease-in-out 0.2s;
	padding: 5%;
	clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
}
.header__main {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.header__main h1{
	color: #c8d6e5;
	font-size: 6rem;
	margin: auto;
	text-align: center;
}
.header__main p{
	color: #8395a7;
}
.header__main img {
	width: 4.5rem;
	background-color: #c8d6e5;
	border-radius: 50%;
}
.header__main strong{
	font-size: 3.5rem;
	color: #c8d6e5
}

/*everything*/
.everything {
	max-width: 80vw;
	height: auto;
	margin: 0 auto;
	position: relative;
	transform: translateY(-10rem);
	animation:  scroll-up 1s ease-in-out 0.2s;
	background: #c8d6e5;
	padding: 0 5rem;
	border-radius: 2rem;
	border: 2px solid #8395a7;
}

/*footer*/
.footer p{
	color: #576574;
	max-width: 80vw;
	text-align: center;
	padding: 5rem;
}