:root,
::before,
::after {
  --custom-primary-color: #ffd18d;
  --custom-secondary-color: #fff;
  --custom-tertiary-color: #d7ab69;
  --custom-primary-color-rgb: 161, 108, 39;
  --custom-secondary-color-rgb: 157, 217, 243;
  --custom-tertiary-color-rgb: 206, 160, 94;
  --custom-primary-gradient: linear-gradient(
    to right,
    var(--custom-primary-color) 0%,
    var(--custom-tertiary-color) 51%,
    var(--custom-primary-color) 100%
  );
  --custom-primary-gradient-double: linear-gradient(
    to right,
    var(--custom-primary-color) 0%,
    var(--custom-tertiary-color) 25%,
    var(--custom-primary-color) 50%,
    var(--custom-tertiary-color) 75%,
    var(--custom-primary-color) 100%
  );
  --custom-primary-gradient-vertical: linear-gradient(
    to top,
    var(--custom-primary-color) 0%,
    var(--custom-tertiary-color) 51%,
    var(--custom-primary-color) 100%
  );
  --custom-light-color: var(--custom-secondary-color);
  --custom-medium-color: #f9fbfc;
  --custom-dark-color: #121212;
  --custom-text-color: var(--custom-dark-color);
  --custom-text-color-light: var(--custom-light-color);
  --custom-text-color-colored: var(--custom-primary-color);
  --custom-link-color: inherit;
  --custom-link-color-colored: var(--custom-primary-color);
  --custom-heading-color: var(--custom-text-color);
  --heading-color-light: var(--custom-light-color);
  --custom-accent-color-primary: var(--custom-primary-color);
  --custom-accent-color-secondary: var(--custom-secondary-color);
  --custom-accent-color-tertiary: var(--custom-tertiary-color);
  --custom-invalid-color: #e81111;
  --custom-valid-color: #008000;
  --custom-multibox-color: var(--custom-primary-gradient);
  --fancybox-accent-color: var(--custom-primary-color);
  --custom-primary-font-family: "Sofia Sans", Arial, Helvetica, sans-serif;
  --custom-secondary-font-family: var(--custom-primary-font-family);
  --custom-dark-shadow: 0px 3px 20px 0px rgba(148, 146, 245, 0.149);
  --custom-dark-shadow-right: 20px 5px 20px 0px rgba(148, 146, 245, 0.149);
  --custom-light-shadow: 0 0 0.9rem -0.4rem var(--custom-light-color);
  --custom-colored-shadow: 0px 5px 30px 0px var(--custom-primary-color);
  --custom-primary-border-radius: 3px;
  --custom-primary-border-radius-side-right: 0 3px 3px 0;
  --custom-primary-border-radius-side-left: 3px 0 0 3px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: inherit;
  line-height: inherit;
}

html.document {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.page {
  font-family: var(--custom-primary-font-family);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--custom-text-color);
  background-color: var(--custom-light-color);
  overflow-x: hidden;
  will-change: top;
}
.page__inner {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

html.document body.page .bvi-panel * {
  font-size: 2rem !important;
}

h1 {
  font-family: var(--custom-secondary-font-family);
  font-size: 4rem;
  line-height: 1.1;
}

h2 {
  font-family: var(--custom-secondary-font-family);
  font-size: 3.4rem;
  line-height: 1.1;
}

h3 {
  font-family: var(--custom-secondary-font-family);
  font-size: 2.4rem;
}

h4 {
  font-family: var(--custom-secondary-font-family);
  font-size: 2rem;
}

h5 {
  font-family: var(--custom-secondary-font-family);
  font-size: 1.8rem;
}

h6 {
  font-family: var(--custom-secondary-font-family);
  font-size: 1.6rem;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

input:focus {
  outline: none;
  border-color: var(--custom-secondary-color);
}

img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.3s all ease-in-out;
}

.container {
  padding: 0 2rem;
}

.bold-text {
  font-weight: 700;
}

.title {
  font-weight: 700;
}
.title_xlarge {
  font-size: 4.5rem;
  line-height: 1.1;
}
.title_large {
  font-size: 3.4rem;
  line-height: 1.1;
}
.title_medium {
  font-size: 2.4rem;
  line-height: 1.2;
}
.title_small {
  font-size: 2rem;
  line-height: 1.2;
}
.title_xsmall {
  font-size: 1.8rem;
}
.title_xssmall {
  font-size: 1.6rem;
}
.title_light {
  color: var(--custom-text-color-light);
}
.title_colored {
  color: var(--text-color-altered);
}
.title_centered {
  text-align: center;
}
.title_uppercase {
  text-transform: uppercase;
}
.title_thin {
  font-weight: 400;
}
.title_fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.title_bordered {
  padding-bottom: 2rem;
  border-bottom: 3px solid currentColor;
}
.title_decorated {
  padding: 0 4rem;
  border-bottom: 1px dashed currentColor;
}

.list {
  list-style: none;
  padding-left: 0;
}
.list_dotted {
  list-style: disc;
  padding-left: 2rem;
}
.list_marked {
  list-style: disc;
  padding-left: 1rem;
}
.list_marked li {
  padding-left: 1.2rem;
}
.list_marked li::marker {
  content: "-";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.pull-right,
.pull-left {
  max-width: 50%;
  display: flex;
}

.pull-left {
  margin-right: 1rem;
  float: left;
}

.pull-right {
  margin-left: 1rem;
  float: right;
}

.item-image {
  margin-bottom: 1.5rem;
}

div.attachmentsContainer {
  margin: 0;
}

.interactive-text {
  cursor: pointer;
}

.highlight-text {
  text-decoration: underline;
}
.highlight-thumb {
  position: relative;
}
.highlight-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--custom-accent-color-primary);
  opacity: 0;
  transition: 0.3s all ease-in-out;
  z-index: 1;
}
.highlight-thumb:hover::before {
  opacity: 0.5;
}

