

/* Start:/local/components/rs/language.switcher/templates/.default/style.css?17717890961346*/
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher__current {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switcher__current img {
    width: 40px;
    /*height: 3px;*/
    border-radius: 4px;
}

.lang-switcher__arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.2s;
}

.lang-switcher__dropdown--open + .lang-switcher__arrow,
.lang-switcher__dropdown--open ~ .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    margin-top: 6px;
    background: rgba(30, 30, 40, 0.95);
    border-radius: 8px;
    padding: 8px;
    display: none;
    z-index: 100;
    min-width: 80px;
}

.lang-switcher__dropdown--open {
    display: block;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    transition: background 0.2s;
}

.lang-switcher__option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-switcher__option img {
    width: 40px;
    height: 14px;
    
}

/* End */


/* Start:/local/templates/public/css/styles.css?177171119652865*/
@import "/local/templates/public/css/styles-lk.css";

:root {
  --color-white: #DDDDDD;
  --base-padding: 24px;
}
@media screen and (max-width: 1440px) {
  :root {
    --base-padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --base-padding: 18px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --base-padding: 14px;
  }
}
@media screen and (max-width: 375px) {
  :root {
    --base-padding: 12px;
  }
}

html {
  font-size: 18px;
  color: var(--color-white);
  background-image: none;
}

body {
  font-size: 1rem;
  color: inherit;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  text-transform: uppercase;
  line-height: 1.2em;
  font-family: "Mulish-Black";
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}

h1, .h1 {
  font-size: 3.3rem;
}
@media screen and (max-width: 1024px) {
  h1, .h1 {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 375px) {
  h1, .h1 {
    font-size: 2.8rem;
  }
}

h2, .h2 {
  font-size: 2.7rem;
}
@media screen and (max-width: 1024px) {
  h2, .h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  h2, .h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 375px) {
  h2, .h2 {
    font-size: 2.1rem;
  }
}

h3, .h3 {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  h3, .h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  h3, .h3 {
    font-size: 1.67rem;
  }
}
@media screen and (max-width: 375px) {
  h3, .h3 {
    font-size: 1.55rem;
  }
}

h4, .h4 {
  font-size: 1.33rem;
}
@media screen and (max-width: 1024px) {
  h4, .h4 {
    font-size: 1.11rem;
  }
}
@media screen and (max-width: 768px) {
  h4, .h4 {
    font-size: 1rem;
  }
}

.lk-body__container {
  max-width: 1440px;
}

.vztl-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .vztl-container {
    max-width: calc(100% - var(--base-padding) * 2);
  }
}

.vztl-textblock {
  line-height: 1.2em;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: anywhere;
}
.vztl-textblock h1 {
  margin: 48px 0 24px;
}
.vztl-textblock h2 {
  margin: 36px 0 24px;
}
.vztl-textblock h3 {
  margin: 24px 0 16px;
}
.vztl-textblock h4 {
  margin: 24px 0 12px;
}
.vztl-textblock p, .vztl-textblock ul, .vztl-textblock ol {
  margin-bottom: 12px;
}
.vztl-textblock li {
  list-style-type: disc;
  list-style-position: inside;
}
.vztl-textblock strong {
  font-family: "IBMPlexSans-Bold" !important;
  font-weight: normal !important;
  font-style: normal !important;
}

.vztl-btn, a.vztl-btn:link, a.vztl-btn:visited, button.vztl-btn {
  width: auto;
  font-family: "Mulish-Black" !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-primary1);
  border-style: solid;
  padding: 0px 24px;
  transition: background-color var(--animation-time) ease;
}
.vztl-btn:hover, a.vztl-btn:link:hover, a.vztl-btn:visited:hover, button.vztl-btn:hover {
  background-color: var(--color-primary1);
}

.vztl-btn-def {
  height: 36px;
  font-size: 1rem;
  border-radius: 18px;
  border-width: 2px;
}

.vztl-btn-midi {
  height: 48px;
  font-size: 1rem;
  border-radius: 24px;
  border-width: 2px;
}

.vztl-btn-large {
  height: 64px;
  font-size: 1.33rem;
  border-radius: 32px;
  border-width: 3px;
}

