@font-face {
  font-family: "icons";
  src: url("../../fonts/app/icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=_icon-]::before,
[class*=" _icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._icon-close:before {
  content: "\e907";
}

._icon-check:before {
  content: "\e906";
}

._icon-arrow-left:before {
  content: "\e900";
}

._icon-arrow-right:before {
  content: "\e901";
}

._icon-moon:before {
  content: "\e902";
}

._icon-search:before {
  content: "\e903";
}

._icon-subscribe:before {
  content: "\e904";
}

._icon-sun:before {
  content: "\e905";
}

@font-face {
  font-family: "Univers LT Std";
  src: url("../../fonts/app/UniversLTStd-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Univers LT Std";
  src: url("../../fonts/app/UniversLTStd-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Forum";
  src: url("../../fonts/app/Forum-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PT Serif";
  src: url("../../fonts/app/PTSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Courier Prime";
  src: url("../../fonts/app/CourierPrime-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Courier Prime';
  src:
    url('../../fonts/app/CourierPrime-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

.light:root {

  --basic-color-lm: #111111;
  --basic-color-from-dm: #ffffff;
  --bg-color: #ffffff;
}

.dark:root {
  --basic-color-dm: #ffffff;
  --basic-color-from-lm: #111111;
  --bg-color: #111111;
  --bg-color-dark-grey: #2C2C2C;
  --secondary-color-200-dm: #eaeaea;
  --secondary-color-500-dm: #9a9a9a;
  --color-accent-primary-100-dm: #ed2026;
}

:root {
  --basic-ff: "Univers LT Std", sans-serif;
  --secondary-ff: "Forum", sans-serif;
  --third-ff: "Courier Prime", sans-serif;
  --fourth-ff: "PT Serif", sans-serif;
  --fz-100: 10px;
  --fz-200: 12px;
  --fz-300: 14px;
  --basic-fz: 16px;
  --fz-400: 18px;
  --fz-450: 20px;
  --fz-500: 22px;
  --fz-600: 24px;
  --fz-700: 32px;
  --fz-800: 34px;
  --fz-900: 44px;
  --basic-static-color: #111111;
  --secondary-color-100: #f9f9f9;
  --secondary-color-200: #eaeaea;
  --secondary-color-300: #e9ebf0;
  --secondary-color-400: #d9d9d9;
  --secondary-color-500: #9a9a9a;
  --color-accent-primary-100: #ed2026;
  --color-accent-primary-200: #fd0001;
  --color-accent-primary-300: #e90007;
  --color-accent-primary-400: #e2151b;
  --color-accent-primary-500: #C50000;
  --black-color-80: rgb(0, 0, 0, 0.8);
  --menu-color-70: rgb(6, 6, 6, 0.7);
  --white-color: #FFFFFF;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: var(--basic-ff);
  font-weight: 400;
  font-size: var(--basic-fz);
  color: var(--basic-color-lm, var(--basic-color-dm));
  background-color: var(--bg-color);
}

html {
  position: relative;
}

html::before {
  position: fixed;
  top: 0;
  content: "";
  z-index: 3;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--menu-color-70);
  visibility: hidden;
  -webkit-transition: width 0.3s, visibility 0.3s;
  -o-transition: width 0.3s, visibility 0.3s;
  transition: width 0.3s, visibility 0.3s;
}

html._lock {
  position: fixed;
  top: 0;
  left: 0;
}

html._lock::before {
  visibility: visible;
  width: 51%;
}

@media screen and (max-width: 767px) {
  html::before {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

a {
  color: var(--basic-color-lm, var(--basic-color-dm));
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  display: block;
}

input,
textarea {
  font-family: inherit;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

button {
  font-family: "Courier", sans-serif;
}

input {
  padding: 0 20px 4px 0;
  font-size: var(--basic-fz);
  color: var(--basic-color-lm, var(--basic-color-dm));
  border: none;
  border-bottom: 1px solid var(--secondary-color-200);
  background-color: transparent;
  border-radius: 0;
}

input:focus,
input:active,
input:hover,
textarea:focus,
textarea:active,
textarea:hover {
  border-color: var(--basic-color-lm, var(--basic-color-dm));
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: var(--basic-color-lm, var(--basic-color-dm));
  caret-color: var(--basic-color-lm, var(--basic-color-dm));
}

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

/* ***** WRAPPER ***** */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/* ***** CONTAINER ***** */
.container {
  width: 100%;
  max-width: 1320px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}

@media screen and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 696px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.img__desaturate {
  webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: url(desaturate.svg#greyscale);
  filter: gray;
  -webkit-filter: grayscale(1);
}

/* ***** HEADER ***** */
.header {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--bg-color);
}

.header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 300px;
  width: 100%;
  height: 28px;
  -webkit-transition: max-width 0.3s, width 0.3s;
  -o-transition: max-width 0.3s, width 0.3s;
  transition: max-width 0.3s, width 0.3s;
}

.header__search-input {
  width: 100%;
  -webkit-transition: padding 0.3s, border-bottom-color 0.3s;
  -o-transition: padding 0.3s, border-bottom-color 0.3s;
  transition: padding 0.3s, border-bottom-color 0.3s;
  border-color: var(--secondary-color-500-dm, var(--secondary-color-200));
  outline: none;
}

.header__search-input::-webkit-input-placeholder {
  color: var(--secondary-color-500);
}

.header__search-input::-moz-placeholder {
  color: var(--secondary-color-500);
}

.header__search-input:-ms-input-placeholder {
  color: var(--secondary-color-500);
}

.header__search-input::-ms-input-placeholder {
  color: var(--secondary-color-500);
}

.header__search-input::placeholder {
  color: var(--secondary-color-500);
  text-transform: lowercase;
}

.header__search._hidden {
  max-width: 0;
  width: 0;
}

.header__search._hidden .header__search-input {
  padding: 0;
}

.header__search-icon {
  position: absolute;
  bottom: 4px;
  right: 0;
  z-index: 1;
  background-color: var(--bg-color);
}

.header__search-icon::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.header__search-icon._icon-search::before {
  font-size: 21px;
}

.header__settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
}

.header__search-icon,
.header__language-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header__language-icon {
  width: 24px;
  height: auto;
}

.header__language {
  position: relative;
}

.header__link-wrap {
  display: none;
}

.header__search-popup {
  display: none;
  position: absolute;
  z-index: 4;
  top: 50px;
  right: -100px;
  width: 400px;
  padding: 20px 20px 11px;
  background-color: var(--bg-color-dark-grey, var(--white-color));
  box-shadow: 0px 0px 38px 0px #0000002E;
  min-height: 62px;
}

.header__search-popup._visible {
  display: block;
}

@media (pointer: fine) {
  .header__search-icon:hover::before {
    color: var(--secondary-color-500);
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .header__search {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header__settings {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

@media screen and (max-width: 767px) {
  .header__container {
    gap: 20px;
  }

  .header__search {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header__settings {
    position: absolute;
    right: 130%;
    z-index: 3;
    -webkit-transition: right 0.3s;
    -o-transition: right 0.3s;
    transition: right 0.3s;
  }

  .header__settings .mode-switcher {
    display: none;
  }

  .header__link-wrap {
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: auto;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .header__link-wrap._hidden {
    opacity: 0;
    visibility: hidden;
  }

  .header__link {
    font-weight: 700;
    font-size: var(--fz-300);
    font-family: sans-serif;
    text-wrap: nowrap;
    color: var(--color-accent-primary-100);
  }
}

/* ***** LOGO ***** */
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 36px;
}

.logo img {
  width: 98.3px;
  height: 50px;
}

@media screen and (max-width: 991px) {
  .logo {
    position: absolute;
    left: 50%;
    z-index: 1;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
  }

  .logo._move {
    left: 55px;
    z-index: 5;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    z-index: 4;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .logo._move {
    left: 58px;
}
}

/* ***** NAVIGATION ***** */
.nav--main {
  margin-right: auto;
}

.nav--secondary {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid var(--secondary-color-200);
  border-bottom: 1px solid var(--secondary-color-200);
}

.nav--secondary,
.nav--store {
  overflow-x: auto;
}

.nav--secondary::-webkit-scrollbar,
.nav--store::-webkit-scrollbar {
  display: none;
}

.nav--store {
  margin-bottom: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--secondary-color-200);
  border-bottom: 1px solid var(--secondary-color-200);
}

.nav__icon {
  display: none;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__list--main {
  gap: 16px;
}

.nav__list--secondary {
  gap: 18px;
}

.nav__list--secondary,
.nav__list--store {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

.nav__list--store {
  gap: 64px;
}

.nav__link {
  position: relative;
  padding: 6px 4px 5px 4px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: text-shadow 0.3s ease 0s;
  -o-transition: text-shadow 0.3s ease 0s;
  transition: text-shadow 0.3s ease 0s;
}

.nav__link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--basic-color-lm, var(--basic-color-dm));
  -webkit-transition: width 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}

.nav__link._active {
  font-weight: 700;
}

.nav__link._active::before {
  width: 100%;
}

.nav__link--secondary {
  display: block;
  font-size: var(--fz-300);
  text-align: center;
  line-height: 14px;
}

.nav__link--store {
  font-size: var(--fz-400);
  line-height: 1.325;
  text-transform: none;
}

.nav__link--accent {
  font-weight: 700;
  color: var(--color-accent-primary-100);
}

.nav__link--accent::before {
  background-color: var(--color-accent-primary-100);
}

@media (pointer: fine) {
  .nav__link:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .nav__icon-wrap {
    position: relative;
    z-index: 4;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .nav__icon-wrap._active {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .nav__icon {
    display: block;
    width: 24px;
    height: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .nav__icon line {
    stroke: var(--basic-color-lm, var(--basic-color-dm));
  }

  .nav__inner {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 3;
    overflow: auto;
    height: 100%;
    width: 49%;
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
  }

  .nav__inner::before {
    position: fixed;
    content: "";
    left: -100%;
    top: 0;
    z-index: 4;
    width: 49%;
    height: 98px;
    background-color: var(--bg-color);
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
  }

  .nav__body--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 147px 30px 220px 30px;
    background-color: var(--bg-color);
    overflow: auto;
  }

  .nav__inner._active {
    left: 0;
  }

  .nav__inner._active::before {
    left: 0;
  }

  .nav__list--main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: auto;
  }

  .nav__list--store {
    gap: 48px;
  }

  .nav__link--main {
    font-weight: 700;
  }
}

@media screen and (max-width: 991px) and (pointer: fine) {
  .nav__link--main:hover {
    text-shadow: none;
  }
}

@media screen and (max-width: 767px) {
  .nav--main {
    margin-right: 0;
  }

  .nav--main._active~.header__settings {
    right: 16px;
    -webkit-transition: right 0.3s;
    -o-transition: right 0.3s;
    transition: right 0.3s;
  }

  .nav--store {
    margin-bottom: 24px;
  }

  .nav__inner {
    width: 100%;
  }

  .nav__inner::before {
    width: 100%;
  }

  .nav__body--main {
    padding-bottom: 40px;
  }


  .nav__item--accent {
    display: none;
  }

  .nav__list--store {
    gap: 26px;
  }

  .nav__link--store {
    font-size: var(--fz-300);
  }
}

@media screen and (max-width: 575px) and (pointer: fine) {

  .nav--secondary,
  .nav--store {
    overflow: visible;
  }
}

/* ***** SECTION ***** */
.section--all-news {
  display: none;
}

.section__video-icon {
  z-index: 1;
  position: absolute;
  top: 38px;
  right: 8px;
  pointer-events: none;
}

.section__inner--news {
  padding-bottom: 120px;
  border-bottom: 1px solid var(--secondary-color-200);
}

.section__inner--news .section__text-wrap:last-child,
.section__inner--news .slider:last-child,
.section__inner--news .section__image-wrap:last-child {
  margin-bottom: 0;
}

.section__container--store,
.section__box {
  position: relative;
}

.section__image-wrap {
  margin-bottom: 40px
}

.section__image {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.section__image--news {
  margin-bottom: 12px;
}

.section__image-wrap--portrait {
  max-width: 636px;
  margin: 0 auto;
}

.section__image--store,
.section__image--product {
  max-width: 1440px;
}

.section__image-meta,
.section__video-meta--news {
  font-family: var(--third-ff);
  font-size: var(--fz-400);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--secondary-color-500);
}

.section__image-meta--first-title{
	color:#111111;
	font-size: 24px;
}

.section__text-wrap {
  max-width: 888px;
  margin: 0 auto;
  margin-bottom: 40px
}

.section__text-wrap p {
  font-size: var(--fz-450);
  line-height: 1.5;
  font-family: var(--secondary-ff);
  color: var(--secondary-color-500-dm, var(--basic-static-color));
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

.section__video {
  position: relative;
  max-width: 1294px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.section__video--news {
  padding-bottom: 50px;
}

.section__video-wrap {
  position: relative;
  /* padding: 0 0 56.25% 0; */
  margin-bottom: 12px;
  height: max-content;
}

.section__video-wrap--youtube {
  padding: 0 0 56.25% 0;
  height: inherit;
}

.section__video-wrap--youtube .section__video-file {
  position: absolute;
  top: 0;
  left: 0;
}

.section__video-wrap--vertical,
.section__video-wrap--vertical+.section__video-meta {
  margin: 0 auto;
  max-width: 360px;
}

.section__video-wrap--youtube .section__video-meta {
  min-height: 21px;
}

.section__inner--news .section__video-wrap--video {
  cursor: pointer;
}

.section__video-meta {
  display: block;
}

.section__video-file {
  display: flex;
  width: 100%;
  height: 100%;
}

.section__video-meta--live {
  font-weight: 700;
}

.section__video-button {
  position: absolute;
  right: -32px;
  bottom: -39px;
  cursor: pointer;
}

.section__video-button g path:nth-of-type(1),
.section__video-button g path:nth-of-type(7) {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.section__video-button g path:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.section__observable-block {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1200px;
  width: 100%;

  background-color: transparent;

  opacity: 0;
  visibility: hidden;
  display: block;
}

@media (pointer: fine) {
  .section__video-button:hover g path:nth-of-type(1) {
    fill: var(--color-accent-primary-300);
  }

  .section__video-button:hover g path:nth-of-type(3) {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }

  .section__video-button:hover g path:nth-of-type(7) {
    fill: var(--color-accent-primary-200);
  }
}

@media screen and (max-width: 1399px) {
  .section__text-wrap {
    max-width: 782px;
  }
}

@media screen and (max-width: 1199px) {
  .section__inner--news {
    padding-bottom: 80px;
  }

  .section__text-wrap {
    max-width: 769px;
  }
}

@media screen and (max-width: 991px) {
  .section__text-wrap {
    max-width: 557px;
    margin-bottom: 32px;
  }

  .section__text-wrap p {
    font-size: var(--fz-400)
  }

  .section__video--news {
    padding-bottom: 103px;
  }

  .section__video-button {
    right: 0;
    left: 50%;
    bottom: -30px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 767px) {
  .section__container {
    max-width: 575px;
  }

  .section__inner--news {
    padding-bottom: 40px;
  }

  .section__image--news {
    margin-bottom: 8px;
  }

  .section__image-meta {
    font-size: var(--fz-300);
  }
  
  .section__image-meta--first-title{
	font-size: 18px;
   }

  .section__text-wrap {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section__text-wrap p {
    font-size: var(--basic-fz);
  }
}

/* ***** FORM ***** */
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 856px;
  min-height: 430px;
  padding: 40px;
  margin: 0 auto;
  border: 1px solid var(--bg-color-dark-grey, var(--secondary-color-200));
  background-color: var(--bg-color-dark-grey, transparent);
}

.form__body {
  max-width: 660px;
  margin: 0 auto;
  max-height: 100%;
}

.form__block--not-submited {
  display: block;
}

.form__block--submited._visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__block--submited,
.form__block--not-submited._hidden {
  display: none;
}

.form__block--submited._visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-top: 120px;
}

.form__item {
  position: relative;
}

.form__item:not(:last-of-type) {
  margin-bottom: 32px;
}

.form__item:last-of-type {
  margin-bottom: 24px;
}

.form__item-title {
  margin-bottom: 6px;
  font-size: var(--basic-fz);
  font-weight: normal;
  text-transform: uppercase;
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input {
  padding-bottom: 6px;
}

.form__input._error {
  border-color: var(--color-accent-primary-100);
}

.form__input::-webkit-input-placeholder {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input::-moz-placeholder {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input:-ms-input-placeholder {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input::-ms-input-placeholder {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input::placeholder {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.form__input,
.form__textarea {
  width: 100%;
  outline: none;
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
  text-transform: uppercase;
}

.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
  text-transform: uppercase;
}

.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
  text-transform: uppercase;
}

.form__input::placeholder,
.form__textarea::placeholder {
  text-transform: uppercase;
}

.form__input-error {
  position: absolute;
  left: 0;
  bottom: -15px;
  display: none;
  font-size: var(--fz-100);
  color: var(--color-accent-primary-100);
}

.form__input-error._show {
  display: inline-block;
}

.form__textarea {
  display: block;
  min-height: 143px;
  padding: 10px;
  color: var(--basic-color-lm, var(--basic-color-dm));
  border: 1px solid var(--secondary-color-200);
  background-color: var(--bg-color);
  resize: none;
}

.form__text {
  margin-bottom: 32px;
  font-family: var(--secondary-ff);
  text-align: center;
  font-size: var(--fz-450);
  line-height: 1.3125;
  color: var(--basic-color-lm, var(--secondary-color-200));
}

.form__text-accent {
  font-weight: 700;
}

@media screen and (max-width: 1399px) {
  .form {
    max-width: 926px;
  }
}

@media screen and (max-width: 1199px) {
  .form {
    max-width: 776px;
  }
}

@media screen and (max-width: 991px) {
  .form__text {
    font-size: var(--fz-400);
  }
}

@media screen and (max-width: 575px) {
  .form {
    padding: 32px 14px;
  }

  .form__text {
    margin-bottom: 24px;
    font-size: var(--basic-fz);
  }

  .form__input::placeholder,
  .form__item-title {
    font-size: var(--fz-200);
  }
}

/* ***** FOOTER ***** */
.footer {
  margin-top: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer--news {
  padding-top: 25px;
  padding-bottom: 120px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 887px;
  margin: 0 auto;
}

.footer__copy{
  text-align:center;
  max-width: 887px;
  margin: 0 auto;
  color: var(--secondary-color-500);
  font-family: var(--basic-ff);
  line-height: 1.325;
  font-size:12px;
  margin-bottom:20px;
}

.footer__text {
  margin-bottom: 27px;
  font-size: var(--fz-600);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.footer__news {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: relative;
}

.footer__news,
.footer__news-img {
  max-width: 204px;
  width: 100%;
}

.footer__news-img {
  margin: 0 auto 10px auto;
}

.footer__news-text {
  font-family: var(--fourth-ff);
  line-height: 1.325;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer--news {
    padding-top: 25px;
    padding-bottom: 80px;
  }

  .footer__inner {
    max-width: 960px;
  }
}

@media screen and (max-width: 991px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer--news {
    padding-top: 25px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 60px;
  }

  .footer__news--prev,
  .footer__news--next {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 15px);
    flex: 1 1 calc(50% - 15px);
  }

  .footer__news--prev {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__news--next {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__news-text {
    font-size: var(--fz-200);
  }

  .footer__socials--news {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

/* ***** SWITCHER ***** */
.mode-switcher--nav {
  display: none;
}

.mode-switcher__label,
.mode-switcher__checkbox {
  width: 28px;
  height: 28px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mode-switcher__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color-200);
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mode-switcher__checkbox::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--basic-fz);
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.mode-switcher__checkbox._icon-moon {
  background-color: var(--secondary-color-500);
  border-color: var(--secondary-color-500);
}

.mode-switcher__checkbox._icon-sun:focus,
.mode-switcher__checkbox._icon-sun:active {
  border-color: var(--secondary-color-200);
}

@media (pointer: fine) {
  .mode-switcher__checkbox:hover {
    background-color: var(--secondary-color-500);
    border-color: var(--secondary-color-500);
  }

  .mode-switcher__checkbox:hover::before {
    color: var(--white-color);
  }

  .mode-switcher__checkbox._icon-moon:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
  }

  .mode-switcher__checkbox._icon-moon:hover::before {
    color: var(--basic-static-color);
  }
}

@media screen and (max-width: 767px) {
  .mode-switcher--nav {
    display: block;
  }

  .mode-switcher__label--nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 15px;
    background-color: var(--secondary-color-300);
  }

  .mode-switcher__checkbox--nav {
    position: relative;
    left: 22px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background-color: var(--white-color);
    -webkit-filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
  }

  .mode-switcher__checkbox--nav:checked {
    left: 0;
  }

  .mode-switcher__checkbox,
  .mode-switcher__checkbox._icon-sun:focus,
  .mode-switcher__checkbox._icon-sun:active {
    border-color: var(--white-color);
  }
}

/* ***** LANGUAGES ***** */
.languages {
  position: absolute;
  right: -6px;
  z-index: 1;
  display: none;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
}

.languages._visible {
  display: block;
  opacity: 1;
  visibility: visible;
}

.languages__wrapper {
  width: 267px;
  background-color: var(--bg-color-dark-grey, var(--white-color));
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.0784313725);
}

.languages__search {
  padding: 16px 16px 12px 16px;
}

.languages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 126px;
  overflow-y: auto;
}

.languages__list::-webkit-scrollbar {
  width: 4px;
}

.languages__list::-webkit-scrollbar-track {
  background-color: var(--secondary-color-200);
}

.languages__list::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color-500);
}

.languages__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 16px;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}

.languages__list-item:before {
  position: absolute;
  right: 3px;
  z-index: 1;
  color: var(--secondary-color-200-dm, var(--white-color));
}

.languages__list-item._active {
  color: var(--secondary-color-200-dm, var(--white-color));
  background-color: var(--basic-static-color);
}

.languages__list-item-text {
  display: inline-block;
  font-family: var(--fourth-ff);
  line-height: 1.325;
}

@media (pointer: fine) {
  .languages__list-item:hover {
    color: var(--secondary-color-200-dm, var(--white-color));
    background-color: var(--basic-static-color);
  }
}

@media screen and (max-width: 767px) {
  .languages {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    background-color: var(--menu-color-70);
  }

  .languages._visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .languages__wrapper {
    position: fixed;
    bottom: 0;
    max-height: 268px;
    height: 100%;
    height: 100svh;
    width: 100%;
    padding: 24px 54px 35px 54px;
  }

  .languages__search {
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .languages__list {
    max-height: 160px;
  }
}

/* ***** BREADCRUMBS ***** */
.breadcrumbs--news {
  margin-top: 40px;
  margin-bottom: 24px;
}

.breadcrumbs__link {
  font-size: var(--fz-400);
  color: var(--secondary-color-500);
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumbs__link--news {
  text-decoration: underline;
}

@media (pointer: fine) {
  .breadcrumbs__link:hover {
    color: var(--color-accent-primary-100);
  }

  .breadcrumbs__link--news:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs--news {
    margin-top: 32px;
    margin-bottom: 24px;
    text-align: center;
  }

  .breadcrumbs__link--news {
    font-size: var(--basic-fz);
  }
}

/* ***** SUBSCRIBE ***** */
.subscribe {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-text-select: none;
  -webkit-user-select: none;
}

.subscribe--nav {
  display: none;
}

.subscribe--main {
  position: fixed;
  right: auto;
  left: calc(100vw - 60px);
  bottom: 187px;
  z-index: 2;
}

.subscribe__button {
  z-index: 2;
  right: -20px;
  top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.subscribe__button::before {
  content: '';
  -webkit-animation: pulse 1.2s ease infinite;
  animation: pulse 1.2s ease infinite;
}

.subscribe__button,
.subscribe__button::before {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent-primary-100);
  border-radius: 50%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.subscribe__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  color: var(--white-color);
}

.subscribe__body {
  top: -295px;
}

.subscribe__body--not-confirmed-main,
.subscribe__body--confirmed-main {
  position: absolute;
  left: -319px;
  display: none;
  width: 319px;
  padding: 35px;
  background-color: var(--secondary-color-500-dm, var(--white-color));
  -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.1803921569);
  box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.1803921569);
}

.subscribe__body--not-confirmed-nav {
  max-width: 238px;
  width: 100%;
}

.subscribe__body--not-confirmed-main._show,
.subscribe__body--confirmed-main._show,
.subscribe__body--not-confirmed-nav._show,
.subscribe__body--confirmed-nav._show {
  display: block;
}

.subscribe__body--confirmed-main,
.subscribe__body--confirmed-nav,
.subscribe__body--not-confirmed-nav._hide {
  display: none;
}

.subscribe__title,
.subscribe__title-more {
  text-align: center;
  text-transform: uppercase;
}

.subscribe__title {
  margin-bottom: 4px;
  font-size: var(--fz-700);
  color: var(--basic-static-color);
}

.subscribe__title-more {
  display: block;
  font-family: var(--secondary-ff);
  font-size: var(--fz-500);
  line-height: 1.1041;
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__title-more--not-confirmed {
  margin-bottom: 61px;
}

.subscribe__title-more--confirmed {
  margin-bottom: 32px;
}

.subscribe__text {
  font-family: var(--secondary-ff);
  line-height: 1.1038;
}

.subscribe__text--light {
  color: var(--secondary-color-200-dm, var(--secondary-color-500));
}

.subscribe__text--nav {
  color: var(--basic-color-lm, var(--basic-color-dm));
}

.subscribe__input-wrap {
  position: relative;
  width: 100%;
}

.subscribe__input {
  width: 100%;
  margin-bottom: 24px;
  outline: none;
}

.subscribe__input--main {
  border-color: var(--basic-color-from-lm, var(--secondary-color-200));
  color: var(--basic-static-color);
}

.subscribe__input--main::-webkit-input-placeholder {
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__input--main::-moz-placeholder {
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__input--main:-ms-input-placeholder {
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__input--main::-ms-input-placeholder {
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__input--main::placeholder {
  color: var(--basic-color-from-lm, var(--secondary-color-500));
}

.subscribe__input--nav::-webkit-input-placeholder {
  color: var(--basic-color-dm, var(--secondary-color-500));
}

.subscribe__input--nav::-moz-placeholder {
  color: var(--basic-color-dm, var(--secondary-color-500));
}

.subscribe__input--nav:-ms-input-placeholder {
  color: var(--basic-color-dm, var(--secondary-color-500));
}

.subscribe__input--nav::-ms-input-placeholder {
  color: var(--basic-color-dm, var(--secondary-color-500));
}

.subscribe__input--nav::placeholder {
  color: var(--basic-color-dm, var(--secondary-color-500));
}

.subscribe__input._error {
  border-color: var(--color-accent-primary-100);
}

.subscribe__input-error {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: none;
  font-size: var(--fz-100);
  color: var(--color-accent-primary-100);
}

.subscribe__input-error._show {
  display: inline-block;
}

.subscribe__thank-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-top: 49px;
}

.subscribe__thank-block img {
  width:57px;
  height:29px;
}

.subscribe__thank-block--main {
  color: var(--basic-static-color);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@media screen and (max-width: 1199px) {
  .subscribe--main {
    bottom: 147px;
  }
}

@media screen and (max-width: 991px) {
  .subscribe--nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .subscribe--main {
    bottom: 127px;
  }
}

@media screen and (max-width: 767px) {
  .subscribe--nav {
    margin-top: 74px;
    margin-bottom: 74px;
  }
}

@media screen and (max-width: 575px) {
  .subscribe--main {
    right: 30px;
  }

  .subscribe__body--not-confirmed-main,
  .subscribe__body--confirmed-main {
    left: -305px;
  }
}

@media screen and (orientation: landscape) and (max-height: 575px) {
  .subscribe--main {
    bottom: 30px;
    z-index: 4;
  }

  .subscribe--main._hide-on-landscape {
    z-index: 2;
  }
}

@media screen and (orientation: landscape) and (max-width: 575px) {
  .subscribe--main {
    bottom: -20px;
  }
}

/* ***** TITLE ***** */
.title {
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: var(--fz-900);
  font-weight: 700;
  text-align: center;
}

.title--news {
  margin-top: 50px;
  margin-bottom: 24px;
}

.title--news span {
  display: block;
}

@media screen and (max-width: 1399px) {
  .title--news {
    margin-top: 40px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .title {
    margin-top: 60px;
    margin-bottom: 24px;
    font-size: var(--fz-800);
  }

  .title--news {
    margin-top: 40px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 991px) {
  .title--news {
    margin-top: 32px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .title {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .title--all-news,
  .title--news {
    font-size: var(--fz-600);
  }

  .title--news {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 575px) {

  .title--all-news,
  .title--live-video {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: var(--basic-fz);
  }
}

/* ***** GRID ***** */
.grid__sizer,
.grid__item {
  width: 23.6%;
}

.grid__item .section__video-icon {
  top: 8px;
}

.grid__gutter {
  width: 1.87%;
}

.grid__item {
  margin-bottom: 40px;
}

.grid__item-image-link {
  margin-bottom: 10px;
}

.grid__item-image-link,
.grid__item-link {
  display: block;
}

.grid__item-image {
  width: 100%;
  height: auto;
}

.grid__item-hash {
  display: block;
  margin-bottom: 6px;
  font-family: var(--third-ff);
  font-size: var(--fz-300);
  line-height: 1.15;
  color: var(--color-accent-primary-100);
  text-transform: uppercase;
}

.grid__item-hash a {
  color: var(--color-accent-primary-100);
}

.grid__item-link {
  font-family: var(--fourth-ff);
  line-height: 1.325;
}

@media screen and (max-width: 1199px) {

  .grid__sizer,
  .grid__item {
    width: 31.52%;
  }

  .grid__gutter {
    width: 2.57%;
  }
}

@media screen and (max-width: 767px) {
  .grid {
    margin: o auto;
  }

  .grid__item {
    margin-bottom: 24px;
  }

  .grid__sizer,
  .grid__item {
    width: 48.4%;
  }

  .grid__gutter {
    width: 3%;
  }
}


@media screen and (max-width: 575px) {
  .grid__item-hash {
    font-size: var(--fz-100);
    margin-bottom: 4px;
  }

  .grid__item-link {
    font-size: var(--fz-200);
    line-height: 1.5;
  }
}

/* ***** SLIDER ***** */
.slider.swiper {
  margin-bottom: 40px;
}

.slider--news-high-image,
.slider--news-high-image .slider__image--news {
  max-width: 636px;
}

.slider--news-wide-image,
.slider--news-wide-image .slider__image--news {
  max-width: 1295px;
}

.slider--news-squere-image,
.slider--news-squere-image .slider__image--news {
  max-width: 710px;
}

.slider__wrapper {
  margin-bottom: 14px;
}

.slider__image {
  width: 100%;
  height: auto;
}

.slider__image--news {
  margin-bottom: 12px;
}

.slider__image-meta {
  font-family: var(--third-ff);
  font-size: var(--fz-400);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--secondary-color-500);
}

.slider__pagination.swiper-pagination {
  bottom: 0px !important;
  position: relative;
}

.slider__pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
  background-color: var(--secondary-color-400);
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent-primary-100-dm, var(--basic-static-color));
}

@media (pointer: fine) {
  .slider__pagination .swiper-pagination-bullet:hover {
    background-color: var(--secondary-color-500);
  }
}

@media screen and (max-width: 1399px) {

  .slider--news-high-image,
  .slider--news-high-image .slider__image--news {
    max-width: 546px;
  }
}

@media screen and (max-width: 1199px) {
  .slider--news-wide-image {
    margin-top: 80px;
  }

  .slider--news-high-image,
  .slider--news-high-image .slider__image--news {
    max-width: 455px;
  }
}

@media screen and (max-width: 991px) {
  .slider--news-wide-image {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .slider__wrapper {
    margin-bottom: 40px;
  }

  .slider__image-meta {
    font-size: var(--fz-300);
  }
}

/* ***** LIST ***** */
/* .list__item-video {
    max-width: 50px;
    height: auto;
  } */

.list__item-video video {
  display: flex;
  max-width: 80px;
  height: auto;
}

.list {
  gap: 24px;
}

.list--about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 24px;
}

.list--store {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 343px))[3];
  grid-template-columns: repeat(3, minmax(150px, 343px));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list__item--about {
  max-width: 636px;
  width: 100%;
}

.list__item--about .list__item-image {
  width: 100%;
}

.list__item--search-popup {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.list__item--store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list__item-header {
  padding-top: 24px;
  margin-bottom: 40px;
  text-align: center;
  border-top: 1px solid var(--secondary-color-200);
}

.list__item-title--about {
  font-size: var(--fz-700);
  line-height: 1.2;
}

.list__item-title--about,
.list__item-sub-title {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.list__item-title--about span {
  display: block;
}

.list__item-title--store {
  margin-bottom: 8px;
  font-family: var(--fourth-ff);
  font-weight: 400;
  font-size: var(--fz-400);
  line-height: 1.325;
}

.list__item-header-text {
  font-family: var(--third-ff);
  color: var(--secondary-color-500-dm, var(--basic-static-color));
}

.list__item-main {
  margin-bottom: 16px;
}

.list__item-image {
  height: auto;
}

.list__item-image--store {
  margin-bottom: 8px;
}

.list__item-sub-title {
  font-size: var(--fz-600);
}

.list__item-text--about:not(:last-of-type) {
  margin-bottom: 16px;
}

.list__item-text-wrap {
  padding: 24px 31px;
  background-color: var(--color-accent-primary-100);
  color: var(--white-color);
}

.list__item-text--store {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 24px;
  line-height: 1.3125;
}

.list__item-text--about,
.list__item-text--store,
.list__item-information p {
  font-family: var(--secondary-ff);
}

.list__item-information {
  padding-left: 31px;
  padding-right: 31px;
}

.list__item-information p,
.list__item-text--store {
  color: var(--secondary-color-500-dm, var(--basic-static-color));
}

.list__item-text--about,
.list__item-information p {
  font-size: var(--fz-450);
  line-height: 1.5;
}

.list__item-information p:not(:last-of-type) {
  margin-bottom: 16px;
}

.list__item-link--store {
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--color-accent-primary-100-dm, var(--secondary-color-500));
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.list--search-popup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 9px;
}

.list__item-image--search-popup {
  max-width: 80px;
}

.list__item-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list__item-meta a {
  color: var(--color-accent-primary-100);
  font-size: var(--fz-300);
  line-height: 1.15;
}

.list__item-text--search-popup {
  line-height: 1.325;
  font-family: var(--fourth-ff);
}

.list--search-popup .list__item-meta a {
  color: #bcbcbc;
}

.list__item-no-results {
  text-align: center;
  width: 100%;
  font-family: var(--fourth-ff);
}

@media (pointer: fine) {
  .list__item-link--store:hover {
    text-decoration: underline;
    color: var(--basic-color-dm, var(--color-accent-primary-100));
  }
}

@media screen and (max-width: 1399px) {
  .list__item-header-text span {
    display: block;
  }

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

@media screen and (max-width: 1199px) {
  .list__item-header {
    margin-bottom: 34px;
  }

  .list__item-title--about {
    font-size: var(--fz-500);
  }

  .list__item-text-wrap {
    padding: 18px;
  }

  .list__item-information {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media screen and (max-width: 991px) {
  .list--store {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .list__item-text--about,
  .list__item-information p {
    font-size: var(--fz-400);
  }
}

@media screen and (max-width: 767px) {
  .list--about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .list--store {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .list--store {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }

  .list__item-title--store {
    font-size: var(--fz-300);
    line-height: 1.325;
  }

  .list__item-text--store {
    font-size: var(--fz-200);
    line-height: 1.1042;
  }

  .list__item-text--about,
  .list__item-information p {
    font-size: var(--basic-fz);
    line-height: 1.315;
  }
}

@media screen and (max-width: 375px) {
  .list__item-header {
    margin-bottom: 24px;
    text-align: left;
  }

  .list__item-title--about {
    margin-bottom: 4px;
    font-size: var(--basic-fz);
  }

  .list__item-title--about span {
    display: inline-block;
  }

  .list__item-main {
    margin-left: -16px;
    margin-right: -16px;
  }

  .list__item-text-wrap {
    padding: 16px;
  }

  .list__item-sub-title {
    font-size: var(--basic-fz);
  }

  .list__item-information {
    padding: 0;
  }
}

/* ***** BUTTON ***** */
.btn {
  display: block;
  width: 100%;
  text-transform: uppercase;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.btn--main {
  padding: 8px;
  font-size: var(--fz-400);
  border: 1px solid var(--basic-static-color);
  background-color: var(--basic-static-color);
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.btn--link {
  max-width: 204px;
  padding: 6px;
  font-family: var(--third-ff);
  font-size: var(--basic-fz);
  line-height: 1.15;
  text-align: center;
}

.btn--submit {
  max-width: 311px;
  margin: 0 auto;
}

.btn--subscribe {
  max-width: 249px;
}

.btn--subscribe-nav,
.btn--product {
  background-color: var(--secondary-color-500-dm, var(--basic-static-color));
}

.btn--product {
  display: inline-block;
  width: auto;
  padding: 8px 27px;
  font-family: var(--third-ff);
}

.btn--news-prev {
  background-color: var(--secondary-color-200);
  color: var(--basic-static-color);
}

.btn--news-next {
  color: var(--white-color);
  background-color: var(--color-accent-primary-400);
}

@media (pointer: fine) {

  .btn--main:hover,
  .btn--main:active {
    background-color: var(--color-accent-primary-100-dm, var(--white-color));
    color: var(--basic-static-color);
  }

  .btn--news-prev:hover {
    background-color: var(--secondary-color-500-dm, var(--basic-static-color));
    color: var(--white-color);
  }

  .btn--news-next:hover {
    background-color: var(--color-accent-primary-500);
  }
}

@media screen and (max-width: 767px) {
  .btn--link {
    font-size: var(--fz-300);
  }
}

/* ***** SOCIALS ***** */
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.socials--nav {
  display: none;
}

.socials__icon {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (pointer: fine) {
  .socials__icon:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

@media screen and (max-width: 767px) {
  .socials--nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 74px;
  }
}

/* 3d gallery custom styles */
.rs-cf3d {
  border: none !important;
  background-color: var(--bg-color) !important;
}

.rs-cf3d .rs-cf3d-bnav,
.rs-cf3d .rs-cf3d-ccontainer {
  z-index: 1;
}

.rs-cf3d .rs-cf3d-textdisplay {
  display: none !important;
}

.rs-cf3d .rs-cf3d-bnav {
  --size: 34px;
  width: var(--size);
  height: var(--size);
  transform: translateY(-80px);

  border: 1px solid #000;
  border-radius: 50%;
}

.dark .rs-cf3d .rs-cf3d-bnav {
  border-color: #fff;
}

.rs-cf3d .rs-cf3d-bnav::before {
  display: block;
  width: 100%;
  height: 100%;

  background: 10% center / 24px 24px no-repeat;
}

.rs-cf3d .rs-cf3d-bnav,
.rs-cf3d .icon-cheveron-left::before,
.rs-cf3d .icon-cheveron-right::before {
  background-color: transparent;
}

.rs-mediaviewer .rs-med-general-content {
  box-sizing: content-box !important;
  padding: 0 !important;
}

.rs-cf3d .icon-cheveron-left::before {
  content: '';
  background-image: url('../img/icons/arrow-left.svg');
  background: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 6L0 3L3 0L3.707 0.707L1.914 2.5H14V3.5H1.914L3.707 5.293L3 6Z" fill="currentColor"/></svg>') no-repeat center / 50% !important;

}

.rs-cf3d .icon-cheveron-left {}

.rs-cf3d .icon-cheveron-right::before {
  content: '';
  background-image: url('../img/icons/arrow-right.svg');
  background: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6L14 3L11 0L10.293 0.707L12.086 2.5H0V3.5H12.086L10.293 5.293L11 6Z" fill="currentColor"/></svg>') no-repeat center / 50% !important;
}

.rs-cf3d .rs-cf3d-bnav:active,
.rs-cf3d .rs-cf3d-bnav:hover {
  border-color: rgb(237, 32, 38);
  background-color: rgb(237, 32, 38);
}

.rs-cf3d .icon-cheveron-left:hover::before,
.rs-cf3d .icon-cheveron-left:active::before {
  background-image: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 6L0 3L3 0L3.707 0.707L1.914 2.5H14V3.5H1.914L3.707 5.293L3 6Z" fill="white"/></svg>') !important;
}

.rs-cf3d .icon-cheveron-right:hover::before,
.rs-cf3d .icon-cheveron-right:active::before {
  background-image: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6L14 3L11 0L10.293 0.707L12.086 2.5H0V3.5H12.086L10.293 5.293L11 6Z" fill="white"/></svg>') !important;
}

.dark .rs-cf3d .icon-cheveron-left::before,
.dark .rs-cf3d .icon-cheveron-left::before {
  background-image: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 6L0 3L3 0L3.707 0.707L1.914 2.5H14V3.5H1.914L3.707 5.293L3 6Z" fill="white"/></svg>') !important;
}

.dark .rs-cf3d .icon-cheveron-right::before,
.dark .rs-cf3d .icon-cheveron-right::before {
  background-image: url('data:image/svg+xml, <svg width="14" height="6" viewBox="0 0 14 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6L14 3L11 0L10.293 0.707L12.086 2.5H0V3.5H12.086L10.293 5.293L11 6Z" fill="white"/></svg>') !important;
}

.rs-cf3d canvas {
  background-color: var(--bg-color) !important;
}

.dark .rs-cf3d .rs-cf3d-blist span::before {
  background-color: #555;
}

.dark .rs-cf3d .rs-cf3d-blist span.button-selected::before {
  background-color: #fff;
}

.rs-cf3d .icon-add-outline:before {
  --size: calc(var(--btn-size) / 2.5);
  --half-size: calc(var(--size) / 2);

  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(var(--half-size) / -1.2), -50%);

  border: 1px solid;
  border-width: var(--half-size) 10px var(--half-size) var(--size);
  border-color: transparent transparent transparent #fff;
}

.rs-cf3d .rs-cf3d-blist span {
  --color: #EAEAEA;
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin: 5px;
  background: none;
  border: 1px solid var(--color);
}

.rs-cf3d .rs-cf3d-blist span.button-selected {
  background: none;
}

.rs-cf3d .rs-cf3d-blist span::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: inherit;
  background-color: var(--color);
}

.rs-cf3d .rs-cf3d-blist span.button-selected::before {
  background-color: #000;
}

.rs-cf3d .rs-cf3d-zoombtn {
  --btn-size: 80px;

  z-index: 2 !important;
  left: 50% !important;
  top: 26% !important;
  margin-left: 0 !important;
  transform: translate(-50%, -50%);

  width: var(--btn-size);
  height: var(--btn-size);

  box-shadow: none;
  background-color: #FF0000;
}

.rs-mediaviewer .rs-med-general-content,
.video-js {
  display: flex !important;
  flex-direction: column;
  max-width: 90vw !important;
  width: 1116px !important;
  height: auto !important;
  max-height: 80vh !important;
  aspect-ratio: 1116 / 628;
  transform: translate(-50%, -50%);

  margin-top: 0 !important;
  margin-left: 0 !important;
}

.rs-mediaviewer .rs-med-general-content iframe {
  width: 100%;
  height: 100%;
}

.rs-container-wrapper .title--live-video {
  margin-bottom: 0;
}

.rs-mediaviewer .rs-mediaviewer-description {
  display: none !important;
  position: relative !important;
  top: auto !important;
  bottom: -65px !important;
  margin-top: auto;

  font: 700 16px/1.2 var(--basic-ff);
  text-align-last: left;
  background-color: transparent !important;
}

.rs-mediaviewer .rs-mediaviewer-description.rs-mediaviewer-description--visible {
  display: block !important;
}

/* .rs-mediaviewer .rs-mediaviewer-description, */
.rs-mediaviewer .rs-mediaviewer-bar,
.rs-mediaviewer-controls .rs-med-icon-arrow-left,
.rs-mediaviewer-controls .rs-med-icon-arrow-right {
  display: none !important;
}

.rs-mediaviewer .rs-mediaviewer-controlBtn {
  --size: 40px;

  /* adaptive position relative to the video */
  top: calc((100% - 628px) / 2 - 53px) !important;
  left: auto !important;
  right: 51px;

  width: var(--size);
  height: var(--size);
  padding: 0 !important;

  color: #fff !important;
  background: none !important;
}

.rs-mediaviewer .rs-mediaviewer-controlBtn::before {
  content: '';
  display: block;
  aspect-ratio: 1;
  background: url('data:image/svg+xml, <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="9.19244" y="10.6064" width="2" height="28" transform="rotate(-45 9.19244 10.6064)" fill="white"/><rect x="28.9915" y="9.19238" width="2" height="28" transform="rotate(45 28.9915 9.19238)" fill="white"/></svg>') no-repeat center / cover !important;
}

.video-js .vjs-big-play-button {
  --size: 80px;

  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;

  width: var(--size) !important;
  height: var(--size) !important;

  border-radius: 50% !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: #000 !important;

}

.video-js .vjs-big-play-button .vjs-icon-placeholder {
  display: block;
  height: 100%;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  font-size: calc(var(--size) * 0.675);
  line-height: 1.5;
}

.vjs-big-play-button {
  transition: none !important;
}

@media screen and (min-width: 1400px) {
  .rs-mediaviewer .rs-mediaviewer-controlBtn {
    right: calc((100% - 1116px) / 2 - 71px);
  }
}

@media screen and (max-width: 1023px) {
  .rs-cf3d .rs-cf3d-bnav {
    display: none !important;
  }

  .rs-container-wrapper {
    max-width: none;
    padding: 0;
  }
}

@media screen and (max-width: 960px) {
  .rs-mediaviewer .rs-mediaviewer-controlBtn {
    right: 12px;
  }

  .rs-cf3d .rs-cf3d-zoombtn {
    top: 32% !important;
  }
}

@media screen and (max-width: 768px) {
  .video-js .vjs-big-play-button {
    --size: 60px;
  }

}

@media screen and (max-width: 575px) {
  .video-js .vjs-big-play-button {
    --size: 50px;
  }

  .rs-container-wrapper .title--live-video {
    padding-left: 12px;
    padding-right: 12px;
    font-size: var(--fz-800);
  }

}

@media (max-aspect-ratio: 1) and (max-width: 992px) {
  .rs-mediaviewer .rs-mediaviewer-controlBtn {
    top: calc((100% - (90vw / 1.77) - var(--size) * 2 - 53px) / 2) !important;
  }

}

@media (min-aspect-ratio: 15 / 9) and (max-width: 1400px) {
  .rs-mediaviewer .rs-mediaviewer-controlBtn {
    top: 0px !important;
  }
}

@media (orientation: landscape) and (min-aspect-ratio: 5 / 7) and (max-aspect-ratio: 7 / 5) and (max-width: 1400px) {
  .rs-mediaviewer .rs-mediaviewer-controlBtn {
    top: 10px !important;
  }
}

/* ***** LOADER ***** */
.loader {
  position: absolute;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader--all-news {
  top: calc(50% - 60px);
  left: calc(50% - 60px);
}

.loader--big {
  height: 120px;
  width: 120px;
}

.loader--small {
  height: 30px;
  width: 30px;
}

.loader--search-popup {
  display: block;
  top: calc(50% - 14px);
  left: calc(50% - 14px);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader--search-popup._hidden {
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ***** PRODUCT ***** */
.section__product {
  margin-bottom: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 479px) {
  .hero {
    text-align: left;
  }
}

.para_product {
  color: var(--basic-color);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3rem;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-item {
  align-items: center;
  margin-bottom: 0.65rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.list-item .para_hero {
  color: var(--basic-color);
}

@media screen and (max-width: 479px) {
  .list-item {
    justify-content: flex-start;
  }
}

.grain_section {
  width: 100%;
  min-height: 595px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 0;
  display: flex;
}

.grain_section-top {
  padding-top: 20px;
}

@media screen and (max-width: 479px) {
  .grain_section {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.container_horizontal {
  width: 100%;
  max-width: 1140px;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .container_horizontal {
    flex-direction: column;
    align-items: center;
  }
}

.frame-46 {
  width: 100%;
  max-width: 500px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.frame-47 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {

  .div-w-layout-grid-7,
  .frame-47 {
    max-width: none;
  }
}

.frame-47 h2,
.frame-31 h2,
.heading_wrap h2,
.frame-37 h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3rem;
}

@media screen and (max-width: 479px) {

  .frame-47 h2,
  .frame-31 h2,
  .heading_wrap h2,
  .frame-37 h2 {
    text-align: left;
    margin-top: 0;
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}

.para_default {
  color: var(--secondary-color-500-dm, var(--basic-static-color));
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .para_default {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .para_default {
    font-size: 1rem;
  }
}

.div-w-layout-gridmargin-3 {
  max-width: 460px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-w-layout-grid-7 {
  width: 100%;
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 479px) {
  .div-w-layout-grid-7 {
    align-items: stretch;
  }
}

.div-layout302_item-4-5,
.div-layout302_item-4-6 {
  width: 100%;
  background-color: #ece8e3;
  border: 1px #7e7e7e;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 11px 10px;
  display: flex;
}

@media screen and (max-width: 991px) {

  .div-layout302_item-4-5,
  .div-layout302_item-4-6 {
    height: 100%;
  }
}

@media screen and (max-width: 479px) {

  .div-layout302_item-4-5,
  .div-layout302_item-4-6 {
    height: auto;
    border-style: none;
    justify-content: flex-start;
  }
}

.div-margin-bottommargin-3 {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.div-margin-bottom-3 {
  width: 100%;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 0 solid #000;
  border-bottom-width: 1px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-15 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2px;
  display: flex;
}

.text-percentage {
  color: var(--basic-static-color);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}

.p-paragraph-106-5 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph3 {
  color: var(--basic-static-color);
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
}

.p-paragraph-106-6 {
  color: var(--basic-static-color);
}

.paragraph4 {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 15px;
}

.div-block-26 {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  .div-block-26 {
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .div-block-26 {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .div-block-26 {
    margin-top: 48px;
  }
}

.image-25 {
  width: 12rem;
  height: auto;
  position: absolute;
  transform: translateY(11px) rotate(12deg);
}

@media screen and (max-width: 991px) {
  .image-25 {
    width: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .image-25 {
    width: 10rem;
  }
}

@media screen and (max-width: 479px) {
  .image-25 {
    width: 8rem;
  }
}

.image-wrap {
  background-color: #ece8e3;
  border-radius: 6px;
}

.image-24 {
  width: 35rem;
  height: auto;
  border-radius: 0;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

.ingredients-desktop {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  display: flex;
}

@media screen and (max-width: 479px) {
  .ingredients-desktop {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.frame-31 {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .frame-31 {
    align-items: flex-start;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .frame-31 {
    /* align-items: flex-start; */
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.frame-32 {
  width: 100%;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .frame-32 {
    justify-content: flex-start;
  }
}

.frame-33 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.vectors-wrapper-11 {
  width: 24px;
  height: 24px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #ece8e3;
  border-radius: 6px;
}

.para_hero {
  color: var(--secondary-color-500-dm, var(--basic-static-color));
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3rem;
}

@media screen and (max-width: 991px) {
  .para_hero {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .para_hero {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.ingredients_grid {
  max-width: 1140px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 767px) {
  .ingredients_grid {
    width: 100%;
    justify-items: start;
    padding-left: 20px;
    overflow: scroll;
  }
}

.ingredients-card {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

#w-node-_421e3495-ca1d-b166-7e40-911e00ad73e1-3351a210,
#w-node-a4496fa4-78b0-70f9-cfcd-29b89a7d6a55-3351a210,
#w-node-_3e26a5f7-3390-6df8-d6e2-b678b37a21bc-3351a210,
#w-node-_81fde159-9385-128f-1bba-0bb324638b9b-3351a210 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  .ingredients-card {
    min-width: 200px;
  }
}

@media screen and (max-width: 479px) {
  .ingredients-card {
    min-width: 260px;
  }
}

.image-28 {
  width: 100%;
  object-fit: fill;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.ingredients_content {
  width: 100%;
  height: 100%;
  grid-row-gap: 10px;
  background-color: #ece8e3;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.ingredients_title {
  color: var(--basic-static-color);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 150%;
}

.para_ingredients {
  color: var(--basic-static-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3rem;
}

@media screen and (max-width: 991px) {
  .para_ingredients {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .para_ingredients {
    color: var(--basic-static-color);
    font-size: 1rem;
  }
}

.heading_wrap {
  max-width: 680px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

@media screen and (max-width: 991px) {
  .heading_wrap {
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .heading_wrap {
    padding: 0;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table_component {
  color: var(--basic-static-color);
  margin-top: 60px;
}

.table_row {
  justify-content: flex-end;
  display: flex;
}

td,
th {
  padding: 0;
}

.table_cell {
  width: 180px;
  background-color: #fff;
  border: 1px #000;
  padding: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 479px) {
  .table_cell {
    width: 33%;
    border-style: none;
    font-size: 0.8rem;
  }
}

.table_cell.green {
  background-color: #a1deb8;
  border-style: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.table_cell.green.top {
  border-style: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
}

@media screen and (max-width: 479px) {

  .table_cell.green,
  .table_cell.green.bottom,
  .table_cell.green.top,
  .table_cell.last,
  .table_cell.right,
  .table_cell.right.first {
    border-style: none;
  }
}

.logo_table {
  width: 120px;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 100%;
}

.table_cell.transparent {
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1rem;
  display: flex;
}

@media screen and (max-width: 479px) {
  .table_cell.transparent {
    font-size: 1rem;
  }
}

.table_cell.first {
  border-top-left-radius: 10px;
}

.vectors-wrapper-15 {
  width: 24px;
  height: 24px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.table_cell.right {
  border-style: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.table_cell.right.first {
  border-style: none;
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
}

.table_cell.last {
  border-style: none;
  border-bottom-left-radius: 10px;
}

.table_cell.right.last {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
}

.table_cell.green.bottom {
  border-style: none;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table_cell.hidden {
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
  display: block;
}

.how-to-use {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  display: flex;
}

@media screen and (max-width: 479px) {
  .how-to-use {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.frame-37 {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .frame-37 {
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .frame-37 {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .frame-37 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.frame-38 {
  width: 100%;
  max-width: 740px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 767px) {
  .frame-38 {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .frame-38 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 15px;
    overflow: scroll;
  }
}

.container-5 {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 479px) {
  .container-5 {
    min-width: 280px;
  }
}

.row {
  width: 100%;
  height: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 767px) {
  .row {
    justify-content: center;
  }
}

.card {
  width: 100%;
  background-color: #ece8e3;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 767px) {
  .card {
    width: 80%;
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .card {
    width: 100%;
    height: auto;
  }
}

.image-7 {
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

._01-1 {
  object-fit: cover;
  object-position: 50% 50%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media screen and (max-width: 767px) {
  ._01-1 {
    width: 100%;
    max-width: none;
  }
}

.content-5 {
  width: 100%;
  height: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 20px;
  display: flex;
}

.content-top {
  width: 100%;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.content-top .para_hero {
  color: var(--basic-static-color);
}

.header__search-mobile-loader {
  z-index: 99999;
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transform: translateY(100%);
  display: none;
  padding: 50px;
  background-color: var(--color-accent-primary-100);
}

.header__search-mobile-loader img {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 80%;
  transform: translate(-50%, -50%);
}

body.is-locked {
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .header__search-mobile-loader.is-visible {
    display: flex;
    flex-direction: column;
    animation: sml 4s ease-out;
  }

  .is-pseudo-visible::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    visibility: visible;
  }

  .loader.loader--mobile-none {
    display: none;
  }
}

@keyframes sml {
  60% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(100%);
  }
}

.link__item-link--search-popup {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.header__search-link-wrap {
  text-align: center;
  margin-top: 24px;
}

.header__search-link-wrap._hidden {
  display: none;
}

.header__search-link {
  display: inline-block;
  text-decoration: underline;
  padding: 6px;
  font-family: var(--fourth-ff);
  line-height: 1.325;
}

@media screen and (max-width: 767px) {
  .header__search-popup {
    right: 0;
    width: 300px;
  }
  .slider.swiper {
    margin-bottom: 20px;
  }
  .slider__pagination.swiper-pagination {
    bottom: 4px !important;
    position: absolute;
  }
}

@media screen and (max-width: 375px) {
  .header__search-popup {
    width: 100vw;
    right: -16px;
  }
}