*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

img, video {
    width: 100%;
   }

.flex{
	display: flex;
}
.flex-stretch {
	flex: 1 1 auto;
}

:root{
  --color-main-light: #F9EAB8;
  --color-main-medium: #9DD3BE;
  --color-neutral-dark: #25282D;
}

nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 20px;
	transition: all 0.6s ease;
	z-index: 999;
}

.logo{
	position: relative;
	text-decoration: none;
    width: 140px;
	height: 44px;
    margin: 0 100px;
	background-image: url(../img/logo.png);
	background-size: cover;
	transition: 0.2s;
}

nav ul{
	position: relative;
	width: 10em;
	padding: 0;
	display: flex;
    justify-content: space-around;
	align-items: center;
	font-size: 16px;

}

nav ul li{
	position: relative;
	text-align: center;
	list-style: none;
}


nav ul li a{
	position: relative;
	text-decoration: none;
	color: rgba(0, 0, 0, 0.8);
	transition: 0.6s;
	font-weight: 600;
}

nav ul li a:hover{
	color: rgba(0, 0, 0, 1);
}

nav ul li a::after{
	content: "";
	position: absolute;
	bottom: -8px;
	left: -0.5em;
	width: 0;
	height: 3px;

	background-color: var(--color-main-medium);
	transition: 0.3s;
}

nav ul li a:hover::after{
	width: 3em;
}

.current::after{
	width: 3em;
	background-color: black;
}

nav ul li a:active::after{
	width: 3em;
}


nav.sticky{
	padding: 16px 0px;
	background-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav.sticky .logo{
	display: flex;
	margin-top: 0px;
    width: 24px;
	height: 24px;
    background-image: url(../img/favi_icon.png);
}

@media (max-width: 500px){
	.logo{
		transform: scale(0.8);
		margin: 0 20px;
	}

	nav ul {
		font-size: 14px;
		width: 6em;
	}

}



footer{
    background-color: black;
    color: white;
}
.copy{
	background-color: black;
	color: white;
	font-size: 12px;
	text-align: center;
	padding: 1em 0;
}
.mission{
	width: 100%;
	text-align: center;
	padding: 100px 40px;
}

.contact{
	width: 100%;
	position: relative;
	isolation: isolate;
}

.contact::after{
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/map.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.35;
	z-index: -1;
}

.contact_logo{
	padding: 200px;
}

.contact_list{
	display:block;
	padding-top:100px;
	margin-bottom: 100px;
	padding-left: 40px;
}

.contact_title{
	display: inline-block;
	background-color: white;
	color: black;
	font-size: 20px;
	font-weight: bold;
	padding: 0.6em 1em;
	z-index: 2;
}

.location{
	padding-top: 50px;
	padding-bottom: 16px;
	margin-right: 200px;
	border-bottom: 1px solid white;
}

.phone{
	padding-top: 80px;
	padding-bottom: 80px;

}

.contact_strong{
	font-weight: bold;
	padding-right: 1em;
}

@media (max-width: 1000px){
	.contact_logo{
		padding:80px 200px;
	}
	.location{
		margin-right: 40px;
	}
}


@media (max-width: 500px){
	.contact_logo{
		padding: 80px;
	}

	.contact_list{
		padding-top: 0;
	}

	.location{
		padding-top: 60px;
	}
}
