@charset "UTF-8";
/*---------------------------------------------------------------------------------------*/
/*------------ Header style -------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------*/
:root {
  --dark-color: #141414;
  --grey-color: #A9B2BE;
  --dark-grey-color: #404C5C;
  --white-color: #EEF3F8;
  --green-color: #58B000;
}

.mobile-menu {
  display: none;
}

.header {
  background: #ffffff;
  padding: 10px 0;
  z-index: 10;
  position: fixed;
  width: 100%;
}

.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-width: 106px;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.header__menu .menu__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  margin-right: 30px;
}
.header__menu .menu__link {
  margin: 0;
}
.header__menu .menu__link a {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
}
.header__menu .menu__link a:hover {
  color: var(--white-color);
  background: var(--green-color);
  transition: all 0.3s ease-in-out;
}
.header__menu .menu__link a.active {
  color: var(--white-color);
  background: var(--green-color);
}

/*-----------------------*/
.submenu-toggle {
  display: none;
  cursor: pointer;
  margin-left: 15px;
  font-size: 3em;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 6px;
}

/* Скрываем подменю по умолчанию */
.menu__sub-list {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 10px;
  border-radius: 15px;
  z-index: 100;
}

/* Показываем подменю при наведении на десктопе */
.has-submenu:hover .menu__sub-list {
  display: block;
}

.has-submenu a {
  position: relative;
}
.has-submenu a .desk-arrow svg {
  margin-left: 5px;
  width: 14px;
  height: 10px;
  transition: all 0.3s ease 0s;
}
.has-submenu a:hover svg {
  transform: rotate(180deg);
}
.has-submenu a:hover svg path {
  stroke: var(--white-color);
}

/* Для мобильных и планшетов — стрелка кликабельна */
@media (max-width: 960.98px) {
  .menu__sub-list {
    margin-top: 10px;
  }
  .submenu-toggle {
    display: inline-block;
    cursor: pointer;
    margin-left: 5px;
    width: 24px;
    height: 24px;
  }
  .submenu-toggle img {
    position: absolute;
    left: 3px;
    top: 5px;
    width: 18px;
    height: 14px;
  }
  .has-submenu a .desk-arrow {
    display: none;
  }
  .menu__link.active > .menu__sub-list {
    display: block;
    position: relative;
  }
  .menu__link {
    position: relative;
  }
  .menu__sub-list {
    position: static;
  }
}
/*-----------------------*/
.wd-nav {
  margin: 0 44px;
}

.lang-item {
  display: none;
}

.lang-item a {
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

.lang-item a span {
  display: flex;
  align-items: center;
}

.lang-item a span img {
  margin-right: 4px;
  width: 22px;
  height: 14px;
}

.lang-item-current {
  display: block;
}

/*----- search -------------*/
.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 42px;
  padding: 15px;
  border-radius: 42px;
}

.searsh_popup {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-grey-color);
}

.searsh_popup svg {
  margin-left: 4px;
}

.searsh_popup:hover {
  color: var(--green-color);
}

.searsh_popup:hover svg path {
  fill: var(--green-color);
}

