@media screen and (max-width: 1360px) {
  header .js-burger-menu {
    right: -80vw;
    display: none;
    animation: mob_menu_slide_back 0.3s ease 1;
  }

  @keyframes mob_menu_slide_back {
    from {
      right: 0;
      display: flex;
    }

    to {
      right: -80vw;
      display: none;
    }
  }

  header .header__logo {
    opacity: 1;
    animation: mob_logo_hidden_show 0.3s ease 1;
  }

  @keyframes mob_logo_hidden_show {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

@media screen and (min-width: 1360px) {
  header {
    animation: header_transparent 0.4s ease 1;
  }

  @keyframes header_transparent {
    from {
      background-color: var(--main-color);
    }

    to {
      background-color: transparent;
    }
  }

  header .header__logo .white_logo {
    display: none;
  }

  header .header__logo .blue_logo {
    display: block;
  }
}

.scrolled {
  transition: all 0.3 ease;
  background-color: var(--main-color);
  animation: header_background 0.4s ease 1;
}

.scrolled .header__logo .white_logo {
  display: block;
}

.scrolled .header__logo .blue_logo {
  display: none;
}

@media screen and (min-width: 1360px) {
  .scrolled .header__right__menu .menu_inner li a {
    color: #fff;
  }

  .scrolled .header__right__menu .menu_inner li a:hover {
    text-shadow: 0 0 0.55px #fff, 0 0 0.55px #fff;
  }

  .scrolled .header__right__menu .menu_inner li .dropdown_down::after {
    content: url("/images/icons/dropdown_down.svg");
  }
}

@media screen and (min-width: 1360px) {

  .scrolled .header__right__phone .phone_text,
  .scrolled .header__right__phone .phone_url {
    color: #fff;
  }
}

.scrolled .header__right__localization {
  cursor: pointer;
  background-color: var(--main-color);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  bottom: -40px;
  right: 0;
}

.scrolled .header__right__localization ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  z-index: 2;
  overflow: hidden;
  padding-left: 8px;
  transition: all 0.4s;
}

.scrolled .header__right__localization ul li {
  flex-grow: 1;
  font-family: 'Tilda Sans', sans-serif;
  font-size: 12px;
  color: white;
  min-width: 17px;
  max-width: 17px;
  padding: 7px;
  text-align: center;
}

.scrolled .header__right__localization ul .active {
  padding: 7px;
  background-color: white;
  border-radius: 20px;
  color: var(--main-color);
}

@keyframes header_background {
  from {
    background-color: transparent;
  }

  to {
    background-color: var(--main-color);
  }
}

.hidden {
  width: 0px !important;
  padding: 0px 0px !important;
  right: 120% !important;
  transition: all 0.2s;
}

.mob-menu-active {
  transition: all 0.3 ease;
  background-color: transparent;
  animation: mob_header_background 0.3s ease 1;
}

.mob-menu-active .header__logo {
  opacity: 0;
  pointer-events: none;
  animation: mob_logo_hidden 0.3s ease 1;
}

@keyframes mob_logo_hidden {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.mob-menu-active .js-burger-menu {
  right: 0;
  display: flex;
  animation: mob_menu_slide_forward 0.3s ease 1;
}

@keyframes mob_menu_slide_forward {
  from {
    right: -80vw;
    display: none;
  }

  to {
    right: 0;
    display: flex;
  }
}

@keyframes mob_header_background {
  to {
    background-color: transparent;
  }
}

.header__right__localization {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  bottom: -30px;
  right: 15px;
}

.hidden-none {
  display: none;
}

.active-none {
  display: none;
}

.scrolled .globe {
  z-index: 1;
  background-color: var(--main-color);
  padding: 9px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  position: relative;
}

.language-item {
  color: #fff;
}

.language-item.active {
  color: #3a2b98;
}

.language-link {
  text-decoration: none;
  color: inherit;
}

.select {
  display: none;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1360px) {
  .select {
    display: flex;
    margin: 0 auto;
    position: relative;
    margin-bottom: 44px;
    font-size: 16px;
  }
}

.select__header {
  cursor: pointer;
  display: flex;
  color: white;
  flex-direction: column;
}

.select__current {
  text-decoration: underline;
}

.select__body {
  border-radius: 7px;
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  top: 50px;
  overflow: hidden;
}

.select__item {
  display: block;
  cursor: pointer;
  font-family: var(--main-font);
  padding: 16px;
  padding-bottom: 0;
  color: #525252;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  border: none;
}

.select__item.active {
  color: var(--main-color);
  font-weight: 700;
}

.select__item+.active {
  color: var(--main-color);
  font-weight: 700;
}

.select__item:last-child {
  padding-bottom: 30px;
}

.select__item:hover {
  background-color: inherit;
  color: var(--main-color);
}

.select__item:focus,
.select__item:active {
  outline: none;
  background-color: inherit;
  border-radius: 7px;
}

.select.is-active .select__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_block {
  display: flex;
  flex-direction: column;
}

.warning {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background-color: var(--main-color);
  color: #fff;
}

.warning--active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.warning__text {
  font-size: 18px;
}

.warning__read {
  display: block;
  margin-left: 15px;
}

.warning__apply {
  background-color: #fff;
  color: var(--main-color);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  display: inline-block;
  width: auto;
}

@media screen and (max-width: 1360px) {
  .warning__text {
    font-size: 16px;
  }

  .warning__apply {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .warning--active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .warning__text {
    font-size: 14px;
  }

  .warning__apply {
    width: 100%;
  }
}

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