/* background styles */
.background-blured {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
  inset: 0;
  background-color: var(--color-primary2);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-blured .blur-item {
  position: absolute;
  border-radius: 100%;
}

.background-blured .blur-spiral {
  position: absolute;
}

.background-blured .spiral-1 {
  top: 1365px;
  left: 50%;
  transform: translateX(-50%);
}

.background-blured .spiral-2 {
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
}

.background-blured .spiral-3 {
  top: 2500px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
}

.background-blured .blur-1 {
  top: -50%;
  left: 0;
  transform: translateY(-50%);
  width: 1636px;
  height: 1560px;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
  filter: blur(100px);
  opacity: 0.15;
}

.background-blured .blur-2 {
  top: 67px;
  left: -40%;
  transform: translateY(-40%);
  width: 1835px;
  height: 1750px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(100px);
  opacity: 0.08;
}

.background-blured .blur-3 {
  top: 2376px;
  right: -60%;
  width: 1806px;
  height: 1722px;
  filter: blur(100px);
  opacity: 0.1;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-4 {
  top: 1336px;
  left: -30%;
  width: 1806px;
  height: 1722px;
  filter: blur(700px);
  opacity: 0.1;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-5 {
  top: 210px;
  right: -10%;
  width: 1388px;
  height: 1323px;
  opacity: 0.05;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-6 {
  top: 1302px;
  right: -40%;
  width: 1389px;
  height: 1325px;
  opacity: 0.2;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(200px);
}

.background-blured .blur-7 {
  top: 1437px;
  left: 0;
  width: 1210px;
  height: 1155px;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.background-blured .blur-8 {
  top: 0px;
  left: -10%;
  width: 1638px;
  height: 1562px;
  filter: blur(100px);
  opacity: 0.25;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.background-blured .blur-9 {
  top: 172px;
  right: -50%;
  width: 1636px;
  height: 1562px;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.vztl-main {
  padding-top: 196px;
  margin-bottom: 96px;
  min-height: 1000px;
  gap: calc(var(--base-padding) * 4);
  display: flex;
  flex-direction: column;
}

.vztl-heading__wrrp {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base-padding) / 2);
}

.vztl-maintabs {
  display: flex;
  align-items: center;
  gap: var(--base-padding);
  height: 64px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.vztl-maintabs::-webkit-scrollbar {
  display: none;
}
.vztl-maintabs > li {
  flex-shrink: 0;
}
.vztl-maintabs__wrrp {
  overflow: hidden;
}
.vztl-maintabs__item {
  scroll-snap-align: center;
}
.vztl-maintabs__item:link, .vztl-maintabs__item:visited {
  padding: 16px 0;
  border-bottom: 3px solid transparent;
  color: #777;
}
.vztl-maintabs__item:hover {
  color: var(--color-white);
  border-color: var(--color-primary1);
}
.vztl-maintabs__active:link, .vztl-maintabs__active:visited {
  color: var(--color-white);
  border-color: var(--color-primary1);
}
.vztl-maintabs__active:hover {
  color: var(--color-white);
}

.vztl-hr {
  width: 40px;
  height: 5px;
  background-color: var(--color-primary1);
}

.vztl-readmore:link, .vztl-readmore:visited {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNSA3LjVIMTQuNU0xNC41IDcuNUw3LjUgMC41TTE0LjUgNy41TDcuNSAxNC41IiBzdHJva2U9IiNBMTY1NDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: right;
  max-height: 21px;
  width: 115px;
  padding-right: 21px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.vztl-readmore:hover {
  opacity: 0.8;
}

.vztl-goback:link, .vztl-goback:visited {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDMwLjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDIuMS4xIEJ1aWxkIDEyMykgIC0tPgogIDxwYXRoIGQ9Ik0uNSw3LjVoMTRNNy41LjVMLjUsNy41TTcuNSwxNC41TC41LDcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYTE2NTQwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: left;
  max-height: 21px;
  padding-left: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.vztl-goback:hover {
  opacity: 0.8;
}

.vztl-hero-article__wrrp {
  display: flex;
  gap: var(--base-padding);
}
@media screen and (max-width: 768px) {
  .vztl-hero-article__wrrp {
    flex-direction: column;
  }
}
.vztl-hero-article__image, .vztl-hero-article__content {
  flex: 1;
  width: 100%;
}
.vztl-hero-article__image {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .vztl-hero-article__image {
    min-height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-hero-article__image {
    min-height: 350px;
  }
}
.vztl-hero-article__content {
  display: flex;
  gap: var(--base-padding);
  flex-direction: column;
}
.vztl-hero-article__info {
  display: flex;
  gap: calc(var(--base-padding) / 2);
  flex-direction: column;
}
.vztl-hero-article__about {
  display: flex;
  gap: calc(var(--base-padding) / 2);
  flex-direction: column;
}

.vztl-tabs__item {
  display: none;
}
.vztl-tabs__active {
  display: block;
}
.vztl-tabs__content {
  transition: opacity var(--animation-time) ease;
}
.vztl-tabs__content.is-fading {
  opacity: 0;
}

.vztl-news-list__wrrp {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - 48px), 1fr));
  padding-top: 48px;
}
@media screen and (max-width: 1024px) {
  .vztl-news-list__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - 48px), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-news-list__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - 48px), 1fr));
  }
}
.vztl-news-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-news-list__image {
  width: 100%;
  position: relative;
  padding-top: 70%;
  background: #ddd;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
.vztl-news-list__label {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(161, 101, 64, 0.3);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.vztl-news-list__loader-wrrp {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vztl-smi {
  width: 100%;
  clear: both;
  display: flex;
  align-items: center;
  gap: var(--base-padding);
}
.vztl-smi__item {
  display: inline-flex;
  height: 60px;
  padding-bottom: 12px;
  align-items: center;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .vztl-smi__item {
    margin: 6px var(--base-padding) 6px 0px;
  }
}
.vztl-smi__item img {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 48px;
}
@media screen and (max-width: 1024px) {
  .vztl-smi__item img {
    max-width: 135px;
    max-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-smi__item img {
    max-width: 100px;
    max-height: 30px;
  }
}
@media screen and (max-width: 375px) {
  .vztl-smi__item img {
    max-width: 48px;
    max-height: 16px;
  }
}
.vztl-smi__item:hover, .vztl-smi__item.vztl-maintabs__active {
  border-bottom: 2px solid var(--color-primary1);
}

.vztl-article-subheading {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading {
    flex-direction: column;
  }
}
.vztl-article-subheading .vztl-article-info, .vztl-article-subheading .vztl-line {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-article-info, .vztl-article-subheading .vztl-line {
    width: 100%;
  }
}
.vztl-article-subheading .vztl-article-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-article-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.vztl-article-subheading .vztl-article-info .vztl-block {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  transition: opacity var(--animation-time) ease;
}
.vztl-article-subheading .vztl-article-info .vztl-block:hover {
  opacity: 1;
}
.vztl-article-subheading .vztl-article-info .vztl-block img {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-line {
    display: none;
  }
}

.vztl-line {
  height: 5px;
  background-color: var(--color-primary1);
}

.vztl-article-hero-image {
  width: 100%;
  position: relative;
  padding-top: 40%;
  border-radius: 12px;
  /* background-position: center center; */
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .vztl-article-hero-image {
    padding-top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .vztl-article-hero-image {
    padding-top: 65%;
  }
}
@media screen and (max-width: 375px) {
  .vztl-article-hero-image {
    padding-top: 70%;
  }
}

.vztl-news-slider {
  padding: 0px calc((100% - 1440px) / 2);
}
@media screen and (max-width: 1440px) {
  .vztl-news-slider {
    padding: 0px 12px;
  }
}
.vztl-news-slider__wrrp {
  margin-top: 48px;
  margin-bottom: 48px;
}
.vztl-news-slider__item {
  width: 100%;
  max-width: 464px;
}

.vztl-share {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}
.vztl-share__wrrp {
  display: flex;
  align-items: flex-end;
}
.vztl-share__wrrp .vztl-line {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-share__wrrp .vztl-line {
    display: none;
  }
}
.vztl-share__item img {
  width: 64px;
  height: 64px;
}
.vztl-share__links {
  display: flex;
  gap: 12px;
}

.vztl-about-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  height: 440px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading {
    height: 390px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading {
    height: 340px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading {
    height: 300px;
  }
}
.vztl-about-heading__wrrp {
  position: relative;
  width: 100%;
  padding-top: 90px;
  overflow: hidden;
}
.vztl-about-heading__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.vztl-about-heading__title {
  font-size: 5.55rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading__title {
    font-size: 4.72rem;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading__title {
    font-size: 3.88rem;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading__title {
    font-size: 2.77rem;
  }
}
.vztl-about-heading__desc {
  font-size: 2rem;
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading__desc {
    font-size: 1.77rem;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading__desc {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading__desc {
    font-size: 1.33rem;
  }
}

.vztl-about__main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 2;
  width: 100%;
}

.vztl-history__wrrp {
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-history__wrrp {
    flex-direction: column;
  }
}
.vztl-history__desc, .vztl-history__image {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-history__desc, .vztl-history__image {
    max-width: 100%;
  }
}
.vztl-history__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.vztl-history__image {
  height: 450px;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .vztl-history__image {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-history__image {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-history__image {
    height: 300px;
  }
}

.vztl-indicators__wrrp {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
  grid-template-columns: repeat(4, minmax(25%, 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-indicators__wrrp {
    grid-template-columns: repeat(2, minmax(50%, 1fr));
  }
}
@media screen and (max-width: 680px) {
  .vztl-indicators__wrrp {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }
}
.vztl-indicators__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.vztl-indicators__item .vztl-hr {
  margin: 6px 0 16px;
}
.vztl-indicators__value {
  font-size: 8.3rem;
}
.vztl-indicators__desc {
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2em;
}

.vztl-mission__scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .vztl-mission__scene {
    height: auto;
  }
}
.vztl-mission__scene .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(198, 145, 92);
  box-shadow: 0 0 8px rgba(198, 145, 92, 0.6);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .vztl-mission__scene .dot {
    display: none;
  }
}
.vztl-mission__orbit {
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}
.vztl-mission__outer {
  width: 520px;
  height: 520px;
  border: 2px solid rgba(198, 145, 92, 0.55);
  box-shadow: 0 0 0 1px rgba(198, 145, 92, 0.15);
}
@media screen and (max-width: 768px) {
  .vztl-mission__outer {
    display: none;
  }
}
.vztl-mission__inner {
  width: 480px;
  height: 480px;
  border: 2px solid rgba(198, 145, 92, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .vztl-mission__inner {
    width: 100%;
    height: auto;
    border: 0px;
  }
}
.vztl-mission__inner2 {
  width: 495px;
  height: 495px;
  border: 10px solid rgba(198, 145, 92, 0.2);
}
@media screen and (max-width: 768px) {
  .vztl-mission__inner2 {
    display: none;
  }
}
.vztl-mission__glow {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--color-primary1);
  filter: blur(150px);
  opacity: 0.75;
}
.vztl-mission__text {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vztl-mission__text > div {
  text-align: center;
}
.vztl-mission__desc {
  font-size: 1.33rem;
  line-height: 1.2em;
}

.vztl-block__wrrp {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vztl-block-heading__wrrp {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.vztl-block-heading__wrrp h2, .vztl-block-heading__wrrp .vztl-line {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  .vztl-block-heading__wrrp h2, .vztl-block-heading__wrrp .vztl-line {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-block-heading__wrrp .vztl-line {
    display: none;
  }
}

.vztl-block-heading-desc__wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-block-heading-desc__wrrp > h2 {
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}
.vztl-block-heading-desc__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.vztl-block-heading-desc__bottom .vztl-line {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-block-heading-desc__bottom .vztl-line {
    display: none;
  }
}
.vztl-block-heading-desc__text {
  width: 100%;
  max-width: 50%;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .vztl-block-heading-desc__text {
    max-width: none;
  }
}

.vztl-targets {
  margin-top: calc(var(--base-padding) * 2);
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-targets {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-targets__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 12px;
}
@media screen and (max-width: 500px) {
  .vztl-targets__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.vztl-targets__item-num {
  width: 96px;
  min-width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(161, 101, 64, 0.25);
}
@media screen and (max-width: 500px) {
  .vztl-targets__item-num {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
.vztl-targets__item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.vztl-targets__item-desc {
  line-height: 1.2em;
}

.vztl-persons__wrrp {
  margin-top: calc(var(--base-padding) * 2);
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: calc(var(--base-padding) * 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 580px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-persons__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-persons__item-image-wrrp {
  width: 220px;
  height: 220px;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: rgba(161, 101, 64, 0.75);
}
.vztl-persons__item-position{
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
}
.vztl-persons__item-field{
  color: #A16540;
  font-size: 12px;
}
.vztl-persons__item-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}
.vztl-persons__item-name span {
  display: block;
}
.vztl-persons__item-desc {
  line-height: 1.2em;
}
.vztl-persons__item-function {
  text-transform: uppercase;
}
.vztl-persons__item-science {
  font-size: 0.67rem;
  color: var(--color-primary1);
}

.vztl-docs-list {
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-docs-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-docs-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-docs-item {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color var(--animation-time) ease;
  padding: 24px;
  height: 250px;
  border-radius: 12px;
  border: 1px solid #3E2F26;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .vztl-docs-item {
    padding: 12px;
    height: auto;
    min-height: 200px;
  }
}
.vztl-docs-item:hover {
  background-color: rgba(161, 101, 64, 0.15);
}
.vztl-docs-item__top, .vztl-docs-item__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-docs-item__tags-wrrp {
  display: flex;
  gap: 6px;
}
.vztl-docs-item__tags-item {
  background-color: rgba(161, 101, 64, 0.3);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.67rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.vztl-docs-item__buttons {
  display: flex;
  gap: 12px;
}

.vztl-contacts__wrrp {
  display: flex;
  justify-content: space-between;
}
.vztl-contacts__inner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.vztl-contacts__inner h2 {
  text-align: center;
}
.vztl-contacts__elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.vztl-contacts__elements-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vztl-input__wrrp {
  width: 100%;
}
.vztl-input__wrrp input[type=text], .vztl-input__wrrp input[type=password], .vztl-input__wrrp textarea {
  border: 0px;
  outline: 1px solid var(--color-primary1);
  background-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  min-height: 48px;
  padding-left: 12px;
  border-radius: 24px;
  color: var(--color-white);
  transition: outline var(--animation-time) ease-in;
}
.vztl-input__wrrp input[type=text]:focus-visible, .vztl-input__wrrp input[type=text]:hover, .vztl-input__wrrp input[type=password]:focus-visible, .vztl-input__wrrp input[type=password]:hover, .vztl-input__wrrp textarea:focus-visible, .vztl-input__wrrp textarea:hover {
  outline: 1px solid var(--color-white);
  outline-offset: 0px;
}
.vztl-input__wrrp textarea {
  padding-top: 6px;
  height: 150px;
  resize: none;
}
.vztl-input__wrrp .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vztl-input__wrrp .checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vztl-input__wrrp .checkbox input:checked + .checkbox-box::after {
  transform: scale(1);
  background-image: url("/local/templates/public/css/../images/check.svg");
  background-size: 75%;
}
.vztl-input__wrrp .checkbox input:focus-visible + .checkbox-box {
  outline: 2px solid #c7d2fe;
  outline-offset: 2px;
}
.vztl-input__wrrp .checkbox input:disabled + .checkbox-box {
  background: #e5e7eb;
  border-color: #d1d5db;
  cursor: not-allowed;
}
.vztl-input__wrrp .checkbox .checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-primary1);
  background-color: transparent;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
}
.vztl-input__wrrp .checkbox .checkbox-box::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 55%;
}
.vztl-input__wrrp .checkbox .checkbox-box.error-checkbox {
  border: 1px solid var(--color-primary1);
}
.vztl-input__wrrp .checkbox:hover .checkbox-box {
  border-color: var(--color-secondary1);
}
.vztl-input__wrrp .checkbox .checkbox-text {
  font-size: 0.85rem;
  text-align: left;
}
.vztl-input__buttons {
  text-align: center;
}

.vztl-form__wrrp {
  width: 100%;
  max-width: 464px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-expdirects__wrrp {
  margin-top: 48px;
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-expdirects__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-expdirects__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-expdirects__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vztl-expdirects__item img {
  width: 150px;
  min-width: 150px;
  height: 150px;
  min-height: 150px;
}
.vztl-expdirects__desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-howitworks {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: var(--base-padding);
  grid-template-columns: repeat(5, minmax(calc(20% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-howitworks {
    grid-template-columns: repeat(4, minmax(calc(25% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .vztl-howitworks {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-howitworks {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 375px) {
  .vztl-howitworks {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-howitworks__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-primary1);
  margin-top: 48px;
}
.vztl-howitworks__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-files-list {
  margin-top: 48px;
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: var(--base-padding);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 768px) {
  .vztl-files-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}

.vztl-partners__wrrp {
  vertical-align: middle;
  line-height: 112px;
}
.vztl-partners__item {
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100px;
  max-height: 100px;
  margin-right: 48px;
  opacity: 1;
  transition: opacity var(--animation-time) ease;
}
.vztl-partners__item:hover {
  opacity: 0.75;
}
.vztl-partners__item img {
  height: 100%;
}

.vztl-exprequest__wrrp {
  width: 100%;
  max-width: 624px;
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px;
  margin: 0 auto;
  text-align: center;
}
.vztl-exprequest__wrrp .vztl-form__wrrp {
  width: 100%;
}

.vztl-announces-list__wrrp {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .vztl-announces-list__wrrp {
    gap: 48px;
  }
}
.vztl-announces-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-announces-list__item {
    flex-direction: column;
  }
}
.vztl-announces-list__image {
  width: 100%;
  max-width: 464px;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
.vztl-announces-list__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.vztl-announces-list__info h4 {
  margin-bottom: 12px;
}

.vztl-labels__wrrp {
  position: absolute;
  top: 24px;
  left: 24px;
  height: 26px;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .vztl-labels__wrrp {
    flex-direction: column;
    top: 12px;
    left: 12px;
  }
}
.vztl-labels__item {
  display: inline-block;
  background-color: rgba(77, 39, 16, 0.5);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.vztl-events-item__info {
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 12px;
  padding: 24px;
}

.vztl-events-gallery__ctrl {
  display: flex;
  justify-content: space-between;
}
.vztl-events-gallery__ctrl-item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border: 0;
  border-bottom: 6px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--animation-time) ease, color var(--animation-time) ease;
}
.vztl-events-gallery__ctrl-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.5px;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: var(--color-white);
  transition: stroke var(--animation-time) ease;
}
.vztl-events-gallery__ctrl-item:hover, .vztl-events-gallery__ctrl-item.vztl-events-gallery__ctrl-active {
  border-bottom: 6px solid var(--color-primary1);
  color: var(--color-primary1);
}
.vztl-events-gallery__ctrl-item:hover svg, .vztl-events-gallery__ctrl-item.vztl-events-gallery__ctrl-active svg {
  stroke: var(--color-primary1);
}
.vztl-events-gallery__content {
  display: none;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
}
.vztl-events-gallery__content-photo {
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-events-gallery__content-photo {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding)), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-events-gallery__content-photo {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-events-gallery__content-video {
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 768px) {
  .vztl-events-gallery__content-video {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-events-gallery__content-show {
  display: grid;
}
.vztl-events-gallery__content .vztl-item {
  aspect-ratio: 464/300;
  border-radius: 12px;
  transition: opacity var(--animation-time) ease;
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}
.vztl-events-gallery__content .vztl-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.vztl-events-gallery__content .vztl-item__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}
.vztl-events-gallery__content .vztl-item__play:hover {
  opacity: 1;
}
.vztl-events-gallery__content .vztl-item__desc {
  z-index: 2;
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.vztl-events-gallery__content .vztl-item:hover {
  opacity: 0.75;
  color: var(--color-white);
}

.vztl-media__gradient {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  inset: 0;
  background: RGBA(0, 0, 0, 0.9);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.32) 20%, rgba(0, 0, 0, 0.15) 80%, rgba(0, 0, 0, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000E6", endColorstr="#000000E6", GradientType=0);
}/*# sourceMappingURL=styles.css.map */

/* Management Accordion Styles */
.vztl-management-accordion {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #3E2F26;
  background: rgba(161, 101, 64, 0.05);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.vztl-management-accordion--active {
  border-color: var(--color-primary1);
  background: rgba(161, 101, 64, 0.15);
}

.vztl-management-accordion__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  gap: 24px;
}

.vztl-management-accordion__button:hover {
  background: rgba(161, 101, 64, 0.1);
}

.vztl-management-accordion__title {
  font-family: 'Mulish-Black';
  font-size: 24px;
  line-height: 120%;
  color: var(--color-pr-color3);
  text-transform: uppercase;
  flex: 1;
}

.vztl-management-accordion__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.vztl-management-accordion__icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-primary1);
  border-bottom: 2px solid var(--color-primary1);
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

.vztl-management-accordion--active .vztl-management-accordion__icon::before {
  transform: translate(-50%, -40%) rotate(225deg);
}

.vztl-management-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 24px;
}

.vztl-management-accordion--active .vztl-management-accordion__content {
  max-height: 10000px;
  padding: 0 24px 24px 24px;
}

.vztl-block-heading-desc__wrrp {
  margin-top: 24px;
}

.vztl-block-heading-desc__text {
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  line-height: 150%;
  color: var(--color-pr-color3);
  margin-bottom: 12px;
}

.vztl-line {
  width: 100%;
  height: 1px;
  background: var(--color-primary1);
  margin-top: 12px;
}

.vztl-persons__wrrp {
  margin-top: 24px;
}
/* Documents Filter Styles */
.vztl-docs-item {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out !important;
  opacity: 1;
  transform: translateY(0) !important;
}

.vztl-docs-item[style*="display: none"] {
  opacity: 0;
  transform: translateY(-10px);
}
.docs__categories {
  display: flex;
  gap: 24px;
  justify-content: left;
  align-items: flex-start;
  margin: 48px 0;
}
button.docs__cat-tab--active {
  color: var(--color-pr-color3) !important;
}
.docs__categories button {
  width: fit-content;
  color: #777777;
  transition: color .3s ease-in-out;
  text-transform: uppercase;
  font-family: 'Mulish-Black';
}
.docs__cat-tab--active::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: var(--color-primary1);
  margin-top: 10px;
}





.vztl-spoilers__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vztl-spoiler__wrrp {
  width: 100%;
  height: auto;
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 12px;
  padding: 16px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  transition: gap calc(var(--animation-time) * 2) ease;
}
.vztl-spoiler__wrrp:hover {
  background-color: rgba(161, 101, 64, 0.3);
}
.vztl-spoiler__wrrp.vztl-spoiler__isopen {
  gap: 24px;
}
.vztl-spoiler__wrrp.vztl-spoiler__isopen:hover {
  background-color: rgba(161, 101, 64, 0.15);
}
.vztl-spoiler__wrrp.vztl-spoiler__isopen .vztl-spoiler__head .vztl-spoiler__control svg {
  transform: rotateZ(90deg);
}
.vztl-spoiler__wrrp.vztl-spoiler__isopen .vztl-spoiler__content {
  opacity: 1;
}
.vztl-spoiler__head {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 24px;
}
.vztl-spoiler__head p {
  line-height: 1.2em;
}
.vztl-spoiler__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  hyphens: auto;
  overflow-wrap: break-word;
}
.vztl-spoiler__control {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.vztl-spoiler__control svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary1);
  transform: rotateZ(-90deg);
  transition: transform var(--animation-time) ease;
}
.vztl-spoiler__content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height calc(var(--animation-time) * 2) ease, opacity calc(var(--animation-time) * 2) ease;
}

.vztl-abouthead__wrrp {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .vztl-abouthead__wrrp {
    flex-direction: column;
  }
}
.vztl-abouthead__head {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vztl-abouthead__bio {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-abouthead__timeline-wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-abouthead__timeline-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vztl-abouthead__buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .vztl-abouthead__buttons {
    flex-direction: column;
  }
}
.vztl-abouthead__buttons button {
  width: 370px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 34px;
  border: 2px solid var(--color-primary1);
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color var(--animation-time) ease;
}
@media screen and (max-width: 768px) {
  .vztl-abouthead__buttons button {
    width: 100%;
    max-width: 370px;
    height: auto;
    padding: 12px;
  }
}
.vztl-abouthead__buttons button:hover {
  background-color: var(--color-primary1);
}

.vztl-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.vztl-modal.vztl-modal--active {
  display: block;
}

.vztl-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.vztl-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 96%;
  max-height: 96%;
  background: #111111;
  border-radius: 12px;
  border: 1px solid #262626;
  z-index: 1;
  overflow-y: auto;
  animation: vztlFadeIn 0.25s ease;
}

.vztl-modal__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--color-primary1);
  color: var(--color-primary1);
}
.vztl-modal__title button {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.vztl-modal__title button:hover svg {
  opacity: 1;
}
.vztl-modal__title button svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary1);
  opacity: 0.6;
}

.vztl-modal__content {
  font-size: 1rem;
  line-height: 1.2;
  height: 100%;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@keyframes vztlFadeIn {
  from {
    opacity: 0;
    top: calc(50% + 50px);
  }
  to {
    opacity: 1;
    top: 50%;
  }
}

/* ============================================
   POPUP SYSTEM
   ============================================ */

/* Базовые стили попапа */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.popup__container {
  position: relative;
  z-index: 1;
  max-width: 896px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(23, 23, 23, 0.75);
  border-radius: 8px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.75);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid #262626;
}

.popup.active .popup__container {
  transform: scale(1);
}

.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup__close:hover {
  color: var(--color-pr-color3);
}

.popup__content {
  padding: 48px;
}

/* Стили для попапа профиля */
.profile-popup__header {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.profile-popup__photo {
  flex-shrink: 0;
  width: 192px;
  height: 192px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(120, 53, 15, .3);
}

.profile-popup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-popup__header-info {
  flex: 1;
}

.profile-popup__name {
  font-family: 'IBMPlexSans-Regular';
  font-size: 48px;
  line-height: 48px;
  color: var(--color-primary1);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

.profile-popup__title {
  font-family: 'IBMPlexSans-Regular';
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-pr-color3);
  text-transform: uppercase;
  margin-bottom: 27px;
}

.profile-popup__bio {
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  line-height: 26px;
  color: #D4D4D4;
}

.profile-popup__details {
  display: grid;
  gap: 32px;
  padding-bottom: 32px;
}

.profile-popup__detail-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-popup__detail-label,
.profile-popup__achievements-title {
  font-family: 'IBMPlexSans-Regular';
  font-size: 24px;
  color: var(--color-primary1);
  text-transform: uppercase;
}

.profile-popup__detail-value {
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  color: var(--color-pr-color3);
}

.profile-popup__achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-popup__achievements-list,
.young-scientist-popup__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-popup__achievements-list li,
.young-scientist-popup__list li {
  position: relative;
  padding-left: 18px;
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  color: var(--color-pr-color3);
}

.profile-popup__achievements-list li::before,
.young-scientist-popup__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-primary1);
  border-radius: 50%;
}

/* Стили для попапа "МОЛОДОЙ УЧЁНЫЙ" */
.popup__container--compact {
  max-width: 672px;
}

.young-scientist-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}

.young-scientist-popup__title {
  font-family: 'IBMPlexSans-Regular';
  font-size: 30px;
  color: var(--color-primary1);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  font-weight: 600;
}

.young-scientist-popup__separator {
  width: 100%;
  height: 1px;
  background: rgba(161, 101, 64, .4);
  margin-bottom: 32px;
}

.young-scientist-popup__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.young-scientist-popup__intro {
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  color: #D4D4D4;
  margin: #FFFFFF;
}

/* Адаптивность */
@media (max-width: 768px) {
  .popup__content {
    padding: 32px 24px;
  }

  .profile-popup__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .profile-popup__photo {
    width: 150px;
    height: 150px;
  }

  .profile-popup__name {
    font-size: 32px;
  }

  .profile-popup__title {
    font-size: 16px;
  }

  .profile-popup__details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .popup__close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  /* Адаптивность для попапа "МОЛОДОЙ УЧЁНЫЙ" */
  .young-scientist-popup__header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }

  .young-scientist-popup__title {
    font-size: 22px;
  }

  .young-scientist-popup__close {
    width: 28px;
    height: 28px;
    margin-left: 16px;
  }

  .young-scientist-popup__separator {
    margin-bottom: 24px;
  }

  .young-scientist-popup__intro {
    font-size: 16px;
  }

  .young-scientist-popup__list {
    gap: 16px;
  }

  .young-scientist-popup__list li {
    font-size: 14px;
    padding-left: 28px;
    line-height: 1.5;
  }

  .popup__container--compact {
    max-width: 100%;
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .young-scientist-popup__header {
    flex-wrap: wrap;
  }

  .young-scientist-popup__title {
    font-size: 20px;
    flex-basis: calc(100% - 44px);
  }

  .young-scientist-popup__close {
    margin-left: auto;
  }

  .popup__content {
    padding: 24px 20px;
  }

  .young-scientist-popup__list li {
    padding-left: 24px;
    font-size: 14px;
  }
}

/* Кастомный скроллбар для попапа */
.popup__container::-webkit-scrollbar {
  width: 8px;
}

.popup__container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.popup__container::-webkit-scrollbar-thumb {
  background: var(--color-primary1);
  border-radius: 4px;
}

.popup__container::-webkit-scrollbar-thumb:hover {
  background: rgba(161, 101, 64, 0.8);
}

/* Стили для модалки двухфакторной аутентификации */
.auth-switch {
  text-align: center;
  color: var(--color-primary1);
  font-weight: 600px;
}
.lk-modal__wrrp .lk-modal__content.lk-modal__2fa {
    max-width: 500px;
    min-width: 100%;
    color: var(--color-pr-color3);
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa h2 {
    margin: 0 0 12px 0;
    text-align: center;
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__text {
    text-align: center;
    margin-bottom: 24px;
    color: rgba(230, 230, 230, 0.7);
    line-height: 1.5;
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.lk-modal__2fa__form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__form .lk-2fa-code-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: 600;
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__form .lk-2fa-error,
.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__form .form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 6px;
    text-align: center;
}

.lk-modal__wrrp .lk-modal__content.lk-modal__2fa .lk-modal__2fa__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.auth-btn {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: none;
  background: #a8683b;
  color: white;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 10px;
}

.auth-btn:hover {
  background: #c77a44;
}

.submit-btn {
  margin-top: 0;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.auth-switch-link {
  margin-left: 4px;
  color: var(--color-primary1) !important;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
  cursor: pointer;
}

.auth-switch-link:hover {
  opacity: 0.8;
}

/* Адаптивность для форм авторизации */
@media (max-width: 768px) {
  .popup__content--auth {
    padding: 32px 24px;
  }

  .login-card {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .popup__content--auth {
    padding: 24px 20px;
  }

  .auth-title {
    font-size: 20px;
  }

  .auth-subtitle {
    font-size: 13px;
  }
}

/* End */


/* Start:/local/templates/public/css/global.css?17717106853915*/
@font-face {
    font-family: 'Mulish-Black';
    src: url('/local/templates/public/css/../fonts/mulish-black.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish-Bold';
    src: url('/local/templates/public/css/../fonts/mulish-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBMPlexSans-Bold';
    src: url('/local/templates/public/css/../fonts/ibmplexsans-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBMPlexSans-Regular';
    src: url('/local/templates/public/css/../fonts/ibmplexsans-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --color-white: #E6E6E6;
	--color-pr-color3: rgb(221,221,221);
  --color-white-5p: rgba(255,255,255,0.05);
  --color-white-10p: rgba(255,255,255,0.1);
  --color-white-20p: rgba(255,255,255,0.2);
  --color-white-40p: rgba(255,255,255,0.4);
  --color-grey: #777777;
  --color-black: #1A1A1A;
  --color-primary1: #A16540;
  --color-primary1-60p: rgba(161,101,64,0.6);
  --color-yellow: #FACC15;
  --color-green: #4ADE80;
  --color-red: #F87171;
  --animation-time: 150ms;
  --base-padding: 24px;
  --header-height: 100px;
}
.color-primary1 {
  color: var(--color-primary1);
}
/* Reset and base styles  */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Links */
a,
a:link,
a:visited,
a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
	margin: 0;
}

ul,
ul li, ol {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
	fill: none;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
	margin: 0 auto;
	font-size: 18px;
	font-family: 'IBMPlexSans-Regular';
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  background-color: black;
}

header {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	color: var(--color-pr-color3);
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4 {
  text-transform: uppercase;
}

h1,.h1 { font-size: 3.3rem; }
h2,.h2 { font-size: 2.7rem; }
h3,.h3 { font-size: 2rem; }
h4,.h4 { font-size: 1.3rem; }

.body__container {
  max-width: 1440px;
	width: 100%;
  clear: both;
  margin: 0px auto;
}

h1 {
	font-family: "Mulish-Black";
	font-weight: normal;
	text-align: left;
	color: var(--color-pr-color3);
}

h3 {
	font-family: "Mulish-Black";
	font-weight: normal;
	font-size: 58px;
	text-transform: uppercase;
	color: var(--color-pr-color3);
	line-height: 100%;

	max-width: 1109px;
}
h2 {
	font-family: "Mulish-Black";
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.02em;
	text-align: left;
	text-transform: uppercase;
	color: var(--color-pr-color3);
	z-index: 5;
}

/* buttons */
.btn {
	font-family: var(--manrope);
	border-radius: 5px;
	transition: background 0.3s ease;
	transition: color 0.3s ease;
	padding: 9px 40px;
}

header.filled .btn-dark {
	color: var(--greyish);
	border: 1px solid var(--greyish);
}




/* End */


/* Start:/local/templates/public/css/style.css?177171120058781*/
@import "/local/templates/public/css/styles-lk.css";

:root {
  --color-white: #DDDDDD;
  --base-padding: 24px;
}
@media screen and (max-width: 1440px) {
  :root {
    --base-padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --base-padding: 18px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --base-padding: 14px;
  }
}
@media screen and (max-width: 375px) {
  :root {
    --base-padding: 12px;
  }
}

html {
  font-size: 18px;
  color: var(--color-white);
  background-image: none;
}

body {
  font-size: 1rem;
  color: inherit;
}

.lk-page-loader {
  position: fixed;
  inset: 0;
  background: #0e0e11;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.lk-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.blur-overlay {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000004d;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 3;
    pointer-events: none;
}
.blur-overlay.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: all;
}
/* background styles */
.background-blured {
	position: absolute;
	top: 0px; left: 0px;
	z-index: -10;
	inset: 0;
	background-color: var(--color-primary2);
	width: 100%;
	height: 100%;
	overflow: hidden;
}
 .background-blured .blur-item {
	position: absolute;
	border-radius: 100%;
}
.background-blured .blur-spiral {
	position: absolute;
}
.background-blured .spiral-1  { top: 1365px;  left: 50%; transform: translateX(-50%); }
.background-blured .spiral-2  { top: 589px;  left: 50%; transform: translateX(-50%); opacity: 0.25; }
.background-blured .spiral-3  { top: 3413px;  left: 50%; transform: translateX(-50%); opacity: 0.25; }
.background-blured .blur-1  { top: 4460px;  left: 0; transform: translateY(-50%);  width: 1636px; height: 1560px; background: radial-gradient(circle,#A16540 0%,rgba(161, 101, 64, 0) 100%); filter: blur(100px); opacity: 0.15; }
.background-blured .blur-2  { top: 3265px;  left: -40%; transform: translateY(-40%);  width: 1835px; height: 1750px; background: radial-gradient(circle,#FFFFFF 0%,#ffffff00  100%); filter: blur(100px); opacity: 0.08; }
.background-blured .blur-3  { top: 2376px;  right: -60%;  width: 1806px; height: 1722px; filter: blur(100px); opacity: 0.1; background: radial-gradient(circle,#FFFFFF 0%,#ffffff00  100%); }
.background-blured .blur-4  { top: 1336px; left: -30%;  width: 1806px; height: 1722px; filter: blur(700px); opacity: 0.1; background: radial-gradient(circle,#FFFFFF 0%,#ffffff00  100%);}
.background-blured .blur-5  { top: 210px; right: -10%;  width: 1388px; height: 1323px; opacity: 0.05; background: radial-gradient(circle,#FFFFFF 0%,#ffffff00  100%);}
.background-blured .blur-6  { top: 1302px; right: -40%;  width: 1389px; height: 1325px; opacity: 0.2; background: radial-gradient(circle,#FFFFFF 0%,#ffffff00  100%); filter: blur(200px);}
.background-blured .blur-7  { top: 2490px; left: 0;  width: 1210px; height: 1155px; filter: blur(100px); opacity: 0.15; background: radial-gradient(circle,#A16540 0%,rgba(161, 101, 64, 0) 100%); }
.background-blured .blur-8  { top: 0px; left: -10%;  width: 1638px; height: 1562px; filter: blur(100px);opacity: 0.25;background: radial-gradient(circle,#A16540 0%,rgba(161, 101, 64, 0) 100%);}
.background-blured .blur-9  { bottom: 3347px; right: -50%;  width: 1636px; height: 1562px; filter: blur(100px);opacity: 0.15;background: radial-gradient(circle,#A16540 0%,rgba(161, 101, 64, 0) 100%); }


h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  text-transform: uppercase;
  line-height: 1.2em;
  font-family: "Mulish-Black";
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}

h1, .h1 {
  font-size: 3.3rem;
}
@media screen and (max-width: 1024px) {
  h1, .h1 {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 375px) {
  h1, .h1 {
    font-size: 2.8rem;
  }
}

h2, .h2 {
  font-size: 2.7rem;
}
@media screen and (max-width: 1024px) {
  h2, .h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  h2, .h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 375px) {
  h2, .h2 {
    font-size: 2.1rem;
  }
}

h3, .h3 {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  h3, .h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  h3, .h3 {
    font-size: 1.67rem;
  }
}
@media screen and (max-width: 375px) {
  h3, .h3 {
    font-size: 1.55rem;
  }
}

h4, .h4 {
  font-size: 1.33rem;
}
@media screen and (max-width: 1024px) {
  h4, .h4 {
    font-size: 1.11rem;
  }
}
@media screen and (max-width: 768px) {
  h4, .h4 {
    font-size: 1rem;
  }
}

.header__wrrp.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
}

.header__wrrp {
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #00000080;
}
.header__wrrp.scrolled {
  background-color: none;
}
.header__wrrp header {
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__wrrp header .logo {
  width: 100%;
  max-width: 106px;
}
.header__wrrp header .header__right {
  display: flex;
  align-items: center;
  gap: 31px;
}
.header__wrrp header .header__right .lang {
  width: 43px;
}
.header__wrrp header .header__right .menu__ctrl {
  text-transform: uppercase;
  height: 48px;
    border-radius: 100px;
    border: 3px solid var(--color-primary1);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    color: var(--color-white);
    background-color: transparent;
    transition: background-color var(--animation-time) ease;
}
.lk-person__wrrp.lk-pill {
  text-transform: uppercase;
    height: 48px;
    border-radius: 100px;
    border: 3px solid var(--color-primary1);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    color: var(--color-white);
    background-color: transparent;
    transition: background-color var(--animation-time) ease;

    cursor: pointer;
}
.menu-dropdown {
  position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #0009;
    overflow: hidden;
    transition: height .3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__wrrp header .header__right .menu__ctrl .menu__icon {
  width: 18px;
  height: 18px;
  margin: 8px 0px 8px 8px;
  background-image: url("/local/templates/public/css/../images/icon-menu-ham.svg");
  transition: background-image var(--animation-time) ease;
}
.header__wrrp .mainnav__wrrp {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding-bottom: var(--base-padding);
  display: none;
}
/* ?? */
.header__wrrp .mainnav__wrrp .mainnav {
  width: 100%;
  display: grid;
  -moz-column-gap: calc(var(--base-padding) / 2);
       column-gap: calc(var(--base-padding) / 2);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
}
.header__wrrp header .header__right .menu__ctrl .menu__icon {
    width: 18px;
    height: 18px;
    margin: 8px 0px 8px 8px;
    background-image: url(/local/templates/public/css/../images/icon-menu-ham.svg);
    transition: background-image var(--animation-time) ease;
}
.header__wrrp .mainnav__wrrp .mainnav .mainnav__image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 5px;
}
.header__wrrp .mainnav__wrrp .mainnav > nav {
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 50px;
  gap: calc(var(--base-padding) / 2);
}
.pill:hover,
.partners__btn:hover,
.lk-person__wrrp.lk-pill:hover {
    background-color: var(--color-primary1) !important;
    color: var(--color-white) !important;
}
.header__wrrp .mainnav__wrrp .mainnav > nav a {
  font-size: 1.86rem;
  text-transform: uppercase;
}
.header__wrrp.mainnav__showed {
  background-color: rgba(0, 0, 0, 0.8);
}
.header__wrrp.mainnav__showed header .header__right .menu__ctrl .menu__icon {
    background-image: url(/local/templates/public/css/../images/icon-close.svg);
}
.header__wrrp.mainnav__showed .mainnav__wrrp {
  display: flex;
}

.socials__wrrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.socials__wrrp .social__item {
  width: 32px;
  height: 32px;
  transition: opacity var(--animation-time) ease;
}
.socials__wrrp .social__item:hover {
  opacity: 0.8;
}
a:link, a:visited {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--animation-time) ease;
}
a:link.lk-color-primary1, a:visited.lk-color-primary1 {
  color: var(--color-primary1);
}
a:hover {
  color: var(--color-primary1);
}
a:hover.lk-color-primary1 {
  color: var(--color-white);
}


.lk-body__container {
  max-width: 1440px;
}

.vztl-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .vztl-container {
    max-width: calc(100% - var(--base-padding) * 2);
  }
}

.vztl-textblock {
  line-height: 1.2em;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: anywhere;
}
.vztl-textblock h1 {
  margin: 48px 0 24px;
}
.vztl-textblock h2 {
  margin: 36px 0 24px;
}
.vztl-textblock h3 {
  margin: 24px 0 16px;
}
.vztl-textblock h4 {
  margin: 24px 0 12px;
}
.vztl-textblock p, .vztl-textblock ul, .vztl-textblock ol {
  margin-bottom: 12px;
}
.vztl-textblock li {
  list-style-type: disc;
  list-style-position: inside;
}
.vztl-textblock strong {
  font-family: "IBMPlexSans-Bold" !important;
  font-weight: normal !important;
  font-style: normal !important;
}

.vztl-btn, a.vztl-btn:link, a.vztl-btn:visited, button.vztl-btn {
  width: auto;
  font-family: "Mulish-Black" !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-primary1);
  border-style: solid;
  padding: 0px 24px;
  transition: background-color var(--animation-time) ease;
}
.vztl-btn:hover, a.vztl-btn:link:hover, a.vztl-btn:visited:hover, button.vztl-btn:hover {
  background-color: var(--color-primary1);
}

.vztl-btn-def {
  height: 36px;
  font-size: 1rem;
  border-radius: 18px;
  border-width: 2px;
}

.vztl-btn-midi {
  height: 48px;
  font-size: 1rem;
  border-radius: 24px;
  border-width: 2px;
}

.vztl-btn-large {
  height: 64px;
  font-size: 1.33rem;
  border-radius: 32px;
  border-width: 3px;
}

/* background styles */
.background-blured {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
  inset: 0;
  background-color: var(--color-primary2);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-blured .blur-item {
  position: absolute;
  border-radius: 100%;
}

.background-blured .blur-spiral {
  position: absolute;
}

.background-blured .spiral-1 {
  top: 1365px;
  left: 50%;
  transform: translateX(-50%);
}

.background-blured .spiral-2 {
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
}

.background-blured .spiral-3 {
  top: 2500px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
}

.background-blured .blur-1 {
  top: -50%;
  left: 0;
  transform: translateY(-50%);
  width: 1636px;
  height: 1560px;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
  filter: blur(100px);
  opacity: 0.15;
}

.background-blured .blur-2 {
  top: 67px;
  left: -40%;
  transform: translateY(-40%);
  width: 1835px;
  height: 1750px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(100px);
  opacity: 0.08;
}

.background-blured .blur-3 {
  top: 2376px;
  right: -60%;
  width: 1806px;
  height: 1722px;
  filter: blur(100px);
  opacity: 0.1;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-4 {
  top: 1336px;
  left: -30%;
  width: 1806px;
  height: 1722px;
  filter: blur(700px);
  opacity: 0.1;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-5 {
  top: 210px;
  right: -10%;
  width: 1388px;
  height: 1323px;
  opacity: 0.05;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.background-blured .blur-6 {
  top: 1302px;
  right: -40%;
  width: 1389px;
  height: 1325px;
  opacity: 0.2;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(200px);
}

.background-blured .blur-7 {
  top: 1437px;
  left: 0;
  width: 1210px;
  height: 1155px;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.background-blured .blur-8 {
  top: 0px;
  left: -10%;
  width: 1638px;
  height: 1562px;
  filter: blur(100px);
  opacity: 0.25;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.background-blured .blur-9 {
  top: 172px;
  right: -50%;
  width: 1636px;
  height: 1562px;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(circle, #A16540 0%, rgba(161, 101, 64, 0) 100%);
}

.vztl-main {
  padding-top: 196px;
  margin-bottom: 96px;
  min-height: 1000px;
  gap: calc(var(--base-padding) * 4);
  display: flex;
  flex-direction: column;
}

.vztl-heading__wrrp {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base-padding) / 2);
}
.vztl-heading__desc {
  line-height: 1.2em;
}

.vztl-maintabs {
  display: flex;
  align-items: center;
  gap: var(--base-padding);
  height: 64px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.vztl-maintabs::-webkit-scrollbar {
  display: none;
}
.vztl-maintabs > li {
  flex-shrink: 0;
}
.vztl-maintabs__wrrp {
  overflow: hidden;
}
.vztl-maintabs__item {
  scroll-snap-align: center;
}
.vztl-maintabs__item:link, .vztl-maintabs__item:visited {
  padding: 16px 0;
  border-bottom: 3px solid transparent;
  color: #777;
}
.vztl-maintabs__item:hover {
  color: var(--color-white);
  border-color: var(--color-primary1);
}
.vztl-maintabs__active:link, .vztl-maintabs__active:visited {
  color: var(--color-white);
  border-color: var(--color-primary1);
}
.vztl-maintabs__active:hover {
  color: var(--color-white);
}

.vztl-hr {
  width: 40px;
  height: 5px;
  background-color: var(--color-primary1);
}

.vztl-readmore:link, .vztl-readmore:visited {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNSA3LjVIMTQuNU0xNC41IDcuNUw3LjUgMC41TTE0LjUgNy41TDcuNSAxNC41IiBzdHJva2U9IiNBMTY1NDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: right;
  max-height: 21px;
  width: 115px;
  padding-right: 21px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.vztl-readmore:hover {
  opacity: 0.8;
}

.vztl-goback:link, .vztl-goback:visited {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDMwLjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDIuMS4xIEJ1aWxkIDEyMykgIC0tPgogIDxwYXRoIGQ9Ik0uNSw3LjVoMTRNNy41LjVMLjUsNy41TTcuNSwxNC41TC41LDcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYTE2NTQwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: left;
  max-height: 21px;
  padding-left: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.vztl-goback:hover {
  opacity: 0.8;
}

.vztl-hero-article__wrrp {
  display: flex;
  gap: var(--base-padding);
}
@media screen and (max-width: 768px) {
  .vztl-hero-article__wrrp {
    flex-direction: column;
  }
}
.vztl-hero-article__image, .vztl-hero-article__content {
  flex: 1;
  width: 100%;
}
.vztl-hero-article__image {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .vztl-hero-article__image {
    min-height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-hero-article__image {
    min-height: 350px;
  }
}
.vztl-hero-article__content {
  display: flex;
  gap: var(--base-padding);
  flex-direction: column;
}
.vztl-hero-article__info {
  display: flex;
  gap: calc(var(--base-padding) / 2);
  flex-direction: column;
}
.vztl-hero-article__about {
  display: flex;
  gap: calc(var(--base-padding) / 2);
  flex-direction: column;
}

.vztl-tabs__item {
  display: none;
}
.vztl-tabs__active {
  display: block;
}
.vztl-tabs__content {
  transition: opacity var(--animation-time) ease;
}
.vztl-tabs__content.is-fading {
  opacity: 0;
}

.vztl-news-list__wrrp {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - 48px), 1fr));
  padding-top: 48px;
}
@media screen and (max-width: 1024px) {
  .vztl-news-list__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - 48px), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-news-list__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - 48px), 1fr));
  }
}
.vztl-news-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-news-list__image {
  width: 100%;
  position: relative;
  padding-top: 70%;
  background: #ddd;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
.vztl-news-list__label {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(161, 101, 64, 0.3);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.vztl-news-list__loader-wrrp {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vztl-smi {
  width: 100%;
  clear: both;
  display: flex;
  align-items: center;
  gap: var(--base-padding);
}
.vztl-smi__item {
  display: inline-flex;
  height: 60px;
  padding-bottom: 12px;
  align-items: center;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .vztl-smi__item {
    margin: 6px var(--base-padding) 6px 0px;
  }
}
.vztl-smi__item img {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 48px;
}
@media screen and (max-width: 1024px) {
  .vztl-smi__item img {
    max-width: 135px;
    max-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-smi__item img {
    max-width: 100px;
    max-height: 30px;
  }
}
@media screen and (max-width: 375px) {
  .vztl-smi__item img {
    max-width: 48px;
    max-height: 16px;
  }
}
.vztl-smi__item:hover, .vztl-smi__item.vztl-maintabs__active {
  border-bottom: 2px solid var(--color-primary1);
}

.vztl-article-subheading {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading {
    flex-direction: column;
  }
}
.vztl-article-subheading .vztl-article-info, .vztl-article-subheading .vztl-line {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-article-info, .vztl-article-subheading .vztl-line {
    width: 100%;
  }
}
.vztl-article-subheading .vztl-article-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-article-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.vztl-article-subheading .vztl-article-info .vztl-block {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  transition: opacity var(--animation-time) ease;
}
.vztl-article-subheading .vztl-article-info .vztl-block:hover {
  opacity: 1;
}
.vztl-article-subheading .vztl-article-info .vztl-block img {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .vztl-article-subheading .vztl-line {
    display: none;
  }
}

.vztl-line {
  height: 5px;
  background-color: var(--color-primary1);
}

.vztl-article-hero-image {
  width: 100%;
  position: relative;
  padding-top: 40%;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .vztl-article-hero-image {
    padding-top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .vztl-article-hero-image {
    padding-top: 65%;
  }
}
@media screen and (max-width: 375px) {
  .vztl-article-hero-image {
    padding-top: 70%;
  }
}

.vztl-news-slider {
  padding: 0px calc((100% - 1440px) / 2);
}
@media screen and (max-width: 1440px) {
  .vztl-news-slider {
    padding: 0px 12px;
  }
}
.vztl-news-slider__wrrp {
  margin-top: 48px;
  margin-bottom: 48px;
}
.vztl-news-slider__item {
  width: 100%;
  max-width: 464px;
}

.vztl-share {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}
.vztl-share__wrrp {
  display: flex;
  align-items: flex-end;
}
.vztl-share__wrrp .vztl-line {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-share__wrrp .vztl-line {
    display: none;
  }
}
.vztl-share__item img {
  width: 64px;
  height: 64px;
}
.vztl-share__links {
  display: flex;
  gap: 12px;
}

.vztl-about-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  height: 440px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading {
    height: 390px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading {
    height: 340px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading {
    height: 300px;
  }
}
.vztl-about-heading__wrrp {
  position: relative;
  width: 100%;
  padding-top: 90px;
  overflow: hidden;
}
.vztl-about-heading__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.vztl-about-heading__title {
  font-size: 5.55rem;
  text-transform: uppercase;
  font-family: "Mulish-Black";
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading__title {
    font-size: 4.72rem;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading__title {
    font-size: 3.88rem;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading__title {
    font-size: 2.77rem;
  }
}
.vztl-about-heading__desc {
  font-size: 2rem;
}
@media screen and (max-width: 1440px) {
  .vztl-about-heading__desc {
    font-size: 1.77rem;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-about-heading__desc {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 768px) {
  .vztl-about-heading__desc {
    font-size: 1.33rem;
  }
}

.vztl-about__main {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.vztl-history__wrrp {
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-history__wrrp {
    flex-direction: column;
  }
}
.vztl-history__desc, .vztl-history__image {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-history__desc, .vztl-history__image {
    max-width: 100%;
  }
}
.vztl-history__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.vztl-history__image {
  height: 450px;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .vztl-history__image {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-history__image {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-history__image {
    height: 300px;
  }
}

.vztl-indicators__wrrp {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
  grid-template-columns: repeat(4, minmax(25%, 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-indicators__wrrp {
    grid-template-columns: repeat(2, minmax(50%, 1fr));
  }
}
@media screen and (max-width: 680px) {
  .vztl-indicators__wrrp {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }
}
.vztl-indicators__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.vztl-indicators__item .vztl-hr {
  margin: 6px 0 16px;
}
.vztl-indicators__value {
  font-size: 8.3rem;
}
.vztl-indicators__desc {
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2em;
}

.vztl-mission__scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .vztl-mission__scene {
    height: auto;
  }
}
.vztl-mission__scene .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(198, 145, 92);
  box-shadow: 0 0 8px rgba(198, 145, 92, 0.6);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .vztl-mission__scene .dot {
    display: none;
  }
}
.vztl-mission__orbit {
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}
.vztl-mission__outer {
  width: 520px;
  height: 520px;
  border: 2px solid rgba(198, 145, 92, 0.55);
  box-shadow: 0 0 0 1px rgba(198, 145, 92, 0.15);
}
@media screen and (max-width: 768px) {
  .vztl-mission__outer {
    display: none;
  }
}
.vztl-mission__inner {
  width: 480px;
  height: 480px;
  border: 2px solid rgba(198, 145, 92, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .vztl-mission__inner {
    width: 100%;
    height: auto;
    border: 0px;
  }
}
.vztl-mission__inner2 {
  width: 495px;
  height: 495px;
  border: 10px solid rgba(198, 145, 92, 0.2);
}
@media screen and (max-width: 768px) {
  .vztl-mission__inner2 {
    display: none;
  }
}
.vztl-mission__glow {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--color-primary1);
  filter: blur(150px);
  opacity: 0.75;
}
.vztl-mission__text {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vztl-mission__text > div {
  text-align: center;
}
.vztl-mission__desc {
  font-size: 1.33rem;
  line-height: 1.2em;
}

.vztl-block__wrrp {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vztl-block-heading__wrrp {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.vztl-block-heading__wrrp h2, .vztl-block-heading__wrrp .vztl-line {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  .vztl-block-heading__wrrp h2, .vztl-block-heading__wrrp .vztl-line {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-block-heading__wrrp .vztl-line {
    display: none;
  }
}

.vztl-block-heading-desc__wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-block-heading-desc__wrrp > h2 {
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}
.vztl-block-heading-desc__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.vztl-block-heading-desc__bottom .vztl-line {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .vztl-block-heading-desc__bottom .vztl-line {
    display: none;
  }
}
.vztl-block-heading-desc__text {
  width: 100%;
  max-width: 50%;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .vztl-block-heading-desc__text {
    max-width: none;
  }
}

.vztl-targets {
  margin-top: calc(var(--base-padding) * 2);
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-targets {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-targets__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 12px;
}
@media screen and (max-width: 500px) {
  .vztl-targets__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.vztl-targets__item-num {
  width: 96px;
  min-width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(161, 101, 64, 0.25);
}
@media screen and (max-width: 500px) {
  .vztl-targets__item-num {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
.vztl-targets__item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.vztl-targets__item-desc {
  line-height: 1.2em;
}

.vztl-persons__wrrp {
  margin-top: calc(var(--base-padding) * 2);
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: calc(var(--base-padding) * 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 580px) {
  .vztl-persons__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-persons__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-persons__item-image-wrrp {
  width: 220px;
  height: 220px;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: rgba(161, 101, 64, 0.75);
}
.vztl-persons__item-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}
.vztl-persons__item-name span {
  display: block;
}
.vztl-persons__item-desc {
  line-height: 1.2em;
}
.vztl-persons__item-function {
  text-transform: uppercase;
}
.vztl-persons__item-science {
  font-size: 0.67rem;
  color: var(--color-primary1);
}

.vztl-docs-list {
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-docs-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-docs-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-docs-item {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color var(--animation-time) ease;
  padding: 24px;
  height: 250px;
  border-radius: 12px;
  border: 1px solid #3E2F26;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .vztl-docs-item {
    padding: 12px;
    height: auto;
    min-height: 200px;
  }
}
.vztl-docs-item:hover {
  background-color: rgba(161, 101, 64, 0.15);
}
.vztl-docs-item__top, .vztl-docs-item__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vztl-docs-item__tags-wrrp {
  display: flex;
  gap: 6px;
}
.vztl-docs-item__tags-item {
  background-color: rgba(161, 101, 64, 0.3);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.67rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.vztl-docs-item__buttons {
  display: flex;
  gap: 12px;
}

.vztl-contacts__wrrp {
  display: flex;
  justify-content: space-between;
}
.vztl-contacts__inner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.vztl-contacts__inner h2 {
  text-align: center;
}
.vztl-contacts__elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.vztl-contacts__elements-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vztl-input__wrrp {
  width: 100%;
}
.vztl-input__wrrp input[type=text], .vztl-input__wrrp input[type=password], .vztl-input__wrrp textarea {
  border: 0px;
  outline: 1px solid var(--color-primary1);
  background-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  min-height: 48px;
  padding-left: 12px;
  border-radius: 24px;
  color: var(--color-white);
  transition: outline var(--animation-time) ease-in;
}
.vztl-input__wrrp input[type=text]:focus-visible, .vztl-input__wrrp input[type=text]:hover, .vztl-input__wrrp input[type=password]:focus-visible, .vztl-input__wrrp input[type=password]:hover, .vztl-input__wrrp textarea:focus-visible, .vztl-input__wrrp textarea:hover {
  outline: 1px solid var(--color-white);
  outline-offset: 0px;
}
.vztl-input__wrrp textarea {
  padding-top: 6px;
  height: 150px;
  resize: none;
}
.vztl-input__wrrp .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vztl-input__wrrp .checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vztl-input__wrrp .checkbox input:checked + .checkbox-box::after {
  transform: scale(1);
  background-image: url("/local/templates/public/css/../images/check.svg");
  background-size: 75%;
}
.vztl-input__wrrp .checkbox input:focus-visible + .checkbox-box {
  outline: 2px solid #c7d2fe;
  outline-offset: 2px;
}
.vztl-input__wrrp .checkbox input:disabled + .checkbox-box {
  background: #e5e7eb;
  border-color: #d1d5db;
  cursor: not-allowed;
}
.vztl-input__wrrp .checkbox .checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-primary1);
  background-color: transparent;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
}
.vztl-input__wrrp .checkbox .checkbox-box::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 55%;
}
.vztl-input__wrrp .checkbox .checkbox-box.error-checkbox {
  border: 1px solid var(--color-primary1);
}
.vztl-input__wrrp .checkbox:hover .checkbox-box {
  border-color: var(--color-secondary1);
}
.vztl-input__wrrp .checkbox .checkbox-text {
  font-size: 0.85rem;
  text-align: left;
}
.vztl-input__buttons {
  text-align: center;
}

.vztl-form__wrrp {
  width: 100%;
  max-width: 464px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-expdirects__wrrp {
  margin-top: 48px;
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-expdirects__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-expdirects__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-expdirects__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vztl-expdirects__item img {
  width: 150px;
  min-width: 150px;
  height: 150px;
  min-height: 150px;
}
.vztl-expdirects__desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-howitworks {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: var(--base-padding);
  grid-template-columns: repeat(5, minmax(calc(20% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 1440px) {
  .vztl-howitworks {
    grid-template-columns: repeat(4, minmax(calc(25% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .vztl-howitworks {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-howitworks {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
  }
}
@media screen and (max-width: 375px) {
  .vztl-howitworks {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}
.vztl-howitworks__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-primary1);
  margin-top: 48px;
}
.vztl-howitworks__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vztl-files-list {
  margin-top: 48px;
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: var(--base-padding);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding) / 2), 1fr));
}
@media screen and (max-width: 768px) {
  .vztl-files-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
  }
}

.vztl-partners__wrrp {
  vertical-align: middle;
  line-height: 112px;
}
.vztl-partners__item {
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100px;
  max-height: 100px;
  margin-right: 48px;
  opacity: 1;
  transition: opacity var(--animation-time) ease;
}
.vztl-partners__item:hover {
  opacity: 0.75;
}
.vztl-partners__item img {
  height: 100%;
}

.vztl-exprequest__wrrp {
  width: 100%;
  max-width: 624px;
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px;
  margin: 0 auto;
  text-align: center;
}
.vztl-exprequest__wrrp .vztl-form__wrrp {
  width: 100%;
}

.vztl-announces-list__wrrp {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .vztl-announces-list__wrrp {
    gap: 48px;
  }
}
.vztl-announces-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .vztl-announces-list__item {
    flex-direction: column;
  }
}
.vztl-announces-list__image {
  width: 100%;
  max-width: 464px;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background-position: center center;
  background-size: cover;
}
.vztl-announces-list__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.vztl-announces-list__info h4 {
  margin-bottom: 12px;
}

.vztl-labels__wrrp {
  position: absolute;
  top: 24px;
  left: 24px;
  height: 26px;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .vztl-labels__wrrp {
    flex-direction: column;
    top: 12px;
    left: 12px;
  }
}
.vztl-labels__item {
  display: inline-block;
  background-color: rgba(77, 39, 16, 0.5);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.vztl-events-item__info {
  background-color: rgba(161, 101, 64, 0.15);
  border-radius: 12px;
  padding: 24px;
}

.vztl-events-gallery__ctrl {
  display: flex;
  justify-content: space-between;
}
.vztl-events-gallery__ctrl-item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border: 0;
  border-bottom: 6px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--animation-time) ease, color var(--animation-time) ease;
}
.vztl-events-gallery__ctrl-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.5px;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: var(--color-white);
  transition: stroke var(--animation-time) ease;
}
.vztl-events-gallery__ctrl-item:hover, .vztl-events-gallery__ctrl-item.vztl-events-gallery__ctrl-active {
  border-bottom: 6px solid var(--color-primary1);
  color: var(--color-primary1);
}
.vztl-events-gallery__ctrl-item:hover svg, .vztl-events-gallery__ctrl-item.vztl-events-gallery__ctrl-active svg {
  stroke: var(--color-primary1);
}
.vztl-events-gallery__content {
  display: none;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
}
.vztl-events-gallery__content-photo {
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-events-gallery__content-photo {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding)), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .vztl-events-gallery__content-photo {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-events-gallery__content-video {
  grid-template-columns: repeat(2, minmax(calc(50% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 768px) {
  .vztl-events-gallery__content-video {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-events-gallery__content-show {
  display: grid;
}
.vztl-events-gallery__content .vztl-item {
  aspect-ratio: 464/300;
  border-radius: 12px;
  transition: opacity var(--animation-time) ease;
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}
.vztl-events-gallery__content .vztl-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.vztl-events-gallery__content .vztl-item__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}
.vztl-events-gallery__content .vztl-item__play:hover {
  opacity: 1;
}
.vztl-events-gallery__content .vztl-item__desc {
  z-index: 2;
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.vztl-events-gallery__content .vztl-item:hover {
  opacity: 0.75;
  color: var(--color-white);
}

.vztl-media__gradient {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  inset: 0;
  background: RGBA(0, 0, 0, 0.9);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.32) 20%, rgba(0, 0, 0, 0.15) 80%, rgba(0, 0, 0, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000E6", endColorstr="#000000E6", GradientType=0);
}

.vztl-smiabout__wrrp {
  display: flex;
  flex-direction: column;
}
.vztl-smiabout__item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 24px 0;
  border-bottom: 1px solid #3E2F26;
  line-height: 1.2em;
}
.vztl-smiabout__item:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .vztl-smiabout__item {
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .vztl-smiabout__item {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-smiabout__item {
    flex-direction: column;
  }
}
.vztl-smiabout__item-logo {
  width: 200px;
  min-width: 200px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .vztl-smiabout__item-logo {
    width: 150px;
    min-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .vztl-smiabout__item-logo {
    width: 100%;
    justify-content: flex-start;
  }
}
.vztl-smiabout__item-logo img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 48px;
}
.vztl-smiabout__item-title {
  width: 100%;
}
.vztl-smiabout__item-date {
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vztl-smiabout__item-date {
    text-align: left;
    width: 100%;
    opacity: 0.5;
  }
}
.vztl-smiabout__item-smi {
  width: 240px;
  text-align: center;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .vztl-smiabout__item-smi {
    text-align: left;
    width: 100%;
    opacity: 0.5;
  }
}
.vztl-smiabout__item-rm {
  width: 115px;
}
@media screen and (max-width: 768px) {
  .vztl-smiabout__item-rm {
    width: 100%;
  }
}

.vztl-structure-scheme__land {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.vztl-structure-scheme__land img {
  width: 90%;
  max-width: 1078px;
}
@media screen and (max-width: 768px) {
  .vztl-structure-scheme__land {
    display: none;
  }
}
.vztl-structure-scheme__port {
  width: 100%;
  text-align: center;
  display: none;
}
.vztl-structure-scheme__port img {
  width: 90%;
  max-width: 409px;
}
@media screen and (max-width: 768px) {
  .vztl-structure-scheme__port {
    display: inline-block;
  }
}/*# sourceMappingURL=styles.css.map */

/* Footer start */
.footer__wrrp {
	width: 100%;
}
.footer__wrrp footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__wrrp footer .footer__bottom, .footer__wrrp footer .footer__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__wrrp footer .footer__top .footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px; 
  width: 100%;
  max-width: 342px;
}
.footer__wrrp footer .footer__bottom {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: calc(var(--base-padding) / 2);
}
.footer__wrrp footer .footer__bottom .footer__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__wrrp footer .footer__bottom .footer__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  height: 100%;
}
.footer__wrrp footer .footer-nav__wrrp {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, minmax(25%, 1fr));
	color: #AEB2BD;
}
.footer__wrrp footer .footer-nav__wrrp .footer-nav__col {
  display: flex;
  justify-content: flex-end;
}
.footer__wrrp footer .footer-nav__wrrp .footer-nav__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__wrrp footer .logo-vzv, .footer__wrrp footer .logo-2231 {
  height: 64px;
}
.footer__wrrp footer .roundbox {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-primary1);
  border-radius: 8px;
  padding: calc(var(--base-padding) / 2);
  line-height: 1.4em;
}
.footer__wrrp footer .roundbox .email {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__wrrp footer .roundbox .email img {
  width: 16px;
  height: 16px;
}
.footer__wrrp footer hr {
  width: 100%;
  clear: both;
  border: 0;
  border-top: 1px solid var(--color-primary1);
  margin-top: var(--base-padding);
  margin-bottom: calc(var(--base-padding) / 2);
}
.footer__wrrp footer .legal {
  font-size: 0.86rem;
}
.footer__wrrp footer .legal a {
  font-size: inherit;
  margin-right: 12px;
}
.footer__left-text {
	color: #AEB2BD !important;
}
a:link, a:visited {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--animation-time) ease;
}
a:link.lk-color-primary1, a:visited.lk-color-primary1,
a.popup__info-link {
  color: var(--color-primary1);
}
a:hover {
  color: var(--color-primary1);
}
a:hover.lk-color-primary1 {
  color: var(--color-white);
}
.how-apply__btn,
.nomination__btn,
.popup__partner-btn {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-primary1);

  min-width: 167px;
  min-height: 36px;

  font-family: "Mulish-Black";
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-pr-color3);
}
.popup__partner-btn {
  display: flex;
  justify-content: center;
}
/* Базовые стили попапа */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.popup__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(14, 14, 17, 0.95);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.partnership-popup .popup__content {
  padding: 24px;
}
.popup__container--auth {
  background: #1E1E1E;
}
.popup.active .popup__container {
  transform: scale(1);
}

.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup__close:hover {
  color: var(--color-pr-color3);
}

.popup__content {
  padding: 48px;
}
/* Кастомный скроллбар для попапа */
.popup__container::-webkit-scrollbar {
  width: 8px;
}

.popup__container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.popup__container::-webkit-scrollbar-thumb {
  background: var(--color-primary1);
  border-radius: 4px;
}

.popup__container::-webkit-scrollbar-thumb:hover {
  background: rgba(161, 101, 64, 0.8);
}

/* Стили для попапа "МОЛОДОЙ УЧЁНЫЙ" */
.popup__container--compact {
  max-width: 672px;
}

.young-scientist-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}

.young-scientist-popup__title {
  font-family: 'IBMPlexSans-Regular';
  font-size: 30px;
  color: var(--color-primary1);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  font-weight: 600;
  line-height: 36px;
}
.popup__dop-info {
  padding-top: 36px;
  font-size: 14px;
}

.young-scientist-popup__separator {
  width: 100%;
  height: 1px;
  background: rgba(161, 101, 64, .4);
  margin-bottom: 32px;
}

.young-scientist-popup__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #D4D4D4;
}

.young-scientist-popup__intro {
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
}
.profile-popup__achievements-list li,
.young-scientist-popup__list li {
  position: relative;
  padding-left: 18px;
  font-family: 'IBMPlexSans-Regular';
  font-size: 16px;
  padding-bottom: 16px;
  color: var(--color-pr-color3);
}

.profile-popup__achievements-list li::before,
.young-scientist-popup__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-primary1);
  border-radius: 50%;
}
/* Адаптивность */
@media (max-width: 768px) {
  .popup__content {
    padding: 32px 24px;
  }

  .profile-popup__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .profile-popup__photo {
    width: 150px;
    height: 150px;
  }

  .profile-popup__name {
    font-size: 32px;
  }

  .profile-popup__title {
    font-size: 16px;
  }

  .profile-popup__details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .popup__close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  /* Адаптивность для попапа "МОЛОДОЙ УЧЁНЫЙ" */
  .young-scientist-popup__header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }

  .young-scientist-popup__title {
    font-size: 22px;
  }

  .young-scientist-popup__close {
    width: 28px;
    height: 28px;
    margin-left: 16px;
  }

  .young-scientist-popup__separator {
    margin-bottom: 24px;
  }

  .young-scientist-popup__intro {
    font-size: 16px;
  }

  .young-scientist-popup__list {
    gap: 16px;
  }

  .young-scientist-popup__list li {
    font-size: 14px;
    padding-left: 28px;
    line-height: 1.5;
  }

  .popup__container--compact {
    max-width: 100%;
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .young-scientist-popup__header {
    flex-wrap: wrap;
  }

  .young-scientist-popup__title {
    font-size: 20px;
    flex-basis: calc(100% - 44px);
  }

  .young-scientist-popup__close {
    margin-left: auto;
  }

  .popup__content {
    padding: 24px 20px;
  }

  .young-scientist-popup__list li {
    padding-left: 24px;
    font-size: 14px;
  }
}
.pill:hover,
.partners__btn:hover,
.lk-person__wrrp.lk-pill:hover {
    background-color: var(--color-primary1) !important;
    color: var(--color-white) !important;
}
.partners__btn {
  min-width: 357px;
  height: 66px;
  border-radius: 100px;
  border: 3px solid var(--color-primary1);
  font-family: "Mulish-Black";
  font-size: 24px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 auto;
  transition: all .3s ease-in-out;
}



.vztl-targets2__wrrp {
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-targets2__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-targets2__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.vztl-targets2__item-text {
  width: 100%;
  max-width: 392px;
  line-height: 1.2em;
}
.vztl-targets2__item-halo {
  width: 120px;
  height: 120px;
  background-color: var(--color-primary1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(70px);
}

.vztl-values__wrrp {
  display: grid;
  -moz-column-gap: var(--base-padding);
       column-gap: var(--base-padding);
  row-gap: var(--base-padding);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--base-padding)), 1fr));
}
@media screen and (max-width: 1024px) {
  .vztl-values__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding)), 1fr));
  }
}
.vztl-values__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 250px;
  position: relative;
}
.vztl-values__item-text {
  width: 100%;
  max-width: 392px;
  line-height: 1.2em;
}
.vztl-values__item-back .ring1, .vztl-values__item-back .ring2, .vztl-values__item-back .halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-color: var(--color-primary1);
  border-style: solid;
  border-radius: 50%;
  transition: width calc(var(--animation-time) * 2) ease, height calc(var(--animation-time) * 2) ease, opacity calc(var(--animation-time) * 2) ease;
}
.vztl-values__item-back .ring1 {
  width: 200px;
  height: 200px;
  border-width: 10px;
  opacity: 0.25;
}
.vztl-values__item-back .ring2 {
  width: 215px;
  height: 215px;
  border-width: 2px;
  opacity: 0.3;
}
.vztl-values__item-back .halo {
  width: 120px;
  height: 120px;
  background-color: var(--color-primary1);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(70px);
}
.vztl-values__item:hover .vztl-values__item-back .ring1 {
  width: 220px;
  height: 220px;
}
.vztl-values__item:hover .vztl-values__item-back .ring2 {
  width: 180px;
  height: 180px;
}
.vztl-values__item:hover .vztl-values__item-back .halo {
  opacity: 0.9;
}


/* End */


/* Start:/local/templates/public/../main/css/override.css?17718457992490*/
@media screen and (max-width: 1440px) {
    .body__container {
        max-width: calc(100% - 48px);
    }
    .vztl-about__main {
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 768px) {
    
    .header__wrrp header .logo {
        max-width: 80px;
    }
    .header__wrrp header .header__right .menu__ctrl {
        font-size: 0px;
        padding: 13px 9px;
    }
    .lk-person__wrrp.lk-pill {
        padding: 13px 9px;
        text-align: center;
        width: 100px;
        font-size: 0.9rem;
        line-height: 1.2em;
    }
    .lk-person__wrrp .lk-person__fi {
        width: 100%;
        font-size: 1rem;
    }
    .lk-person__wrrp .lk-person__fullname {
        display: none;
    }
    .header__wrrp .mainnav__wrrp .mainnav {
        grid-template-columns: repeat(1, minmax(calc(100% - var(--base-padding) / 2), 1fr));
    }
    .header__wrrp .mainnav__wrrp .mainnav > nav {
        padding-left: 0;
    }
    .header__wrrp .mainnav__wrrp .mainnav .mainnav__image {
        display: none;
    }
    .header__wrrp header .header__right {
        gap: 9px;
    }

}


@media screen and (max-width: 1024px) {
    .header__wrrp header .header__right .socials__wrrp {
        display: none;
    }

    .footer__wrrp footer .footer__top {
        flex-direction: column;
        gap: 24px;
    }
    .footer__wrrp footer .footer__top .footer__left {
        max-width: 100%;
        gap: 24px;
        margin: 0 auto;
    }
    .footer__wrrp footer .footer__top .footer__left .footer__left-text {
        line-height: 1.4em;
        max-width: 400px;
    }
    
    .footer__wrrp footer .footer-nav__wrrp {
        width: 100%;
    }

    .footer__wrrp footer .footer-nav__wrrp .footer-nav__col {
        justify-content: flex-start;
    }

    .footer__wrrp footer hr {
        margin: 24px 0;
    }

    .footer__wrrp footer .footer__bottom {
        flex-direction: column;
        gap: 24px;
    }
        .footer__wrrp footer .footer__bottom {
        height: auto;
    }
}
@media screen and (max-width: 768px) { 
    .footer__wrrp footer .footer-nav__wrrp {
        grid-template-columns: repeat(2, minmax(50%, 1fr));
        grid-template-rows: repeat(2, minmax(50%, 1fr));        
        row-gap: 24px;
        column-gap: 24px;
    }
    .footer__wrrp footer .footer__bottom .footer__right {
        flex-direction: column;
        gap: 24px;
    }
}
/* End */
/* /local/components/rs/language.switcher/templates/.default/style.css?17717890961346 */
/* /local/templates/public/css/styles.css?177171119652865 */
/* /local/templates/public/css/global.css?17717106853915 */
/* /local/templates/public/css/style.css?177171120058781 */
/* /local/templates/public/../main/css/override.css?17718457992490 */
