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

.burger__btn {
  width: 48px;
  height:48px;
  float: left;
  margin: 0 0 0;
  border:1px solid #bda140;
  border-radius:50%;
  position: absolute;
  top: 12px;
  left: 3%;
  z-index: 999999999;
}
.burger {
  width: 48px;
  float: left;
  cursor: pointer;
  margin: 0 0 0;
}
.burger-btn1 {
  width: 29px;
  float: left;
  margin: 0 auto 0;
  position:absolute; top:50%; transform:translateY(-50%); left:0; right:0;
}
.burger-tex1 {
  float: right;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin: 0 0 0;
  display:none;
}
.burger__patty {
  width: 23px;
  height: 3px;
  margin: 0 auto 4px;
  background: #bda140;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger__patty:nth-child(2) { width:29px;}

.burger__patty:last-child {
  margin-bottom: 0;
}
.burger--close .burger-tex1 { 
  color: #006600;
}
.burger--close .burger__patty:nth-child(1) {
  background: #ffffff;
  transform: rotate(45deg) translate(5px, 5px);
}
.burger--close .burger__patty:nth-child(2) {
  opacity: 0;
}
.burger--close .burger__patty:nth-child(3) {
  background: #ffffff;
  transform: rotate(-45deg) translate(5px, -4px);
}
.menu {
  width: 100%;
  visibility: hidden;
  position: fixed;
  top: 0;
  z-index: 99999999;
}
.menu .logo {
  width: 240px;
}
.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: #ffffff;
  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: #006600;
  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: #006600;
  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;
}
ul.menu__list {
    width: 100%;
    transform: none;
    height: auto;
}
ul.menu__list > li {
    width: fit-content;
    margin: 0 auto 0 !important;
}
ul.menu__list > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #006600;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
ul.menu__list > li > a:hover:before {
  width: 100%;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.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__patty:nth-child(1) {
  background: #bda140;
}
.burger--close .burger__patty:nth-child(3) {
  background: #bda140;
}
}

@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__patty:nth-child(1) {
  background: #bda140;
}
.burger--close .burger__patty:nth-child(3) {
  background: #bda140;
}
}

@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__patty:nth-child(1) {
  background: #bda140;
}
.burger--close .burger__patty:nth-child(3) {
  background: #bda140;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.burger__btn { top:12px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.burger__btn { top:15px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.burger__btn { top:16px;}
}

@media screen and (min-width:1241px) and (max-width:1340px) {

}

@media screen and (min-width:1341px) and (max-width:1440px) {
.burger__btn {
	left: 2%;
}
}

@media screen and (min-width:1441px) and (max-width:1900px) {

}