@import url("../popup/micromodal.css");
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  min-width: 372px;
}
header .first_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 4vw;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
header .first_header .logo {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
header .first_header .logo img {
  width: 34px;
  height: 16px;
}
header .first_header .logo p {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
header .menu {
  display: flex;
  align-items: center;
}
header .header-button, header .header-button-border {
  font-size: 20px;
  color: #ffffff;
}
header .products_section, header .standart_section {
  display: flex;
  align-items: center;
}
header .header-button {
  transition: color 0.3s;
}
header .header-button:hover {
  color: #5DB461;
}
header .header-button-border {
  padding: 6px 6px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
header .header-button-border:after {
  content: url("./../../media/header/header-btn-arrow.svg");
  margin-left: 8px;
}
header .header-button-border a {
  color: #ffffff;
  cursor: pointer;
}
header .header-button-border:hover {
  background-color: #5DB461;
  border-color: #5DB461;
}
header .header-button-border:hover:after {
  content: url("./../../media/header/header-button-arrow-white.svg");
  transform: rotate(180deg);
  margin-bottom: -10px;
}
header .download-presentation-button:after {
  content: none;
}
header .download-presentation-button:hover:after {
  content: none;
}
header .download-presentation-button, header .products_btn {
  margin-right: 50px;
}
header .home-button {
  margin-right: 40px;
}
header .standart_btn {
  margin-right: 30px;
}
header .product_menu ul li a p:first-child {
  font-size: 14px;
}
header .product_menu ul li a:hover p {
  color: #5DB461;
}
header .product_menu, header .standart_menu, header .language_menu {
  position: absolute;
  transform: translateY(-1800px);
}
header .drop-down-menu {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 333333;
  display: flex;
  flex-direction: column;
  row-gap: 34px;
}
header .drop-down-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 34px;
}
header .drop-down-menu p, header .drop-down-menu a, header .drop-down-menu span {
  color: #000000;
  font-size: 20px;
}
header .standart_menu ul li {
  width: 154px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
header .standart_menu ul li a {
  display: flex;
  align-items: center;
}
header .standart_menu ul li a:before {
  content: url("./../../media/header/standard-check-img.svg");
  position: absolute;
  left: 16px;
  opacity: 0;
}
header .standart_menu ul li:hover {
  background-color: #5DB461;
}
header .standart_menu ul li:hover a {
  color: #ffffff;
}
header .standart_menu ul li:hover a:before {
  opacity: 0.5;
}
header .standart_menu ul .standart_active {
  background-color: #5DB461;
}
header .standart_menu ul .standart_active a {
  color: #ffffff;
}
header .standart_menu ul .standart_active a:before {
  opacity: 1;
}
header .standart_menu ul .standart_active:hover a:before {
  opacity: 1;
}
header .language-drop-down {
  position: relative;
}
header .language_menu {
  right: 0;
}
header .language_menu a {
  width: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  border-radius: 40px;
  background-image: url("./../../media/header/standard-check-img.svg");
  background-repeat: no-repeat;
  background-position: 13px center;
}
header .language_menu a:hover {
  background-color: #F2F2F2;
}
header .language_menu .lang_active {
  background-color: #5DB461;
}
header .language_menu .lang_active:hover {
  background-color: #5DB461;
}
header .language_menu .lang_active span {
  color: #ffffff;
}
header .products_btn_active, header .standart_btn_active, header .language_btn_active {
  background-color: #5DB461;
  border-color: #5DB461;
}
header .products_btn_active:after, header .standart_btn_active:after, header .language_btn_active:after {
  content: url("./../../media/header/header-button-arrow-white.svg");
  transform: none;
  margin-bottom: 0;
}
header .products_btn_active:hover:after, header .standart_btn_active:hover:after, header .language_btn_active:hover:after {
  content: url("./../../media/header/header-button-arrow-white.svg");
  transform: none;
  margin-bottom: 0;
}
header .hamburger-slim {
  position: relative;
  display: none;
  height: 30px;
  width: 50px;
  cursor: pointer;
}
header .hamburger-slim:before, header .hamburger-slim:after {
  background: #FFFFFF;
  backface-visibility: hidden;
  content: "";
  height: 3px;
  left: 0;
  transition: 0.75s;
  width: 50px;
}
header .hamburger-slim:before {
  box-shadow: #FFFFFF 0 14px 0 0;
  position: absolute;
  top: 0;
}
header .hamburger-slim:after {
  position: absolute;
  top: calc(100% - 2px);
}
header .burger_btn_active:before {
  box-shadow: transparent 0 0 0 0;
  top: 50%;
  transform: rotate(225deg);
}
header .burger_btn_active:after {
  top: 50%;
  transform: rotate(315deg);
}
header .second_header {
  background: rgba(0, 0, 0, 0.4);
  padding: 0 4vw;
  height: 52px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .second_header a {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}
header .second_header .anchor_menu a {
  color: rgba(255, 255, 255, 0.4);
}
header .second_header .anchor_menu a:hover {
  color: #ffffff;
}
header .second_header .anchor_menu .anchor_active {
  color: #ffffff;
}
header .second_header .anchor_menu ul {
  display: flex;
  list-style: none;
  column-gap: 35px;
}
header .second_header .buy_now_btn {
  padding: 4px 8px;
  border: 1px solid #5DB461;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 1204px) {
  header .menu .products_section {
    order: 1;
  }
  header .menu .products_section .products_btn {
    display: none;
  }
  header .hamburger-slim {
    display: block;
    margin-left: 30px;
  }
  header .home-button {
    display: none;
  }
  header .drop-down-menu {
    z-index: 3333333333333333;
  }
  header .drop-down-menu ul {
    row-gap: 25px;
  }
  header .drop-down-menu p, header .drop-down-menu a, header .drop-down-menu span {
    font-size: 16px;
  }
  header .drop-down-menu ul li {
    width: 152px;
  }
  header .download-presentation-button {
    display: none;
  }
  .product-drop-down {
    position: relative;
  }
  .product_menu {
    right: 0;
  }
}
@media (max-width: 542px) {
  header .second_header a {
    font-size: 14px;
  }
  header .standart_btn {
    display: none;
  }
}
.buy-station-form {
  max-width: 650px;
}
.buy-station-form label {
  color: #B3B3B3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.buy-station-form label + label {
  margin-top: 15px;
}
.buy-station-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 5px 12px;
}
.buy-station-form input:focus {
  box-shadow: none;
}
.buy-station-form button[type=submit] {
  background-color: #5AB464;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  height: 50px;
  width: 100%;
  margin-top: 30px;
}

/*# sourceMappingURL=header.css.map */
