:root {
  --size: 500;
}

@media screen and (min-height: 480px) {
  :root {
    --size: 900;
  }
}
@media screen and (min-height: 768px) {
  :root {
    --size: 900;
  }
}
.container {
  max-width: 91vw;
  margin: 0 auto;
}
@media (max-width: 1439px), (min-width: 1440px) and (orientation: portrait) {
  .container {
    max-width: 91vw;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .container {
    max-width: calc(100vw - 72 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .container {
    max-width: calc(100vw - 36 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #000;
}
.header[data-opened=true], .header.is-open {
  background: #000 !important;
}
.header__logo {
  display: block;
  width: calc(133 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(57 / var(--size) * 100 * var(--vh, 1vh));
  background: url(/icons/logo1.svg) no-repeat center/contain;
  cursor: pointer;
  flex-shrink: 0;
}
.header_transparent {
  background: transparent;
}
.header__inner {
  width: 100%;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
  height: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  transition: 0.5s;
}
.header__socials {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
  margin-left: auto;
  color: #80d207;
}
.header__socials > .socials {
  display: none;
}
@media (max-width: 1440px) {
  .header__socials > .socials {
    display: flex;
  }
}
.header__btn {
  outline: none;
  background: none;
  border: none;
  display: inline-block;
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(23 / var(--size) * 100 * var(--vh, 1vh));
  text-align: center;
  color: #fff;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .header__btn:hover::before {
    width: 120%;
  }
}
.header__btn::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(46 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(46 / var(--size) * 100 * var(--vh, 1vh));
  background: #80d207;
  border-radius: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  z-index: -1;
  transition: all 0.7s;
}
.header_green:not([data-opened=true]):not(.is-open) {
  background: #80d207;
}
.header_green:not([data-opened=true]):not(.is-open) .header__logo {
  background-image: url(/icons/logo2.svg) !important;
}
.header_green:not([data-opened=true]):not(.is-open) ul li {
  color: #3a3a3a !important;
}
.header_green:not([data-opened=true]):not(.is-open) .phone {
  color: #3a3a3a !important;
}
.header_green:not([data-opened=true]):not(.is-open) .phone span {
  color: #fff;
}
.header_green:not([data-opened=true]):not(.is-open) .header__btn {
  color: #3a3a3a !important;
}
.header_green:not([data-opened=true]):not(.is-open) .language {
  color: #3a3a3a !important;
}
.header_green:not([data-opened=true]):not(.is-open) .menu__btn {
  background: #fff !important;
}
@media (max-width: 1440px) {
  .header__btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: calc(85 / var(--size) * 100 * var(--vh, 1vh));
    height: calc(37 / var(--size) * 100 * var(--vh, 1vh));
  }
  .header__inner {
    height: calc(96 / var(--size) * 100 * var(--vh, 1vh));
    gap: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.phone {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  width: calc(165 / var(--size) * 100 * var(--vh, 1vh));
  white-space: nowrap;
  font-family: "Oswald";
  font-size: calc(21 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(31 / var(--size) * 100 * var(--vh, 1vh));
}
.phone > a {
  white-space: nowrap;
}
.phone > a > span {
  color: #80d207;
}
@media (max-width: 1025px), (min-width: 1026px) and (orientation: portrait) {
  .phone {
    width: auto;
  }
}
@media (max-width: 1900px) {
  .phone {
    width: auto;
  }
}
@media (min-width: 1901px) {
  .phone {
    width: auto;
  }
}
@media (max-width: 480px) {
  .phone {
    margin-left: auto;
    display: none;
  }
}

@media (max-width: 480px) {
  .language-wrap {
    display: none;
  }
}

.language {
  font-weight: 500;
  color: #fff;
  transition: color 0.7s;
  font-family: "Oswald";
  font-size: calc(21 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(31 / var(--size) * 100 * var(--vh, 1vh));
}
@media (hover: hover) and (pointer: fine) {
  .language:hover {
    color: #80d207;
  }
}

.menu {
  display: none;
  outline: none;
  background: none;
  border: none;
  height: calc(17 / var(--size) * 100 * var(--vh, 1vh));
  width: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  cursor: pointer;
}
.menu__btn {
  flex: 0 0 100%;
  display: block;
  position: relative;
  width: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(3 / var(--size) * 100 * var(--vh, 1vh));
  background: #80d207;
  border-radius: 16px;
  transition: all 0.5s;
}
.menu__btn::before {
  position: absolute;
  content: "";
  top: calc(8.5 / var(--size) * 100 * var(--vh, 1vh));
  right: 0;
  width: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(3 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: inherit;
  background: inherit;
  transition: all 0.5s;
}
.menu__btn::after {
  position: absolute;
  content: "";
  top: calc(17 / var(--size) * 100 * var(--vh, 1vh));
  right: 0;
  width: calc(19 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(3 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: inherit;
  background: inherit;
  transition: all 0.5s;
}
.menu__btn_opened, .is-open .menu__btn {
  transform: rotate(45deg);
  top: calc(6 / var(--size) * 100 * var(--vh, 1vh));
}
.menu__btn_opened::before, .is-open .menu__btn::before {
  width: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  transform: rotate(-90deg);
  top: 0;
}
.menu__btn_opened::after, .is-open .menu__btn::after {
  display: none;
}
@media screen and (min-width: 1440px) and (orientation: landscape) and (hover: hover) and (pointer: fine) {
  .menu:hover .menu__btn::before, .menu:hover .menu__btn::after {
    width: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 1440px) {
  .menu {
    display: flex;
  }
}

.nav {
  margin-right: auto;
  display: flex;
  align-self: stretch;
  justify-content: space-between;
}
.nav__list {
  display: flex;
  align-items: stretch;
  gap: calc(30 / var(--size) * 100 * var(--vh, 1vh));
}
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(23 / var(--size) * 100 * var(--vh, 1vh));
  text-align: center;
  color: #fff;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .nav__item:hover::before {
    opacity: 0.5;
  }
}
.nav__item--has-submenu.is-active .nav__submenu {
  display: block;
}
.nav__item .nav__label {
  position: relative;
}
.nav__item-active::before {
  opacity: 1 !important;
}
.nav__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  background: #80d207;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.7s;
  opacity: 0;
}
.nav__submenu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(96 / var(--size) * 100 * var(--vh, 1vh));
  display: none;
  padding: calc(50 / var(--size) * 100 * var(--vh, 1vh)) 0 calc(40 / var(--size) * 100 * var(--vh, 1vh));
  background: #000;
  box-shadow: 0 calc(20 / var(--size) * 100 * var(--vh, 1vh)) calc(40 / var(--size) * 100 * var(--vh, 1vh)) rgba(0, 0, 0, 0.5);
  z-index: 19;
  cursor: default;
  text-align: left;
}
.nav__submenu-inner {
  position: relative;
  max-width: 91vw;
  margin: 0 auto;
  min-height: calc(200 / var(--size) * 100 * var(--vh, 1vh));
  padding-right: calc(240 / var(--size) * 100 * var(--vh, 1vh));
}
.nav__submenu-cols {
  column-width: calc(280 / var(--size) * 100 * var(--vh, 1vh));
  column-gap: calc(60 / var(--size) * 100 * var(--vh, 1vh));
}
.nav__submenu-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(170 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(170 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: 50%;
  background: #80d207;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.3s;
  font-family: "Oswald";
  font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(28 / var(--size) * 100 * var(--vh, 1vh));
}
@media (hover: hover) and (pointer: fine) {
  .nav__submenu-cta:hover {
    transform: scale(1.06);
  }
}
.nav__submenu-cta span {
  display: inline-block;
  width: calc(115 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 1440px) {
  .nav {
    display: none;
  }
}

.menu-group {
  break-inside: avoid;
  margin-bottom: calc(28 / var(--size) * 100 * var(--vh, 1vh));
}
.menu-group__title {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(26 / var(--size) * 100 * var(--vh, 1vh));
}
@media (hover: hover) and (pointer: fine) {
  .menu-group__title:hover {
    color: #80d207;
  }
}
.menu-group__list {
  list-style: none;
  margin-top: calc(14 / var(--size) * 100 * var(--vh, 1vh));
}
.menu-group__list li {
  margin-bottom: calc(8 / var(--size) * 100 * var(--vh, 1vh));
}
.menu-group__list a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #b7b7b7;
  transition: color 0.3s;
  font-size: calc(17 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(22 / var(--size) * 100 * var(--vh, 1vh));
}
@media (hover: hover) and (pointer: fine) {
  .menu-group__list a:hover {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .nav-drop .menu-group:has(> .menu-group__list) > .menu-group__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .nav-drop .menu-group:has(> .menu-group__list) > .menu-group__title::after {
    content: "";
    flex-shrink: 0;
    width: calc(14 / var(--size) * 100 * var(--vh, 1vh));
    height: calc(14 / var(--size) * 100 * var(--vh, 1vh));
    margin-left: calc(12 / var(--size) * 100 * var(--vh, 1vh));
    background: url(/icons/arrowRight.svg) no-repeat center/contain;
    transition: transform 0.3s;
  }
  .nav-drop .menu-group.is-open > .menu-group__title::after {
    transform: rotate(-90deg);
  }
  .nav-drop .menu-group > .menu-group__list {
    display: none;
  }
  .nav-drop .menu-group.is-open > .menu-group__list {
    display: block;
  }
}
.nav-navigator {
  padding-top: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  padding-bottom: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media (min-width: 1901px) {
  .nav-navigator {
    display: none;
  }
}

.nav-inner {
  display: flex;
  gap: calc(50 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 1025px), (min-width: 1026px) and (orientation: portrait) {
  .nav-inner {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .nav-inner {
    gap: calc(0 / var(--size) * 100 * var(--vh, 1vh));
  }
}
.nav-inner.opened {
  padding: calc(20 / var(--size) * 100 * var(--vh, 1vh)) 0 calc(60 / var(--size) * 100 * var(--vh, 1vh));
}

.nav-drop {
  z-index: 4;
  width: 100%;
  max-height: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: 0.3s;
}
.nav-drop-opened, .nav-drop.is-open {
  max-height: 90vh;
  overflow-y: auto;
}
.nav-drop:not(.is-open):not(.nav-drop-opened) .nav-drop__btn {
  display: none;
}
.nav-drop__wrapper {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: calc(18 / var(--size) * 100 * var(--vh, 1vh)) 0;
}
.nav-drop__wrapper.is-open {
  display: block;
}
.nav-drop__list {
  display: flex;
  flex-direction: column;
  gap: calc(32 / var(--size) * 100 * var(--vh, 1vh)) calc(112 / var(--size) * 100 * var(--vh, 1vh));
}
.nav-drop__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-drop__footer button {
  position: absolute;
  right: 0;
  bottom: 10%;
}
.nav-drop__footer-left {
  display: flex;
  gap: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
}
.nav-drop__item {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1;
  color: #fff;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
}
.nav-drop__item div {
  display: flex;
  align-items: center;
  gap: calc(10 / var(--size) * 100 * var(--vh, 1vh));
}
.nav-drop__item img {
  width: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  min-width: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  min-height: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  margin-left: auto;
}
.nav-drop__item-laptop {
  display: none;
}
@media (max-width: 1900px) {
  .nav-drop__item-laptop {
    display: block;
  }
}
.nav-drop__item-laptop > div img {
  transition: transform 0.3s;
}
.nav-drop__item-laptop.is-open > div img {
  transform: rotate(-90deg);
}
@media (hover: hover) and (pointer: fine) {
  .nav-drop__item:hover {
    opacity: 1;
  }
}
.nav-drop__item.active {
  opacity: 1;
}
.nav-drop__item a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-drop__item-category {
  opacity: 1;
}
.nav-drop__btn {
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  z-index: 1;
  width: calc(300 / var(--size) * 100 * var(--vh, 1vh));
  cursor: pointer;
  margin-bottom: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  font-family: "Oswald";
  font-size: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(30 / var(--size) * 100 * var(--vh, 1vh));
}
@media (hover: hover) and (pointer: fine) {
  .nav-drop__btn:hover::before {
    width: 100%;
  }
}
.nav-drop__btn::before {
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(114 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(114 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: calc(60.5 / var(--size) * 100 * var(--vh, 1vh));
  background: #80d207;
  transition: all 0.5s;
}
@media (max-width: 1439px), (min-width: 1440px) and (orientation: portrait) {
  .nav-drop-opened, .nav-drop.is-open {
    max-height: min(600 / var(--size) * 100 * var(--vh, 1vh), 100vh - 96 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-drop__list {
    grid-template-columns: repeat(2, calc(150 / var(--size) * 100 * var(--vh, 1vh)));
    grid-template-areas: "block1 block7" "block2 block8" "block3 block9" "block4 block10" "block5 block11" "block6 block12";
  }
}
@media (max-width: 1025px), (min-width: 1026px) and (orientation: portrait) {
  .nav-drop {
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-drop__list {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-drop-opened, .nav-drop.is-open {
    overflow-y: auto;
  }
  .nav-drop__footer {
    align-items: flex-start;
  }
  .nav-drop__footer-left {
    display: flex;
    gap: calc(20 / var(--size) * 100 * var(--vh, 1vh));
    transform: translateY(calc(-5 / var(--size) * 100 * var(--vh, 1vh)));
    align-items: center;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .nav-drop__btn {
    width: auto;
    font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .nav-drop-opened, .nav-drop.is-open {
    max-height: min(600 / var(--size) * 100 * var(--vh, 1vh), 100vh - 96 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-drop .nav-drop__footer {
    margin-top: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  }
}

@media (min-width: 769px) and (max-width: 1440px) {
  .nav-drop.is-open,
  .nav-drop.nav-drop-opened {
    max-height: calc(100vh - calc(96 / var(--size) * 100 * var(--vh, 1vh)));
  }
  .nav-inner {
    flex-direction: column;
    gap: calc(14 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-inner.opened {
    padding-bottom: calc(80 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-inner > .nav-drop__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 calc(40 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-inner > .nav-drop__list > .nav-drop__item-laptop {
    width: auto;
    opacity: 1;
    order: 0;
    padding: calc(8 / var(--size) * 100 * var(--vh, 1vh)) 0 calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-inner > .nav-drop__list > .nav-drop__item-laptop > div img {
    display: none;
  }
  .nav-drop__wrapper {
    order: 1;
    flex-basis: 100%;
    width: 100%;
    padding: calc(20 / var(--size) * 100 * var(--vh, 1vh)) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    background: #000;
  }
  .nav-drop__wrapper.is-open {
    display: block;
  }
  .nav-drop__cols {
    column-width: calc(240 / var(--size) * 100 * var(--vh, 1vh));
    column-gap: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 1440px) {
  .nav-drop__footer {
    justify-content: flex-end;
  }
  .nav-drop__footer button {
    position: relative;
    right: auto;
    bottom: auto;
  }
  .nav-drop__btn {
    width: calc(150 / var(--size) * 100 * var(--vh, 1vh));
    height: calc(150 / var(--size) * 100 * var(--vh, 1vh));
    border-radius: 50%;
    margin-bottom: 0;
    z-index: 10;
    font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
    line-height: calc(28 / var(--size) * 100 * var(--vh, 1vh));
  }
  .nav-drop__btn::before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
}
.socials {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
  margin-left: auto;
  color: #80d207;
}
.socials a {
  display: flex;
  align-items: center;
  height: auto;
  cursor: pointer;
}
.socials a img {
  width: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(36 / var(--size) * 100 * var(--vh, 1vh));
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .socials a img:hover {
    filter: invert(33%) sepia(84%) saturate(470%) hue-rotate(33deg) brightness(88%) contrast(105%);
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .socials a img {
    filter: brightness(0) invert(1);
  }
}
@media (max-width: 1439px), (min-width: 1440px) and (orientation: portrait) {
  .socials {
    color: #fff;
  }
}

@media (min-width: 1441px) {
  .header__inner {
    gap: min(50 / var(--size) * 100 * var(--vh, 1vh), 1.6vw);
  }
  .nav__list {
    gap: min(30 / var(--size) * 100 * var(--vh, 1vh), 1.2vw);
  }
  .nav__item {
    font-size: min(20 / var(--size) * 100 * var(--vh, 1vh), 1.05vw);
  }
  .header__btn {
    font-size: min(20 / var(--size) * 100 * var(--vh, 1vh), 1.05vw);
  }
  .phone {
    font-size: min(21 / var(--size) * 100 * var(--vh, 1vh), 1.1vw);
  }
  .language {
    font-size: min(21 / var(--size) * 100 * var(--vh, 1vh), 1.1vw);
  }
}