.link {
  display: inline-block;
  outline: none;
  text-decoration: none;
  color: var(--custom-link-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.link:hover {
  color: var(--custom-accent-color-primary);
}
.link__icon {
  display: inline-block;
  line-height: inherit;
}
.link__icon_pd-left {
  padding-left: 0.3rem;
}
.link__icon_pd-right {
  padding-right: 0.3rem;
}
.link_medium {
  font-weight: 500;
}
.link_bold {
  font-weight: 600;
}
.link_underlined {
  text-decoration: underline;
}
.link_colored {
  color: var(--custom-link-color-colored);
}
.link_colored:hover {
  text-decoration: underline;
}
.link_secondary:hover {
  color: var(--custom-accent-color-tertiary);
}
.link_neutral {
  color: inherit;
}
.link_neutral:hover {
  color: var(--custom-dark-color);
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn_with-padding {
  padding: 1.5rem 2rem;
}
.btn_bold {
  font-weight: 600;
}
.btn_uppercase {
  text-transform: uppercase;
}
.btn_primary {
  border-radius: var(--custom-primary-border-radius);
  background-size: 200% auto !important;
  background-image: var(--custom-primary-gradient) !important;
  box-shadow: var(--custom-dark-shadow);
  color: var(--custom-text-color-light);
}
.btn_primary:hover {
  background-position: right center;
}
.btn_secondary {
  border-radius: var(--custom-primary-border-radius);
  background-color: var(--custom-secondary-color);
  color: var(--custom-text-color-colored);
}
.btn_secondary:hover {
  background-color: var(--custom-accent-color-primary);
  color: var(--custom-text-color-light);
}
.btn_tertiary {
  border-radius: var(--custom-primary-border-radius);
  background-color: var(--custom-tertiary-color);
  color: var(--custom-text-color-light);
}
.btn_tertiary:hover {
  background-color: var(--custom-accent-color-secondary);
}
.btn_transparent {
  box-shadow: 0 0 0 2px currentColor inset;
  border-radius: var(--custom-primary-border-radius);
  background-color: transparent;
}
.btn_transparent:hover {
  box-shadow: 0 0 0 2px var(--custom-accent-color-primary) inset;
  background-color: var(--custom-accent-color-primary);
  color: var(--custom-text-color-light);
}
.btn_stretched {
  width: 100%;
}
.btn_with-shadow {
  box-shadow: var(--custom-light-shadow);
}

.fa {
  line-height: inherit;
}

.text {
  font-family: inherit;
}
.text_white {
  color: var(--text-color-colored);
}
.text_italic {
  font-style: italic;
}
.text_large {
  font-size: 3.6rem;
}
.text_center {
  text-align: center;
}

img.lazyload,
img.lazyloading {
  opacity: 0;
}

img.lazyloaded {
  opacity: 1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item__icon {
  padding-right: 0.7rem;
  color: inherit;
}
.contact-item__link {
  display: inline;
}

.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  width: 100%;
  display: flex;
  height: auto;
}

.slider-navigation {
  margin: 4rem auto 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.slider-navigation__btn {
  font-size: 4rem;
}

.logo__link {
  display: flex;
  width: 100%;
  max-width: 200px;
}

.cta-btn {
  position: fixed;
  left: 3rem;
  bottom: 4rem;
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  border-radius: 50%;
  box-shadow: 0 0 0 var(--custom-secondary-color);
  background-color: var(--custom-light-color);
  border: 2px solid var(--custom-primary-color);
  font-size: 3rem;
  color: var(--text-color-altered);
  transition: 0.3s all ease-in-out;
  z-index: 2;
  -webkit-animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
}
.cta-btn:hover {
  background-color: var(--custom-primary-color);
  color: var(--text-color-colored);
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }
}
.scroll-up {
  position: fixed;
  right: 1.5rem;
  bottom: 9rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  z-index: 3;
}
.scroll-up_hidden {
  visibility: hidden;
  opacity: 0;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--custom-light-color);
  z-index: 100;
  transition: 0.5s all ease-in-out;
}
.preloader__img {
  max-width: 10rem;
  max-height: 10rem;
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}
.preloader_hidden {
  visibility: hidden;
  z-index: -1;
}
.preloader_hidden .preloader__img {
  opacity: 0;
}

.hover-block {
  transition: 0.5s all ease-in-out;
}
.hover-block__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.lazyloading-bg {
  padding-top: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.content {
  flex-grow: 1;
}
.content__section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.content__section_no-padding {
  padding: 0;
}
.content__section_padding-sm {
  padding: 5rem 0;
}
.content__section_light {
  background-color: var(--custom-light-color);
}
.content__section_medium {
  background-color: var(--custom-medium-color);
}
.content__section_dark {
  background-color: var(--custom-dark-color);
  color: var(--custom-text-color-light);
}
.content__section_colored {
  background-color: var(--custom-primary-color);
  color: var(--custom-text-color-light);
}
.content__section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.content__section-bg_left {
  inset: 0 auto 0 0;
  width: 50%;
}
.content__section-bg_right {
  inset: 0 0 0 auto;
  width: 50%;
}
.content__section-wrapper {
  position: relative;
  z-index: 1;
}
.content__section-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.content__section-title {
  margin-bottom: 2rem;
}
.content__section-title_without-margin {
  margin: 0;
}
.content__section-title_mb-small {
  margin-bottom: 3rem;
}
.content__section-title_pushed-right {
  margin-left: auto;
}
.content__section-title_pushed-center {
  margin: 0 auto;
}
.content__section-descr {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1em;
}
.content__section-descr_centered {
  text-align: center;
}
.content__section-cta-text {
  font-size: 1.1em;
  font-weight: 500;
}
.content__section-poster {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 50rem;
}
.content__section-poster_centered {
  margin: 0 auto;
}
.content__section-poster-image {
  -o-object-fit: contain;
  object-fit: contain;
}
.content__section-bottom {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.content__inner-page {
  padding: 2rem 0;
}

.mobile-catalog-btn {
  display: none;
}

.article-content-share2 > * {
  margin-bottom: 1.5rem;
  text-align: right;
}
.article-content > * {
  margin-bottom: 1.5rem;
}
.article-content > ul,
.article-content > ol {
  padding-left: 2rem;
}
.article-content a {
  text-decoration: none;
  color: var(--custom-link-color-colored);
  transition: 0.3s all ease-in-out;
}
.article-content a:hover {
  text-decoration: underline;
}

.mobile-dropright {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  height: 100vh;
  z-index: 1000000;
  box-shadow: var(--custom-light-shadow);
  transition: 0.5s all ease-in-out;
}
.mobile-dropright_hidden {
  translate: 105% 0;
}
.mobile-dropright__content {
  position: relative;
  padding: 2rem;
  height: 100%;
  background: var(--custom-primary-gradient);
  color: var(--custom-text-color-light);
  overflow-y: auto;
  z-index: 1;
}
.mobile-dropright__content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.mobile-dropright__logo {
  font-size: 1.2em;
  font-weight: 600;
}
.mobile-dropright__close {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  line-height: 1;
}
.mobile-dropright__contacts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sitemap-block__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sitemap-block__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-page__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.search-field {
  margin-bottom: 2rem;
}
.search__box {
  position: relative;
  display: flex;
  min-width: 15rem;
}
.search__input {
  border: none;
  width: 100%;
  padding: 1.5rem 5rem 1.5rem 2rem;
  border-radius: var(--custom-primary-border-radius);
  box-shadow: var(--custom-dark-shadow);
}
.search__btn {
  padding: 0 2rem;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: var(--custom-text-color-colored);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
.menu__item {
  position: relative;
}
.menu__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1rem 0;
  font-weight: 700;
}
.menu__expand {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--custom-primary-gradient-double);
  color: var(--custom-text-color-light);
  z-index: 3;
}
.header__main-inner {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  grid-template-areas: "logo logo logo contacts contacts contacts contacts contacts accessibility title title title" "logo logo logo actions actions actions actions actions actions title title title";
  gap: 2rem;
}
.header__accessibility {
  grid-area: accessibility;
  display: flex;
  align-items: center;
}
.header__title {
  grid-area: title;
  font-size: 1.1em;
  /* text-align: right; */
  font-weight: 500;
}
.header__title-highlight {
  font-size: 1.5em;
  font-weight: 600;
}
.header__logo {
  grid-area: logo;
  flex-shrink: 0;
  display: flex;
}
.header__contacts {
  grid-area: contacts;
  display: flex;
  align-items: center;
}
.header__contacts-items {
  display: block;
  padding-top: 14px;
  /* flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem; */
}
.header__contacts-item {
  padding: 5px 0;
}
.header__actions {
  grid-area: actions;
}
.header__actions-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 3rem;
}
.header__search {
  width: 100%;
  max-width: 500px;
}
.header__navbar {
  background: var(--custom-primary-color);
}
.header__navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  transition: 0.3s all ease-in-out;
}
.header__toggles {
  display: none;
}

.navbar {
  width: 100%;
}
.navbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.fixed-navbar {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--custom-light-shadow);
  background: var(--custom-primary-gradient-double);
  color: var(--custom-text-color-light);
  z-index: -1;
  transition: 0s all ease-in-out;
}
.fixed-navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.fixed-navbar_shown {
  visibility: visible;
  opacity: 1;
  z-index: 3;
  transition: 0.5s all ease-in-out;
}

