* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/montserrat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-Medium.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(""), url("../fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/montserrat/Montserrat-Bold.otf");
}

@font-face {
  font-family: "Ermilov";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local(""), url("../fonts/ermilov/Ermilov-bold.ttf");
}

body {
  background-color: #151517;
  font-family: "Montserrat";
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 40px;
}

button {
  font-family: "Montserrat";
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.header.bg {
  background-color: #151517;
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  padding: 12px 0 8px 0;
}

.header {
  position: fixed;
  right: 0;
  left: 0;
  padding: 21px 0 50px 0;
  z-index: 999999;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__lang {
  margin: auto;
  position: relative;
  background-color: transparent;
}

.header__lang button {
  border: none;
}

.header__lang button:focus {
  outline: none;
}

.header__lang-open-list-btn {
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  margin: auto;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  color: #CBFB45;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  background-color: transparent;
}

.header__lang-open-list-btn:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.header__lang-open-list-btn:focus {
  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.header__lang-open-list-btn:active {
  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.header__lang-open-list-btn::after {
  content: "";
  background: url(../../images/general/arrow-down.svg);
  width: 12px;
  height: 7px;
  position: relative;
  top: 0;
  left: 8px;
}

.header__lang-open-list-btn.open::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
}

.header__lang-list {
  list-style: none;
  background-color: transparent;
  border: 0;
  border-radius: 3px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
  -o-transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
  top: 100%;
  left: 45%;
  -webkit-transform: translate(-50%, 30px);
  -ms-transform: translate(-50%, 30px);
  transform: translate(-50%, 30px);
  padding-left: 0px;
}

.header__lang-list--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.header__lang-btn {
  cursor: pointer;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: color 0.15s ease;
  -o-transition: color 0.15s ease;
  transition: color 0.15s ease;
  background-color: transparent;
  color: #CBFB45;
}

.header__lang-btn:hover {
  color: #ff6425;
}

.header-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: #CBFB45;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  z-index: 200;
}

.header-burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #151517;
  position: absolute;
  top: 20px;
  left: 11px;
  border-radius: 2px;
}

.header-burger span::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  background: #151517;
  position: absolute;
  bottom: 6px;
  left: 0;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  border-radius: 2px;
}

.header-burger span::before {
  content: " ";
  display: block;
  height: 2px;
  width: 18px;
  background: #151517;
  position: absolute;
  top: 6px;
  left: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
  border-radius: 2px;
}

.header-burger span.open:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  background: #151517;
}

.header-burger span.open:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -1px;
  background: #151517;
}

.header-burger .open {
  background: #CBFB45;
}

.header-overlay-menu {
  display: none;
  position: fixed;
  background: #151517;
  height: 100%;
  width: 100%;
  z-index: 100;
  right: -100%;
  top: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}

.header-overlay-menu nav {
  position: relative;
  font-size: 32px;
}

.header-overlay-menu nav ul {
  text-align: left;
  line-height: 36px;
}

.header-overlay-menu nav ul li {
  position: relative;
  color: #fff;
}

.header-overlay-menu nav ul li a {
  color: #fff;
}

.header-overlay-menu nav ul li a::after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  height: 3px;
  width: 0%;
  background: #fff;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.header .wpml-ls-legacy-list-horizontal > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu {
  display: none;
  width: 811px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 31px;
}

.menu-item {
  color: #fff;
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 600;
  text-transform: uppercase;
}

.bread-crumbs a {
  color: rgba(203, 251, 69, 0.5);
  font-size: 12px;
  line-height: 22px;
}

.bread-crumbs .separator {
  color: rgba(203, 251, 69, 0.5);
}

.bread-crumbs .last {
  color: #CBFB45;
  font-size: 12px;
  line-height: 22px;
}

.footer {
  margin: 10px 0 41px 0;
}

.footer__body-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  margin-top: 12px;
}

.footer__body-bottom span {
  color: #CBFB45;
  font-weight: bold;
}

.footer__link {
  padding-right: 112px;
}

