:root {
  --main-font: 'Montserrat', 'Arial', sans-serif;
  --second-font: 'Oswald', 'Arial', sans-serif;
  --accent-color: #000000;
  --accent-color-opacity: rgba(0, 0, 0, 0.6);
  --main-color: #ffffff;
  --red: #ff0f27;
  --violet: #8049e4;
  --lightgreen: #c8f100;
  --blue: #00ccff;
  --orange: #ff5d1c;
  --lilac: #ff19f9;
  --lightviolet: #8d86ff;
  --teal: #54ffcb;
  --teal2: #18ffdf;
  --gray: #333333;
  --gray2: #c4c4c4;
  --gray3: #999999;
  --trans: 0.225s ease-in-out;
  --trans-lg: 0.5s ease-in;
  --trans-md: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  --main-color-opacified: rgba(255, 255, 255, 0.6);
  color-scheme: light dark;
}

.dark-theme {
  --accent-color: #ffffff;
  --main-color: #000000;
  --main-color-opacified: rgba(0, 0, 0, 0.6);
  --accent-color-opacity: rgba(255, 255, 255, 0.8);
  --gray: #949494;
}

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

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

@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: 'Montserrat';
  font-display: swap;
  src: url('./fonts/Montserrat-Bold.woff2') format('woff2');
}

@font-face {
  font-style: normal;
  font-weight: 800;
  font-family: 'Montserrat';
  font-display: swap;
  src: url('./fonts/Montserrat-ExtraBold.woff2') format('woff2');
}

@font-face {
  font-style: normal;
  font-weight: 900;
  font-family: 'Montserrat';
  font-display: swap;
  src: url('./fonts/Montserrat-Black.woff2') format('woff2');
}

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: 'Oswald';
  font-display: swap;
  src: url('./fonts/Oswald-Medium.woff2') format('woff2');
}

* {
  margin: 0;
  padding: 0;
  outline: 0 none;
  border: none;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  display: block;
}

.tabs-content {
  display: grid;
  grid-template-columns: 1fr 300px;
}

@media (max-width: 767px) {
  .custom-scrollbar::-webkit-scrollbar {
    width: 0;
    position: absolute;
    display: none;
  }
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: var(--main-color);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul li {
  list-style: none outside none;
}

.section {
  margin-bottom: 50px;
}

.visually-hidden {
  position: absolute !important;
  width: 0px !important;
  height: 0px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  font: normal 400 16px/1.2 var(--main-font);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--accent-color);
  transition: color var(--trans), background-color var(--trans);
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--main-font);
  background-color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a,
button,
p,
h1,
h2,
h3,
h4,
b,
strong,
i,
em,
small,
address,
span {
  transition: color var(--trans), background-color var(--trans);
}

main {
  position: relative;
  flex: 1 0 auto;
  margin-top: 0px;
}

@media (max-width: 767px) {
  main {
    margin: 0;
  }
}

button {
  background: none;
  padding: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.wrapper {
  margin: 0 auto;
  width: 1280px;
  padding-left: 45px;
  padding-right: 45px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .wrapper {
    width: 100%;
    max-width: 1290px;
    min-width: 768px;
    padding-left: 25px;
    padding-right: 25px;
  }
  main {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 100%;
    max-width: 768px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .slide-number {
    bottom: 76px !important;
  }

  .slide-bottom-links {
    display: none !important;
  }
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

.chevron {
  transition: d var(--trans);
}

.content a {
  text-decoration: underline;
}

.content a:hover {
  color: var(--violet);
}

.content a:focus-visible {
  color: var(--violet);
  outline: 2px solid var(--violet);
}

.content p:not(:last-of-type) {
  margin-bottom: 10px;
}

.block {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .block {
    margin-bottom: 35px;
  }
}

@media (min-width: 1280px) {
  .block {
    margin-bottom: 70px;
  }
}

.title {
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
}

.title--h2 {
  position: relative;
  font-size: 35px;
  line-height: 43px;
  border-bottom: 1px solid;
  border-color: var(--accent-color);
  /*transition: border-color var(--trans);*/
  padding-bottom: 30px;
  color: var(--accent-color);
  margin-bottom: 50px;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto 20px auto;
}

/*.title--h2::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--accent-color);
    transition: transform 1.5s ease-in-out, opacity 1.2s ease-in-out, background-color var(--trans);
    opacity: 0;
}*/

.title--h2.active::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 1024px) {
  .news-subtitle {
    margin-top: 20px;
  }
  .tabs-content {
    display: block;
  }
  #player-zharamag .logo {
    margin-right: 0px !important;
  }
  .inner.cover {
    min-width: 180px !important;
  }

  .small-pl .button {
    padding: 10px;
    text-wrap: nowrap;
  }
}

.header-banner button {
  display: none;
}

@media (max-width: 890px) {
  .jp-volume-controls {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .title--h2 {
    margin-bottom: 35px;
  }
  .title--h2::after {
    bottom: 5px;
  }
}

@media (max-width: 767px) {
  .header-banner {
    padding: 0 !important;
    border-top: 1px solid var(--accent-color);
  }

  .header-banner button {
    display: grid;
    place-items: center;
    border-radius: 0;
    background-color: var(--accent-color);
    transition: background-color var(--trans), color var(--trans);
    width: 35px;
    height: 35px;
    right: 0;
    top: 0;
  }

  .title--h2 {
    margin-bottom: 20px;
  }
  .title--h2::after {
    bottom: 5px;
  }
  .banner_desktop {
    display: none;
  }
  .header-banner .header-banner__links {
    position: absolute;
    top: auto;
    transform: none;
    right: 15px;
    left: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    bottom: 0;
    justify-content: center;
    gap: 0;
    padding: 2%;
  }
  .header-banner .header-banner__links a {
    width: 50%;
  }

  #player {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .banner_mobile {
    display: none;
  }
}

.title--h2 span {
  position: relative;
}

.title--h2 span::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background-color: var(--accent-color);
  left: 0;
  position: absolute;
  bottom: -14px;
}

