html{
  scroll-behavior: smooth;
}

.popup-container{
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  /* background-color: rgba(47, 105, 65, 0.5); */
  opacity: 0;
}

.animationFadeIn{
  animation: fadeIn 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

.animationFadeOut{
  animation: fadeOut 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: .3; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.popup{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  background-color: white;
  font-size: 150%;
  color: black;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.popup > .popup-header{
  font-weight: 700;
}

.popupBtn > input{
  position: inline-block;
  width: auto;
  margin: 10px;
}


#main-header {
		position: -webkit-sticky;
  	position: sticky !important;
    background: #fff;
    width: 100%;
		top: 0px;
    z-index: 9999;
}

.nav-ul li {
  height: auto;
  margin: 0px 10px;
  padding: 25px 0px;
  text-align: center;
  white-space: nowrap;
}

#main-header nav {
    max-width: 1180px;
		width: 100%;
		height: auto;
    margin: 0px auto;
    display: -webkit-flex;
    display: flex;
		-ms-align-items: center;
    align-items: center;
    transition: all .5s linear;
}

.logo-container{
	display: flex;
	height: calc(100% + 10px);
	width: auto;
	margin-right: 5px;
	margin-left: auto;
	align-items: center;
  justify-content: center;
}

.header-contact{
	display:none;
	color: green;
	font-weight: 700;
}

.logo-container img {
  position: relative;
  padding: 5px 0;
	height: 60px;
	width: 100%;
  min-width: 67px;
  object-fit: cover;
}

.nav-ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  list-style: none;
  margin: 0px;
}

.menu-item {
  display: block;
  color: #000;
  border-radius: 5px;
  background: transparent;
  margin: auto 0px;
  font-size: 100%;
  vertical-align: middle;
  text-decoration: none;
}

.nav__icon,
.nav__icon span {
    display: none;
}

.nav__icon {
    width: 36px;
    height: 28px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.nav__icon span {
    background: rgba(0, 0, 0, 1);
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px;
}

.nav__icon span:nth-of-type(1) {
    top: 0;
}

.nav__icon span:nth-of-type(2) {
    top: 12px;
}

.nav__icon span:nth-of-type(3) {
    bottom: 0;
}

.nav__icon.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}

.nav__icon.active span:nth-of-type(2) {
    display: none;
}

.nav__icon.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}

#main-header{
  border-bottom: 4px solid #2F6941;
  border-top: 2px solid red;
}

@media only screen and (max-width: 700px) {
  .main-header {
    position: relative;
    z-index: 999;
  }
	.main-header nav{
		padding: 5px;
    height: 60px;
	}
	.header-contact{
		display: flex;
    height: auto;
	  width: auto;
	  margin-right: 20px;
	  margin-left: auto;
	  align-items: center;
    justify-content: center;
	}
  .header-contact table{
    height: auto;
    margin: 0;
  }
	.logo-container{
		display: none;
	}
  .nav-ul {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: 80px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 980;
    padding: 0px;
    height: auto;
    flex-wrap: nowrap;
    display: none;
  }
  .nav-ul li {
    height: 100%;
    padding: 10px;
    text-align: center;
  }
  .menu-item {
    display: block;
    background: transparent;
    margin: 0px;
    padding: 20px;
  }
  .nav__icon,
  .nav__icon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    z-index: 999;
  }
  h1{
    font-size: 13vw !important;
  }
}

.nav-ul a {
    color: #2F6941;
    font-weight: 700
}

.nav-ul a:hover {
  color: #fff;
  background: #2F6941;
}

.site-header{
  padding-top: 0px;
  padding-bottom: 0px;
}

.header-contact >table, .header-contact tr, .header-contact td{
  border: 0px;
}

.header-contact td{
  padding: 5px 0px;
}

.header-contact tbody>tr:nth-child(odd)>td{
  background-color: #fff;
}

#manu-flag a{
  background-color: inherit;
}

.navbar-link{
  display:flex;
}