/*----- search modal---------------*/
.form__search {
  max-width: 460px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.input__search {
  display: flex;
  align-items: center;
  width: 100%;
}

.input__search input {
  border: none;
  border-bottom: 1px solid var(--grey-color);
  height: 44px;
  width: 100%;
  background: none;
}

.input__search input:hover {
  border-bottom: 1px solid var(--green-color);
}

.input__search input:hover .search__button .searsh_popup svg path {
  fill: var(--green-color);
}

.input__search input[type=text] {
  padding: 15px 0;
  font-size: 16px;
}

.input__search input::-moz-placeholder {
  color: var(--grey-color);
}

.input__search input::placeholder {
  color: var(--grey-color);
}

.search__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search__button .searsh_popup {
  margin-left: -140px;
  cursor: pointer;
}

.item_search-list {
  margin-top: 25px;
}

.views-summary {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.views-summary li {
  padding: 12px 14px;
  font-size: 14px;
  background: var(--green-color);
  border-radius: 30px;
  margin: 5px;
}

.views-summary li a {
  color: #fff;
}

.social__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.social__list li a {
  font-size: 28px;
  color: var(--dark-grey-color);
  border: 1px solid var(--dark-grey-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__list li a:hover {
  color: var(--green-color);
  border-color: var(--green-color);
}

/*----- Feedback modal ---------------*/
.feedback-container {
  width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.feedback-container .feedback__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 29px;
}
.feedback-container .feedback_close {
  font-size: 30px;
  position: absolute;
  right: -30px;
  top: 30px;
  z-index: 10;
}
.feedback-container .form__feedback {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: #fff;
  border-radius: 20px;
  width: 100%;
}
.feedback-container .input__feedback {
  display: flex;
  flex-direction: column;
}
.feedback-container .input__feedback input {
  background: #ECF0F3;
  border: none;
  padding: 17px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-family: "TT Travels";
  width: 100%;
}
.feedback-container .input__feedback input:focus {
  box-shadow: 1px 0 5px 5px rgba(88, 176, 0, 0.1921568627);
}
.feedback-container .policy__check {
  padding: 18px 0;
}
.feedback-container .policy__label {
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  color: #5A5A5A;
}
.feedback-container .contact__btn {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--green-color);
  padding: 17px;
  border-radius: 30px;
  width: 100%;
}
.feedback-container .social__title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 24px;
  font-weight: 500;
}
.feedback-container .list_soc-icon {
  display: flex;
  justify-content: space-around;
}
.feedback-container .list_soc-icon li {
  text-align: center;
}
.feedback-container .list_soc-icon li a img {
  max-width: 48px;
}
.feedback-container .list_soc-icon li span {
  font-size: 14px;
  font-weight: 300;
}

/*=========================================================================================*/
/*---------------------------- Media queries ----------------------------------------------*/
/*=========================================================================================*/
@media screen and (max-width: 960.98px) {
  .menu__icon {
    display: block;
    z-index: 5;
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 8px;
    border-radius: 50%;
    background: var(--green-color);
  }
  .menu__icon span {
    position: absolute;
    left: 11px;
    top: 13px;
    height: 2px;
    width: 20px;
    background-color: #fff;
    transition: all 0.3s ease 0s;
    border-radius: 2px;
  }
  .menu__icon::before, .menu__icon::after {
    position: absolute;
    left: 11px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease 0s;
    border-radius: 2px;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 20px;
    width: 20px;
  }
  .menu__icon::after {
    bottom: 12px;
    width: 20px;
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    left: 11px;
    width: 22px;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    top: 50%;
    left: 10px;
    width: 22px;
    transform: rotate(45deg) translate(0px, -50%);
  }
  .header {
    height: 60px;
  }
  .header__right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    right: 0;
    width: 70%;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.3s ease 0s;
    background: var(--white-color);
    overflow-y: auto;
    height: 100vh;
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    padding: 20px 20px 80px;
    width: 100%;
  }
  .header__menu .menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
  .header__menu .menu__list .menu__link {
    font-weight: 700;
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
  }
  .menu__sub-list {
    width: 100%;
  }
  .header__menu .menu__list .menu__link a {
    color: #000;
    font-size: 20px;
    display: flex;
    justify-content: flex-start;
  }
  .header__menu .wd-nav {
    margin-bottom: 32px;
  }
  .header__menu form {
    margin-right: 0;
  }
  ._active {
    visibility: visible;
    transform: translateX(0);
  }
  .submenu-toggle {
    display: block;
  }
  .menu__link .menu__sub-list {
    display: none;
  }
  .menu__link.active .menu__sub-list {
    display: block;
    z-index: 10;
  }
  .header__social {
    margin-top: 40px;
    margin-left: 15px;
  }
  .header__button {
    margin-top: 30px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 479.98px) {
  .feedback-container {
    width: 360px;
  }
  .feedback-container .feedback__title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .feedback-container .social__title {
    margin: 35px 0 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 390.98px) {
  .header__right {
    width: 75%;
  }
}/*# sourceMappingURL=header-style.css.map */