@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
	width: 440px !important;
	max-width: 440px !important;
	height: 100%;
	background: #ffffff url(../images/logo-white-plain-symbol1.svg) no-repeat center / 180%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 75px 3rem 3.6rem 3.6rem;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999999999;
    max-height: 100vh !important;
    min-height: 100vh !important;
    white-space: normal !important;
}
.header-nav  p {
	float: none;
    font-size: 15px;
    font-weight: 400;
    color: #585b5c;
    letter-spacing: normal;
    line-height: 2.13;
    margin: 0 0 16px;
}
.header-nav  h3 {
	font-size: 15px;
    font-weight: 600;
    color: #18869a;
    letter-spacing: 1.95px;
    line-height: normal;
	text-transform: uppercase;
    margin: 0 0 0;
}
.header-nav a:hover, .header-nav a:focus, .header-nav a:active {
	color: white;
}
.header-nav__content {
	position: relative;
	left: 50px;
	opacity: 0;
	visibility: hidden;
}
.header-nav__list li {
	border-top: 1px solid rgba(74,77,86,0.5);
	line-height: 3.8rem;
}
.header-nav__list li:last-child {
	border-bottom: 1px solid rgba(74,77,86,0.5);
}
.header-nav__list a::before {
	content: counter(ctr, decimal-leading-zero) ".";
	counter-increment: ctr;
	font-size: 11px;
	color: rgba(24,134,154,0.5);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: absolute;
	left: 3px;
	top: 0;
}
.header-nav__list a:hover::before {
	color: rgba(38,40,41,0.5);
}
.header-nav__social {
	display: inline-block;
	margin: 0;
}
.header-nav__social li {
	width: auto;
	display: inline-block;
	margin: 0 16px 0 0;
}
.header-nav__social li:last-child {
	margin: 0;
}
.header-nav__close {
	height: 30px;
	width: 30px;
	display: block;
	background: #585b5c;
	border-radius: 3px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	position: fixed;
	top: 24px;
	right: 30px;
	z-index: 800;
}
.header-nav__close span::before, .header-nav__close span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: 9px;
	margin-top: -1px;
}
.header-nav__close span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header-nav__close span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	left: 0;
}
/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
	width: 35px;
	float: left;
	text-align: center;
	background: #ffffff;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 0 0 0;
	position: fixed;
	top: 24px;
	left: 16px;
	z-index: 99999999;
}
.header-menu-toggle::after {
	content: "Menu";
	float: right;
	font-size: 17px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.9;
	letter-spacing: normal;
	text-transform: uppercase;
	margin: 0 0 0 8px;
	position: absolute;
}

.header-menu-toggle.crossed::after {
    color: #fff !important;
}

.header-menu-toggle.opaque {
	top: 25px;
}
.header-menu-toggle.opaque::before {
	display: none;
}
.header-menu-icon {
	width: 5px;
	height: 5px;
	float: left;
	background: #188091;
	border-radius: 50%;
	margin: 15px 15px 15px;
	position: relative;
}
.header-menu-icon::before, .header-menu-icon::after {
	content: "";
	width: 5px;
	height: 5px;
	background: #188091;
	border-radius: 50%;
	position: absolute;
	top: 0;
}
.header-menu-icon::before {
	left: -8px;
}
.header-menu-icon::after {
	right: -8px;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.header-menu-toggle {
	width: 35px;
	background: #18869a;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-icon {
	background: #ffffff;
}
.header-menu-icon::before, .header-menu-icon::after {
	background: #ffffff;
}
.header-menu-toggle::after {
	font-size: 13px;
	color: #18869a;
	line-height: 2.5;
	margin: 0 0 0 8px;
}
.header-nav {
	width: 320px !important;
	max-width: 320px !important;
	padding: 75px 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 12px;
	letter-spacing: 0.95px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: auto;
	margin: 0 10px 0 0;
}
.header-nav__list li{
	line-height: 3.8rem;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.header-menu-toggle {
	width: 35px;
	background: #18869a;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-icon {
	background: #ffffff;
}
.header-menu-icon::before, .header-menu-icon::after {
	background: #ffffff;
}
.header-menu-toggle::after {
	font-size: 13px;
	color: #18869a;
	line-height: 2.5;
	margin: 0 0 0 8px;
}
.header-nav {
	width: 320px !important;
	max-width: 320px !important;
	padding: 75px 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 12px;
	letter-spacing: 0.95px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: auto;
	margin: 0 10px 0 0;
}
.header-nav__list li{
	line-height: 3.8rem;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.header-menu-toggle {
	width: 35px;
	background: #18869a;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
}
.header-menu-icon {
	background: #ffffff;
}
.header-menu-icon::before, .header-menu-icon::after {
	background: #ffffff;
}
.header-menu-toggle::after {
	font-size: 13px;
	color: #18869a;
	line-height: 2.5;
	margin: 0 0 0 8px;
}
.header-nav {
	width: 320px !important;
	max-width: 320px !important;
	padding: 75px 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 12px;
	letter-spacing: 0.95px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: auto;
	margin: 0 10px 0 0;
}
.header-nav__list li{
	line-height: 3.8rem;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.header-menu-toggle {
	top: 16px;
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 13px;
	line-height: 2.6;
	display: none;
}
.header-nav {
	width: 340px !important;
	max-width: 340px !important;
	padding: 70px 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 18px;
}
.header-menu-toggle.opaque {
	top: 15px;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.header-menu-toggle {
	top: 19px;
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 14px;
	line-height: 2.5;
	display: none;
}
.header-nav {
	width: 360px !important;
	max-width: 360px !important;
	padding: 75px 2.50rem 3.6rem;
}
.header-nav p {
	font-size: 14px;
}
.header-nav h3 {
	font-size: 19px;
}
.header-menu-toggle.opaque {
	top: 19px;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.header-menu-toggle {
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 15px;
	line-height: 2.4;
	display: none;
}
.header-menu-toggle.opaque {
	top: 20px;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.header-menu-toggle {
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 16px;
	line-height: 2.1;
	display: none;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {
.header-menu-toggle::after {
	display: none;
}
}

.header-nav { overflow:hidden; }

@media (max-width: 768px) {

}