body {
  height: 100vh !important;
}

.header {
  position: relative;
  background-color: #fff;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 93%;
  height: 60px;
  z-index: 1;
  background-color: black;
  border-radius: 0px 0px 0px 10px;
}

.header-top {
  margin-top: -7px;
}
.header-top.home-six {
  padding-top: 23px;
  position: relative;
  z-index: 0;
  background: #F9F9FF;
}
.header-top.home-six .top-social-share {
  margin-bottom: 0;
}
.header-top.about {
  padding-top: 12px;
}
.header-top .row {
  justify-content: space-between;
}
.header-top .top-social-share {
  list-style: none;
  display: flex;
  padding-left: 0;
}
.header-top .top-social-share i {
  width: 30px;
  height: 30px;
  background: #70A548;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s all;
}
.header-top .top-social-share i:hover {
  background-color: #fff;
  color: #70A548;
}
.header-top .top-social-share li {
  margin-right: 10px;
}
.header-top .top-social-share li:last-child {
  margin-right: 0;
}
.header-top .top-single-items {
  display: flex;
  justify-content: flex-end;
}
.header-top .top-single-items .top-single-item {
  display: flex;
  margin-right: 50px;
  align-items: center;
  z-index: 1;
}
.header-top .top-single-items .top-single-item:last-child {
  margin-right: 0;
}
.header-top .top-single-items .top-single-item a {
  margin-right: 5px;
  color: #fff;
}
.header-top .top-single-items .top-single-item a img:hover {
  color: #ffcfbb !important;
}
.header-top .top-single-items .top-single-item .icon {
  margin-right: 10px;
  font-size: 17px;
  color: #fff;
}
.header-top .top-single-items .top-single-item .icon .icon-envelope {
  font-size: 13px;
}
.header-top .top-single-items .top-single-item .icon:last-child {
  margin-right: 0;
  margin-left: 10px;
  color: #fff;
}
.header-top .top-single-items .top-single-item .content-header a:hover {
  color: rgb(220, 246, 200);
}
.header-top .top-single-items .top-single-item .title {
  font-size: 14px;
  font-family: "robotoregular";
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.header-top .top-single-items .top-single-item .title a:hover {
  color: rgb(220, 246, 200);
}
.header-top .top-single-items .top-single-item .form-select {
  background: transparent !important;
  color: #fff;
  border: none;
  --webkit-border: none;
  padding: 5px 8px;
  font-size: 14px;
  font-family: "robotoregular";
  font-weight: 500;
  line-height: 19px;
}
.header-top .top-single-items .top-single-item .form-select option {
  background: black;
}
.header-top .top-single-items .search-box {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}
.header-top .top-single-items .input-search {
  width: 50px;
  border-style: none;
  font-size: 14px;
  letter-spacing: 2px;
  outline: none;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
  background-color: black;
  padding-right: 70px;
  color: #fff;
}
.header-top .top-single-items .input-search::-moz-placeholder {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 100;
}
.header-top .top-single-items .input-search::placeholder {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 100;
}
.header-top .top-single-items .btn-search {
  width: 50px;
  height: 50px;
  border-style: none;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  background-color: transparent;
  pointer-events: painted;
}
.header-top .top-single-items .btn-search:focus ~ .input-search {
  width: 300px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}
.header-top .top-single-items .input-search:focus {
  width: 300px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.check-box .container-box {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #fff;
}

.check-box .container-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-box .container-box .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
}

.check-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  color: black;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.check-box .container-box input:checked ~ .checkmark:after {
  display: block;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes updown {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translate(0px);
  }
}
@keyframes updown-two {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
nav#cssmenu ul {
  float: right;
  margin-top: 8px;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  box-sizing: border-box;
}

#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #head-mobile {
  display: none;
}

#cssmenu > ul > li {
  float: left;
  margin-right: 10px;
}

#cssmenu > ul > li > a {
  padding: 9px 17px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

#cssmenu > ul > li:hover > a,
#cssmenu ul li.active a {
  color: #fff;
}

#cssmenu > ul > li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
  background: #70A548 !important;
  transition: background 0.3s ease;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 17px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: black;
  content: "";
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 14px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: black;
  content: "";
  transition: all 0.25s ease;
}

