@charset "utf-8";
/* CSS Document */

.burger {
  width: 74px;
  float: left;
  margin: 0 0 0;
}
.burger__btn {
  width: 74px;
  float: left;
  text-align: center;
  cursor: pointer;
  margin: 0 0 0;
  position: absolute;
  top: 38px;
  left: 38px;
  z-index: 9999999999;
}
.burger-toggle {
  width: 24px;
  float: left;
  transform: rotateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  margin: 0 0 0 0;
}
.burger__text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
  margin: 6px 0 0 10px;
  float:left;
}
.burger__patty {
  width: 3px;
  height: 26px;
  float: left;
  margin: 0 6px 0 0;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty:last-child {
  margin-right: 0;
}
.burger--close .burger__patty { background:#cf645e;}
.burger--close .burger__text { color:#cf645e;}

.burger--close .burger-toggle .burger__patty:nth-child(1) {
  transform: rotate(45deg) translate(6px, -6px);
}
.burger--close .burger-toggle .burger__patty:nth-child(2) {
  opacity: 0;
}
.burger--close .burger-toggle .burger__patty:nth-child(3) {
  transform: rotate(-45deg) translate(-7px, -7px);
}
.menu {
  width: 100%;
  visibility: hidden;
  position: fixed;
  top: 0;
  z-index: 99999999;
}
.menu .logo {
  width: 27%;
}
.menu .logo img {
  width: 100%;
  display: block;
}
.menu--active {
  visibility: visible;
}
.menu__brand, .menu__list {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.menu__list {
  margin: 0;
  padding: 0;
  background: #1663AA;
  list-style-type: none;
  /*transform: translate3d(0, -100%, 0);*/
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__list--active {
  /*transform: translate3d(0, 0, 0);*/
}
.menu__brand {
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, 100%, 0);
}
.menu__brand--active {
  transform: translate3d(0, 0, 0);
}
.menu__item {
  transform: translate3d(500px, 0, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__item--active {
  transform: translate3d(0, 0, 0);
}
.menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__link:hover:before {
  width: 100%;
}

/*
.menu .menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.menu .menu__item:nth-child(2) {
  transition-delay: 0.2s;
}
.menu .menu__item:nth-child(3) {
  transition-delay: 0.3s;
}
.menu .menu__item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu .menu__item:nth-child(5) {
  transition-delay: 0.5s;
}
.menu .menu__item:nth-child(6) {
  transition-delay: 0.6s;
}
.menu .menu__item:nth-child(7) {
  transition-delay: 0.7s;
}
.menu .menu__item:nth-child(8) {
  transition-delay: 0.8s;
}
.menu .menu__item:nth-child(9) {
  transition-delay: 0.9s;
}
.menu .menu__item:nth-child(10) {
  transition-delay: 0.10s;
}
.menu .menu__item:nth-child(11) {
  transition-delay: 0.11s;
}
.menu .menu__item:nth-child(12) {
  transition-delay: 0.12s;
}
.menu .menu__item:nth-child(13) {
  transition-delay: 0.13s;
}
.menu .menu__item:nth-child(14) {
  transition-delay: 0.14s;
}
.menu .menu__item:nth-child(15) {
  transition-delay: 0.15s;
}
/*







/*Smartphone css*/
@media screen and (max-width: 480px) {
.burger__btn {
	position: fixed;
	top: 23px;
	right: inherit;
	left: 5%;
}
.menu .logo {
  width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger--close .burger__text { 
	color: #ffffff;
}
.burger--close .burger-toggle .burger__patty { 
	background: #ffffff;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.burger__btn {
	position: fixed;
	top: 16px;
	right: inherit;
	left: 5%;
}
.menu .logo {
  width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger--close .burger__text { 
	color: #ffffff;
}
.burger--close .burger-toggle .burger__patty { 
	background: #ffffff;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.burger__btn {
	position: fixed;
	top: 16px;
	right: inherit;
	left: 5%;
}
.menu .logo {
  width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger--close .burger__text { 
	color: #ffffff;
}
.burger--close .burger-toggle .burger__patty { 
	background: #ffffff;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.burger {
	width: 24px;
}
.burger__btn {
	width: 24px;
	top: 24px;
	left: 2%;
}
.burger-toggle {
	margin: 0 auto 0;
}
.burger__text {
	display: none;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.burger {
	width: 24px;
}
.burger__btn {
	width: 24px;
	top: 24px;
	left: 2%;
}
.burger-toggle {
	margin: 0 auto 0;
}
.burger__text {
	display: none;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.burger {
	width: 24px;
}
.burger__btn {
	width: 24px;
	left: 3%;
	top:44px;
}
.burger-toggle {
	margin: 0 auto 0;
}
.burger__text {
	display: none;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {

.burger__btn {left: 3%;}
.menu .logo {width: 56.2%;}
.burger__text { display: none;}


}

@media screen and (min-width:1341px) and (max-width:1900px) {
.burger__btn {
	left: 3%;
}
}



 
 
.menuer-row1 {width: 74px;float: left;overflow: hidden;text-align: center;cursor: pointer;margin: 0 0 0;position: absolute;top: 38px;left: 38px;z-index: 9999999999;}

.menuer-row1 .menuer-bar1 {width: 74px;float: left;cursor: pointer;margin: 0 0 0;position: relative;z-index: 9999;}

.toggle {float: left;background: transparent;border-radius: 0 0 0;cursor: pointer;margin: 0 0 0;padding: 0 0 0;position: relative;z-index: 9999;}

.toggle-text1 {float: left;font-size: 13px;color: #ffffff;letter-spacing: 0;line-height: normal;text-transform: uppercase;display: inline-block;margin: 6px 0 0 10px;font-family: 'Figtree', sans-serif;font-weight: 700;}

.toggle-bar1 {width: 24px;float: left;transform: rotateY(0);transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);/* overflow: hidden; */margin: 0 0 0 0;}

.bar {width: 3px;height: 26px;background: #ffffff;display: inline-block;margin: 0 6px 0 0;-webkit-transition: all .35s ease;transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);float: left;}

.bar:first-child {}

.bar:last-child {margin: 0;}

.middle {top: 0;}

.bottom {}

.toggle-active .toggle-text1 {color: #cf645e;}

.toggle-active .bar {background: #cf645e;}

.toggle-active .top {transform: rotate(45deg) translate(6px, -6px);}

.toggle-active .middle {opacity: 0;margin: 0;}

.toggle-active .bottom { transform: rotate(-45deg) translate(-3px, -4px);}
 


.overlay { width: 100%; height: 0%; background: #1663AA; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s, height 0.35s; overflow: hidden; position: fixed; top: 0; left: 0; z-index: 99999999;}
.overlay.nav-active { opacity: 1; visibility: visible; height: 100%;}

.overlay.nav-active li { animation: fadeInRight 0.5s ease forwards; animation-delay: 0.35s;}
.overlay.nav-active li:nth-of-type(2) { animation-delay: 0.4s;}
.overlay.nav-active li:nth-of-type(3) { animation-delay: 0.45s;}
.overlay.nav-active li:nth-of-type(4) { animation-delay: 0.5s;}
.overlay.nav-active li:nth-of-type(5) { animation-delay: 0.55s;}
.overlay.nav-active li:nth-of-type(6) { animation-delay: 0.6s;}
.overlay.nav-active li:nth-of-type(7) { animation-delay: 0.65s;}
.overlay.nav-active li:nth-of-type(8) { animation-delay: 0.7s;}
.overlay.nav-active li:nth-of-type(9) { animation-delay: 0.75s;}
.overlay.nav-active li:nth-of-type(10) { animation-delay: 0.8s;}
.overlay.nav-active li:nth-of-type(11) { animation-delay: 0.85s;}
.overlay.nav-active li:nth-of-type(12) { animation-delay: 0.9s;}
.overlay.nav-active li:nth-of-type(13) { animation-delay: 0.95s;}
.overlay.nav-active li:nth-of-type(14) { animation-delay: 1s;}
.overlay.nav-active li:nth-of-type(15) { animation-delay: 1.1s;}
.overlay.nav-active li:nth-of-type(16) { animation-delay: 1.2s;}
.overlay.nav-active li:nth-of-type(17) { animation-delay: 1.3s;}



 
.overlay ul li { height: calc(100% / 8); min-height: 42px;  opacity: 0;}

.overlay ul li a:after { content: ""; width: 0; height: 2px; background: #6d6e71; transition: 0.35s; position: absolute; bottom: 0; left: 0;}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after { width: 100%;}

.overlay-back { width: 50%; height: 100%; float: left; background: #ffffff; margin: 0 0 0; position: absolute; top: 0; left: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;}

.overlay-back a { width: 27%; display: block; margin: 0 auto; position: relative; float: none;}

.overlay-back img { width: 100%; display: block; margin: 0 auto;}



@keyframes fadeInRight {
  0% { opacity: 0; left: 20%; }
  100% { opacity: 1; left: 0; }
}

.overlay ul ul li { min-height: 28px;}

.nav-active { opacity: 1; visibility: visible; height: 100%; /* max-height: 340px;*/}



/*Smartphone css*/

@media screen and (max-width: 480px) {

.toggle { padding:19px 5% 19px;}

.toggle-bar1 { width:22px;}

.menuer-row1 {width: 120px;margin:0 0 0;position:fixed;top:16px;}

.menuer-row1 .menuer-bar1 {width: 120px;padding: 19px 14% 19px;}


.overlay { width: 100%; text-align: center; margin: 0 0 0;}

.overlay-back { width: 100%; display: none; margin: 0 0 0;}


.overlay ul li {   min-height: 34px;}

.overlay ul ul li {   min-height: 22px;}

}



@media screen and (min-width:481px) and (max-width:600px) {

.toggle { padding:19px 5% 19px;}

.toggle-bar1 { width:22px;}

.menuer-row1 {width: 130px;margin:0 0 0;position:fixed;top:16px;}

.menuer-row1 .menuer-bar1 {width: 130px;padding: 19px 19% 19px;}


.overlay { width: 100%; text-align: center; margin: 0 0 0;}

.overlay-back { width: 100%; display: none; margin: 0 0 0;}

.overlay ul li {   min-height: 34px;}

}



@media screen and (min-width:601px) and (max-width:767px) {

.toggle { padding:19px 5% 19px;}

.toggle-bar1 { width:22px;}

.menuer-row1 {width: 130px;margin:0 0 0;position:fixed;top:16px;}

.menuer-row1 .menuer-bar1 {width: 130px;text-align: center;padding: 19px 19% 19px;}


.overlay { width: 100%; text-align: center; margin: 0 0 0;}

.overlay-back { width: 100%; display: none; margin: 0 0 0;}

.overlay ul li {   min-height: 34px;}

}



@media screen and (min-width:768px) and (max-width:900px) {

.toggle { padding:18px 19px 18px 36%;}

.toggle-bar1 { width:22px;}

.toggle-text1 { display:none;}

.menuer-row1 { width:64px; margin:0 0 0; position:fixed; top:11px;}

.menuer-row1 .menuer-bar1 { width:auto;}


.overlay ul li { min-height: 38px;}

.overlay-back { width: 50%; background-position: 17% center;}

}



@media screen and (min-width:901px) and (max-width:1024px) {

.toggle { padding:18px 19px 18px 36%;}

.toggle-bar1 { width:22px;}

.toggle-text1 { display:none;}

.menuer-row1 { width:64px; margin:0 0 0; position:fixed; top:14px;}

.menuer-row1 .menuer-bar1 { width:auto;}


.overlay-back { width: 50%; background-position: 50% center;}


}



@media screen and (min-width:1025px) and (max-width:1240px) {

.toggle { padding:18px 19px 18px 36%;}

.toggle-bar1 { width:22px;}

.toggle-text1 { display:none;}
 

}


@media screen and (min-width:1241px) and (max-width:1340px) {
  
.menuer-row1 { left: 3%;}

.overlay-back a {width: 56.2%;}

.toggle-text1 { display: none;}



}

@media screen and (min-width:1341px) and (max-width:1900px) {

.menuer-row1 { left: 3%;}

}