.button {
  border: 1px solid;
  border-color: var(--accent-color);
  transition: color var(--trans), background-color var(--trans), border-color var(--trans);
  font-family: var(--second-font);
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 60px;
  display: inline-grid;
  place-items: center;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .button {
    height: 50px;
  }
}

@media (max-width: 767px) {
  .button {
    height: 50px;
  }
  .title--h2 span {
    width: 100%;
    display: block;
  }
}

.button--arrow {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button:hover {
  background-color: #fbfbfb00;
  color: #000000;
  border-color: black;
}

.button:focus-visible {
  outline: 0;
  background-color: var(--accent-color);
  color: var(--main-color);
  border-color: transparent;
}

.button svg {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-lock-ios {
  position: fixed;
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

.header {
  font-family: var(--main-font);
  top: 0;
  z-index: 101;
  background-color: var(--main-color);
  transition: background-color var(--trans);
}

.header-banner.static + header {
  position: sticky;
}

.header * {
  font-family: inherit;
}

.header__wrapper {
  display: flex;
  align-self: center;
  padding: 25px 45px;
  background-color: var(--main-color);
  transition: background-color var(--trans);
  padding-bottom: 0px;
}

@media (max-width: 767px) {
  .header-wrapper {
    display: flex;
    flex-direction: column;
  }

  .header {
    position: sticky;
    margin-bottom: 10px;
    /*order: 1;*/
  }
  .header__wrapper {
    display: flex;
    align-self: center;
    background-color: var(--main-color);
    transition: background-color var(--trans), border-color var(--trans);
    border-bottom: 1px solid var(--accent-color);
    padding: 5px 10px !important;
    align-items: center;
  }

  .header-banner {
    /*order: 2;*/
    margin-bottom: 10px;
  }
}

.header__logo {
  display: block;
  margin: 0;
  color: var(--accent-color);
  border-top: 1px solid;
  border-left: 1px solid;
  border-bottom: 1px solid;
  padding: 0 15px;
}

.header__logo:hover {
  color: var(--accent-color);
}

.header__logo.discolored path {
  fill: var(--accent-color);
}

@media (max-width: 767px) {
  .header__logo {
    width: 90px;
    height: 40px;
    margin: 0;
  }
}

.header__logo svg {
  width: 100%;
  height: 100%;
}

.header__logo .main {
  transition: color var(--trans);
  color: var(--main-color);
}

.header__logo .accent {
  transition: color var(--trans);
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav ul {
  display: flex;
}

.header__nav > ul {
  border-bottom: 1px solid;
  border-color: var(--accent-color);
  transition: border-color var(--trans);
}

.header__panel {
  position: relative;
  display: flex;
  border: 1px solid;
  border-color: var(--accent-color);
  transition: border-color var(--trans);
  flex-grow: 1;
  height: 100px;
}

@media (max-width: 767px) {
  .header__panel {
    border: 0;
    margin-left: auto;
    flex-grow: unset;
    margin-right: 25px;
    height: unset;
  }
}

.header__panel::after {
  content: '';
  position: absolute;
  top: calc(50% + 1px);
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  transition: background-color var(--trans);
}

@media (max-width: 767px) {
  .header__panel::after {
    display: none;
  }
}

.header__nav-section {
  overflow: hidden;
  height: 50px;
  width: 110px;
  border-right: 1px solid;
  border-color: var(--accent-color);
  transition: border-color var(--trans), background-color var(--trans);
}

.header__nav-section > a {
  position: relative;
}

.header__nav-section > a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background-color: var(--accent-color);
  transition: transform var(--trans-md);
  z-index: 1;
}

.header__nav-section > a span {
  position: relative;
  transition: color 0.5s ease-in-out;
  z-index: 2;
}

.header__nav-section > a:hover span {
  color: var(--main-color);
}

.header__nav-section > a:hover::after {
  transform: translateY(0);
}

.header__nav-section.active {
  background-color: var(--accent-color);
  color: var(--main-color);
}

.header__nav-section.active ul {
  display: flex;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.header__nav-section ul {
  display: none;
}

.header__nav-section > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: 900;
  font-size: 20px;
  line-height: 2;
  leading-trim: both;
  text-edge: cap;
  text-transform: uppercase;
  color: inherit;
  margin: 0;
  transition: color var(--trans);
}

.header__nav-section--media > ul li a:hover,
.header__nav-section--media > ul a.active {
  color: #42bbff;
}

.header__nav-section--tv > ul a:hover,
.header__nav-section--tv > ul a.active {
  color: #f67b0b;
}

.header__nav-section--fm > ul a:hover,
.header__nav-section--fm > ul a.active {
  color: #6e00fc;
}

.header__nav-section--mag > ul li:nth-of-type(1) a:focus-visible,
.header__nav-section--mag > ul li:nth-of-type(1) a.active {
  color: #42bbff;
}

.black-dot {
  display: none !important;
}

.header-slider {
  /* margin-bottom: 50px; */
}

.koka-container {
  overflow: hidden;
}

.header__subnav li {
  color: var(--accent-color);
}

.header__subnav a.active::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header__subnav li a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 15px 20px;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  text-transform: lowercase;
  transition: color var(--trans);
  color: var(--accent-color);
  margin: 0;
}

@media (min-width: 768px) {
  .header__subnav li a {
    padding: 15px;
  }
}

.header__subnav li a:hover::after,
.header__subnav li a.active::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header__subnav li a:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header__subnav li a::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-color: inherit;
  border-bottom: 2px solid;
  transition: -webkit-transform var(--trans);
  transition: transform var(--trans);
  transition: transform var(--trans), -webkit-transform var(--trans);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.header__tools {
  margin-left: auto;
  display: flex;
  height: 50%;
  margin-right: 40px;
  align-items: center;
}

@media (max-width: 767px) {
  .header__tools {
    margin: 0;
    gap: 15px;
  }
}

.header__search {
  display: grid;
  color: var(--accent-color);
  transition: color var(--trans);
  height: 100%;
  width: 50px;
  place-items: center;
}

.header__search:hover {
  color: var(--accent-color-opacity);
}

.header__search:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: -5px;
}

.header__menu-button {
  width: 70px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  /*  border: 1px solid; */
  border-color: var(--accent-color);
  transition: border-color var(--trans), color var(--trans), background-color var(--trans);
  border-left: 0;
  height: 100px;
  position: relative;
  z-index: 100;
}

.header__menu-button svg {
  outline: 1px solid;
  outline-color: transparent;
  outline-offset: 12px;
}

.header__menu-button rect {
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  transition: opacity var(--trans), -webkit-transform var(--trans);
  transition: transform var(--trans), opacity var(--trans);
  transition: transform var(--trans), opacity var(--trans), -webkit-transform var(--trans);
}

.header__menu-button.active .top {
  -webkit-transform: translateY(30.75%) translateX(-16.9%) rotate(45deg);
  transform: translateY(30.75%) translateX(-16.9%) rotate(45deg);
}

.header__menu-button.active .middle {
  opacity: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header__menu-button.active .bottom {
  -webkit-transform: translateY(27.75%) translateX(16.9%) rotate(135deg);
  transform: translateY(27.75%) translateX(16.9%) rotate(135deg);
}

.header__menu-button.active {
  color: var(--main-color);
  border: 0;
}

.header__menu-button.active svg {
  outline-color: var(--main-color);
  border-radius: 50%;
}

.header__menu-button:hover {
  background-color: var(--accent-color);
  color: var(--main-color);
}

.header__menu-button:focus {
  background-color: var(--accent-color);
  color: var(--main-color);
}

@media (max-width: 767px) {
  .header__menu-button {
    height: 35px;
    width: 35px;
  }
}

.header__switch-theme {
  position: relative;
  background-color: var(--accent-color);
  width: 43px;
  padding: 3px;
  height: 22px;
  border-radius: 20px;
  transition: background-color var(--trans);
}

.header__switch-theme:hover {
  background-color: var(--accent-color-opacity);
}

.header__switch-theme:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.header__switch-theme span {
  pointer-events: none;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--main-color);
  transition: background-color var(--trans-md), -webkit-transform var(--trans-md);
  transition: transform var(--trans-md), background-color var(--trans-md);
  transition: transform var(--trans-md), background-color var(--trans-md),
    -webkit-transform var(--trans-md);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__switch-theme svg {
  transition: color var(--trans-md), -webkit-transform var(--trans-md);
  transition: transform var(--trans-md), color var(--trans-md);
  transition: transform var(--trans-md), color var(--trans-md),
    -webkit-transform var(--trans-md);
  -webkit-transform: rotate(320deg);
  transform: rotate(320deg);
  color: var(--accent-color);
}

.header__switch-theme path {
  transition: d var(--trans-md);
}

.header__switch-theme.active svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header__switch-theme.active path {
  d: path(
    'M12 6C12 9.31368 9.31368 12 6 12C2.68629 12 0 9.31368 0 6C0 2.68629 2.68629 0 6 0C9.31368 0 12 2.68629 12 6Z'
  );
}

.header__switch-theme.active span {
  -webkit-transform: translateX(20px) translateY(-50%);
  transform: translateX(20px) translateY(-50%);
}

.header ul,
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  position: fixed;
  width: 100%;
  z-index: 3000;
  height: 100vh;
  overflow: auto;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: -webkit-transform var(--trans-lg);
  transition: transform var(--trans-lg);
  transition: transform var(--trans-lg), -webkit-transform var(--trans-lg);
  background-color: var(--accent-color);
  color: var(--main-color);
  font-family: var(--main-font);
}

.menu::-webkit-scrollbar {
  display: none;
  width: 0;
}

.menu.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.menu * {
  font-family: inherit;
}

.menu .menu__wrapper {
  padding: 0 45px;
  margin-top: 130px;
  margin-bottom: 50px;
}

.menu__section-name {
  margin: 0;
  display: block;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--main-color);
  padding: 30px 0;
}