.main-slider {
  position: relative;
  color: var(--text-color-colored);
}
.main-slider__prev,
.main-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 3rem 5rem;
  font-size: 3rem;
  color: inherit;
  z-index: 1;
}
.main-slider__prev:hover,
.main-slider__next:hover {
  color: var(--custom-accent-color-tertiary);
}
.main-slider__pagination {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  translate: -50% 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  z-index: 2;
}
.main-slider__pagination-content {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.main-slider__pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--custom-light-color);
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.main-slider__pagination-bullet:focus-visible {
  width: 8px;
  height: 8px;
  outline: none;
  border: 1px solid var(--custom-secondary-color);
}
.main-slider__pagination-bullet_active {
  transform: scale(1.5);
  opacity: 1;
}

.banner {
  padding: 15rem 0;
  position: relative;
  display: flex;
  width: 100%;
}
.banner__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}
.banner__info {
  position: relative;
  margin: auto 0 auto auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  z-index: 2;
}
.banner__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  text-shadow: var(--custom-dark-shadow);
}
.banner__descr {
  color: var(--custom-text-color-light);
  text-shadow: var(--custom-dark-shadow);
}
.banner__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.banner__link_light {
  color: var(--custom-light-color);
}

.userinfo__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}
.userinfo-card {
  position: relative;
  display: flex;
  overflow: hidden;
}
.userinfo-card_light {
  background-color: var(--custom-light-color);
}
.userinfo-card_medium {
  background-color: var(--custom-medium-color);
}
.userinfo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -110%;
  width: 100%;
  height: 0.7rem;
  background-color: var(--custom-tertiary-color);
  transition: all 0.5s ease-in-out;
}
.userinfo-card__wrapper {
  padding: 3rem 10% 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.userinfo-card__description {
  flex-grow: 1;
}
.userinfo-card:hover::before {
  translate: 0 0;
}

.docs-block__slider {
  padding: 2rem 0;
}

.doc {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.doc__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.doc__thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}

.article-card {
  width: 100%;
  position: relative;
  display: flex;
  border-radius: var(--custom-primary-border-radius);
  box-shadow: var(--custom-dark-shadow);
  overflow: hidden;
}
.article-card__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  background-color: var(--custom-light-color);
  color: var(--custom-text-color);
}
.article-card__thumb {
  position: relative;
  width: 100%;
  height: 25rem;
  display: flex;
  overflow: hidden;
}
.article-card__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.article-card__info {
  flex-grow: 1;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.article-card__introtext {
  flex-grow: 1;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}
.news-card {
  width: 100%;
  position: relative;
  display: flex;
  border-radius: var(--custom-primary-border-radius);
  box-shadow: var(--custom-dark-shadow);
  overflow: hidden;
}
.news-card__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  background-color: var(--custom-light-color);
  color: var(--custom-text-color);
}
.news-card__thumb {
  position: relative;
  width: 100%;
  height: 25rem;
  display: flex;
  overflow: hidden;
}
.news-card__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-card__info {
  flex-grow: 1;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-card__introtext {
  flex-grow: 1;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.about-block_column {
  flex-direction: column;
  align-items: center;
}
.about-block__content {
  width: 45%;
}
.about-block__content figure + * {
  overflow: hidden;
}

.services__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}

.service-card {
  position: relative;
  width: 100%;
  display: flex;
  border-radius: var(--custom-primary-border-radius);
  color: var(--custom-text-color-light);
  overflow: hidden;
}
.service-card__link {
  width: 100%;
  display: flex;
}
.service-card__inner {
  min-height: 35rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.service-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: var(--custom-tertiary-color);
}
.service-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--custom-primary-color-semitransparent);
  translate: 0 -100%;
  transition: 0.5s all ease-in-out;
}
.service-card__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-card__filler {
  width: 100%;
  height: 25rem;
}
.service-card__info {
  padding: 3rem 2rem;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}
