

header .menu {
	position: relative;
	right: 8%;
	top: 85px;
	text-align: right;
}

header .menu ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
}

header .menu ul li {
	display: inline-block;
	padding: 0 .9rem;
}

header .menu ul li:last-child {
	padding-right: 0;
}

header .menu ul li a,
header .menu ul li a:visited {
	color: #FFFFFF;
}

header .menu ul li a:hover,
header .menu ul li a:focus {
	color: #057f78;
}

/* ------------------------------------------------------------------- 
 * responsive menu
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1024px) {
	header .menu {
		right: 18px;
		top: 54px;
	}
}
@media only screen and (max-width:768px) {
	header .menu {
		right: 45px;
		top: 48px;
	}
	header .menu ul {
		font-size: 2.3rem;
	}
}
@media only screen and (max-width:700px) {
	header .menu {
		right: 38px;
		top: 42px;
	}
	header .menu ul {
		font-size: 2.1rem;
	}
}
@media only screen and (max-width:650px) {
	header .menu {
		right: 34px;
	}
	header .menu ul {
		font-size: 1.8rem;
	}
	header .menu ul li {
		padding: 0 .6rem;
	}
}

@media only screen and (max-width:550px) {
	header .menu-max ul li {
	display: none;
}
}

@media only screen and (max-width:550px) {
	header .menu .toggle ul li {
	display: inline-block;
}
}

@media only screen and (min-width: 550px) and (max-width: 50000px) {
	header .menu-toggle ul li {
	display: none;
}
}

@media only screen and (max-width:550px) {
	header .menu-toggle ul li  {
		font-size: 2.4rem;
	}
	header .menu-toggle ul li {
	display: flex;
	flex-direction: column;
	padding: 0.6rem;
	}
}

/* ===================================================================
 * 12. footer - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
footer {
	text-align: center;
	padding-bottom: 12rem;
	position: relative;
	color: lightgray;
}

footer .footer-bottom {
	position: relative;
}

footer .footer-bottom a,
footer .footer-bottom a:visited {
	color: Lightblue;
}

footer .footer-bottom a:hover,
footer .footer-bottom a:focus {
	color: lightyellow;
}

footer .footer-bottom .footer-logo {
	display: inline-block;
	width: 200px;
}

footer .copyright {
	display: block;
	position: relative;
	padding-top: 3.6rem;
	margin-top: 1.5rem;
}

footer .copyright::before {
	content: "";
	width: 120px;
	height: 3px;
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -60px;
	background: rgba(17, 17, 17, 0.3);
}

footer .copyright span {
	display: inline-block;
}

footer .copyright span::after {
	content: "";
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	color: rgba(17, 17, 17, 0.5);
}

footer .copyright span:last-child::after {
	display: none;
}

footer .back-to-top {
	font-family: sans-serif, verdana;
	font-size: 1.3rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	color: #FFFFFF;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

footer .back-to-top a {
	display: block;
	background: #034e4a;
	padding: 1.2rem 3rem 1.5rem;
	color: #FFFFFF;
}

footer .back-to-top a:hover,
footer .back-to-top a:focus {
	background: #151515;
}

footer .back-to-top a i {
	margin-left: 15px;
}

.link {
	border: 1px dashed lightblue;
	padding: 2px;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * footer  
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	footer .footer-social-list li a {
		padding: 4.8rem 2rem 4.8rem;
	}
	footer .footer-social-list li i {
		font-size: 3.3rem;
	}
	footer .footer-social-list li span {
		font-size: 1.4rem;
	}
	footer .footer-bottom .footer-logo {
		width: 140px;
	}
}
@media only screen and (max-width:600px) {
	footer {
		padding-bottom: 10.2rem;
	}
	footer .footer-social-list li a {
		padding: 4.8rem 1.3rem 4.8rem;
	}
	footer .footer-social-list li i {
		font-size: 3rem;
	}
	footer .footer-social-list li span {
		font-size: 1.3rem;
	}
	footer .footer-bottom .footer-logo {
		width: 130px;
	}
	footer .copyright span {
		display: block;
	}
	footer .copyright span::after {
		display: none;
	}
}
@media only screen and (max-width:500px) {
	footer .footer-social-list li a {
		padding: 4.8rem 1.2rem 4.8rem;
	}
	footer .footer-social-list li span {
		display: none;
	}
}
@media only screen and (max-width:400px) {
	footer .footer-social-list li a {
		padding: 4.8rem 1.1rem 4.8rem;
	}
	footer .footer-bottom .footer-logo {
		width: 120px;
	}
	footer .back-to-top a {
		padding: 1.2rem 2.3rem 1.5rem;
	}
}