@media (min-width: 768px) {
  .menu__section-name {
    font-size: 40px;
  }
}

.menu__item--mag > ul {
  display: flex;
}

.menu__close {
  position: absolute;
  top: 90px;
  right: 100px;
  transition: transform var(--trans), color var(--trans);
  color: var(--main-color);
}

.menu__close:hover {
  transform: scale(1.1);
}

.menu__close:focus-visible {
  transform: scale(1.1);
}

.menu__item--mag > ul > li {
  width: 16%;
}

.menu__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.menu__download {
  display: none;
}

.submenu__item__main,
.menu__item__main {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray);
}

.submenu__item__main {
  display: flex;
  justify-content: space-between;
}

.submenu__open .chevron {
  transition: d var(--trans), transform var(--trans);
  transform-origin: center;
}

.submenu__open.opened .chevron {
  transform: rotate(180deg);
}

@supports (d: path('M 1 7, L 5 3, L 9 7 ')) {
  .submenu__open.opened .chevron {
    d: path('M 1 7, L 5 3, L 9 7 ');
    transform: none;
  }
}

@media (min-width: 768px) {
  .menu__nav {
    gap: 30px;
  }
  .submenu__open {
    display: none;
  }
}

.menu__item--mag {
  grid-column: 1/-1;
}

/*.menu__item--mag>ul>li>a {*/
/*    color: var(--main-color);*/
/*}*/

.menu__item--mag > ul {
  flex-direction: column;
  flex-wrap: wrap;
  height: 200px;
}