.service-card__title {
  flex-grow: 1;
}
.service-card__readmore {
  padding: 1rem 1.5rem;
  background-color: var(--custom-primary-color);
  border-radius: var(--custom-primary-border-radius);
  font-weight: 700;
  color: var(--custom-text-color-light);
  transition: 0.5s all ease-in-out;
}
.service-card:hover .service-card__thumb::before {
  translate: 0 0;
}
.service-card:hover .service-card__readmore {
  background-color: var(--custom-secondary-color);
}

.event-card {
  position: relative;
  display: flex;
}
.event-card__link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.5em;
  opacity: 0;
  z-index: 1;
}

.event-card__link2 {
  position: absolute;
  /* inset: 0; */
  display: flex;
  margin-top: 25px;
  top: 51%;
  width: 109%;
  /* left: 21%; */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.5em;
  opacity: 0;
  z-index: 1;
}

.event-card__thumb {
  min-height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.event-card:hover .event-card__link {
  opacity: 1;
  background-color: rgba(var(--custom-primary-color-rgb), 0.5);
  color: var(--custom-text-color-light);
}

.event-card:hover .event-card__link2 {
  opacity: 1;
  /* background-color: rgba(var(--custom-primary-color-rgb), 0.5); */
  color: var(--custom-text-color-light);
}

.event-card:hover .event-card__image {
  filter: blur(5px);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}

.staff-block__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.staff-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.staff-card__thumb {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 30rem;
  display: flex;
}
.staff-card__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lred-multi-box__container {
  width: 310px;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 3;
}
.lred-multi-box__container-inner {
  border-radius: var(--custom-primary-border-radius);
  box-shadow: var(--custom-light-shadow);
}
.lred-multi-box__container-active {
  z-index: 4;
}
.lred-multi-box__trigger {
  width: 230px;
  height: 50px;
  margin-right: 0;
  padding: 1rem 1.5rem;
}
.lred-multi-box__trigger-title-icon {
  padding-right: 0;
}
.lred-multi-box__head {
  padding: 1rem 0.5rem;
  height: auto;
  background: var(--custom-primary-gradient);
  font-weight: 700;
  color: var(--custom-text-color-light);
  border-radius: var(--custom-primary-border-radius)
    var(--custom-primary-border-radius) 0 0;
}
.lred-multi-box__body {
  border-radius: 0 0 var(--custom-primary-border-radius)
    var(--custom-primary-border-radius);
  background-color: var(--custom-light-color);
  color: var(--custom-text-color);
}
.lred-multi-box__body i,
.lred-multi-box__body a {
  color: var(--custom-text-color);
}
.lred-multi-box__item {
  color: var(--custom-text-color);
}
.lred-multi-box__item_highlight i {
  color: var(--custom-primary-color);
}

html.document body.page .lred-multi-box__trigger * {
  font-size: clamp(12px, 1.4rem, 20px) !important;
}

.lred-multi-box__body .lred-multi-box__body_container-link:hover {
  background-color: var(--custom-primary-color);
}
.lred-multi-box__body .lred-multi-box__body_container-link:hover i,
.lred-multi-box__body .lred-multi-box__body_container-link:hover a {
  color: var(--custom-text-color-light);
}

.lredmod {
  padding: 1.5rem;
  padding-top: 2rem;
  background-color: var(--custom-light-color);
  color: var(--custom-text-color);
  border-radius: var(--custom-primary-border-radius);
}
.lredmod-close {
  color: currentColor;
  transition: 0.3s all ease-in-out;
}
.lredmod-close:hover {
  color: var(--custom-accent-color-tertiary);
}

.lredthanks {
  background: var(--custom-primary-gradient);
  border-radius: var(--custom-primary-border-radius);
  color: var(--custom-text-color-light);
}

.lredform {
  font-family: inherit;
}
.lredform-fields {
  gap: 1.5rem;
}
.lredform-fields_grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: flex-start;
}
.lredform-fields__item {
  gap: 0.5rem;
}
.lredform-fields__item_grid-small {
  grid-column: span 4;
}
.lredform-fields__item_grid-medium {
  grid-column: span 6;
}
.lredform-fields__item_grid-large {
  grid-column: span 12;
}
.lredform-fields__item_grid-centered {
  align-self: center;
}
.lredform-field {
  padding: 1.5rem 2rem;
  border-radius: var(--custom-primary-border-radius);
  background-color: var(--custom-light-color);
  color: var(--custom-text-color);
}
.lredform-field__input {
  color: inherit;
}
.lredform-field__input::-moz-placeholder {
  color: inherit;
}
.lredform-field__input:-ms-input-placeholder {
  color: inherit;
}
.lredform-field__input::placeholder {
  color: inherit;
}
.lredform-field__input:-webkit-autofill,
.lredform-field__input:-webkit-autofill:hover,
.lredform-field__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-color-colored) !important;
}
.lredform-field__input:-internal-autofill-selected {
  color: var(--text-color-colored) !important;
}
.lredform-field_transparent {
  padding: 1rem 1.5rem 1.5rem;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid currentColor;
  color: inherit;
}
.lredform-field_transparent .lredform-field__input:-webkit-autofill,
.lredform-field_transparent .lredform-field__input:-webkit-autofill:hover,
.lredform-field_transparent .lredform-field__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--custom-text-color) !important;
}
.lredform-field_transparent .lredform-field__input:-internal-autofill-selected {
  color: var(--custom-text-color) !important;
}
.lredform-field__pasanger-title {
  color: inherit;
}
.lredform-field.invalid {
  border-color: var(--custom-invalid-color) !important;
}
.lredform__msg {
  color: var(--custom-invalid-color);
}
.lredform-submit {
  margin-bottom: 0;
}
.lredform-agree__text {
  line-height: inherit;
}
.lredform .lredpreloader--circle > circle {
  stroke: var(--custom-primary-color);
}