#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  margin-top: 0;
  z-index: 2;
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  background: #333;
  transition: all 0.25s ease;
}

#cssmenu li:hover > ul {
  left: auto;
}

#cssmenu li:hover > ul > li {
  height: 35px;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 190px;
  font-size: 12px;
  text-decoration: none;
  color: #ddd;
  font-weight: 400;
  z-index: 2;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: rgb(220, 246, 200);
}

#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: "";
}

#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: "";
  transition: all 0.25s ease;
}

#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
  background: #363636;
}

#cssmenu ul ul ul li.active a {
  border-left: 1px solid #333;
}

#cssmenu > ul > li.has-sub > ul > li.active > a,
#cssmenu > ul ul > li.has-sub > ul > li.active > a {
  border-top: 1px solid #333;
}

@media screen and (max-width: 1199.5px) {
  .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    text-align: center;
    padding: 0px 0 0 0;
    float: none;
  }
  .logo img {
    margin-left: -60px;
    padding-top: 0px !important;
  }
  .logo2 {
    display: none;
  }
  nav {
    width: 100%;
  }
  #cssmenu {
    width: 100%;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
    background-color: black;
  }
  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid #444;
    float: left;
  }
  #cssmenu ul li:hover {
    background: transparent !important;
  }
  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
  }
  #cssmenu ul ul li a {
    padding-left: 25px;
  }
  #cssmenu ul ul li {
    background: #333 !important;
  }
  #cssmenu ul ul li:hover {
    background: #363636 !important;
  }
  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  #cssmenu ul ul li a {
    color: #ddd;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #fff;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    top: 1px;
  }
  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  #cssmenu #head-mobile {
    display: block;
    padding: 23px;
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
  }
  .button {
    width: 45px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 5px;
    cursor: pointer;
    background-color: black;
    z-index: 12399994;
    border-radius: 4px;
  }
  .button:after {
    position: absolute;
    top: 16px;
    right: 12px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
  }
  .button:before {
    transition: all 0.3s ease;
    position: absolute;
    top: 10px;
    right: 12px;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: "";
  }
  .button.menu-opened:after {
    transition: all 0.3s ease;
    top: 16px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    transform: rotate(45deg);
  }
  .button.menu-opened:before {
    top: 16px;
    background: #fff;
    width: 19px;
    transform: rotate(-45deg);
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #444;
    height: 32px;
    width: 40px;
    cursor: pointer;
    background-color: black;
  }
  #cssmenu .submenu-button.submenu-opened {
    background: #262626;
  }
  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  #cssmenu .submenu-button:after {
    position: absolute;
    top: 17px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #fff;
    content: "";
  }
  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    background: #fff;
  }
  #cssmenu .submenu-button:before {
    position: absolute;
    top: 14px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #fff;
    content: "";
  }
  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
  #cssmenu ul ul ul li.active a {
    border-left: none;
  }
  #cssmenu > ul > li.has-sub > ul > li.active > a,
  #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: none;
  }
  .header::before {
    display: none;
  }
  .header-top .top-single-items .search-box {
    display: none;
  }
  .header .header-main {
    padding: 40px 20px;
  }
  .header-top.about {
    padding-top: 0px;
  }
  .header-top {
    margin-top: -40px;
  }
}
@media (max-width: 480px) {
  .header-top {
    margin-top: -60px;
  }
}
@media (max-width: 378px) {
  .header-top {
    margin-top: -108px;
  }
}
@media (max-width: 365.5px) {
  .header-top {
    margin-top: -140px;
  }
  .header .header-main {
    padding: 50px 20px !important;
  }
  .logo {
    top: 40px;
  }
  .button {
    top: 44px;
  }
}
.logo {
  position: relative;
  z-index: 123;
  font: 18px verdana;
  color: #6DDB07;
  float: left;
}

.logo img {
  max-width: 200px;
}

.logo a {
  color: #6DDB07;
  float: left;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-container {
    max-width: 960px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #cssmenu > ul > li > a {
    color: black;
  }
}/*# sourceMappingURL=header-five.css.map */