.dark-theme .menu__download {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.dark-theme .menu__download span {
  color: rgba(0, 0, 0, 0.3);
}

.menu__download svg {
  color: rgba(255, 255, 255, 0.3);
}

.dark-theme .menu__download svg {
  color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .menu__download {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 40px;
    padding-right: 30px;
    margin-top: auto;
    margin-right: 10px;
  }
  .menu__download span {
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-family: var(--second-font);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }
  .menu__item--mag > ul > li > ul {
    display: none !important;
  }
  .menu {
    transform: translateX(100%);
  }
  .menu.visible {
    transform: translateX(0);
  }

  .menu__item--mag > ul {
    height: unset;
  }

  .menu__item--mag > ul > li > ul {
    margin-bottom: 15px;
  }

  .menu .menu__wrapper {
    padding: 15px;
    margin: 0;
    padding-top: 50px;
    padding-right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }

  .menu__nav {
    margin: 0;
    display: block;
    margin-left: -15px;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .menu__socials li {
    width: 50px;
    height: 50px;
  }

  .menu__item--mag > ul {
    margin-left: -5px;
    margin-top: 10px;
    opacity: 0;
  }
  .submenu__open {
    transition: transform var(--trans), color var(--trans);
    color: var(--main-color);
  }

  .menu__item > ul {
    opacity: 0;
    transition: opacity var(--trans-md), max-height var(--trans-md);
    padding-left: 15px;
  }

  .menu__item > ul.submenu__opened {
    max-height: 150px;
    opacity: 1;
  }

  .menu__section-name {
    font-size: 23px;
    padding: 15px;
  }
  .menu__item {
    margin: 0;
  }
  .menu .menu__item,
  .menu .menu__socials {
    animation-name: sh3;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
  }
  .menu .menu__item:nth-child(1) {
    animation-delay: 0.42s;
  }
  .menu .menu__item:nth-child(2) {
    animation-delay: 0.39s;
  }
  .menu .menu__item:nth-child(3) {
    animation-delay: 0.36s;
  }
  .menu .menu__item:nth-child(4) {
    animation-delay: 0.33s;
  }
  .menu .menu__socials {
    animation-delay: 0.3s;
  }
  .menu.visible .menu__item,
  .menu.visible .menu__socials {
    animation-name: sh2;
    animation-duration: 0.1s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    opacity: 0;
    animation-delay: 0s;
  }

  /*.menu__item--mag > ul {*/
  /*    max-height: unset !important;*/
  /*}*/

  .menu.visible .menu__item:nth-child(1) {
    animation-delay: 0.3s;
  }
  .menu.visible .menu__item:nth-child(2) {
    animation-delay: 0.33s;
  }
  .menu.visible .menu__item:nth-child(3) {
    animation-delay: 0.36s;
  }
  .menu.visible .menu__item:nth-child(4) {
    animation-delay: 0.39s;
  }
  .menu.visible .menu__socials {
    animation-delay: 0.42s;
  }
  .menu__close {
    right: 9px;
    top: 5px;
  }
  .menu {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    width: calc(100vw - 45px);
    right: 0;
  }
  .menu.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    animation: 0.45s linear 0s sh1;
    pointer-events: all;
    transition: transform 0.25s linear, -webkit-transform 0.25s linear;
    margin: 0 0 0 70px;
  }
  @keyframes sh1 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes sh2 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes sh3 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .submenu__open {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .menu__item__main {
    align-items: center;
  }

  .menu__item--mag > ul > li {
    width: 100% !important;
  }
  .menu__item > ul,
  .menu__item--mag > ul {
    max-height: 0;
  }
  .menu__item > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .menu__item > ul > li > ul > li {
    margin: 0;
  }
}

.menu__item > ul {
  margin-top: 15px;
}

.menu__item > ul a {
  margin: 0;
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  padding: 8px 0;
  padding-left: 10px;
  text-transform: uppercase;
  color: var(--main-color-opacified);
}

.menu__item > ul a:hover {
  color: var(--main-color);
}

.menu__item > ul a:focus-visible {
  outline-offset: 4px;
  outline-offset: 1px solid var(--main-color);
}

.menu__socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}

@media (max-width: 767px) {
  .menu__socials {
    justify-content: flex-start;
    gap: 10px;
  }
}

.socials a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  border: 1px solid var(--main-color);
  transition: opacity var(--trans);
  color: var(--main-color);
}

.socials a:hover {
  opacity: 1;
}

.socials a:focus-visible {
  opacity: 1;
}

.footer {
  padding: 0;
  margin-top: auto;
  background-color: var(--accent-color);
  transition: background-color var(--trans);
}

@media (max-width: 767px) {
  .footer {
    padding: 0 0 0px 0;
    margin-top: auto;
    background-color: var(--accent-color);
    transition: background-color var(--trans);
  }
}