.home-section .swiper-slide {
  min-height: 70vh;
  overflow: hidden;
}
.home-section .swiper-slide-active {
  z-index: 1;
}

.custom-map {
  width: 100%;
  height: 400px;
}

.cta-section {
  position: relative;
}

.cta-block {
  position: relative;
  color: var(--custom-text-color-light);
  z-index: 1;
}
.cta-block__inner {
  display: flex;
  gap: 4rem;
}
.cta-block__info {
  margin-right: auto;
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta-block__info_wide {
  width: 100%;
}
.cta-block__info_centered {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-block__descr {
  text-align: center;
  font-size: 1.7em;
}
.cta-block__contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 2rem;
}
.cta-block__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 45%;
  margin-left: auto;
}
.cta-block__form .lredform__msg {
  color: var(--custom-text-color-light);
}

.footer {
  background: var(--custom-primary-gradient-double);
  color: var(--custom-text-color-light);
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__main {
  padding: 3rem 0;
}
.footer__main-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__title {
  padding-bottom: 1rem;
}
.footer__descr {
  padding: 1rem 0;
}
.footer__list-item {
  font-weight: 500;
  padding: 0.4rem 0;
}
.footer__list-link {
  display: block;
}
.footer__bottom-inner {
  border-top: 1px solid currentColor;
  padding: 2rem 0;
}
.footer__copyright {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
}
.footer__tagline a {
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.footer__tagline a:hover {
  color: var(--custom-accent-color-primary);
}
.footer__tagline .redline---copyright b span:last-child {
  color: var(--custom-text-color-light) !important;
}
.footer__tagline .redline---copyright .cpr--mobile-icon {
  margin-left: 7px;
  padding-top: 2px;
  vertical-align: middle;
}
.footer__tagline .redline---copyright a {
  color: inherit;
  transition: 0.3s all ease-in-out;
}
.footer__tagline .redline---copyright a:hover {
  color: var(--custom-accent-color-tertiary);
}

.photo-gallery {
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.photo-gallery__item-link {
  display: flex;
  height: 30rem;
}
.photo-gallery__item-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumbs {
  padding: 2rem 0 2rem;
  background-color: var(--custom-tertiary-color);
  color: var(--custom-text-color-light);
}
.breadcrumbs__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb__item:not(:first-child) .breadcrumb__link {
  display: inline;
  position: relative;
  padding-left: 1.2rem;
}
.breadcrumb__item:not(:first-child) .breadcrumb__link::before {
  content: "/";
  position: absolute;
  left: 0;
}

.pagination {
  padding-top: 3rem;
  display: flex;
  justify-content: flex-start;
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.aside-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.aside-menu__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--custom-primary-border-radius);
  overflow: hidden;
}
.aside-menu__link {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--custom-primary-color);
  border-bottom: 1px solid currentColor;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--custom-text-color-light);
  transition: 0.3s all ease-in-out;
}
.aside-menu__link:hover {
  background-color: var(--custom-secondary-color);
}

