@font-face {
    font-family: "archristy";
    src: url(../ARCHRISTY.ttf) format("truetype");
}
@font-face {
    font-family: "belweb";
    src: url(../BelweBdBTBold.ttf) format("truetype");
}

@font-face {
    font-family: "belwe";
    src: url(../BelweLtBTLight.ttf) format("truetype");
}
@font-face {
    font-family: "belwec";
    src: url(../BelweLtBTLight.ttf) format("truetype");
}

@font-face {
    font-family: "myriad";
    src: url(../MyriadPro-Regular.otf) format("truetype");
}

@font-face {
    font-family: "myriad2";
    src: url(../MyriadPro-BoldCond.otf) format("truetype");
}

.main_h {
  position: sticky;
  z-index: 999;
  width: 100%;
  height: 70px;
  background-color: #2d5691;
  -webkit-transition: all 0.3s;
  transition: all 0.5s;
  top: 0;
  font-family: "Times New Roman", serif;
  text-align: center;
}

.logo-header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background-color: #fff;
}

@media only screen and (max-width: 1000px) {

  .logo-header{
    display: none;
  }

}

.open-nav {
  max-height: 100vh !important;
}

.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.logo {
  display: none;
  position: absolute;
	width: 200px;
  height: 200px;
  color: #8f8f8f;
  top:0;
  left: 50px;
  line-height: 1;
  z-index:1000;
}

.logo img{
  display: block;
	width: 80%;
}

.logo3{
  display: block;
  height: 80%;
}

.imgx{
	display: block;
}

nav {
  display: block;
  position: relative;
  background-color: #2d5691;
  width: 100%;
  height: 100%;
  font-family: 'belwe';
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.3);
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  list-style: none;
}

nav ul a {
  display: block;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  width: auto;
  height: 100%;
  margin: 0 15px 0 15px;
}

nav ul a li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 1000px) {

  nav{
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  nav ul {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  nav ul a {
    width: 100%;
    height: 70px;
    margin: 0;
  }

  nav ul a li {
    width: 100%;
    height: 70px;
  }

  .logo{
    position: relative;
    display: block;
    margin: 0 auto 0 auto;
    top: 0;
    left: 0;
    width: 130px;
    height: 70px;
  }

  .logo img{
  	width: 100%;
  }

}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 20px;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

@media only screen and (max-width: 1000px) {
  .mobile-toggle {
    display: block;
  }

}
.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #fff;
  display: block;
}


@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