.footer__top {
  padding: 20px 0;
  color: var(--main-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .footer__top {
    grid-template-columns: unset;
    padding: 20px 0;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .footer {
    padding: 0;
  }
}

.footer__top > div {
  border-right: 1px solid;
  border-color: var(--gray);
  justify-items: self-start;
}

@media (min-width: 768px) {
  .footer__top > div:last-of-type {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .footer__top > div {
    padding-bottom: 15px;
    border: 0;
    border-bottom: 1px solid;
    border-color: var(--gray);
  }
}

.footer__section {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__section-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .footer__section {
    gap: 10px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer__section {
    justify-content: space-between;
    flex-direction: row;
    padding: 0;
    gap: 10px;
    padding-top: 15px;
  }

  .footer__section-wrap {
    gap: 5px;
  }
}

.footer__section a {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.5;
  color: var(--main-color);
  line-height: 17px;
  transition: opacity var(--trans);
}

.footer__section a:hover {
  opacity: 1;
  color: var(--main-color);
}

.footer__section a:focus-visible {
  outline-offset: 2px;
  outline: 1px solid;
  opacity: 1;
  outline-color: var(--main-color);
}

a.footer__section-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--main-color);
  opacity: 0.5;
  transition: opacity var(--trans);
}

a.footer__section-name:hover {
  opacity: 1;
  color: var(--main-color);
}

a.footer__section-name:focus-visible {
  opacity: 1;
}

.footer__logo {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

@media (min-width: 768px) {
  .footer__logo {
    padding-right: 11px;
  }
}

.footer__logo svg .main {
  color: var(--main-color);
  opacity: 1;
}

.footer__logo svg .accent {
  color: var(--accent-color);
  opacity: 1;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-items: baseline;
}

@media (max-width: 767px) {
  .footer nav {
    max-height: 127px;
    flex-wrap: wrap;
    column-gap: 42px;
  }

  .footer nav {
    max-width: 86px;
    text-wrap: wrap;
  }

  .slide-bottom {
    bottom: 0px !important;
  }

  .slide-bottom-inner h3 {
    line-height: 120% !important;
    font-size: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 380px) {
  .first-slider {
    margin-bottom: 20px !important;
  }
}

.big-green {
  display: none !important;
}

.small-green-conteiner {
  display: none !important;
}

.green-dots {
  display: none !important;
}

.footer nav a {
  opacity: 0.5;
  font-weight: 800;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
  transition: opacity var(--trans);
  color: var(--main-color);
}

@media (max-width: 1024px) {
  .footer__logo {
    flex-direction: column;
    gap: 20px;
  }
}

.footer nav a:hover {
  opacity: 1;
  text-decoration: unset;
  color: var(--main-color);
}

.footer nav a:focus-visible {
  opacity: 1;
  outline: 1px solid var(--main-color);
  text-decoration: none;
  outline-offset: 2px;
}

.footer__bottom {
  border-top: 1px solid;
  border-color: var(--gray);
  padding: 25px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  font-style: normal;
  color: var(--main-color);
}

.footer__bottom address {
  font-style: normal;
  opacity: 0.5;
  font-style: normal;
  opacity: 0.5;
  margin: 0;
  width: 340px;
}

input {
  border-radius: 0;
}

input[type='search'] {
  -webkit-appearance: none;
}

@media (min-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer__bottom {
    grid-template-columns: unset;
    border: 0;
    gap: 15px;
    padding: 25px 0;
    text-align: center;
  }
  .footer__bottom address {
    width: 100%;
  }
}

.footer__policy {
  grid-column: 3/4;
  display: grid;
  gap: 5px;
}

@media (min-width: 768px) {
  .footer__policy {
    grid-column: 2/3;
  }
}

@media (max-width: 767px) {
  .footer__policy {
    grid-column: unset;
  }
  .footer__logo {
    justify-content: flex-start;
    flex-direction: row;
    gap: 40px;
  }
}

.footer__policy a {
  text-decoration: underline;
  color: var(--main-color);
  opacity: 0.5;
  transition: opacity var(--trans);
}

.footer__policy a:hover {
  opacity: 1;
  text-decoration: unset;
}

.footer__policy a:focus-visible {
  opacity: 1;
  outline: 1px solid var(--main-color);
  text-decoration: none;
  outline-offset: 2px;
}

.footer__copyright {
  grid-column: 4/5;
  justify-self: end;
  text-align: right;
  opacity: 0.5;
}

@media (min-width: 1280px) {
  .footer__copyright {
    grid-column: 3/4;
  }
}

@media (max-width: 767px) {
  .footer__copyright {
    grid-column: unset;
    justify-self: unset;
    text-align: left;
    text-align: center;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .socials {
    display: flex;
    align-items: center;
    gap: 8px;
    /*  margin: -38px 0px 0px 235px; */
    padding: 0;
  }
}

.socials li {
  width: 32px;
  height: 32px;
}

.socials li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-color: var(--main-color);
}

.header-banner {
  max-width: 1920px;
  transition: opacity var(--trans);
  position: sticky;
  top: 0;
  z-index: 120;
  visibility: hidden;
}

.header-banner.swiper-initialized {
  visibility: visible;
}

.header-ad-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  color: #666666;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.header-ad-tooltip {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  top: 35px;
  left: 20px;
  width: 220px;
  background: #fff;
  color: #666666;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.ad-wrap:hover .header-ad-tooltip {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

.menu__socials li {
  width: 50px;
  height: 50px;
}

@media (max-width: 767px) {
  .header-banner {
    height: auto;
  }
}

.header-banner.faded {
  opacity: 0;
}

.header-banner.static {
  opacity: 1;
  position: relative;
}

.header-banner.static + .header > div {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-banner__image {
  background-color: #ccd0ef;
}

.header-banner__links {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header-banner__links a {
  width: 180px;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  font-family: var(--second-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-width: 2px;
  color: #fff;
  border-color: #000;
  background-color: var(--accent-color);
}

.header-banner__image {
  height: 100%;
}

.header-banner__image img {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .header-banner__links {
    right: 2%;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .header-banner a {
    width: 140px;
    font-size: 12px;
  }
}

.banner {
  position: relative;
  background-color: #ccd0ef;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.banner .wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: center;
}

.banner span {
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  font-family: var(--second-font);
  text-transform: uppercase;
  color: #000000;
}

.banner .button {
  min-width: 190px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .banner span {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .banner--bottom {
    display: none;
  }

  .header__logo {
    border-top: none;
    border-left: none;
    border-bottom: none;
  }
}

.search {
  transition: opacity var(--trans), transform var(--trans), -webkit-transform var(--trans);
  position: fixed;
  z-index: 200;
  top: 0;
  display: grid;
  width: 100%;
  height: 250px;
  background-color: var(--accent-color);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.search__outer {
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 60px;
}

.search.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.search__close {
  order: 2;
  color: var(--main-color);
  transition: -webkit-transform var(--trans);
  transition: transform var(--trans), color var(--trans);
  transition: transform var(--trans), -webkit-transform var(--trans);
}

.search__close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 95px);
  left: 95px;
}

.search__inner {
  width: 100%;
  display: block;
}

.search__wrapper input {
  width: 100%;
  height: 80px;
  line-height: 80px;
  background-color: transparent;
  border: 1px solid;
  border-color: var(--main-color);
  transition: border-color var(--trans);
  padding: 0 30px;
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: var(--main-color);
}

.search__wrapper input::-webkit-input-placeholder {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.66;
  color: var(--main-color);
  -webkit-transition: opacity var(--trans-md);
  transition: opacity var(--trans-md);
  opacity: 1;
}

.search__wrapper input:-ms-input-placeholder {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.66;
  color: var(--main-color);
  -ms-transition: opacity var(--trans-md);
  transition: opacity var(--trans-md);
  opacity: 1;
}

.search__wrapper input::-ms-input-placeholder {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.66;
  color: var(--main-color);
  -ms-transition: opacity var(--trans-md);
  transition: opacity var(--trans-md);
  opacity: 1;
}

.search__wrapper input::placeholder {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.66;
  color: var(--main-color);
  transition: opacity var(--trans-md), color var(--trans);
  opacity: 1;
}

.search__wrapper input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.search__wrapper input:focus:-ms-input-placeholder {
  opacity: 0;
}

.search__wrapper input:focus::-ms-input-placeholder {
  opacity: 0;
}

.search__wrapper input:focus::placeholder {
  opacity: 0;
}

.search__results {
  position: absolute;
  top: 164px;
  padding: 25px;
  background: var(--accent-color);
  transition: opacity var(--trans);
  opacity: 0;
  width: 100%;
  max-height: 50vh;
  scroll-behavior: smooth;
  overflow: auto;
  border: 1px solid;
  border-color: var(--main-color);
  display: grid;
}

.search__result {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray);
}

.search__result.active span {
  color: var(--violet);
}

.search__result:hover span {
  color: var(--violet);
}

.search__result:last-of-type {
  border: 0;
}

.search__result-group:not(:last-of-type) {
  margin-bottom: 30px;
}

.search__result:focus-visible span {
  color: var(--violet);
}

.search__result-image {
  flex-shrink: 0;
  width: 200px;
  height: 138px;
  background-color: var(--gray);
}

.search__result span {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 800;
}

.search__result span b {
  color: var(--violet);
  font-weight: 900px;
}

.search__results-name {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 26px;
  font-weight: 700;
}

.search__no-result {
  color: var(--main-color);
  font-size: 22px;
  text-align: center;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.search__icon {
  color: var(--main-color);
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: color var(--trans);
}

@media (min-width: 768px) and (max-width: 1280px) {
  .search__wrapper {
    width: 100%;
    left: unset;
  }
  .search__result span {
    font-size: 19px;
  }
  .search__result-image {
    width: 160px;
  }
  .search__result-image {
    flex-shrink: 0;
    width: 160px;
    height: 110px;
    background-color: var(--gray);
  }
}

@media (max-width: 767px) {
  .search {
    height: 100px;
  }
  .search input {
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 16px;
    caret-color: var(--main-color);
  }
  .search__outer {
    gap: 10px;
    align-items: center;
    justify-items: end;
    grid-template-columns: 1fr 40px;
  }
  .search__icon {
    right: 15px;
    width: 20px;
  }
  .search__close svg {
    width: 100%;
    height: 100%;
  }
  .search__wrapper {
    width: 100%;
    left: 0;
  }
  .search__wrapper input::placeholder {
    font-weight: 600;
    font-size: 16px;
  }
  .search__wrapper input::-webkit-input-placeholder {
    font-weight: 600;
    font-size: 16px;
  }
  .search__results {
    padding: 15px;
    top: 49px;
    max-height: 70vh;
  }
  .search__result {
    margin: 0;
    align-items: flex-start;
    gap: 15px;
  }
  .search__result span {
    font-size: 13px;
  }
  .search__results-name {
    padding-bottom: 4px;
    font-size: 20px;
  }
  .search__result-group:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .search__result-image {
    width: 50px;
    flex-shrink: 0;
    height: 30px;
    background-color: var(--gray);
  }
}

.custom-video {
  position: relative;
  cursor: pointer;
}

.custom-video img {
  width: 100%;
  height: 100%;
}

.custom-video:hover button {
  transform: scale(1.1);
  color: var(--accent-color);
}

.custom-video iframe {
  max-width: 100%;
  max-height: 100%;
}

.custom-video__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 1;
  transition: opacity var(--trans);
}

.custom-video button {
  transition: color var(--trans), transform var(--trans);
  color: var(--main-color);
}

._modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(16, 0, 46, 0.5);
  z-index: 1000;
  transition: opacity var(--trans-md);
}

._modal.is-active {
  opacity: 1;
  pointer-events: all;
}

._modal ._modal__wrapper {
  position: relative;
  transition: opacity 0.255s ease-in-out, -webkit-transform 0.255s ease-in-out;
  transition: transform 0.255s ease-in-out, opacity 0.255s ease-in-out;
  transition: transform 0.255s ease-in-out, opacity 0.255s ease-in-out,
    -webkit-transform 0.255s ease-in-out;
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 0;
  width: 850px;
  height: 85vh;
  background: var(--violet);
}

._modal.is-active ._modal__wrapper {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

._modal__content {
  height: 85vh;
  padding: 65px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

._modal h2 {
  font-family: var(--main-font);
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 900;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.apply-modal h2 + span {
  display: block;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-lock-ios {
  position: fixed;
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

._modal__close {
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  right: -70px;
  top: 0;
}

._modal__close svg {
  transition: transform var(--trans);
}

._modal__close:hover svg {
  transform: scale(1.15);
}

@media (max-width: 1439px) {
  .banner-area.banner-on-main {
    display: none;
  }
}

.banner-area {
  margin-right: 0;
  width: 300px;
}

.footer__logo a {
  transition: filter var(--trans-md);
  filter: grayscale(1);
}

.footer__logo a:hover {
  filter: grayscale(0);
  color: var(--accent-color);
}

/*APPLY_FORM*/

._modal__wrapper {
  position: relative;
  max-width: 850px;
  min-height: 80vh;
  background-color: var(--violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  padding: 45px 0;
}

._modal__wrapper h2 {
  font-style: normal;
  font-weight: 900;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 10px;
  color: #ffffff;
}

@media (max-width: 1439px) {
  ._modal ._modal__wrapper {
    min-width: unset;
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  ._modal ._modal__wrapper {
    max-width: 95vw;
    padding: 25px 0;
    height: 95vh;
  }
  .b24-form-wrapper input:not([type='checkbox']) {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
  }
  ._modal ._modal__wrapper h2 {
    font-size: 20px;
  }
  ._modal ._modal__content {
    padding: 0 10px;
  }
  .b24-form-control-string .b24-form-control {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }
  .b24-form-control-icon-after .b24-form-control-label {
    font-size: 10px;
  }
  .b24-form-control-container {
    margin: 0;
  }
  .b24-form-control-add-btn {
    font-size: 12px;
  }
  .b24-form-control-comment {
    font-size: 12px;
    margin-top: 4px;
  }
  .b24-form-control + .b24-form-control-label,
  .b24-form-control-not-empty + .b24-form-control-label {
    top: 20px;
  }
  .b24-form-control:focus + .b24-form-control-label,
  .b24-form-control-not-empty + .b24-form-control-label {
    top: 20px;
    transform: translateY(-50%);
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
  }
  ._modal__close {
    width: 40px;
    right: 0;
    height: 40px;
  }
  ._modal__close svg {
    width: 20px;
  }
  .events .events__item-button {
    width: 100%;
  }
}

.radio-button-wrapper {
  display: grid;
  place-items: center;
  padding: 10px;
  background-color: var(--accent-color);
  position: fixed;
  bottom: 0;
}

.radio-button {
  color: var(--main-color);
  z-index: 10;
  border-color: var(--main-color);
}

.marquee {
  width: 100vw;
  height: 264px;
  background-image: url('./../img/marqee_layer.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

/*.logo-block {*/
/*    display: flex;*/
/*    flex-wrap: nowrap;*/
/*    width: 100%;*/
/*    overflow: visible;*/
/*    position: relative;*/
/*}*/
/*.logo-block::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: -50vw;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 50vw;*/
/*    background: var(--main-color);*/
/*    z-index: 20;*/
/*}*/

/*.logo-block__item {*/
/*    position: relative;*/
/*}*/
/*.logo-block__item span {*/
/*    position: absolute;*/
/*    display: block;*/
/*    top: 80px;*/
/*    right: 20px;*/
/*    z-index: 20;*/
/*    font-family: var(--second-font);*/
/*    padding: 0;*/
/*    text-transform: uppercase;*/
/*    font-size: 90px;*/
/*    width: -webkit-max-content;*/
/*    width: max-content;*/
/*    letter-spacing: 0.04em;*/
/*    background-clip: text;*/
/*    -webkit-background-clip: text;*/
/*    color: transparent;*/
/*    background-image: url("./../img/marquee_backdrop.png");*/
/*}*/

/*.columns__line {*/
/*    flex-shrink: 0;*/
/*    width: 100%;*/
/*}*/

/*.logo-block__wrap {*/
/*    animation: infiniteAnimation 6s linear infinite;*/
/*    !*right: calc(-1 * var(--slidePX));*!*/
/*    right: 0;*/
/*    position: relative;*/
/*    display: flex;*/
/*    width: 100%;*/
/*}*/

/*@keyframes infiniteAnimation {*/
/*    0% {*/
/*        -webkit-transform: translateX(100%);*/
/*        transform: translateX(100%);*/
/*    }*/
/*    100% {*/
/*        -webkit-transform: translateX(0);*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@media (min-width: 768px) and (max-width: 1280px) {*/
/*    .logo-block {*/
/*        margin-left: -40px;*/
/*        margin-right: -40px;*/
/*        padding-right: 30px;*/
/*        padding-left: 30px;*/
/*        width: calc(100% + 100px);*/
/*    }*/
/*    .logo-block .slider__item:last-of-type {*/
/*        padding-right: 40px;*/
/*    }*/
/*    .logo-block__item span {*/
/*        font-size: 70px;*/
/*    }*/
/*}*/

@media (max-width: 767px) {
  .marquee {
    height: 170px;
  }
  .logo-block__item span {
    top: 65px;
    font-size: 35px;
  }
}

/*.photoCount {*/
/*    display: none;*/
/*}*/

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

.marquee {
  width: 100vw;
  height: 264px;
  background-image: url('./img/marqee_layer.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.logo-block {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow: visible;
  position: relative;
}

.logo-block::before {
  content: '';
  position: absolute;
  left: -50vw;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: var(--main-color);
  z-index: 20;
}

.logo-block__item {
  position: relative;
}

.logo-block__item span {
  position: absolute;
  display: block;
  top: 80px;
  left: 20px;
  z-index: 20;
  font-family: var(--second-font);
  padding: 0;
  text-transform: uppercase;
  font-size: 90px;
  width: max-content;
  letter-spacing: 0.04em;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: url('./img/marquee_backdrop.png');
}

.columns__line {
  flex-shrink: 0;
  width: 100%;
}

.logo-block__wrap {
  animation: infiniteAnimation 6s linear infinite;
  left: calc((1) * var(--slidePX));
  right: 0;
  position: relative;
  display: flex;
  width: 100%;
}

@keyframes infiniteAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(calc((-1) * var(--slidePX)));
    transform: translateX(0%);
  }
}

.fotorama__fullscreen-icon {
  background: url('./img/round.svg') !important;
}

.fotorama__arr {
  background: url('./img/arr-next.svg');
  opacity: 0.5;
  z-index: 3000;
}

.fotorama__arr--disabled {
  opacity: 0.1 !important;
}

.fotorama__arr.fotorama__arr--prev {
  background: url('./img/arr-prev.svg');
}

.thumbs-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('./img/arr-next.svg');
  background-size: contain !important;
  z-index: 3000;
}

.thumbs-arr-disabled {
  opacity: 0.1 !important;
}

.fm-app-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .fm-app {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    opacity: 0.9;
    background: #191919;
    width: 100vw;
    height: 40px;
    align-items: center;
    padding: 0 40px;
  }

  .fm-app span {
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
  }

  .fm-app-wrapper {
    display: flex;
    width: 100vw;
    height: 40px;
    position: fixed;
    justify-content: center;
    bottom: 0;
  }

  .fm-app-wrapper button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
  }
}

@media (max-width: 600px) {
  .small-pl .jp-volume-controls {
    display: none !important;
  }
  .jp-play::after {
    width: 55px !important;
    height: 55px !important;
  }
  .small-pl .wrapper {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .footer nav a {
    font-size: 14px;
    font-weight: 700;
  }

  .footer__logo a svg {
    width: 64px;
    height: 80px;
  }

  .footer__logo {
    gap: 20px;
  }
}

#melonplayer {
  height: 0px !important;
}

.button {
  cursor: pointer;
}

.bottom-banner {
  background-position: 10% 50% !important;
}

.b24-form-wrapper {
  background-color: #fff !important;
}

.b24-form-control-string .b24-form-control {
  border: 1px solid #000 !important;
}

.b24-form-control-string .b24-form-control,
.b24-form-control-list .b24-form-control,
.b24-form-control-text .b24-form-control {
  color: #000 !important;
  border: 1px solid #000 !important;
}

.b24-form-control-add-btn:after,
.b24-form-control-add-btn:before {
  background-color: #000 !important;
}

.b24-form-btn {
  border: 1px solid #000 !important;
}

.b24-form a,
.b24-form a:not([href]),
.b24-form a:not([href]):not([tabindex]) {
  color: #000 !important;
}

.b24-form-control-comment {
  color: #000 !important;
}

.b24-form-field-agreement .b24-form-field-agreement-link {
  color: #000 !important;
}

.b24-form .b24-form-sign-abuse-link {
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
}

.b24-form-control-select-label,
.b24-form-control-label {
  color: #000 !important;
}

@media (max-width: 767px) {
  .menu.visible .menu__item:nth-child(1).menu__item__opened {
    margin-bottom: 30px;
  }
}

.kit {
  width: 100% !important;
}

.bx-breadcrumb {
  margin-top: 30px;
  margin-bottom: 20px;
}

.bx-breadcrumb {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1;
}

time.news-time.time-mb {
  display: none;
}

.bx-breadcrumb .bx-breadcrumb-item {
  float: none;
  display: inline;
}

.news-preview-block {
  padding-top: 0 !important;
}

.news-preview-block .main-title-subtitle {
  padding-top: 0 !important;
}

@media (max-width: 600px) {
  .header-banner__links {
    gap: 0px;
  }

  .header-banner__links a {
    font-weight: 800;
    font-size: 12px;
  }

  .header-banner .header-banner__links a {
    /* width: 150px; */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .header-order {
    display: flex;
    flex-direction: column;
  }

  .header-banner {
    order: 2;
    margin-bottom: 10px;
  }

  .header {
    order: 1;
    margin-bottom: 0;
  }
}

.b24-form-content {
  padding: 0 !important;
}

.banner-area .swiper-wrapper {
  max-height: 600px;
}

.banner-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  position: relative;
}

@media (max-width: 1024px) {
  .banner-wrap {
    display: block;
  }
}

@media (max-width: 1024px) {
  .banner-grid {
    display: block !important;
  }
  .banner-wrap {
    grid-template-columns: 1fr;
  }
}

.events__wrapper {
  display: block !important;
}

.events__image {
  flex: 0 0 520px !important;
}

@media (max-width: 1024px) {
  .events__image {
    flex: 0 0 480px !important;
  }
}

@media (max-width: 840px) {
  .events__image {
    flex: 0 0 450px !important;
  }
}

.header-banner__links .button:hover {
  background-color: transparent !important;
  color: #000000;
  border-color: black;
}

.b24-form-dropdown-container {
  z-index: 3000 !important;
}

.banner-mobile-area-wrapper .swiper-slide {
  position: relative !important;
}

.fotorama__nav-wrap {
  display: block !important;
}

.fotorama__stage.fotorama__fullscreen {
  z-index: 1000;
}

.fotorama__stage.fotorama__fullscreen .fotorama__stage__shaft {
  z-index: 1000;
}

.fotorama__stage.fotorama__fullscreen .fotorama__stage__frame.fotorama__active {
  display: block !important;
  margin: 0 auto !important;
  max-width: 63% !important;
  max-height: 537px !important;
  margin-top: 63px !important;
}

.fotorama__stage.fotorama__fullscreen .fotorama__stage__frame img {
  object-fit: contain;
}

.fotorama__stage.fotorama__fullscreen .fotorama__arr--next {
  right: 17%;
}

.fotorama__stage.fotorama__fullscreen .fotorama__arr--prev {
  left: 17%;
}

@media (max-width: 1024px) {
  .fotorama__arr {
    width: 40px;
    height: 40px;
    margin-top: 14px;
    background-position: center !important;
    background-size: 54px !important;
  }

  .fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--prev {
    left: -50px;
  }

  .fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--next {
    right: -50px;
  }
}

.fotorama__stage.fotorama__fullscreen .fotorama__nav-wrap {
  max-width: 84% !important;
  margin: 0 auto !important;
}

.custom-fullscreen-close {
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  font-size: 24px;
  color: white;
  z-index: 3000;
}

.fotorama__nav-wrap.fotorama__fullscreen {
  max-width: 84% !important;
  margin: 0 auto !important;
}

.fotorama__nav-wrap.fotorama__fullscreen {
  position: relative;
}

.fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--prev {
  left: -80px;
  transform: translateY(-50%) rotate(180deg);
}

.fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--next {
  right: -80px;
}

@media (max-width: 767px) {
  .fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr {
    width: 30px;
    height: 30px;
  }
  .fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--prev {
    left: 4px;
  }
  .fotorama__nav-wrap.fotorama__fullscreen .thumbs-arr--next {
    right: 4px;
  }
}

.guide-inner .sec-nb {
  display: block;
  width: 100%;
  @media (min-width: 769px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .photoCount {
    font-size: 36px !important;
  }
}

@media (max-width: 600px) {
  .koka {
    /* object-fit: fill !important;
    min-height: 270px !important; */
  }

  .guide-inner .sec-nb {
    grid-template-columns: 1fr;
  }

  .fotorama--linear-list .fotorama__nav-wrap {
    display: none !important;
  }

  .fotorama--linear-list .fotorama__fullscreen {
    display: none !important;
  }

  .fotorama__wrap {
    height: 100% !important;
  }

  .fotorama--fullscreen .fotorama__stage {
    height: 100% !important;
    background: #000 !important;
  }

  .fotorama-linear-list .photoCount {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 8px 12px !important;
    border: none !important;
    max-width: max-content !important;
    border-radius: 0 !important;
    font-size: 18px !important;
  }
  .photoCount {
    font-size: 24px !important;
  }

  .fotorama-linear-list .pc-divider {
    display: none !important;
  }
}

.pc-sep,
.pc-total {
  color: rgba(255, 255, 255, 0.6);
}

.slide-bottom {
  padding: 18px 30px !important;
}

.slide-number {
  position: absolute !important;
  bottom: 140px;
  right: 34px;
}

.slide-number::before {
  display: none !important;
}

.slide-bottom-links {
  display: flex;
  gap: 9px;
}

.button-white {
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  min-width: 180px;
}

.button-white:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.header-slider .swiper-slide {
  position: relative !important;
}