.assets-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.delivery-payment__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
}

.contact-page__description {
  margin-bottom: 3rem;
}
.contact-page__social-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-page__social-content {
  display: flex;
  gap: 1rem;
}
.contact-page__social-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1399px) {
  .header__main-inner {
    grid-template-areas: "logo logo logo contacts contacts contacts contacts accessibility title title title title" "logo logo logo actions actions actions actions actions title title title title";
  }
}
@media (max-width: 1199px) {
  html.document {
    font-size: 60%;
  }
  .header .navbar {
    font-size: 1.2rem;
  }
  .header .navbar .menu {
    gap: 1rem;
  }
  .footer__copyright {
    padding-bottom: 14rem;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
  .desktop-menu {
    margin: 0 auto;
  }
  .menu__item_deeper:hover > .menu__submenu {
    visibility: visible;
    opacity: 1;
    translate: 0 100%;
    z-index: 1;
    pointer-events: all;
  }
  .menu__item_deeper:hover > .menu__submenu_deep {
    translate: 99% 100%;
  }
  .menu__link {
    text-transform: uppercase;
  }
  .menu__link_top {
    position: relative;
    padding: 1.5rem 0;
  }
  .menu__link_sub {
    padding: 1.5rem 1.5rem 0;
    text-transform: none;
    font-weight: 400;
  }
  .menu__submenu {
    visibility: hidden;
    opacity: 0;
    min-width: 20rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 35rem;
    position: absolute;
    bottom: 0;
    translate: 0 calc(100% - 1rem);
    border-radius: var(--custom-primary-border-radius);
    background-color: var(--custom-light-color);
    box-shadow: var(--custom-dark-shadow);
    color: var(--custom-text-color);
    pointer-events: none;
    transition: 0.3s all ease-in-out;
  }
  .menu__submenu-items > .menu__link-text {
    font-weight: 500;
    position: relative;
  }
  .menu__submenu-items > .menu__item:last-child > .menu__link {
    padding-bottom: 1.5rem;
  }
  .menu__submenu_deep {
    right: 0;
    bottom: 100%;
    translate: 99% 105%;
    border-radius: var(--custom-primary-border-radius);
    box-shadow: var(--custom-dark-shadow-right);
    z-index: -1;
  }
  .header__logo-mobile {
    display: none;
  }
  .banner__info {
    max-width: 45%;
  }
  .footer__descr {
    max-width: 38ch;
  }
}
@media (max-width: 991px) {
  .header-desktop-navbar {
    display: none;
  }
  html.document {
    font-size: 58%;
  }
  .title_xlarge {
    font-size: 3.5rem;
  }
  .header__main-inner {
    justify-content: center;
    grid-template-areas: "logo logo logo logo logo logo logo logo logo logo logo logo" "title title title title title title title title title title title title" "contacts contacts contacts contacts contacts contacts contacts contacts contacts contacts contacts contacts" "accessibility accessibility accessibility accessibility accessibility accessibility accessibility accessibility accessibility accessibility accessibility accessibility" "actions actions actions actions actions actions actions actions actions actions actions actions";
  }
  .header__logo,
  .header__contacts-items,
  .header__accessibility,
  .header__actions-inner {
    justify-content: center;
  }
  .header__title {
    text-align: center;
  }
  .header__toggles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .header__toggle {
    padding: 1.5rem 0;
  }
  .header__toggle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .header__toggle-line {
    display: block;
    width: 2.8rem;
    height: 2px;
    background-color: currentColor;
    border-radius: var(--custom-primary-border-radius);
    transition: 0.3s all ease-in-out;
  }
  .header__toggle-line_small {
    width: 1.8rem;
  }
  .header__toggle_crossed span:first-child {
    transform: translate(2px, -1px) rotate(45deg);
    transform-origin: top left;
  }
  .header__toggle_crossed .header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .header__toggle_crossed span:last-child {
    transform: rotate(-45deg);
    transform-origin: top left;
  }
  .header__contacts {
    justify-content: center;
    text-align: center;
  }
  .header__actions {
    justify-content: center;
  }
  body.page .bvi-body .fixed-navbar .header__toggle .header__toggle-line {
    background-color: currentColor !important;
  }
  .menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu__expand {
    width: 4rem;
    transition: 0.3s all ease-in-out;
  }
  .menu__expand-icon {
    transition: 0.3s all ease-in-out;
  }
  .menu__expand_rotated .menu__expand-icon {
    rotate: 180deg;
  }
  .menu__submenu {
    width: 100%;
    display: none;
  }
  .menu__submenu .menu__link:hover {
    color: var(--custom-text-color);
  }
  .menu__submenu .menu__expand-icon {
    rotate: 90deg;
  }
  .menu__submenu .menu__expand_rotated .menu__expand-icon {
    rotate: 270deg;
  }
  .content__article-page-body img {
    float: none !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .content__inner-page-grid {
    grid-template-areas: "main main main main main main main main main main main main" "aside aside aside aside aside aside aside aside aside aside aside aside";
  }
  .products__grid_small {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  }
  .product-card__hover-block {
    padding: 1.5rem 2rem;
    top: unset;
    bottom: 5%;
    left: 50%;
    translate: -50% 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: var(--custom-primary-color-semitransparent);
    border-radius: var(--custom-primary-border-radius);
  }
  .product-card__hover-block .hover-block {
    scale: 1;
  }
  .product-card__thumb_fixed {
    width: 100%;
    height: 25rem;
  }
  .delivery-payment__items {
    grid-template-columns: 1fr;
  }
  .about-block__info figure {
    text-align: center;
  }
  .pull-left,
  .pull-right {
    max-width: 100%;
    float: none !important;
  }
  .pull-left {
    margin-right: 0;
  }
  .pull-right {
    margin-left: 0;
  }
  .mobile-dropright .menu__submenu-items {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .home-section .swiper-slide {
    min-height: 50vh;
  }
  .banner {
    padding: 5rem 0 9rem;
  }
  .banner__info {
    padding-right: 0;
    justify-content: stretch;
  }
  .banner__info-wrapper {
    margin-top: 0;
  }
  .content__section {
    padding: 4rem 0;
  }
  .content__section-title {
    margin-bottom: 3rem;
  }
  .content__section-poster {
    margin: 0;
  }
  .content__section-bg_left {
    width: 100%;
  }
  .content__section-bg_right {
    display: none;
  }
  .content__inner-page {
    padding: 4rem 0;
  }
  .about-block__content {
    width: 100%;
  }
  .userinfo-card__wrapper {
    padding: 2rem;
  }
  .about-block {
    flex-direction: column;
  }
  .product__title {
    min-height: auto;
  }
  .lred-multi-box__container {
    width: 250px;
    transform: none;
  }
  .lred-multi-box__trigger {
    width: 210px;
  }
  .lredmod-close {
    top: 9px;
  }
  .lredform-fields_grid {
    grid-template-columns: 1fr;
  }
  .lredform-fields__item_grid-small,
  .lredform-fields__item_grid-medium,
  .lredform-fields__item_grid-large {
    grid-column: span 1;
  }
  .features-table__item {
    flex-direction: column;
  }
  .features-table__item-fill {
    display: none;
  }
  .cta-block__inner {
    flex-direction: column;
  }
  .cta-block__inner > * {
    width: 100%;
  }
  .footer__inner {
    text-align: center;
  }
  .footer__main {
    flex-direction: column;
  }
  .footer__block {
    padding: 0 1rem;
    width: 100%;
    box-shadow: none;
  }
  .footer__menu .menu__link {
    justify-content: center;
  }
  .footer__main-section {
    align-items: center;
  }
  .footer__list.list_marked {
    list-style: none;
    padding-left: 0;
  }
  .footer__list.list_marked li {
    padding-left: 0;
    list-style: none;
  }
  .footer__list.list_marked li::marker {
    content: "";
    display: none;
  }
}
@media (max-width: 575px) {
  html.document {
    font-size: 55%;
  }
}
@media screen and (max-width: 425px) {
  .lred-multi-box__container {
    transform: none;
    left: unset;
  }
  .lred-multi-box__container.lred-multi-box__container-active {
    transform: none;
  }
}
@media screen and (max-width: 374px) {
  .title_xlarge {
    font-size: 4rem;
  }
} /*# sourceMappingURL=styles.css.map */

.centre {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.social-icons {
  /* text-align: center; */
}
.social-icons li {
  display: inline-block;
  list-style-type: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.social-icons li a {
  border-radius: 4px;
  color: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  color: #fff;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: normal;
}
.social-icons li img {
  height: 30px;
  width: 30px;
  background-size: 30px 30px;
  display: inline-block;
  vertical-align: top;
  line-height: normal;
}

.usefull_links > .row > .col > a {
  color: #fff;
  text-decoration: none;
}

.usefull_links > .row > .col > a:hover {
  text-decoration: underline;
}

.img-links {
  max-width: 175px;
}

@media (max-width: 991px) {
  .img-links {
    max-width: 100px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.rewie {
  display: flex;
}

.rewie > li {
  list-style: none;
}

.rewie > li > a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.rewie > li > a:first-child {
  margin-right: 5px;
}

.rewie > li > a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .header__title {
    display: none;
    position: absolute;
    opacity: 0;
  }
}

@media (min-width: 991px) {
  .news-mobile {
    display: none;
    position: absolute;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .news-desctop {
    display: none;
    position: absolute;
    opacity: 0;
  }
}

.header-mobile-inline {
  text-align: end;
  font-size: 17px;
}

@media (min-width: 991px) {
  .header-mobile {
    display: none;
    position: absolute;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .header-desctop {
    display: none;
    position: absolute;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .mob-centre {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
  }
}



.color-moloko {
  background-color: rgb(255, 245, 212, 0.4);
}

.links_footer {
  display: table-caption;
}

.captha {
  background-color: rgb(118 118 118 / 0%);
  border-color: rgb(118 118 118 / 0%);
  font-size: 30px;
  width: 100%;
}

.captha-lock {
  opacity: 0;
  position: absolute;
  display: none;
}


.mobile-dropright > .mobile-dropright__close2{
  position: absolute;
  width: 25vw;
  left: -25vw;
  height: 100vh;
  opacity: 0;
}

.mobile-dropright_hidden > .mobile-dropright__close2{
left: 0 !important;
opacity: 0;
}