@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Wix+Madefor+Text:wght@400..800&display=swap");
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 20px;
}
@media (max-width: 1584px) {
  body {
    font-size: clamp(15px, 15px + 5 * (100vw - 767px) / 817, 20px);
  }
}
@media (max-width: 374px) {
  body {
    font-size: 4vw;
  }
}

p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

.headerWrapper {
  position: relative;
  z-index: 1000;
  position: sticky;
  top: 0;
  background: #fff;
}
.homepage .headerWrapper {
  position: static;
}
.header {
  max-width: 1584px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.header__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .header__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 1023px) {
  .header::after {
    content: "";
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.6s;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .header--openMenu::after {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.header__box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5em;
  transition: all 0.5s;
}
@media (max-width: 1023px) {
  .header__box {
    background: #fff;
  }
}
@media (max-width: 1023px) {
  .header__box {
    justify-content: space-between;
  }
}
.header__logo {
  flex: 0 0 auto;
}
.header__logo img {
  display: block;
  width: 3.15em;
  aspect-ratio: 63/64;
  transition: transform 0.25s;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 3.0666666667em;
  }
}
.header__logo img:hover {
  transform: scale(1.05);
}
.header__content {
  flex: 1 1 auto;
  border: 1px solid rgba(60, 60, 60, 0.53);
  border-radius: 2.5em;
  padding: 1.2em 3.5em;
  display: flex;
  justify-content: space-between;
  background: #fff;
  transition: all 0.5s;
}
@media (max-width: 1023px) {
  .header__content {
    border: none;
    border-radius: 0;
    flex: 0 0 auto;
    padding: 0;
  }
}
.header__menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5em;
}
@media (max-width: 1199px) {
  .header__menu {
    gap: 4em;
  }
}
@media (max-width: 1023px) {
  .header__menu {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 25px;
    box-sizing: border-box;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .header--openMenu .header__menu {
    transition: all 0.3s;
    max-height: 382px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.header__menu__item {
  position: relative;
  --submenu-max-width: 150px;
  --submenu-max-height: 150px;
}
@media (max-width: 1023px) {
  .header__menu__item {
    border-top: 1px solid #ccc;
    padding: 1em 0;
  }
}
.header__menu__item:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 1.5em;
  background-color: #EE2A32;
  position: absolute;
  top: 50%;
  left: -2.75em;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .header__menu__item:not(:first-child)::before {
    left: -2em;
  }
}
.header__menu__item__link {
  display: flex;
  gap: 0.75em;
  align-items: center;
  width: fit-content;
  position: relative;
  font-size: 0.6em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  border: 1px solid #fff;
  transition: color 0.3s;
}
@media (max-width: 1023px) {
  .header__menu__item__link {
    font-size: 12px;
  }
}
.active .header__menu__item__link {
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .active .header__menu__item__link {
    margin-left: 1.25em;
  }
}
.active .header__menu__item__link::before {
  content: "";
  border-radius: 2.5em;
  border: 1px solid #EE2A32;
  padding: calc(0.67em - 1px) calc(1.25em - 1px);
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: -1.25em;
  top: -0.67em;
}
.header__menu__item__link:hover {
  color: #EE2A32;
}
.header__menu__item__submenu {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  position: absolute;
  top: calc(100% + 0.8em);
  left: 2.2em;
  z-index: 1;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75em;
  border-radius: 0 0.75em 0.75em 0.75em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header__menu__item__submenu {
    padding: 0;
    border: none;
    border-radius: 0;
    gap: 0.8571em;
    padding-top: 1em;
  }
  .header__menu__item__submenu svg {
    display: none;
  }
}
.header__menu__item__submenu__item {
  font-size: 0.7em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.header__menu__item__submenu__item.active {
  color: #EE2A32;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .header__menu__item__submenu__item {
    font-size: 14px;
  }
}
.header__menu__item__submenu__item * {
  flex-shrink: 0;
}
.header__menu__item__submenu__item:hover {
  color: #EE2A32;
}
.header__menu__item.open .header__menu__item__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-width: var(--submenu-max-width);
  max-height: var(--submenu-max-height);
}
@media (max-width: 1023px) {
  .header__menu__item.open .header__menu__item__submenu {
    position: static;
    max-width: none;
  }
}
.header__tools {
  flex: 0 0 auto;
  display: flex;
  gap: 1.5em;
  align-items: center;
}
@media (max-width: 767px) {
  .header__tools {
    gap: 2.6666666667em;
  }
}
.header__tools__telegram__link {
  display: block;
}
.header__tools__telegram__link img {
  display: block;
  width: 1.55em;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .header__tools__telegram__link img {
    width: 2.0666666667em;
  }
}
.header__tools__lang {
  font-size: 0.6em;
}
@media (max-width: 767px) {
  .header__tools__lang {
    font-size: 0.8em;
  }
}
.header__tools__lang__link {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header__tools__lang__link:hover {
  opacity: 0.6;
}
.header__tools__toggle {
  display: none;
  flex: 0 0 auto;
  width: 1.6em;
  aspect-ratio: 1;
  position: relative;
}
@media (max-width: 1023px) {
  .header__tools__toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  .header__tools__toggle {
    width: 2.1333333333em;
  }
}
.header__tools__toggle__item {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  cursor: default;
}
.header__tools__toggle__item:active {
  transform: scale(0.9);
}
.header__tools__toggle__item[data-menu-open] {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.header__tools__toggle__item[data-menu-close] {
  opacity: 0;
}
.header--openMenu .header__tools__toggle__item[data-menu-open] {
  opacity: 0;
}
.header--openMenu .header__tools__toggle__item[data-menu-close] {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.logobanner {
  margin: 1.7em auto 3em auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
@media (max-width: 540px) {
  .logobanner {
    gap: 7.6923076923vw;
  }
}
.logobanner img {
  display: block;
  width: 32.3em;
  aspect-ratio: 646/155;
  opacity: 0;
  transform: scale(0.97);
  transition: all 1s ease-out;
}
.logobanner img[data-visible="1"] {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
  .logobanner img {
    width: 65.641025641vw;
  }
}
.logobanner__motto {
  font-size: 2em;
  color: #787878;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: scale(0.97);
  transition: all 1s ease-out;
  transition-delay: 0.3s;
}
.logobanner__motto[data-visible="1"] {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .logobanner__motto {
    font-size: 6.1538461538vw;
  }
}

.banner {
  border-bottom: 2em solid rgb(42, 23, 23);
  margin-top: 3.5em;
  position: relative;
}
@media (max-width: 767px) {
  .banner {
    border-bottom-width: 10.2564102564vw;
  }
}
.banner__pic {
  display: block;
  width: 100%;
  height: auto;
}
.banner__pic[data-desktop] {
  aspect-ratio: 1920/663;
}
@media (max-width: 767px) {
  .banner__pic[data-desktop] {
    display: none;
  }
}
.banner__pic[data-mobile] {
  display: none;
  aspect-ratio: 390/540;
}
@media (max-width: 767px) {
  .banner__pic[data-mobile] {
    display: block;
  }
}
.banner__box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  background: rgba(217, 217, 217, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  padding: 1.5em 2em;
  transition: all 0.4s;
  opacity: 1;
}
.banner__box[data-visible="0"] {
  opacity: 0;
}
@media (max-width: 767px) {
  .banner__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.67em 2em;
    gap: 1.34em;
  }
}
.banner__box__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.4s ease-out;
  opacity: 1;
}
.banner__box__item[data-visible="0"] {
  opacity: 0;
}
@media (min-width: 768px) {
  .banner__box__item:nth-child(1) {
    transition-delay: 0.4s;
  }
  .banner__box__item:nth-child(2) {
    transition-delay: 0.6s;
  }
  .banner__box__item:nth-child(3) {
    transition-delay: 0.8s;
  }
  .banner__box__item:nth-child(4) {
    transition-delay: 1s;
  }
  .banner__box__item:nth-child(5) {
    transition-delay: 1.2s;
  }
}
.banner__box__item__icon {
  display: block;
  width: 4.6em;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .banner__box__item__icon {
    width: 4em;
  }
}
.banner__box__item__text {
  font-size: 0.9em;
  color: #fff;
  max-width: 14.89em;
}
@media (max-width: 767px) {
  .banner__box__item__text {
    max-width: none;
    font-size: 1.06em;
  }
}

.about {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 3.7em;
  margin-bottom: 3.7em;
}
.about__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .about__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .about {
    margin-top: 3.53em;
    margin-bottom: 0.86em;
  }
}
.about__box {
  display: flex;
  gap: 1.75em;
}
@media (max-width: 767px) {
  .about__box {
    flex-direction: column;
    gap: 1.25em;
  }
}
.about__left, .about__right {
  width: calc((100% - 0.25em) / 2);
}
@media (max-width: 767px) {
  .about__left, .about__right {
    width: 100%;
  }
}
.about__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  flex: 1 1 auto;
  font-size: 1.8em;
}
.about__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.about__link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.25em;
  text-decoration-color: rgba(238, 42, 50, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  color: #EE2A32;
}
@media (max-width: 767px) {
  .about__link[data-desktop] {
    display: none;
  }
}
.about__link[data-mobile] {
  display: none;
}
@media (max-width: 767px) {
  .about__link[data-mobile] {
    display: flex;
  }
}
.about__link:hover {
  text-decoration: none;
}
.about__link__text {
  font-size: 0.9em;
  text-transform: uppercase;
}
.about__link__arrow {
  display: block;
  width: 1.2em;
  aspect-ratio: 1;
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.about__right__content {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.3s;
}
.about__right__content[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}

.counters {
  position: relative;
  margin-top: 3.7em;
  padding-bottom: 15em;
}
@media (max-width: 767px) {
  .counters {
    margin-top: 0.8666666667em;
    margin-bottom: 0.8666666667em;
    padding-bottom: 1.5em;
  }
}
.counters::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 37.15em;
  aspect-ratio: 743/466;
  background: url(/wp-content/uploads/bgPattern.svg) no-repeat;
  background-size: 100%;
  left: 0;
  bottom: 0;
}
@media (min-width: 1921px) {
  .counters::after {
    left: calc((100vw - 1920px) / 2);
  }
}
@media (max-width: 767px) {
  .counters::after {
    background-image: url(/wp-content/uploads/bgPattern-mobile.svg);
    width: 21em;
    aspect-ratio: 315/267;
  }
}
.counters__board {
  max-width: 1584px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.counters__board__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .counters__board__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .counters__board__box {
    padding-top: 0;
  }
}
.counters__list {
  display: flex;
  gap: 9.25em;
}
@media (max-width: 1023px) {
  .counters__list {
    gap: 3em;
  }
}
@media (max-width: 767px) {
  .counters__list {
    gap: 2em;
    flex-direction: column;
  }
}
.counters__list__item {
  flex-grow: 0;
  max-width: min-content;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
@media (max-width: 767px) {
  .counters__list__item {
    max-width: none;
  }
}
.counters__list__item__num {
  display: flex;
  gap: 0.05em;
  font-size: 7.5em;
  font-weight: 500;
  color: #EE2A32;
}
@media (max-width: 1023px) {
  .counters__list__item__num {
    font-size: 6.4em;
  }
}

.map {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 2em;
}
.map__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .map__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .map {
    margin-top: 2.6666666667em;
  }
}
.map__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2em;
  min-height: 23.2em;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .map__box {
    min-height: auto;
    gap: 1.3333333333em;
  }
}
.map__pic {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 40.6em;
  height: auto;
  aspect-ratio: 812/464;
}
@media (max-width: 767px) {
  .map__pic {
    position: static;
    width: 100%;
    margin-top: 0.6666666667em;
  }
}
.map__logo {
  display: block;
  position: absolute;
  z-index: 2;
  top: 12.15em;
  right: 5.55em;
  width: 19.85em;
  height: auto;
  aspect-ratio: 397/98;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.map__logo[data-visible="1"] {
  opacity: 1;
}
@media (max-width: 767px) {
  .map__logo {
    opacity: 1;
    width: 34.6153846154vw;
    top: auto;
    right: 17.9487179487vw;
    bottom: 15.3846153846vw;
  }
}
.map__header {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 1.6em;
}
@media (max-width: 767px) {
  .map__header {
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.map__pointers {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-top: 1em;
  margin-right: 12.5em;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 767px) {
  .map__pointers {
    display: none;
  }
}
.map__pointers::before, .map__pointers::after {
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background-color: #EE2A32;
  aspect-ratio: 1;
  transform: scale(0);
  transition: transform 0.3s ease-out;
}
.map__pointers::before {
  width: 2.2em;
  transition-delay: 0s;
}
.map__pointers__line {
  flex: 1 1 auto;
  height: 0.1em;
  background-color: #EE2A32;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
  transition-delay: 0.3s;
}
.map__pointers::after {
  width: 1.2em;
  transition-delay: 0.7s;
}
.map__pointers[data-visible="1"] {
  opacity: 1;
}
.map__pointers[data-visible="1"]::before {
  transform: scale(1);
}
.map__pointers[data-visible="1"] .map__pointers__line {
  transform: scaleX(1);
}
.map__pointers[data-visible="1"]::after {
  transform: scale(1);
}
.map__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .map__text p:not(:first-child) {
    margin-top: 0.5em;
  }
  .map__text p:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 767px) {
  .map__text {
    font-weight: 1.0666666667em;
    font-weight: 600;
  }
}

.brands {
  border-bottom: 2em solid rgb(42, 23, 23);
  background: linear-gradient(to bottom, #EE2A32, #7C1014);
  margin-top: 5em;
}
@media (max-width: 767px) {
  .brands {
    border-bottom-width: 10.2564102564vw;
  }
}
@media (max-width: 767px) {
  .brands {
    margin-top: 3.3333333333em;
  }
}
.brands__content {
  max-width: 1584px;
  margin: 0 auto;
}
.brands__content__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .brands__content__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.brands__content__box {
  padding-top: 5.5em;
  padding-bottom: 5.5em;
}
@media (max-width: 767px) {
  .brands__content__box {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
.brands__list {
  display: flex;
  gap: 1.6em;
}
@media (max-width: 767px) {
  .brands__list {
    flex-direction: column;
    gap: 2em;
  }
}
.brands__list__item {
  background: #fff;
  border-radius: 1.5em;
  padding: 1.5em;
  width: calc((100% - 1.6em) / 4);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  opacity: 1;
}
.brands__list__item[data-visible="0"] {
  opacity: 0;
}
@media (min-width: 768px) {
  .brands__list__item:nth-child(2), .brands__list__item:nth-child(6) {
    transition-delay: 0.2s;
  }
  .brands__list__item:nth-child(3), .brands__list__item:nth-child(7) {
    transition-delay: 0.4s;
  }
  .brands__list__item:nth-child(4), .brands__list__item:nth-child(8) {
    transition-delay: 0.6s;
  }
}
@media (max-width: 767px) {
  .brands__list__item {
    width: 100%;
    gap: 0.5333333333em;
  }
}
.brands__list__item__logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
  min-height: 11.45em;
}
@media (max-width: 767px) {
  .brands__list__item__logo {
    min-height: 11.9333333333em;
  }
}
.brands__list__item__logo__img {
  display: block;
  width: 100%;
}
.brands__list__item__descr {
  flex: 1 1 auto;
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .brands__list__item__descr {
    font-size: 0.9333333333em;
  }
}
.brands__list__item__more {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}
.brands__list__item__more__link {
  display: flex;
  align-items: center;
  gap: 0.75em;
  text-decoration: none;
  color: #949494;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .brands__list__item__more__link {
    gap: 1em;
  }
}
.brands__list__item__more__link__text {
  font-size: 0.7em;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .brands__list__item__more__link__text {
    font-size: 0.9333333333em;
  }
}
.brands__list__item__more__link img {
  display: block;
  transition: all 0.3s;
  width: 1.5em;
}
@media (max-width: 767px) {
  .brands__list__item__more__link img {
    width: 2em;
  }
}
.brands__list__item__more__link:hover {
  color: #EE2A32;
}
.brands__list__item:hover {
  transform: translateY(-5px);
}
.brands__list__item:hover:nth-child(2), .brands__list__item:hover:nth-child(6) {
  transition-delay: 0s;
}
.brands__list__item:hover:nth-child(3), .brands__list__item:hover:nth-child(7) {
  transition-delay: 0s;
}
.brands__list__item:hover:nth-child(4), .brands__list__item:hover:nth-child(8) {
  transition-delay: 0s;
}
.brands__list__item:hover .brands__list__item__logo {
  transform: scale(1.02);
}
.brands__list__item:hover .brands__list__item__more__link img {
  transform: rotate(-15deg) scale(1.1);
}

.benefits {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 5.5em;
}
.benefits__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .benefits__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .benefits {
    margin-top: 5.3333333333em;
  }
}
.benefits__box {
  padding-top: 0;
  padding-bottom: 0;
}
.benefits__header {
  font-size: 2em;
  font-weight: bold;
  border-bottom: 4px solid #EE2A32;
  padding-bottom: calc(0.75em - 4px);
}
@media (max-width: 767px) {
  .benefits__header {
    font-size: 1.2em;
    padding-bottom: calc(0.8333333333em - 4px);
  }
}
.benefits__collage {
  position: relative;
  margin-top: 4em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}
@media (max-width: 767px) {
  .benefits__collage {
    margin-top: 2em;
    gap: 1.3333333333em;
    grid-template-columns: auto;
  }
}
.benefits__collage > * {
  transition: opacity 1s;
  opacity: 1;
}
.benefits__collage > *[data-visible="0"] {
  opacity: 0;
}
@media (min-width: 768px) {
  .benefits__collage > *:nth-child(2) {
    transition-delay: 0.2s;
  }
  .benefits__collage > *:nth-child(3) {
    transition-delay: 0.4s;
  }
  .benefits__collage > *:nth-child(5) {
    transition-delay: 0s;
  }
  .benefits__collage > *:nth-child(4) {
    transition-delay: 0.2s;
  }
}
.benefits__collage__logo {
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7.55em;
  aspect-ratio: 151/157;
}
@media (max-width: 767px) {
  .benefits__collage__logo {
    display: none;
  }
}
.benefits__collage__item {
  padding: 3em 2.5em;
  display: flex;
  flex-direction: column;
  border-radius: 1.5em;
  background: linear-gradient(to bottom, rgba(232, 228, 228, 0.77), rgb(255, 255, 255) 27%, rgba(255, 255, 255, 0.54) 97%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 16.25em;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .benefits__collage__item {
    padding: 1.3333333333em;
    border-radius: 2em;
    min-height: 13.1333333333em;
  }
}
.benefits__collage__item__header {
  flex: 0 0 auto;
  font-size: 1.6em;
  font-weight: bold;
  padding-bottom: calc(0.625em - 2px);
  border-bottom: 2px solid #949494;
}
@media (max-width: 767px) {
  .benefits__collage__item__header {
    font-size: 1.6em;
    padding-bottom: calc(0.625em - 2px);
  }
}
.benefits__collage__item__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits__footer {
  margin-top: 2em;
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .benefits__footer {
    margin-top: 2em;
    font-size: 1.0666666667em;
  }
}

.news {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 5.5em;
}
.news__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .news__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .news {
    margin-top: 5.3333333333em;
  }
}
.news__box {
  padding-top: 0;
  padding-bottom: 0;
}
.news__header {
  font-size: 2em;
  font-weight: bold;
  border-bottom: 4px solid #EE2A32;
  padding-bottom: calc(0.75em - 4px);
}
@media (max-width: 767px) {
  .news__header {
    font-size: 1.2em;
    padding-bottom: calc(0.8333333333em - 4px);
  }
}
.news__list {
  margin-top: 4em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  row-gap: 1.25em;
  column-gap: 4.05em;
}
@media (max-width: 1023px) {
  .news__list {
    column-gap: 2em;
  }
}
@media (max-width: 767px) {
  .news__list {
    margin-top: 2em;
    gap: 2em;
    display: flex;
    flex-direction: column;
  }
}
.news__list__item {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  border-bottom: 1px solid #000;
  padding-bottom: 1.25em;
  grid-column: 2;
  text-decoration: none;
  color: #000;
}
.news__list__item[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (min-width: 768px) {
  .news__list__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .news__list__item:nth-child(3) {
    transition-delay: 0.4s;
  }
  .news__list__item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .news__list__item:nth-child(5) {
    transition-delay: 0.8s;
  }
}
@media (max-width: 767px) {
  .news__list__item {
    flex-direction: column;
    gap: 1.3333333333em;
    padding-bottom: 1.6666666667em;
  }
}
.news__list__item__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
@media (max-width: 767px) {
  .news__list__item__text {
    gap: 0.6666666667em;
  }
}
.news__list__item__text__cat {
  flex: 0 0 auto;
  font-size: 0.7em;
  font-weight: 600;
  color: #EE2A32;
}
@media (max-width: 767px) {
  .news__list__item__text__cat {
    font-size: 0.9333333333em;
  }
}
.news__list__item__text__title {
  flex: 1 1 auto;
  line-height: 1.15;
  font-size: 1.2em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .news__list__item__text__title {
    font-size: 1.6em;
  }
}
.news__list__item__text__teaser {
  color: #141414;
  display: none;
}
@media (max-width: 767px) {
  .news__list__item__text__teaser {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    text-overflow: ellipsis;
  }
}
.news__list__item__text__more {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .news__list__item__text__more {
    margin-top: 0.6666666667em;
  }
}
.news__list__item__text__more__link {
  font-size: 0.7em;
  color: #949494;
  text-decoration: none;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .news__list__item__text__more__link {
    font-size: 0.9333333333em;
  }
}
.news__list__item__text__more__link:hover {
  color: #EE2A32;
}
.news__list__item__pic {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .news__list__item__pic {
    flex: 1 1 auto;
    order: 1;
    width: 100%;
  }
}
.news__list__item__pic img {
  display: block;
  width: 14.25em;
  aspect-ratio: 285/175;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0 1.5em 0 0;
}
@media (max-width: 1023px) {
  .news__list__item__pic img {
    width: 10em;
  }
}
@media (max-width: 767px) {
  .news__list__item__pic img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .news__list__item:not(.on-newspage):not(.single):first-child {
    grid-column: 1;
    grid-row: 1/4;
    flex-direction: column;
    border-bottom: none;
    align-items: stretch;
  }
  .news__list__item:not(.on-newspage):not(.single):first-child .news__list__item__pic {
    flex: 1 1 auto;
    order: 0;
  }
  .news__list__item:not(.on-newspage):not(.single):first-child .news__list__item__pic img {
    width: 100%;
    aspect-ratio: 704/430;
  }
  .news__list__item:not(.on-newspage):not(.single):first-child .news__list__item__text {
    order: 1;
  }
  .news__list__item:not(.on-newspage):not(.single):first-child .news__list__item__text__teaser {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    text-overflow: ellipsis;
  }
}
.news__all {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .news__all {
    justify-content: center;
  }
}
.news__all__btn {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.6em 2em;
  color: #fff;
  background: #EE2A32;
  border-radius: 2.5em;
  text-decoration: none;
  margin-top: 2em;
  transition: opacity 0.75s;
}
.news__all__btn:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .news__all__btn {
    font-size: 1.0666666667em;
    padding: 0.8em 2.6666666667em;
    border-radius: 3.3333333333em;
    margin-top: 2em;
  }
}

.footer {
  position: relative;
  padding-top: 4em;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 5.9333333333em;
    margin-top: 6.1333333333em;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(/wp-content/uploads/bgPattern2.svg) no-repeat;
  background-size: 100%;
  width: 37.15em;
  aspect-ratio: 743/267;
}
@media (max-width: 767px) {
  .footer::before {
    background-image: url(/wp-content/uploads/bgPattern2-mobile.svg);
    width: 17.9333333333em;
    aspect-ratio: 269/267;
  }
}
@media (min-width: 1921px) {
  .footer::before {
    left: calc((100vw - 1920px) / 2);
  }
}
.footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 19.4em;
  aspect-ratio: 388/21;
  background: #EE2A32;
  border-radius: 0 1.05em 0 0;
}
@media (min-width: 1921px) {
  .footer::after {
    left: calc((100vw - 1920px) / 2);
  }
}
@media (max-width: 767px) {
  .footer::after {
    width: 19.6em;
    aspect-ratio: 294/21;
  }
}
.footer__bg {
  position: relative;
  z-index: 1;
  background: #2A1717;
}
.footer__content {
  max-width: 1584px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer__content__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .footer__content__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.footer__content__box {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
@media (max-width: 767px) {
  .footer__content__box {
    padding-top: 2.6666666667em;
    padding-bottom: 2.6666666667em;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7em;
}
@media (max-width: 767px) {
  .footer__menu {
    gap: 1.4666666667em;
  }
}
@media (max-width: 469px) {
  .footer__menu {
    gap: 4.2553191489vw;
  }
}
.footer__menu__item {
  position: relative;
}
.footer__menu__item:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 1.5em;
  background-color: #EE2A32;
  position: absolute;
  top: 50%;
  left: -3.5em;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .footer__menu__item:not(:first-child)::before {
    left: -0.7333333333em;
    height: 0.6666666667em;
  }
}
@media (max-width: 469px) {
  .footer__menu__item:not(:first-child)::before {
    left: -2.1276595745vw;
  }
}
.footer__menu__item__link {
  display: flex;
  gap: 0.75em;
  align-items: center;
  width: fit-content;
  position: relative;
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .footer__menu__item__link {
    font-size: 0.8em;
  }
}
@media (max-width: 469px) {
  .footer__menu__item__link {
    font-size: 2.5531914894vw;
  }
}
.footer__menu__item__link:hover {
  color: #EE2A32;
}
.footer__menu__item__submenu {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  position: absolute;
  bottom: calc(100% + 0.8em);
  left: 2.2em;
  z-index: 1;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75em;
  border-radius: 0.75em 0.75em 0.75em 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.footer__menu__item__submenu__item {
  font-size: 0.7em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.footer__menu__item__submenu__item * {
  flex-shrink: 0;
}
.footer__menu__item__submenu__item:hover {
  color: #EE2A32;
}
.footer__menu__item.open .footer__menu__item__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-width: var(--submenu-max-width);
  max-height: var(--submenu-max-height);
}
.footer__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 3.5em;
  color: #fff;
}
@media (max-width: 1100px) {
  .footer__info {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer__info {
    flex-direction: column;
    gap: 1.6666666667em;
    margin-top: 2.6666666667em;
  }
}
.footer__info__item {
  max-width: 20em;
}
@media (max-width: 767px) {
  .footer__info__item {
    max-width: none;
  }
}
.footer__country {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.footer__country__header {
  font-size: 0.6em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__country__header {
    font-size: 0.8em;
  }
}
.footer__country__phone {
  display: flex;
  gap: 0.25em;
}
@media (max-width: 767px) {
  .footer__country__phone {
    gap: 0.3333333333em;
  }
}
.footer__country__phone__icons {
  display: flex;
  gap: 0.2em;
}
@media (max-width: 767px) {
  .footer__country__phone__icons {
    gap: 0.2666666667em;
  }
}
.footer__country__phone__icons img {
  display: block;
  width: 0.75em;
  aspect-ratio: 1;
}
.footer__country__phone__tel {
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.6em;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.footer__country__phone__tel:hover {
  color: #EE2A32;
}
@media (max-width: 767px) {
  .footer__country__phone__tel {
    font-size: 0.8em;
  }
}
.footer__country__email {
  display: flex;
  gap: 0.25em;
  font-weight: 600;
}
.footer__country__email img {
  display: block;
  width: 0.75em;
  aspect-ratio: 1;
}
.footer__country__email__link {
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.6em;
  font-weight: 600;
  color: #fff;
}
.footer__country__email__link:hover {
  color: #EE2A32;
}
@media (max-width: 767px) {
  .footer__country__email__link {
    font-size: 0.8em;
  }
}
.footer__post {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer__post__header {
  font-size: 0.6em;
}
@media (max-width: 767px) {
  .footer__post__header {
    font-size: 0.8em;
  }
}
.footer__post__addresses {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer__post__addresses__item {
  font-size: 0.6em;
}
@media (max-width: 767px) {
  .footer__post__addresses__item {
    font-size: 0.8em;
  }
}
.footer__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
@media (max-width: 1100px) {
  .footer__logo {
    margin-top: -2em;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    order: -1;
    justify-content: space-between;
    flex: 1 1 auto;
    width: 100%;
  }
}
.footer__logo img {
  display: block;
}
.footer__logo__icon {
  width: 5.35em;
  aspect-ratio: 63/65;
}
@media (max-width: 767px) {
  .footer__logo__icon {
    width: 3.2666666667em;
  }
}
.footer__logo__large {
  width: 13.3em;
  aspect-ratio: 266/64;
}
@media (max-width: 767px) {
  .footer__logo__large {
    width: 14.1333333333em;
  }
}
.footer__copyright {
  margin-top: 1.55em;
  font-size: 0.6em;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 2em;
    font-size: 0.8em;
  }
}

.page__heading {
  position: relative;
  z-index: 1;
  aspect-ratio: 1920/291;
  background: #333;
}
@media (max-width: 767px) {
  .page__heading {
    aspect-ratio: 390/153;
  }
}
.page__heading__content {
  max-width: 1584px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 1;
}
.page__heading__content__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .page__heading__content__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.page__heading__content__box {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .page__heading__content__box {
    align-items: center;
  }
}
.page__heading__banner {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__heading__text {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  color: #fff;
  font-size: 3.2em;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.page__heading__text[data-animated="0"] {
  opacity: 0;
  transform: none;
}
@media (max-width: 767px) {
  .page__heading__text {
    font-size: 2.6666666667em;
  }
}
.page__stripes {
  position: relative;
}
.page__stripes__img {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: 100%;
  width: 37.15em;
  height: 23.3em;
  background-position: right bottom;
}
@media (max-width: 1919px) {
  .page__stripes__img {
    width: 38.6979166667vw;
    height: 24.2708333333vw;
  }
}
@media (max-width: 1670px) {
  .page__stripes__img {
    left: auto;
    right: 0;
  }
}

.newspage__cols {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
@media (max-width: 767px) {
  .newspage__cols {
    flex-direction: column;
    gap: 2.6666666667em;
  }
}
.newspage__cols__left {
  flex: 0 1 auto;
  width: 44.1em;
  padding-bottom: 2em;
}
@media (max-width: 767px) {
  .newspage__cols__left {
    width: 100%;
    flex: 1 1 auto;
    padding-bottom: 0;
  }
}
.newspage__cols__right {
  flex: 0 1 auto;
  width: 29.4em;
  padding-top: 4.35em;
}
@media (max-width: 767px) {
  .newspage__cols__right {
    width: 100%;
    flex: 1 1 auto;
    padding-top: 0;
  }
}
.newspage .news {
  margin-top: 1.3em;
  margin-bottom: -1.5em;
}
@media (max-width: 767px) {
  .newspage .news {
    margin-top: 2em;
  }
}
.newspage .news__list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .newspage .news__list {
    gap: 2em;
  }
}
.newspage .news__list__item__text {
  gap: 0.5em;
}
.newspage .news__list__item__text__teaser {
  font-size: 0.7em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto;
  text-overflow: ellipsis;
}
.newspage .news__list__item__pic img {
  aspect-ratio: 228/175;
  width: 11.4em;
}
@media (max-width: 1023px) {
  .newspage .news__list__item__pic img {
    width: 7.5em;
  }
}
@media (max-width: 767px) {
  .newspage .news__list__item__pic img {
    aspect-ratio: 340/200;
    width: 100%;
  }
}
.newspage .news__list__item.single {
  flex-direction: column;
  gap: 1.5em;
  border: none;
}
@media (max-width: 767px) {
  .newspage .news__list__item.single .news__list__item__content {
    order: 2;
  }
}
.newspage .news__list__item.single .news__list__item__pic {
  flex: 1 1 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .newspage .news__list__item.single .news__list__item__pic {
    order: 1;
  }
}
.newspage .news__list__item.single .news__list__item__pic img {
  width: 100%;
  aspect-ratio: 882/430;
}
.newspage .news__list__item.single .news__list__item__pic img:last-child {
  display: none;
}
@media (max-width: 767px) {
  .newspage .news__list__item.single .news__list__item__pic img {
    aspect-ratio: 340/200;
    width: 100%;
  }
  .newspage .news__list__item.single .news__list__item__pic img:first-child {
    display: none;
  }
  .newspage .news__list__item.single .news__list__item__pic img:last-child {
    display: block;
  }
}
.newspage__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4.25em;
}
@media (max-width: 767px) {
  .newspage__nav {
    margin-top: 1.8333333333em;
    padding-bottom: 1.6666666667em;
    border-bottom: 1px solid #000;
  }
}
.newspage__nav__right {
  display: flex;
  gap: 0.75em;
}
@media (max-width: 767px) {
  .newspage__nav__right {
    gap: 2.6666666667em;
  }
}
@media (max-width: 767px) {
  .newspage__nav__right .newspage__nav__item__text {
    display: none;
  }
}
.newspage__nav__sep {
  width: 1px;
  height: 1.5em;
  background: #EE2A32;
}
@media (max-width: 767px) {
  .newspage__nav__sep {
    display: none;
  }
}
.newspage__nav__item {
  display: flex;
  gap: 0.75em;
  align-items: center;
  color: #949494;
  text-decoration: none;
  transition: color 0.3s;
}
.newspage__nav__item:hover {
  color: #EE2A32;
}
.newspage__nav__item__text {
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .newspage__nav__item__text {
    font-size: 0.9333333333em;
  }
}
.newspage__nav__item img {
  display: block;
  width: 1.5em;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .newspage__nav__item img {
    width: 2em;
  }
}
.newspage__nav__item.to-prev img {
  transform: scaleX(-1);
}
.newspage__more {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .newspage__more {
    justify-content: center;
  }
}
.newspage__more__btn {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.6em 2em;
  color: #fff;
  background: #EE2A32;
  border-radius: 2.5em;
  text-decoration: none;
  margin-top: 2em;
  transition: opacity 0.75s;
}
.newspage__more__btn:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .newspage__more__btn {
    font-size: 1.0666666667em;
    padding: 0.8em 2.6666666667em;
    border-radius: 3.3333333333em;
    margin-top: 2em;
  }
}
@media (max-width: 767px) {
  .newspage__more__btn {
    margin-top: 2.6666666667em;
  }
}
.newspage footer {
  padding-top: 9em;
}

.breadcrumbs {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 4em;
  margin-bottom: 1.3em;
}
.breadcrumbs__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .breadcrumbs__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 2em;
  }
}
.breadcrumbs__box {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  gap: 2.8em;
}
.breadcrumbs__box__left {
  width: 44.65em;
}
@media (max-width: 767px) {
  .breadcrumbs__box__left {
    width: 100%;
  }
}
.breadcrumbs__box__right {
  flex: 1 1 auto;
  height: 8em;
}
@media (max-width: 1919px) {
  .breadcrumbs__box__right {
    height: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  .breadcrumbs__box__right {
    display: none;
  }
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.2em;
  padding-bottom: 1.3em;
  border-bottom: 4px solid #EE2A32;
}
@media (max-width: 767px) {
  .breadcrumbs__list {
    padding-bottom: 1em;
    border-bottom-width: 0.1333333333em;
  }
}
.breadcrumbs__list__item {
  font-size: 0.9em;
  color: #9D9D9C;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs__list__item:hover {
  color: #EE2A32;
}
@media (max-width: 767px) {
  .breadcrumbs__list__item {
    font-size: 0.9333333333em;
  }
}
.breadcrumbs__list__item.active {
  color: #EE2A32;
  pointer-events: none;
}

@media (min-width: 768px) {
  .aboutus main {
    padding-bottom: 1.5em;
  }
}
@media (min-width: 768px) {
  .aboutus footer::before {
    top: -4.5em;
  }
}
.aboutus .breadcrumbs {
  margin-bottom: 0;
}
.aboutus .breadcrumbs__box__right {
  height: auto;
}
.aboutus .page__stripes__img {
  bottom: -11em;
}
@media (max-width: 1919px) {
  .aboutus .page__stripes__img {
    bottom: -11.4583333333vw;
  }
}
.aboutus__intro {
  max-width: 1584px;
  margin: 0 auto;
}
.aboutus__intro__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .aboutus__intro__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.aboutus__intro__box {
  max-width: 37.8em;
  padding-top: 3em;
}
@media (max-width: 767px) {
  .aboutus__intro__box {
    padding-top: 2em;
    max-width: none;
  }
}
.aboutus__intro__text {
  font-size: 1.6em;
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.aboutus__intro__text[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__intro__text {
    font-size: 1.4666666667em;
  }
}
.aboutus__values {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 4.5em;
}
.aboutus__values__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .aboutus__values__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .aboutus__values {
    margin-top: 2em;
  }
}
.aboutus__values__split {
  display: flex;
  gap: 1.5em;
}
@media (max-width: 767px) {
  .aboutus__values__split {
    flex-direction: column;
    gap: 2em;
  }
}
.aboutus__values__split__left {
  width: 37.55em;
}
@media (max-width: 767px) {
  .aboutus__values__split__left {
    width: 100%;
  }
}
.aboutus__values__split__right {
  width: 37.8em;
}
@media (max-width: 767px) {
  .aboutus__values__split__right {
    order: -1;
    width: 100%;
  }
}
.aboutus__values__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 1.6em;
  font-weight: 600;
}
.aboutus__values__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__values__header {
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.aboutus__values__list {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 2em;
}
.aboutus__values__list[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__values__list {
    margin-top: 1.3333333333em;
  }
}
.aboutus__values__list h3 {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  color: #EE2A32;
}
@media (max-width: 767px) {
  .aboutus__values__list h3 {
    font-size: 1.3333333333em;
  }
}
.aboutus__values__list h3:not(:first-child) {
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .aboutus__values__list h3:not(:first-child) {
    margin-top: 0.6666666667em;
  }
}
.aboutus__values__list p {
  margin: 0;
}
@media (max-width: 767px) {
  .aboutus__values__list p {
    margin-top: 0.2em;
  }
}
.aboutus__values__pic {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.aboutus__values__pic[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.aboutus__values__pic img {
  display: block;
  width: 100%;
  aspect-ratio: 756/488;
  object-fit: cover;
  object-position: center;
  border-radius: 0 1.5em 0 0;
}
.aboutus__values__pic img:last-child {
  display: none;
}
@media (max-width: 767px) {
  .aboutus__values__pic img {
    aspect-ratio: 340/230;
  }
  .aboutus__values__pic img:first-child {
    display: none;
  }
  .aboutus__values__pic img:last-child {
    display: block;
  }
}
.aboutus__separator {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 4em;
  max-width: 1018px;
}
.aboutus__separator[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.aboutus__separator__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .aboutus__separator__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .aboutus__separator {
    margin-top: 5.3333333333em;
  }
}
.aboutus__separator__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutus__separator__content img {
  display: block;
  width: 9.35em;
  aspect-ratio: 187/195;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .aboutus__separator__content img {
    width: 6.7333333333em;
  }
}
.aboutus__separator__content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2em;
  background: #EE2A32;
}
@media (max-width: 767px) {
  .aboutus__separator__content::after {
    height: 0.2666666667em;
  }
}
.aboutus__phil {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 1.5em;
  max-width: 1183px;
  text-align: center;
}
.aboutus__phil__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .aboutus__phil__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .aboutus__phil {
    margin-top: 2em;
  }
}
.aboutus__phil__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 1.6em;
  font-weight: 600;
}
.aboutus__phil__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__phil__header {
    font-size: 1.8666666667em;
  }
}
.aboutus__phil__text {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 1em;
}
.aboutus__phil__text[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__phil__text {
    margin-top: 0.6666666667em;
  }
}
.aboutus__gar {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 5.5em;
  position: relative;
  z-index: 1;
}
.aboutus__gar__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .aboutus__gar__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .aboutus__gar {
    margin-top: 5.3333333333em;
  }
}
.aboutus__gar__split {
  display: flex;
  gap: 1.5em;
}
@media (max-width: 1583px) {
  .aboutus__gar__split {
    margin-bottom: 4em;
  }
}
@media (max-width: 767px) {
  .aboutus__gar__split {
    flex-direction: column;
    gap: 2em;
  }
}
.aboutus__gar__split__left {
  width: 37.85em;
}
@media (max-width: 767px) {
  .aboutus__gar__split__left {
    width: 100%;
  }
}
.aboutus__gar__split__right {
  width: 37.55em;
}
@media (max-width: 767px) {
  .aboutus__gar__split__right {
    width: 100%;
  }
}
.aboutus__gar__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 1.6em;
  font-weight: 600;
}
.aboutus__gar__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__gar__header {
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.aboutus__gar__list {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 2em;
}
.aboutus__gar__list[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__gar__list {
    margin-top: 0;
  }
}
.aboutus__gar__list h3 {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  color: #EE2A32;
}
@media (max-width: 767px) {
  .aboutus__gar__list h3 {
    font-size: 1.3333333333em;
  }
}
.aboutus__gar__list h3:not(:first-child) {
  margin-top: 1.7em;
}
@media (max-width: 1583px) {
  .aboutus__gar__list h3:not(:first-child) {
    margin-top: 1.5em;
  }
}
@media (max-width: 767px) {
  .aboutus__gar__list h3:not(:first-child) {
    margin-top: 0.6666666667em;
  }
}
.aboutus__gar__list p {
  margin: 0;
}
@media (max-width: 767px) {
  .aboutus__gar__list p {
    margin-top: 0.2em;
  }
}
.aboutus__gar__pic {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.aboutus__gar__pic[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .aboutus__gar__pic {
    margin-top: 2em;
  }
}
.aboutus__gar__pic img {
  display: block;
  width: 100%;
  aspect-ratio: 757/590;
  object-fit: cover;
  object-position: center;
  border-radius: 0 1.5em 0 0;
}
.aboutus__gar__pic img:last-child {
  display: none;
}
@media (max-width: 767px) {
  .aboutus__gar__pic img {
    aspect-ratio: 341/230;
  }
  .aboutus__gar__pic img:first-child {
    display: none;
  }
  .aboutus__gar__pic img:last-child {
    display: block;
  }
}

.contacts .breadcrumbs__box__right {
  height: 4em;
}
.contacts .page__stripes__img {
  height: 15em;
}
@media (max-width: 1919px) {
  .contacts .page__stripes__img {
    height: 15.625vw;
  }
}
.contacts__content {
  max-width: 1584px;
  margin: 0 auto;
  margin-bottom: 4em;
}
.contacts__content__box {
  padding: 0 25px;
}
@media (max-width: 374px) {
  .contacts__content__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 767px) {
  .contacts__content {
    margin-top: 2.6666666667em;
    margin-bottom: 5.3333333333em;
  }
}
.contacts .page__heading {
  aspect-ratio: 1920/153;
}
@media (max-width: 767px) {
  .contacts .page__heading {
    aspect-ratio: 390/153;
  }
}
.contacts__split {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
@media (max-width: 767px) {
  .contacts__split {
    flex-direction: column;
    gap: 4.1333333333em;
  }
}
.contacts__split__left {
  width: 21.8em;
}
@media (max-width: 767px) {
  .contacts__split__left {
    width: 100%;
  }
}
.contacts__split__right {
  width: 29em;
}
@media (max-width: 767px) {
  .contacts__split__right {
    width: 100%;
  }
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media (max-width: 767px) {
  .contacts__list {
    gap: 2.6666666667em;
  }
}
.contacts__list__item {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.contacts__list__item[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.contacts__list__item__header {
  font-size: 1em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contacts__list__item__header {
    font-size: 1.3333333333em;
  }
}
.contacts__list__item__address {
  font-size: 0.7em;
  margin-top: 0.75em;
}
@media (max-width: 767px) {
  .contacts__list__item__address {
    font-size: 0.9333333333em;
    margin-top: 1em;
  }
}
.contacts__list__item__phone {
  display: flex;
  gap: 0.5em;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .contacts__list__item__phone {
    gap: 0.6666666667em;
    margin-top: 0.6666666667em;
  }
}
.contacts__list__item__phone__icons {
  display: flex;
  gap: 0.2em;
}
@media (max-width: 767px) {
  .contacts__list__item__phone__icons {
    gap: 0.2666666667em;
  }
}
.contacts__list__item__phone__icons img {
  display: block;
  width: 1.2em;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .contacts__list__item__phone__icons img {
    width: 1.6em;
  }
}
.contacts__list__item__phone__tel {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  color: #EE2A32;
  white-space: nowrap;
}
.contacts__list__item__phone__tel:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .contacts__list__item__phone__tel {
    font-size: 1.0666666667em;
  }
}
.contacts__list__item__email {
  display: flex;
  gap: 0.5em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contacts__list__item__email {
    gap: 0.6666666667em;
  }
}
.contacts__list__item__email img {
  display: block;
  width: 1.2em;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .contacts__list__item__email img {
    width: 1.6em;
  }
}
.contacts__list__item__email__link {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  color: #EE2A32;
}
.contacts__list__item__email__link:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .contacts__list__item__email__link {
    font-size: 1.0666666667em;
  }
}
.contacts__form-header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 1.6em;
  font-weight: 600;
}
.contacts__form-header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .contacts__form-header {
    font-size: 1.8666666667em;
  }
}
.contacts__form-text {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 0.7em;
  margin-top: 0.5em;
}
.contacts__form-text[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .contacts__form-text {
    font-size: 0.9333333333em;
    margin-top: 0.6666666667em;
  }
}
.contacts__form {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 1.5em;
}
.contacts__form[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .contacts__form {
    margin-top: 1.3333333333em;
  }
}
.contacts__form .wpforms-container .wpforms-field {
  padding: 0;
}
.contacts__form .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.contacts__form div.wpforms-container-full:not(.empty) {
  margin: 0;
}
.contacts__form div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .contacts__form div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    margin-top: 2.6666666667em;
  }
}
.contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit] {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.6em 2em;
  color: #fff;
  background: #EE2A32;
  border-radius: 2.5em;
  text-decoration: none;
  margin-top: 2em;
  transition: opacity 0.75s;
  height: auto;
  border: none;
  margin: 0;
}
.contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit]:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit] {
    font-size: 1.0666666667em;
    padding: 0.8em 2.6666666667em;
    border-radius: 3.3333333333em;
    margin-top: 2em;
  }
}
@media (max-width: 767px) {
  .contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit] {
    margin: 0;
  }
}
.contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit]:focus {
  outline: none;
}
.contacts__form div.wpforms-container-full .wpforms-form button.wpforms-submit[type=submit]::after {
  display: none;
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text],
.contacts__form div.wpforms-container-full .wpforms-form textarea {
  border-radius: 0 0.75em 0 0;
  border-color: #9D9D9C;
  color: #000;
  padding: 0.75em 1em;
  transition: border-color 0.5s;
  box-shadow: none;
}
@media (max-width: 767px) {
  .contacts__form div.wpforms-container-full .wpforms-form input[type=text],
  .contacts__form div.wpforms-container-full .wpforms-form textarea {
    border-radius: 0 1em 0 0;
    padding: 1em 1.3333333333em;
  }
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text]:hover,
.contacts__form div.wpforms-container-full .wpforms-form textarea:hover {
  box-shadow: none;
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text]:not(.wpforms-error):focus,
.contacts__form div.wpforms-container-full .wpforms-form textarea:not(.wpforms-error):focus {
  border-color: #000;
  outline: none;
  box-shadow: none;
  border-width: 1px;
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text].wpforms-error:focus,
.contacts__form div.wpforms-container-full .wpforms-form textarea.wpforms-error:focus {
  border-color: #EE2A32;
  outline: none;
  box-shadow: none;
  border-width: 1px;
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text].wpforms-error:hover,
.contacts__form div.wpforms-container-full .wpforms-form textarea.wpforms-error:hover {
  box-shadow: none;
}
.contacts__form div.wpforms-container-full .wpforms-form input[type=text]::placeholder,
.contacts__form div.wpforms-container-full .wpforms-form textarea::placeholder {
  color: #949494;
}