.footer .social-link {
  padding-top: 53px;
  max-width: 127px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

.footer-contact__text {
  line-height: 35px;
}

.footer-contact__text p {
  color: #fff;
  font-size: 16px;
}

.footer-contact__text a {
  border-bottom: 1px solid #CBFB45;
  color: #CBFB45;
}

.footer-contact__button {
  background: transparent;
  border: 2px solid #CBFB45;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  padding: 10px 27px;
  margin-top: 25px;
  text-align: center;
  cursor: pointer;
}

.footer-content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-content-link__list {
  line-height: 35px;
}

.footer-content-link__list:first-child {
  padding-right: 217px;
}

.footer-content-link__list a {
  color: #fff;
  font-size: 16px;
}

.footer__logo-link img {
  width: 180px;
}

@media only screen and (min-width: 320px) {
  .container {
    padding: 0 20px;
  }

  .header__logo-link img {
    width: 126px;
  }

  .header-burger,
  .header-overlay-menu {
    display: inline-block;
  }

  .header-overlay-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-overlay-menu nav {
    font-size: 16px;
    padding: 87px 0 0 20px;
  }

  .header-overlay-menu nav ul li {
    font-size: 16px;
  }

  .header-overlay-menu.open {
    right: 0;
    top: 0;
    z-index: 99;
  }

  .menu-item {
    text-transform: unset;
    font-weight: 500;
  }

  body.open {
    overflow: hidden;
  }

  .header {
    padding: 17px 0 0px 0;
  }

  .header__logo {
    z-index: 100;
  }

  .header-burger {
    top: 16px;
    right: 20px;
  }

  .header .switch-lang {
    padding: 0 0 23px 20px;
  }

  .header .switch-lang.open {
    display: block;
    margin: 0 0 0 20px;
  }

  .header .switch-lang::before {
    content: "";
    background: url(../../images/general/lang-mob.svg) no-repeat;
    width: 20px;
    height: 20px;
    position: relative;
    top: 20px;
    left: 0;
    display: block;
  }

  .header .switch-lang ul {
    width: 122px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }

  .wpml-ls-legacy-list-horizontal a {
    padding: 0 0;
  }

  .wpcf7-not-valid-tip,
  #wpcf7-f51-o1-ve-tel-528,
  #wpcf7-f51-o1-ve-email-967 {
    color: #F42B2B;
    font-size: 8px;
    font-weight: bold;
    display: block;
    padding: 6px 0 0 7px;
  }

  .wpml-ls-native {
    color: #CBFB45;
  }

  .wpml-ls-display {
    color: #fff;
  }

  .wpml-ls-link span {
    font-size: 18px;
  }

  .wpml-ls-legacy-list-horizontal {
    padding: 0 0;
    margin-left: 32px;
  }

  .header.bg .header-burger {
    top: 12px;
  }

  .header-overlay-menu {
    z-index: 56;
  }

  .menu-header-menu-container {
    margin-top: 20px;
  }

  .popup-form input::-webkit-input-placeholder {
    color: #000;
  }

  .popup-form input::-moz-placeholder {
    color: #000;
  }

  .popup-form input:-ms-input-placeholder {
    color: #000;
  }

  .popup-form input::-ms-input-placeholder {
    color: #000;
  }

  .popup-form input::placeholder {
    color: #000;
  }

  .wpcf7-textarea::-webkit-input-placeholder {
    color: #000;
  }

  .wpcf7-textarea::-moz-placeholder {
    color: #000;
  }

  .wpcf7-textarea:-ms-input-placeholder {
    color: #000;
  }

  .wpcf7-textarea::-ms-input-placeholder {
    color: #000;
  }

  .wpcf7-textarea::placeholder {
    color: #000;
  }

  .wpcf7-response-output {
    display: none;
  }

  .popup-thanks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .popup-thanks h3 {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .popup-thanks p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 25px;
  }

  .popup-thanks .cross_closure {
    background: #151517;
    border-radius: 30px;
    color: #fff;
    display: block;
    padding: 14px 0;
    width: 100%;
    border: 0;
    font-size: 18px;
    cursor: pointer;
  }

  .popup-form .body_cross_closure {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .popup-form .body_cross_closure h3 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    max-width: 80%;
  }

  .footer {
    margin: 0 0 21px 0;
  }

  .footer__body-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer .social-link {
    padding-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4px 18px;
    width: 100%;
  }

  .footer .social-link a {
    width: 30px;
  }

  .footer__link {
    padding-right: 0;
    text-align: center;
  }

  .footer__logo-link {
    display: none;
  }

  .footer-content-link {
    display: none;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact__text {
    padding-top: 20px;
    text-align: center;
  }

  .footer-contact__text p {
    font-size: 18px;
  }

  .footer-contact__text a {
    display: inline-block;
    font-size: 18px;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .footer-contact__text a:first-child {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    border-bottom: unset;
    display: block;
  }

  .footer .footer-contact__text a:nth-child(2) {
    line-height: 20px;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .footer-contact__button {
    font-size: 14px;
    padding: 11px 84px;
    margin-top: 15px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .footer-contact__button:focus {
    background-color: #CBFB45;
    color: #151517;
  }

  .footer__body-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
  }

  .footer__body-bottom p {
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
    color: #fff;
  }

  .footer__body-bottom p a {
    color: #CBFB45;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .screen-reader-response {
    display: none;
  }

  .no-scroll {
    overflow: hidden;
  }

  .popup-form {
    position: relative;
    z-index: 1000000;
  }

  .popup-form.active,
  .popup-form.active .wrap_popup {
    right: 0;
  }

  .popup-form .wrap_popup {
    display: inline-block;
    background: #CBFB45;
    padding: 0 20px;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
  }

  .popup-form input {
    background: #CBFB45;
    padding: 14px 0 15px 24px;
    border: 2px solid #151517;
    border-radius: 30px;
    font-weight: bold;
    line-height: 17px;
    font-size: 14px;
    font-family: "Montserrat";
    width: 100%;
  }

  .popup-form input.wpcf7-not-valid {
    border: 2px solid #F42B2B;
  }

  .popup-form span.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
  }

  .popup-form textarea {
    width: 100%;
    height: 270px;
    padding: 16px 0 0 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #151517;
    border-radius: 30px;
    background: #CBFB45;
    resize: none;
    font-weight: bold;
    font-family: "Montserrat";
    font-size: 14px;
  }

  .popup-form input[type=submit] {
    background: #151517;
    border: 0;
    color: #fff;
    border-radius: 30px;
    font-family: "Montserrat";
    font-size: 18px;
    text-align: center;
    padding: 14px 0;
    width: 100%;
    line-height: 22px;
    margin-bottom: 56px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  .popup-form .body_cross_closure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0 25px 0;
  }

  .popup-form .body_cross_closure .cross_closure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #151517;
    cursor: pointer;
    font-weight: 500;
  }

  .popup-form .body_cross_closure .cross_closure::after {
    content: "";
    display: inline-block;
    background: url(../../images/general/cross-closure.svg) no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
  }
}

@media only screen and (min-width: 390px) {
  .popup-form .body_cross_closure {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .popup-form .body_cross_closure h3 {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .wpcf7-not-valid-tip,
  #wpcf7-f51-o1-ve-tel-528,
  #wpcf7-f51-o1-ve-email-967 {
    font-size: 10px;
    padding: 7px 0 0 26px;
  }

  .header {
    padding: 21px 0 0px 0;
  }

  .header__logo-link img {
    width: 180px;
  }

  .header-burger {
    top: 28px;
  }

  .header-overlay-menu nav {
    padding: 146px 0 0 40px;
  }

  .header-overlay-menu nav ul li {
    font-size: 20px;
    line-height: 44px;
  }

  .menu-header-menu-container {
    margin-top: 30px;
  }

  .header .switch-lang {
    padding: 0 0 34px 40px;
  }

  .footer {
    margin: 65px 0 41px 0;
  }

  .footer__logo-link {
    display: inline-block;
  }

  .footer .social-link {
    padding-bottom: 0;
  }

  .footer .social-link a {
    padding-right: 19px;
  }

  .footer__logo-link img {
    width: 180px;
  }

  .footer__body-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-contact__button {
    font-size: 16px;
    padding: 10px 26px 10px 25px;
    margin-top: 25px;
  }

  .footer__body-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }

  .footer__body-bottom {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    margin-top: 12px;
  }

  .footer-contact__text {
    text-align: right;
  }

  .footer-contact__text p {
    font-size: 16px;
  }

  .footer-contact__text a {
    font-size: 16px;
  }

  .container {
    padding: 0 40px;
  }

  .popup-form {
    position: fixed;
    width: 100%;
    top: 0;
    height: 100vh;
    right: -100%;
  }

  .popup-form.active {
    background: rgba(21, 21, 23, 0.5);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
  }

  .popup-form .wrap_popup {
    width: 50%;
  }
}

@media only screen and (min-width: 820px) {
  .header-overlay-menu nav ul li {
    font-size: 22px;
    line-height: 52px;
  }

  .header .switch-lang {
    padding: 0 0 40px 40px;
  }

  .menu-header-menu-container {
    margin-top: 40px;
  }

  .header-overlay-menu nav {
    padding: 156px 0 0 40px;
  }
}

@media only screen and (min-width: 1024px) {
  li.menu-item:hover a {
    color: #CBFB45;
    -webkit-text-decoration: underline #CBFB45;
    text-decoration: underline #CBFB45;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .footer__body-bottom p a:hover {
    color: #fff;
  }

  .footer .footer-contact__text a:first-child:hover {
    color: #CBFB45;
  }

  .footer .footer-contact__text a:nth-child(2):hover {
    color: #fff;
    border-bottom: 1px solid #fff;
  }

  .popup-form input[type=submit] {
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
    border: 2px solid #151517;
  }

  .popup-form input[type=submit]:hover {
    background-color: transparent;
    color: #151517;
  }

  .footer-content-link__list a:hover {
    color: #CBFB45;
    -webkit-text-decoration: underline #CBFB45;
    text-decoration: underline #CBFB45;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .footer .social-link a img:hover {
    opacity: 0.7;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .popup-form .body_cross_closure .cross_closure {
    background-color: rgb(203, 251, 69);
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .popup-form .body_cross_closure .cross_closure:hover {
    background-color: rgba(130, 159, 51, 0.6);
  }

  .bread-crumbs a,
  .bread-crumbs .last {
    font-size: 16px;
  }

  .popup-thanks .cross_closure {
    width: 60%;
    padding: 15px 0 16px 0;
  }

  .popup-thanks p {
    max-width: 90%;
  }

  .popup-form input[type=submit] {
    padding: 15px 0 16px 0;
    width: 60%;
  }

  .header-burger {
    display: none;
  }

  .header__logo-link img {
    width: 160px;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .header__logo-link img:hover {
    opacity: 0.7;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .header-overlay-menu {
    display: none;
  }

  .header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    width: 617px;
  }

  .header .menu-item {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 600;
    text-transform: uppercase;
  }

  .header .menu-item a {
    color: #fff;
  }

  .header .menu .current_page_item a {
    color: #CBFB45;
  }

  .header__lang {
    display: inline-block;
  }

  .header .switch-lang {
    position: relative;
    background: transparent;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    padding: 0 0;
    margin: 0 40px 0 31px;
  }

  .header .switch-lang::after {
    content: "";
    background: url(../../images/general/arrow-down.svg);
    width: 12px;
    height: 7px;
    position: relative;
    top: 0;
    left: 36px;
    display: block;
    cursor: pointer;
  }

  .header .switch-lang::before {
    display: none;
  }

  .header .switch-lang ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header .menu-header-menu-container,
  .header .wpml-ls-legacy-list-horizontal {
    margin: 0 0;
  }

  .header .switch-lang:hover li {
    position: relative;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .switch-lang .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    margin-bottom: 0;
  }

  .header .switch-lang .wpml-ls-legacy-list-horizontal {
    padding: 0;
    border: 0;
    position: absolute;
    top: -14px;
    left: 0;
    width: 60px;
  }

  .header .switch-lang:hover {
    top: 0;
    background: #151517;
    -webkit-box-shadow: -15px 4px 16px rgba(0, 0, 0, 0.2);
    box-shadow: -15px 4px 16px rgba(0, 0, 0, 0.2);
  }

  .header .switch-lang:hover {
    background: #151517;
    -webkit-box-shadow: -15px 4px 16px rgba(196, 186, 186, 0.2);
    box-shadow: -15px 4px 16px rgba(196, 186, 186, 0.2);
  }

  .header .switch-lang a {
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    position: relative;
  }

  .header .switch-lang a span {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    color: #F6F3F0;
    margin-left: 0;
  }

  .header .switch-lang a span {
    color: #CBFB45;
  }

  .header .switch-lang a .wpml-ls-display {
    display: block;
  }

  .header .switch-lang li {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -999;
    top: -999px;
  }

  .header .switch-lang .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header .switch-lang .wpml-ls-current-language {
    position: relative;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    top: inherit;
  }

  .header .switch-lang .wpml-ls-current-language span {
    opacity: 1;
  }

  .header .switch-lang a:hover span {
    opacity: 1;
  }

  .header .switch-lang a span:hover {
    color: #CBFB45;
    -webkit-text-decoration: underline #CBFB45;
    text-decoration: underline #CBFB45;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .popup-form .wrap_popup {
    width: 45%;
  }

  .footer-content-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .footer-content-link__list {
    line-height: 32px;
  }

  .footer-content-link__list:first-child {
    padding-right: 74px;
  }

  .footer-content-link__list a {
    font-size: 14px;
  }

  .footer .menu-item {
    text-transform: unset;
    font-size: 14px;
    font-weight: 500;
  }

  .footer .menu-header-menu-container .footer-content-link__list {
    padding-right: 0;
  }

  .footer .social-link {
    padding-top: 53px;
    max-width: 127px;
    grid-gap: 0 0;
  }

  .footer .social-link a {
    width: 30px;
    margin-right: 16px;
  }

  .footer .footer-contact__text a:first-child {
    font-size: 16px;
  }

  .footer .footer-contact__button {
    padding: 10px 27px;
  }

  .footer .footer-contact__button:hover {
    background-color: #CBFB45;
    color: #151517;
  }

  .footer__link {
    padding-right: 74px;
  }

  .footer__logo-link img {
    width: 160px;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }

  .footer__logo-link img:hover {
    opacity: 0.7;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }
}

@media only screen and (min-width: 1280px) {
  .footer-content-link__list:first-child {
    padding-right: 214px;
  }

  .popup-form .wrap_popup {
    padding: 0 40px;
  }

  .popup-form .wrap_popup {
    width: 40%;
  }

  .popup-form .body_cross_closure .cross_closure {
    width: 50px;
    height: 50px;
  }

  .popup-thanks h3 {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .popup-thanks p {
    font-size: 18px;
    line-height: 24px;
  }

  .popup-thanks .cross_closure {
    width: 54%;
    font-size: 20px;
  }

  .popup-form input[type=submit] {
    font-size: 20px;
  }

  .popup-form .body_cross_closure h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .header .menu {
    width: 811px;
  }

  .header .menu-item {
    font-size: 18px;
  }

  .header__logo-link img {
    width: 198px;
  }

  .footer__logo-link img {
    width: 180px;
  }

  .footer-content-link__list {
    line-height: 35px;
  }

  .footer-content-link__list:first-child {
    padding-right: 217px;
  }

  .footer-content-link__list a {
    font-size: 16px;
  }

  .footer__link {
    padding-right: 112px;
  }

  .footer__body-bottom {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1440px) {
  .popup-form .wrap_popup {
    width: 43%;
  }

  .popup-form .body_cross_closure h3 {
    font-size: 24px;
  }

  .popup-form .body_cross_closure .cross_closure {
    width: 63px;
    height: 63px;
  }

  .popup-form span.wpcf7-form-control-wrap {
    margin-bottom: 30px;
  }

  .wpcf7-not-valid-tip,
  #wpcf7-f51-o1-ve-tel-528,
  #wpcf7-f51-o1-ve-email-967 {
    font-size: 12px;
    padding: 7px 0 0 29px;
  }

  .popup-thanks p {
    max-width: 73%;
  }

  .popup-thanks .cross_closure {
    width: 280px;
    line-height: 29px;
    font-size: 24px;
  }

  .popup-form textarea {
    height: 250px;
    font-size: 18px;
    padding: 19px 0 0 29px;
  }

  .popup-form .body_cross_closure .cross_closure::after {
    width: 15px;
    height: 15px;
    background-size: cover;
  }

  .popup-form input[type=submit] {
    font-size: 24px;
    line-height: 30px;
    width: 347px;
    padding: 14px 0 16px 0;
  }

  .popup-form .body_cross_closure {
    padding: 36px 0 35px 0;
  }

  .popup-form input {
    padding: 18px 0 17px 29px;
    line-height: 21px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1680px) {
  .popup-thanks p {
    max-width: 80%;
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 35px;
  }

  .popup-form input {
    padding: 19px 0 19px 29px;
  }

  .popup-thanks h3 {
    font-size: 40px;
    padding-bottom: 20px;
  }

  .popup-thanks .cross_closure {
    border-radius: 40px;
    width: 50%;
    line-height: 32px;
    font-size: 24px;
  }

  .popup-form input[type=submit] {
    line-height: 34px;
    border-radius: 40px;
  }

  .container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 100px;
  }

  .header {
    padding: 28px 0 0px 0;
  }

  .header__logo-link img {
    width: 250px;
  }

  .header .menu {
    width: 901px;
  }

  .header .menu-item {
    font-size: 20px;
  }

  .header .switch-lang {
    margin: 0 40px 0 65px;
  }

  .header .switch-lang .wpml-ls-legacy-list-horizontal {
    top: -16px;
  }

  .header .switch-lang::after {
    top: -1px;
  }

  .header .switch-lang a span {
    font-size: 20px;
    line-height: 38px;
  }

  .footer__logo-link img {
    width: 262px;
  }

  .footer-content-link__list {
    line-height: 44px;
  }

  .footer-content-link__list:first-child {
    padding-right: 195px;
  }

  .footer-content-link__list a {
    font-size: 20px;
  }

  .footer__body-bottom {
    font-size: 18px;
  }

  .footer-contact__button {
    padding: 14px 33px 14px 32px;
    font-size: 18px;
  }

  .footer-contact__text {
    line-height: 40px;
  }

  .footer-contact__text a,
  .footer-contact__text p {
    font-size: 20px;
  }

  .footer .footer-contact__text a:first-child {
    font-size: 20px;
  }

  .footer .social-link {
    padding-top: 55px;
    max-width: 180px;
  }

  .footer .social-link a {
    padding-right: 26px;
  }

  .footer .social-link a img {
    width: 42px;
  }
}

@media only screen and (min-width: 1920px) {
  .header {
    padding: 38px 0 0 0;
  }

  .container {
    max-width: 1920px;
  }

  .footer {
    margin: 80px 0 41px 0;
  }

  .footer-content-link__list:first-child {
    padding-right: 275px;
  }

  .popup-form .body_cross_closure .cross_closure {
    width: 82px;
    height: 82px;
  }

  .popup-form .body_cross_closure h3 {
    font-size: 30px;
  }

  .popup-form .body_cross_closure .cross_closure::after {
    width: 18px;
    height: 18px;
  }

  .popup-form textarea {
    height: 260px;
    font-size: 20px;
    border-radius: 40px;
    padding: 22px 0 0 34px;
  }

  .popup-thanks p {
    max-width: 85%;
    font-size: 26px;
    line-height: 32px;
  }

  .popup-thanks .cross_closure {
    width: 48%;
    line-height: 36px;
    font-size: 26px;
  }

  .popup-form input {
    padding: 24px 0 24px 34px;
    font-size: 20px;
    border-radius: 40px;
  }

  .popup-form input[type=submit] {
    line-height: 40px;
    font-size: 26px;
    width: 368px;
    padding: 15px 0 16px 0;
  }

  .popup-form .wrap_popup {
    padding: 0 80px;
  }
}