.brand {
  position: relative;
  z-index: 1;
}
.brand__banner {
  position: relative;
}
.brand__banner__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/550;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .brand__banner__img {
    min-height: 310px;
  }
}
@media (max-width: 767px) {
  .brand__banner__img {
    aspect-ratio: 390/460;
  }
}
.brand__banner__logo {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1919px) {
  .brand__banner__logo {
    gap: 2.6041666667vw;
  }
}
@media (max-width: 767px) {
  .brand__banner__logo {
    left: 1.6666666667em;
  }
}
.brand__banner__logo__img {
  display: block;
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.brand__banner__logo__img[data-animated="0"] {
  opacity: 0;
  transform: none;
}
.brand__banner__logo__text {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.15s;
}
.brand__banner__logo__text[data-animated="0"] {
  opacity: 0;
  transform: none;
}
.brand__banner__soc {
  max-width: 1584px;
  margin: 0 auto;
}
.brand__banner__soc__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .brand__banner__soc__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.brand__banner__soc__box {
  position: relative;
  padding: 0;
}
.brand__banner__soc__list {
  position: absolute;
  right: 25px;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .brand__banner__soc__list {
    right: 50%;
    transform: translate(50%, -50%);
    justify-content: center;
    gap: 6.1538461538vw;
  }
}
.brand__banner__soc__list__item {
  flex: 0 0 auto;
  text-decoration: none;
  display: block;
  width: 5.85em;
  aspect-ratio: 1;
  transition: transform 0.3s;
}
.brand__banner__soc__list__item:hover {
  transform: scale(1.05);
}
@media (max-width: 1919px) {
  .brand__banner__soc__list__item {
    width: 6.09375vw;
  }
}
@media (max-width: 767px) {
  .brand__banner__soc__list__item {
    width: 21.7948717949vw;
  }
}
.brand__banner__soc__list__item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand__promo {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 5em;
}
.brand__promo__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .brand__promo__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
@media (max-width: 1583px) {
  .brand__promo {
    font-size: 1.2634238787vw;
  }
}
@media (max-width: 767px) {
  .brand__promo {
    font-size: 1em;
    margin-top: 6em;
  }
}
.brand__promo__box {
  padding-top: 0;
  padding-bottom: 0;
}
.brand__promo__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .brand__promo__cols {
    flex-direction: column;
  }
}
.brand__promo__cols__left {
  flex: 0 0 auto;
  width: 31.25em;
}
@media (max-width: 767px) {
  .brand__promo__cols__left {
    flex: 1 1 auto;
    width: 100%;
  }
}
.brand__promo__cols__right {
  flex: 0 0 auto;
  width: 35em;
}
@media (max-width: 767px) {
  .brand__promo__cols__right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.brand__promo__intro {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  font-size: 2em;
}
.brand__promo__intro[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand__promo__intro {
    font-size: 1.6em;
  }
}
.brand__promo__collage {
  margin-top: 3em;
  position: relative;
}
@media (max-width: 767px) {
  .brand__promo__collage {
    margin-top: 2em;
  }
}
.brand__promo__collage__img {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: block;
  border-radius: 1.5em;
  border: 0.35em solid #fff;
}
.brand__promo__collage__img[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.brand__promo__princip {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.brand__promo__princip[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.brand__prods {
  max-width: 1584px;
  margin: 0 auto;
  margin-top: 2.25em;
}
.brand__prods__box {
  padding: 1.8em 25px;
}
@media (max-width: 374px) {
  .brand__prods__box {
    padding-left: 1.6666666667em;
    padding-right: 1.6666666667em;
  }
}
.brand__prods__box {
  padding-top: 0;
  padding-bottom: 2.5em;
}
.brand__prods__heading {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.brand__prods__heading[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand__prods__heading {
    align-items: center;
  }
}
.brand__prods__heading__title {
  flex: 0 0 auto;
  font-size: 2em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .brand__prods__heading__title {
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.brand__prods__heading__logo {
  flex: 0 0 auto;
}
.brand__prods__heading__logo__img {
  display: block;
  height: auto;
}
.brand__prods__filter {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  position: relative;
  margin-top: 1.5em;
  border-radius: 2.5em;
  background: #eee;
  display: flex;
  justify-content: center;
  padding: 1em 0;
}
.brand__prods__filter[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 1024px) {
  .brand__prods__filter {
    border-radius: 1em;
  }
}
@media (max-width: 767px) {
  .brand__prods__filter {
    background: none;
    justify-content: flex-start;
    margin-top: 1.7333333333em;
    padding: 0;
  }
}
.brand__prods__filter__header {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 1.75em;
  transform: translateY(-50%);
  font-size: 0.7em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .brand__prods__filter__header {
    display: none;
  }
}
.brand__prods__filter__list {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
@media (max-width: 1024px) {
  .brand__prods__filter__list {
    flex-wrap: wrap;
    row-gap: 0.4em;
    padding: 0.5em;
  }
}
@media (max-width: 767px) {
  .brand__prods__filter__list {
    gap: 0.8em;
  }
}
.brand__prods__filter__list__item {
  position: relative;
  font-size: 0.6em;
  padding: 0.4em 1em;
  border-radius: 2.5em;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .brand__prods__filter__list__item {
    font-size: 0.8em;
    padding: 0.4em 1em;
    border: 1px solid #9D9D9C;
    color: #767676;
  }
}
.brand__prods__filter__list__item.active {
  background: #fff;
  border: 1px solid #333;
  pointer-events: none;
  color: #000;
}
.brand__prods__filter__list__item:hover {
  background: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .brand__prods__filter__list__item:hover {
    color: #000;
  }
}
.brand__prods__filter__list__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background: #999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.25em;
}
@media (max-width: 767px) {
  .brand__prods__filter__list__item:not(:first-child)::before {
    display: none;
  }
}
.brand__prods__cat {
  margin-top: 2em;
  font-size: 1.2em;
  line-height: 1.15;
  font-weight: 500;
}
@media (max-width: 767px) {
  .brand__prods__cat {
    display: none;
  }
}
.brand__prods__list {
  position: relative;
  margin-top: 2.1em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
  transition: height 0.3s;
}
@media (max-width: 767px) {
  .brand__prods__list {
    gap: 1.3333333333em;
    margin-top: 2em;
  }
}
@keyframes spin {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
.brand__prods__list.loading::before {
  content: "";
  position: absolute;
  width: 10em;
  aspect-ratio: 1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="%23999" viewBox="0 0 256 256"><path d="M132,32V64a4,4,0,0,1-8,0V32a4,4,0,0,1,8,0Zm41.25,54.75a4,4,0,0,0,2.83-1.18L198.71,63a4,4,0,0,0-5.66-5.66L170.43,79.92a4,4,0,0,0,2.82,6.83ZM224,124H192a4,4,0,0,0,0,8h32a4,4,0,0,0,0-8Zm-47.92,46.43a4,4,0,1,0-5.65,5.65l22.62,22.63a4,4,0,0,0,5.66-5.66ZM128,188a4,4,0,0,0-4,4v32a4,4,0,0,0,8,0V192A4,4,0,0,0,128,188ZM79.92,170.43,57.29,193.05A4,4,0,0,0,63,198.71l22.62-22.63a4,4,0,1,0-5.65-5.65ZM68,128a4,4,0,0,0-4-4H32a4,4,0,0,0,0,8H64A4,4,0,0,0,68,128ZM63,57.29A4,4,0,0,0,57.29,63L79.92,85.57a4,4,0,1,0,5.65-5.65Z"></path></svg>');
  background-size: 100%;
  left: 50%;
  top: 5vh;
  transform: translateX(-50%);
  animation: spin 1s linear infinite;
}
.brand__prods__list__item {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: flex;
  gap: 1.5em;
  min-width: 0;
}
.brand__prods__list__item[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand__prods__list__item {
    flex-direction: column;
    gap: 0.6666666667em;
  }
}
.brand__prods__list__item__pic {
  flex: 0 0 auto;
  width: 18.15em;
  height: 19em;
}
@media (min-width: 768px) {
  .brand__prods__list__item__pic {
    pointer-events: none;
  }
}
@media (max-width: 1439px) {
  .brand__prods__list__item__pic {
    width: 20.8333333333vw;
    height: 21.875vw;
  }
}
@media (max-width: 767px) {
  .brand__prods__list__item__pic {
    width: 100%;
    height: auto;
    aspect-ratio: 363/380;
  }
}
.brand__prods__list__item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand__prods__list__item__texts {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts {
    gap: 0.6666666667em;
  }
}
.brand__prods__list__item__texts__title {
  flex-grow: 0;
  font-size: 1.2em;
  font-weight: 600;
  hyphens: auto;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts__title {
    font-size: 1.0666666667em;
  }
}
.brand__prods__list__item__texts__descr {
  flex-grow: 1;
}
.brand__prods__list__item__texts__descr__text {
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts__descr__text {
    font-size: 0.9333333333em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    text-overflow: ellipsis;
  }
}
.brand__prods__list__item__texts__descr__more {
  display: none;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts__descr__more {
    display: flex;
    align-items: center;
    gap: 0.6666666667em;
    font-size: 0.9333333333em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.2em;
  }
  .brand__prods__list__item__texts__descr__more::after {
    content: "";
    display: block;
    background: url("/wp-content/uploads/prodArrowMore.svg");
    background-size: 100%;
    width: 0.3333333333em;
    aspect-ratio: 5/10;
    margin-top: 0.15em;
  }
}
.brand__prods__list__item__texts__vol {
  flex-grow: 0;
  font-size: 0.65em;
  color: #949494;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts__vol {
    font-size: 0.8666666667em;
  }
}
.brand__prods__list__item__texts__art {
  flex-grow: 0;
  font-size: 0.65em;
}
@media (max-width: 767px) {
  .brand__prods__list__item__texts__art {
    font-size: 0.8666666667em;
  }
  .brand__prods__list__item__texts__art span {
    display: block;
  }
  .brand__prods__list__item__texts__art span:last-child {
    margin-top: 0.2em;
  }
}
.brand__prods__more {
  margin-top: 2.5em;
}
.brand__prods__more__line {
  display: flex;
  justify-content: center;
  position: relative;
  color: #333;
}
.brand__prods__more__line svg {
  display: block;
  width: 3.5em;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.brand__prods__more__line svg:hover {
  transform: scale(1.05);
}
.brand__prods__more__line::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: calc(50% - 0.5px);
  height: 1px;
  width: 100%;
  background: #333;
}
.brand__prods__more__button {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
  margin-bottom: -3.5em;
}
.brand__prods__more__button__btn {
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  padding: 0.5em 1.5625em;
  border-radius: 3.125em;
  background: #999;
  cursor: pointer;
  transition: all 0.3s;
}
.brand__prods__more__button__btn:hover {
  transform: scale(1.05);
}
.brand .prod__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.brand .prod__popup.visible {
  opacity: 1;
  pointer-events: auto;
}
.brand .prod__popup__content {
  background: #fff;
  padding: 2em 1.3333333333em;
  margin-left: 1.2em;
  margin-right: 1.2em;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.brand .prod__popup__content .brand__prods__list__item__pic {
  width: 100%;
  flex: 1 1 auto;
  aspect-ratio: 314/175;
  display: flex;
  justify-content: center;
}
.brand .prod__popup__content .brand__prods__list__item__pic img {
  width: 65%;
}
.brand .prod__popup__content .brand__prods__list__item__texts__descr__text {
  overflow: visible;
  display: block;
}
.brand .prod__popup__content .brand__prods__list__item__texts__descr__more {
  display: none;
}
.brand .prod__popup.visible .prod__popup__content {
  transform: scale(1);
}
.brand .prod__popup__close {
  position: absolute;
  top: 0.3333333333em;
  right: 0.3333333333em;
  width: 1.6em;
  aspect-ratio: 1;
  display: block;
  cursor: pointer;
}
.brand--yesimi .brand__banner__logo {
  width: 55%;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__banner__logo {
    width: 50.5128205128vw;
  }
}
.brand--yesimi .brand__banner__logo__img {
  width: 11.35em;
  aspect-ratio: 227/241;
}
@media (max-width: 1919px) {
  .brand--yesimi .brand__banner__logo__img {
    width: 11.8229166667vw;
  }
}
@media (max-width: 767px) {
  .brand--yesimi .brand__banner__logo__img {
    width: 34.1025641026vw;
  }
}
.brand--yesimi .brand__banner__logo__text {
  font-size: 2em;
  text-align: center;
  color: #5a5a5a;
}
@media (max-width: 1919px) {
  .brand--yesimi .brand__banner__logo__text {
    font-size: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .brand--yesimi .brand__banner__logo__text {
    font-size: 6.1538461538vw;
  }
}
.brand--yesimi .brand__promo {
  padding-bottom: 2em;
  border-bottom: 1px solid #F29FC5;
  margin-bottom: 8em;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo {
    padding-bottom: 2.3333333333em;
    margin-bottom: 2.6666666667em;
  }
}
.brand--yesimi .brand__promo__collage__img:first-child {
  width: 24em;
  aspect-ratio: 494/376;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__collage__img:first-child {
    width: 15.2em;
    aspect-ratio: 228/175;
  }
}
.brand--yesimi .brand__promo__collage__img:last-child {
  width: 19.15em;
  aspect-ratio: 397/596;
  position: absolute;
  z-index: 1;
  left: 16.95em;
  top: 5.5em;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__collage__img:last-child {
    width: 12.2em;
    aspect-ratio: 183/278;
    left: 10.4666666667em;
    top: 3.4em;
  }
}
.brand--yesimi .brand__promo__phil {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.25s;
  position: relative;
  background: #FDEDF4;
  border-radius: 1.5em;
  padding-top: 4.85em;
  padding-bottom: 3.9em;
}
.brand--yesimi .brand__promo__phil[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__phil {
    margin-top: 12.9333333333em;
    padding: 2em 1.6666666667em;
    border-radius: 1em;
  }
}
.brand--yesimi .brand__promo__phil::before {
  content: "";
  display: block;
  width: 5.7em;
  aspect-ratio: 1;
  background: #FDEDF4;
  border-radius: 1.5em;
  position: absolute;
  z-index: 1;
  top: 9.3em;
  right: calc(100% + 2.5em);
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__phil::before {
    right: auto;
    left: 0;
    top: -8.4666666667em;
    width: 6em;
    border-radius: 1em;
  }
}
.brand--yesimi .brand__promo__phil__logo {
  position: absolute;
  z-index: 0;
  display: block;
  width: 10.7em;
  aspect-ratio: 1;
  left: 3em;
  top: 3em;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__phil__logo {
    width: 9.4666666667em;
    top: 3.3333333333em;
    left: auto;
    right: 2em;
  }
}
.brand--yesimi .brand__promo__phil__header {
  position: relative;
  z-index: 1;
  font-size: 1.6em;
  font-weight: 600;
  transform: translateX(-2.09375em);
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__phil__header {
    transform: none;
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.brand--yesimi .brand__promo__phil__text {
  position: relative;
  z-index: 1;
  padding: 0 2em;
  margin-top: 2.4em;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__phil__text {
    padding: 0;
    margin-top: 1.3333333333em;
  }
}
.brand--yesimi .brand__promo__phil__cloud {
  position: relative;
  z-index: 1;
  background: #F29FC5;
  color: #fff;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  border-radius: 1.25em;
  margin-top: 2.625em;
  font-size: 1.2em;
  padding: 0.8333333333em 1.6666666667em;
  transform: translateX(-1.75em);
}
@media (max-width: 1023px) {
  .brand--yesimi .brand__promo__phil__cloud {
    transform: translateX(-1.05em);
  }
}
.brand--yesimi .brand__promo__cloud {
  position: relative;
  z-index: 1;
  background: #F29FC5;
  color: #fff;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  border-radius: 1em;
  margin-top: 1.3333333333em;
  font-size: 1.0666666667em;
  font-weight: 700;
  padding: 1.6666666667em 1.3333333333em;
}
.brand--yesimi .brand__promo__princip {
  margin-top: 6.6666666667em;
  font-size: 1.2em;
  line-height: 1.15;
  font-weight: 500;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__promo__princip {
    margin-top: 2em;
    font-size: 1.3333333333em;
  }
}
.brand--yesimi .brand__prods__heading__logo__img {
  width: 5.4em;
  aspect-ratio: 227/241;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__prods__heading__logo__img {
    width: 6em;
  }
}
.brand--yesimi .brand__prods__filter {
  background-color: rgba(253, 237, 244, 0.8);
}
@media (max-width: 767px) {
  .brand--yesimi .brand__prods__filter {
    margin-top: 1.3333333333em;
  }
}
.brand--yesimi .brand__prods__filter__header {
  color: #F29FC5;
}
.brand--yesimi .brand__prods__filter__list__item.active {
  border-color: #F29FC5;
}
.brand--yesimi .brand__prods__filter__list__item:not(:first-child)::before {
  background-color: #F29FC5;
}
.brand--yesimi .brand__prods__list__item__pic {
  border-radius: 0.75em;
  overflow: hidden;
}
@media (max-width: 767px) {
  .brand--yesimi .brand__prods__list__item__pic {
    border-radius: 1em;
    border: 1px solid #AFAFAF;
  }
}
.brand--yesimi .brand__prods__more__line {
  color: #F29FC5;
}
.brand--yesimi .brand__prods__more__line::before {
  background-color: #F29FC5;
}
.brand--yesimi .brand__prods__more__button__btn {
  background-color: #F29FC5;
}
.brand--kingthor .brand__banner__logo {
  width: 55%;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__banner__logo {
    width: 39.4871794872vw;
  }
}
.brand--kingthor .brand__banner__logo__img {
  width: 17.05em;
  aspect-ratio: 341/255;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__banner__logo__img {
    width: 100%;
  }
}
.brand--kingthor .brand__promo {
  position: relative;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo {
    margin-top: 4em;
  }
}
.brand--kingthor .brand__promo__intro {
  width: 17.25em;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__intro {
    width: 100%;
  }
}
.brand--kingthor .brand__promo__cols {
  margin-top: 3em;
  gap: 2.5em;
  justify-content: flex-start;
  border-bottom: 1px solid #949494;
  padding-bottom: 2em;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__cols {
    margin-top: 2em;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-bottom: 6.4102564103vw;
  }
}
.brand--kingthor .brand__promo__cols__left {
  flex: 0 0 auto;
  width: 24.65em;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__cols__left {
    width: 66.6666666667vw;
  }
}
.brand--kingthor .brand__promo__cols__right {
  flex: 0 0 auto;
  width: 29.15em;
  padding-top: 2.5em;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__cols__right {
    width: 100%;
    padding-top: 0;
  }
}
.brand--kingthor .brand__promo__img1 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: block;
  width: 100%;
  aspect-ratio: 493/600;
}
.brand--kingthor .brand__promo__img1[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.brand--kingthor .brand__promo__text1 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  position: relative;
  z-index: 1;
  color: #fff;
  background: #000;
  border: 0.2em solid #fff;
  padding: 1.25em 1.75em;
  font-weight: 600;
}
.brand--kingthor .brand__promo__text1[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__text1 {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 68.4615384615vw;
    border: 1.0256410256vw solid #fff;
    border-right: 0;
    border-bottom: 0;
    width: 75.8974358974vw;
    box-sizing: border-box;
    font-size: 4.1025641026vw;
  }
}
.brand--kingthor .brand__promo__img2 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.2s;
  display: block;
  width: 24.7em;
  aspect-ratio: 494/720;
  position: absolute;
  top: 0;
  right: 1.25em;
}
.brand--kingthor .brand__promo__img2[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__img2 {
    position: static;
    width: 100%;
    margin-top: 36.1538461538vw;
  }
}
.brand--kingthor .brand__promo__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 4.0416666667em;
  font-size: 1.2em;
  line-height: 1.15;
  font-weight: 500;
}
.brand--kingthor .brand__promo__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__header {
    margin-top: 6.4102564103vw;
    font-size: 5.1282051282vw;
  }
}
.brand--kingthor .brand__promo__text2 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  width: 21.25em;
  margin-top: 0.4em;
}
.brand--kingthor .brand__promo__text2[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__text2 {
    margin-top: 0.5333333333em;
  }
}
.brand--kingthor .brand__promo__logo2 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 3.7em;
}
.brand--kingthor .brand__promo__logo2[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__logo2 {
    position: absolute;
    z-index: 0;
    top: 15.3846153846vw;
    right: 0;
    margin-top: 0;
  }
}
.brand--kingthor .brand__promo__logo2 img {
  display: block;
  width: 3.5em;
  aspect-ratio: 70/30;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__promo__logo2 img {
    width: 14.1025641026vw;
  }
}
.brand--kingthor .brand__prods__heading {
  margin-top: 2.25em;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__prods__heading {
    margin-top: 10.2564102564vw;
  }
}
.brand--kingthor .brand__prods__heading__logo__img {
  width: 7.7em;
  aspect-ratio: 154/115;
}
@media (max-width: 767px) {
  .brand--kingthor .brand__prods__heading__logo__img {
    width: 5.8666666667em;
  }
}
@media (max-width: 767px) {
  .brand--kingthor .brand__prods__list__item__pic {
    border: 1px solid #AFAFAF;
  }
}
.brand--hean .brand__banner__logo {
  width: 55%;
}
@media (max-width: 767px) {
  .brand--hean .brand__banner__logo {
    width: auto;
    height: auto;
    left: 0;
    top: -0.5128205128vw;
  }
}
.brand--hean .brand__banner__logo__img {
  width: 17.7em;
  aspect-ratio: 354/103;
}
@media (max-width: 1919px) {
  .brand--hean .brand__banner__logo__img {
    width: 18.4375vw;
  }
}
@media (max-width: 767px) {
  .brand--hean .brand__banner__logo__img {
    width: 44.1025641026vw;
  }
}
.brand--hean .brand__banner__logo__text {
  font-size: 2em;
  text-align: center;
  color: #333;
}
@media (max-width: 1919px) {
  .brand--hean .brand__banner__logo__text {
    font-size: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .brand--hean .brand__banner__logo__text {
    font-size: 6.1538461538vw;
  }
}
.brand--hean .brand__promo {
  margin-bottom: 5.5em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo {
    margin-bottom: 0;
  }
}
.brand--hean .brand__promo__cols {
  position: relative;
  padding-bottom: 2em;
}
.brand--hean .brand__promo__cols--princip {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .brand--hean .brand__promo__cols--princip {
    border-top: 1px solid #DFA0A0;
  }
}
.brand--hean .brand__promo__intro {
  font-size: 1.8em;
  font-weight: 400;
  width: 17.3611111111em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__intro {
    width: 100%;
    font-size: 1.6em;
  }
}
.brand--hean .brand__promo__collage {
  margin-top: 1.85em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__collage {
    margin-top: 2em;
  }
}
.brand--hean .brand__promo__collage__img {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
}
.brand--hean .brand__promo__collage__img[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.brand--hean .brand__promo__collage__img:first-child {
  width: 21.9em;
  border-radius: 1.5em;
  aspect-ratio: 1;
  border: none;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__collage__img:first-child {
    width: 61.5384615385vw;
    border-radius: 7.6923076923vw;
  }
}
.brand--hean .brand__promo__collage__img:last-child {
  width: 24em;
  aspect-ratio: 480/283;
  position: absolute;
  z-index: 1;
  left: 13.1em;
  top: 16.15em;
  border-radius: 1.5em;
  border: 0.35em solid #fff;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__collage__img:last-child {
    width: 73.8461538462vw;
    aspect-ratio: 288/175;
    left: auto;
    right: -1.7948717949vw;
    top: 46.1538461538vw;
    border-radius: 7.6923076923vw;
    border: 1.2820512821vw solid #fff;
  }
}
.brand--hean .brand__promo__collage::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 5.7em;
  aspect-ratio: 1;
  top: 8.95em;
  background: #FDEDF4;
  border-radius: 1.5em;
  left: 24.4em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__collage::before {
    display: none;
  }
}
.brand--hean .brand__promo__collage::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 4em;
  aspect-ratio: 1;
  top: 2.95em;
  background: #FFF6FA;
  border-radius: 1.5em;
  left: 28.65em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__collage::after {
    width: 13.5897435897vw;
    border-radius: 3.8461538462vw;
    top: 20.5128205128vw;
    right: 0;
    left: auto;
  }
}
.brand--hean .brand__promo__phil {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.3s;
  position: relative;
  background: #FDEDF4;
  border-radius: 1.5em;
  padding-top: 4.85em;
  padding-bottom: 3em;
}
.brand--hean .brand__promo__phil[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__phil {
    margin-top: 39.7435897436vw;
    padding: 2em 1.6666666667em;
    border-radius: 1em;
  }
}
.brand--hean .brand__promo__phil__logo {
  position: absolute;
  z-index: 0;
  display: block;
  width: 8.1em;
  aspect-ratio: 162/45;
  right: 1.75em;
  top: 1.75em;
  left: auto;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__phil__logo {
    width: 7.3333333333em;
    top: 5.4666666667em;
    right: 1.3333333333em;
    opacity: 0.35;
  }
}
.brand--hean .brand__promo__phil__header {
  position: relative;
  z-index: 1;
  font-size: 1.6em;
  font-weight: 600;
  transform: translateX(-2.09375em);
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__phil__header {
    transform: none;
    font-size: 1.8666666667em;
    line-height: 1.2;
  }
}
.brand--hean .brand__promo__phil__text {
  position: relative;
  z-index: 1;
  padding: 0 2em;
  margin-top: 1.9em;
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__phil__text {
    padding: 0;
    margin-top: 1.3333333333em;
  }
}
.brand--hean .brand__promo__phil__cloud {
  position: relative;
  z-index: 1;
  background: #DFA0A0;
  color: #fff;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  border-radius: 1.25em;
  margin-top: 1.7916666667em;
  font-size: 1.2em;
  padding: 0.8333333333em 1.6666666667em;
  transform: translateX(-5.6666666667em);
  width: 32.2083333333em;
  text-align: center;
  box-sizing: border-box;
}
.brand--hean .brand__promo__cloud {
  position: relative;
  z-index: 1;
  background: #DFA0A0;
  color: #fff;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  border-radius: 1em;
  margin-top: 1.3333333333em;
  font-size: 1.0666666667em;
  font-weight: 700;
  padding: 1.6666666667em 1.3333333333em;
}
.brand--hean .brand__promo__bottom-text {
  margin-top: 2em;
  padding-left: 2em;
}
.brand--hean .brand__promo__princip {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  position: relative;
  padding-left: 1.6666666667em;
  padding-bottom: 1.8333333333em;
  margin-top: 1.4583333333em;
  font-size: 1.2em;
  line-height: 1.15;
  font-weight: 500;
}
.brand--hean .brand__promo__princip[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__princip {
    margin: 0;
    padding: 0;
    font-size: 1.3333333333em;
    padding-bottom: 1.75em;
  }
}
.brand--hean .brand__promo__princip::after {
  content: "";
  display: block;
  position: absolute;
  width: 1207px;
  height: 1px;
  left: -314px;
  bottom: 0;
  background: #DFA0A0;
}
@media (max-width: 1919px) {
  .brand--hean .brand__promo__princip::after {
    width: 62.8645833333vw;
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .brand--hean .brand__promo__princip::after {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .brand--hean .brand__prods {
    margin-top: 2.6666666667em;
  }
}
.brand--hean .brand__prods__heading__logo__img {
  width: 8.1em;
  aspect-ratio: 162/45;
}
@media (max-width: 767px) {
  .brand--hean .brand__prods__heading__logo__img {
    width: 6em;
  }
}
.brand--hean .brand__prods__filter {
  background-color: #FFE9E9;
}
@media (max-width: 767px) {
  .brand--hean .brand__prods__filter {
    margin-top: 1.3333333333em;
    background: none;
  }
}
.brand--hean .brand__prods__filter__header {
  color: #DFA0A0;
}
.brand--hean .brand__prods__filter__list__item.active {
  border-color: #DFA0A0;
}
.brand--hean .brand__prods__filter__list__item:not(:first-child)::before {
  background-color: #DFA0A0;
}
.brand--hean .brand__prods__list__item__pic {
  border-radius: 0.75em;
  overflow: hidden;
}
@media (max-width: 767px) {
  .brand--hean .brand__prods__list__item__pic {
    border-radius: 1em;
    border: 1px solid #AFAFAF;
  }
}
.brand--hean .brand__prods__more__line {
  color: #DFA0A0;
}
.brand--hean .brand__prods__more__line::before {
  background-color: #DFA0A0;
}
.brand--hean .brand__prods__more__button__btn {
  background-color: #DFA0A0;
}
.brand--limef .brand__banner__logo {
  width: 68%;
}
@media (max-width: 767px) {
  .brand--limef .brand__banner__logo {
    width: auto;
    height: auto;
    left: 6.4102564103vw;
    top: 27.9487179487vw;
  }
}
.brand--limef .brand__banner__logo__img {
  width: 25.6em;
  aspect-ratio: 512/377;
}
@media (max-width: 1919px) {
  .brand--limef .brand__banner__logo__img {
    width: 26.6666666667vw;
  }
}
@media (max-width: 767px) {
  .brand--limef .brand__banner__logo__img {
    width: 70vw;
    aspect-ratio: 273/214;
  }
}
@media (min-width: 768px) {
  .brand--limef .brand__banner__img {
    min-height: auto;
  }
}
.brand--limef .brand__promo {
  margin-top: 5em;
}
.brand--limef .brand__promo__cols {
  gap: 2em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__cols {
    gap: 1.3333333333em;
  }
}
.brand--limef .brand__promo__cols__left {
  width: 24.7em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__cols__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
.brand--limef .brand__promo__cols__mid {
  flex: 1 1 auto;
  text-align: right;
  padding-top: 4.65em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__cols__mid {
    text-align: left;
    padding-top: 0.6666666667em;
  }
}
.brand--limef .brand__promo__cols__right {
  flex: 0 0 auto;
  width: 18.4em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__cols__right {
    width: 100%;
  }
}
.brand--limef .brand__promo__intro {
  font-size: 1.8em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__intro {
    font-size: 1.6em;
  }
}
.brand--limef .brand__promo__img1 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.5s;
  display: block;
  width: 8.8em;
  aspect-ratio: 176/130;
  margin-top: 3em;
}
.brand--limef .brand__promo__img1[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__img1 {
    order: 1;
    width: 7.0666666667em;
    margin-top: 0;
    position: absolute;
    z-index: 1;
    right: 0;
    top: calc(100% - 0.6em);
  }
}
.brand--limef .brand__promo__img2 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  display: block;
  width: 100%;
  aspect-ratio: 494/330;
  margin-top: 9.25em;
}
.brand--limef .brand__promo__img2[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__img2 {
    margin-top: 1.3333333333em;
  }
}
.brand--limef .brand__promo__img3 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.4s;
  display: block;
  width: 100%;
  aspect-ratio: 368/491;
}
.brand--limef .brand__promo__img3[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
.brand--limef .brand__promo__phil__logo {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.1s;
  width: 8.35em;
  aspect-ratio: 167/52;
}
.brand--limef .brand__promo__phil__logo[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__logo {
    width: 11.1333333333em;
  }
}
.brand--limef .brand__promo__phil__header {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0.2s;
  margin-top: 0.46875em;
  font-size: 1.6em;
  font-weight: 600;
  color: #7FD7FF;
}
.brand--limef .brand__promo__phil__header[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__header {
    font-size: 1.8666666667em;
    line-height: 1.2;
    margin-top: 0.5357142857em;
  }
}
.brand--limef .brand__promo__phil__cloud1 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  position: relative;
  margin-top: 1.5em;
}
.brand--limef .brand__promo__phil__cloud1[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__cloud1 {
    margin-top: 2em;
  }
}
.brand--limef .brand__promo__phil__cloud1__text {
  font-size: 1.2em;
  background: #D5F2FF;
  padding: 0 2.5em;
  text-align: center;
  border-radius: 1.25em;
  position: absolute;
  z-index: 1;
  width: 32.2083333333em;
  aspect-ratio: 773/240;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__cloud1__text {
    font-size: 0.9333333333em;
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    padding: 2em 1.7857142857em;
    border-radius: 1.0714285714em;
  }
}
.brand--limef .brand__promo__phil__cloud2 {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 12em;
  position: relative;
  z-index: 2;
}
.brand--limef .brand__promo__phil__cloud2[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__cloud2 {
    margin-top: 1.3333333333em;
  }
}
.brand--limef .brand__promo__phil__cloud2__text {
  background: #7FD7FF;
  border: 0.15em solid #fff;
  padding: 3em;
  text-align: center;
  border-radius: 1.5em;
  position: absolute;
  z-index: 2;
  width: 40em;
  top: 0;
  left: 4.25em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: #fff;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__cloud2__text {
    font-size: 1.0666666667em;
    font-weight: 600;
    position: relative;
    padding: 1.5625em;
    width: 100%;
    left: 0;
    top: 0;
  }
}
.brand--limef .brand__promo__phil__cloud2__text__sep {
  height: 2px;
  background: #fff;
}
.brand--limef .brand__promo__phil__cloud2__text__img {
  display: block;
  width: 12.9em;
  aspect-ratio: 258/132;
  position: absolute;
  z-index: 3;
  top: calc(100% - 0.8em);
  right: 2em;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__phil__cloud2__text__img {
    display: none;
  }
}
.brand--limef .brand__promo__princip {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 1;
  transition-delay: 0s;
  margin-top: 2.35em;
  padding-top: 1.5em;
  text-align: center;
  position: relative;
}
.brand--limef .brand__promo__princip[data-animated="0"] {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__princip {
    margin-top: 2em;
    padding-top: 0;
    padding-bottom: 2.3333333333em;
  }
}
.brand--limef .brand__promo__princip::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: -193px;
  width: 66.9em;
  height: 0.15em;
  background: #E9F1F9;
}
@media (max-width: 1919px) {
  .brand--limef .brand__promo__princip::before {
    right: calc((100vw - 1584px + 50px) / 2 * -1);
  }
}
@media (max-width: 1583px) {
  .brand--limef .brand__promo__princip::before {
    right: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__princip::before {
    top: 100%;
    height: 0.0666666667em;
  }
}
.brand--limef .brand__promo__princip__text {
  font-size: 1.6em;
  font-weight: 500;
  max-width: 43.15625em;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .brand--limef .brand__promo__princip__text {
    font-size: 1.3333333333em;
    text-align: left;
    margin: 0;
  }
}
.brand--limef .brand__prods__heading__logo__img {
  width: 11.05em;
  aspect-ratio: 221/126;
}
.brand--limef .brand__prods__filter {
  background-color: #D5F2FF;
}
@media (max-width: 767px) {
  .brand--limef .brand__prods__filter {
    margin-top: 1.3333333333em;
    background: none;
  }
}
.brand--limef .brand__prods__filter__header {
  color: #004384;
}
.brand--limef .brand__prods__filter__list__item.active {
  border-color: #004384;
}
.brand--limef .brand__prods__filter__list__item:not(:first-child)::before {
  background-color: #004384;
}
.brand--limef .brand__prods__list__item__pic {
  border-radius: 1.5em;
  overflow: hidden;
}
@media (max-width: 767px) {
  .brand--limef .brand__prods__list__item__pic {
    border-radius: 1em;
    border: 1px solid #AFAFAF;
  }
}
.brand--limef .brand__prods__list__item__texts__descr__text b, .brand--limef .brand__prods__list__item__texts__descr__text strong {
  color: #004384;
}
@media (min-width: 768px) {
  .brand .footer {
    padding-top: 7em;
  }
}

.toTop {
  position: fixed;
  z-index: 100;
  right: 3em;
  bottom: 3em;
  transition: all;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  width: 2.95em;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='59'%20height='59'%20viewBox='0%200%2059%2059'%20fill='none'%3E%3Cpath%20d='M15%2035L29.5%2021L44%2035'%20stroke='%23999'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3C/path%3E%3Ccircle%20cx='29.5'%20cy='29.5'%20r='29'%20stroke='%23999'%3E%3C/circle%3E%3C/svg%3E");
  background-size: 100%;
  backdrop-filter: blur(2px);
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .toTop {
    width: 2.6666666667em;
    right: 1em;
    bottom: 1em;
  }
}
.toTop--on {
  opacity: 1;
  visibility: visible;
}
.toTop--yesimi {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='59'%20height='59'%20viewBox='0%200%2059%2059'%20fill='none'%3E%3Cpath%20d='M15%2035L29.5%2021L44%2035'%20stroke='%23F29FC5'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3C/path%3E%3Ccircle%20cx='29.5'%20cy='29.5'%20r='29'%20stroke='%23F29FC5'%3E%3C/circle%3E%3C/svg%3E");
}
.toTop--hean {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='59'%20height='59'%20viewBox='0%200%2059%2059'%20fill='none'%3E%3Cpath%20d='M15%2035L29.5%2021L44%2035'%20stroke='%23DFA0A0'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3C/path%3E%3Ccircle%20cx='29.5'%20cy='29.5'%20r='29'%20stroke='%23DFA0A0'%3E%3C/circle%3E%3C/svg%3E");
}

.hidden {
  display: none;
}

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

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

.dcc__dialog__content__buttons__button {
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.6em 2em;
  color: #fff;
  background: #EE2A32;
  border-radius: 2.5em;
  text-decoration: none;
  margin-top: 2em;
  transition: opacity 0.75s;
  border: none;
  font-size: 1em;
  margin-top: 0;
}
.dcc__dialog__content__buttons__button:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .dcc__dialog__content__buttons__button {
    font-size: 1.0666666667em;
    padding: 0.8em 2.6666666667em;
    border-radius: 3.3333333333em;
    margin-top: 2em;
  }
}
@media (max-width: 767px) {
  .dcc__dialog__content__buttons__button {
    font-size: 0.95em;
    margin-top: 0;
  }
}
.dcc__dialog__content__buttons__button--allow:hover {
  background-color: #EE2A32;
  border-color: transparent;
  filter: none;
}
.dcc__dialog__content__buttons__button[data-dcc-reject] {
  background: #949494;
}

/*# sourceMappingURL=styles.min.css.map */
