[data-anim="bottomToTop"] {
  transform: translateY(15px);
  opacity: 0;
  transition: transform 1.6s ease-out, opacity 0.2s linear;
}
[data-anim="bottomToTop"].anim {
  transform: translateY(0);
  opacity: 1;
}
[data-anim="fadeIn"] {
  opacity: 0;
  transition: all 1s ease-out;
}
[data-anim="fadeIn"].anim {
  opacity: 1;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
}
@font-face {
  font-family: "Monument";
  src: url("../fonts/Monument-Extended-Bold.woff2") format("woff2"),
    url("../fonts/Monument-Extended-Bold.ttf") format("truetype");
  font-weight: 700;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
a {
  font-family: inherit;
  text-decoration: none;
  outline: none;
  color: #217aff;
}
ul {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  padding: 0;
  list-style: none;
}

.blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.blog__pagination a {
  font-size: 18px;
  text-transform: uppercase;
  color: #6da8ff;
  position: relative;
  z-index: 2;
}

.blog__pagination span {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 2;
}


input,
button {
  outline: none;
}
input:focus,
button:focus {
  outline: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
}
.img {
  width: 100%;
  display: block;
}
.section {
  padding: 100px 0;
}
.container {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1280px;
}
.container.container--high {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.container.container--narrow {
  max-width: 1040px;
}
.section-title {
  margin: 0 0 50px;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  color: #fff;
}
.section-title.section-title--bold {
  font-family: "Monument";
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
}
.section-title.section-title--big {
  margin-bottom: 20px;
  font-family: "Monument";
  font-weight: 700;
  font-size: 125px;
  text-transform: uppercase;
  line-height: 1;
}
.section-title.section-title--black {
  color: #000;
}
.section-title.section-title--center {
  text-align: center;
}
.site-btn {
  padding: 18px 30px;
  display: block;
  width: -webkit-max-content;
  width: max-content;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #217aff;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 10px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.site-btn:hover {
  background: #fff;
  color: #000;
}
.site-btn:active span {
  opacity: 0.3;
}
.site-btn.site-btn--transparent {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 50px;
  background: url(../images/rectangle.svg) no-repeat center;
  background-size: auto;
  border: none;
}
.site-btn.site-btn--transparent:hover {
  color: #fff;
  opacity: 0.3;
  transform: rotate(-2deg);
}
.site-btn.site-btn--transparent svg {
  margin: -20px;
  margin-right: -10px;
  width: 65px;
  height: auto;
}
.site-btn.site-btn--glass {
  display: flex;
  align-items: center;
  background: none;
  border: 1px solid #fff;
  font-size: 16px;
  text-transform: none;
  overflow: hidden;
  position: relative;
}
.site-btn.site-btn--glass:hover {
  color: #fff;
}
.site-btn.site-btn--glass:hover svg {
  transform: translateX(5px);
}
.site-btn.site-btn--glass:active svg {
  opacity: 0.3;
}
.site-btn.site-btn--glass::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.site-btn.site-btn--glass span {
  position: relative;
  z-index: 2;
}
.site-btn.site-btn--glass svg {
  margin-top: -15px;
  margin-bottom: -15px;
  margin-left: 10px;
  width: 30px;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 2;
}
.site-btn.site-btn--black {
  border-color: #141414;
  background: #141414;
  color: #fff;
}
.site-btn.site-btn--black:hover {
  background: #000;
  border-color: #000;
}
.site-btn span {
  transition: all 0.3s ease-out;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  background: #000;
  overflow-x: hidden;
}
@media (max-width: 1240px) {
  .section {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
  .container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-title.section-title--big {
    margin-bottom: 10px;
    font-size: 64px;
  }
  .section-title br {
    display: none;
  }
  body {
    font-size: 14px;
  }
}
.header {
  padding: 15px 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__row {
  display: flex;
  justify-content: space-between;
}
.header__col:nth-child(2) {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  margin-right: 40px;
  width: 60px;
  height: auto;
}
.header__logo span {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.header__social {
  margin-right: 10px;
  display: flex;
}
.header__social-item:last-child {
  margin-left: -20px;
}
.header__social-link {
  display: block;
  width: 70px;
  height: 70px;
  font-size: 0;
  position: relative;
  transition: all 0.3s ease-out;
}
.header__social-link:hover {
  transform: scale(1.1);
}
.header__social-link svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header__language {
  margin-right: 50px;
  display: flex;
}
.header__language-item:not(:last-child) {
  margin-right: 10px;
}
.header__language-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-out;
}
.header__language-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header__language-link:active {
  color: rgba(255, 255, 255, 0.3);
}
.header__language-link.active {
  color: #fff;
}
.header__burger {
  padding: 0;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  border: none;
  background: #1a1a1a;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.header__burger:hover {
  background: #217aff;
}
.header__burger:active::before,
.header__burger:active::after,
.header__burger:active span {
  opacity: 0.3;
}
.header__burger::before,
.header__burger::after {
  content: "";
}
.header__burger::before,
.header__burger::after,
.header__burger span {
  display: block;
  width: 20px;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 50%;
  transition: all 0.3s ease-out;
}
.header__burger::before {
  top: 14px;
  transform: translateX(-50%);
}
.header__burger::after {
  bottom: 14px;
  transform: translateX(-50%);
}
.header__burger span {
  top: calc(50% - 0.5px);
  transform: translateX(-50%);
}
.header__burger.active {
  background: #217aff;
  border-radius: 50%;
}
.header__burger.active::before {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.header__burger.active::after {
  bottom: 20px;
  transform: translateX(-50%) rotate(-45deg);
}
.header__burger.active span {
  opacity: 0;
}
@media (max-width: 1240px) {
  .header__logo span {
    display: none;
  }
  .header__burger {
    background: #1a1a1a !important;
  }
  .header__burger.active {
    background: #217aff !important;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
  .header__logo img {
    width: 40px;
  }
  .header__social {
    margin-right: 0;
  }
  .header__social-item:not(:last-child) {
    margin-right: 6px;
  }
  .header__social-link {
    display: block;
    width: 45px;
    height: 45px;
    font-size: 0;
    position: relative;
    transition: all 0.3s ease-out;
  }
  .header__language {
    margin-right: 25px;
  }
}
.nav {
  padding: 0 100px;
  width: 70%;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 90;
  transition: all 0.6s ease-out;
}
.nav.show {
  transform: translateX(0);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.nav__col {
  width: 50%;
}
.nav__item:not(:last-child) {
  margin-bottom: 20px;
}
.nav__link {
  font-size: 30px;
  color: #fff;
  transition: all 0.3s ease-out;
}
.nav__link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.nav__link:active {
  color: rgba(255, 255, 255, 0.3);
}
.nav__img {
  display: block;
  width: 100%;
}
.nav__img.nav__img--mob {
  display: none;
}
.nav__manager {
  margin: 0 auto !important;
  position: initial !important;
}
@media (max-width: 1240px) {
  .nav {
    padding: 0 50px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .nav {
    padding: 0;
  }
  .nav__inner {
    padding: 60px 0 80px;
    flex-direction: column;
    overflow-y: scroll;
  }
  .nav__col {
    width: 100%;
  }
  .nav__list {
    margin-top: 3px;
    padding: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .nav__item:not(:last-child) {
    margin-bottom: 12px;
  }
  .nav__link {
    font-size: 20px;
  }
  .nav__img {
    display: none;
  }
  .nav__img.nav__img--mob {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 420px;
  }
}
.athletes-slider {
  margin: 0 auto;
  width: 100%;
  overflow: initial;
}
.slider-athletes__slide {
  display: flex;
  justify-content: center;
  height: auto !important;
}
.slider-athletes__col {
  width: 560px;
  position: relative;
}
.slider-athletes__col:first-child {
  margin-right: 80px;
}
.slider-athletes__inner {
  padding: 38px 45px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../images/background-slider.png) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
}
.slider-athletes__title {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.1;
}
.slider-athletes__title p {
  margin: 0 !important;
}
.slider-athletes__achieve {
  display: block;
}

.slider-athletes__achieve ul li {
  font-size: 13px !important;
}
.slider-athletes__achieve ul {
  width: 100%;
  max-width: 260px;
}
.slider-athletes__achieve li {
  position: relative;
}
.slider-athletes__achieve li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #217aff;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: -14px;
}
.slider-athletes__inst {
  margin-top: 35px;
  padding: 4px 0;
  padding-right: 30px;
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease-out;
}
.slider-athletes__inst:hover {
  transform: rotate(-5deg);
}
.slider-athletes__inst img {
  margin-top: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
  width: 64px;
  height: 64px;
  pointer-events: none;
}
.slider-athletes__person {
  display: block;
  width: 100%;
  max-width: 370px;
  position: absolute;
  bottom: 0;
  right: -100px;
  pointer-events: none;
}
.slider-athletes__nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.slider-athletes__button {
  padding: 2px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s ease-out;
  opacity: 0.8;
}
.slider-athletes__button svg {
  width: 100%;
  height: 100%;
}
.slider-athletes__button:active {
  opacity: 0.3;
}
@media (max-width: 1240px) {
  .slider-athletes__slide {
    display: block;
  }
  .slider-athletes__col {
    width: 100%;
    height: calc(50% - 20px);
  }
  .slider-athletes__col:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .slider-athletes__person {
    right: -40px;
  }
}
@media (max-width: 767px) {
  .slider-athletes__inner {
    padding: 20px;
  }
  .slider-athletes__col {
    height: calc(50% - 5px);
  }
  .slider-athletes__col:first-child {
    margin-bottom: 20px;
  }
  .slider-athletes__title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .slider-athletes__achieve {
    font-size: 10px;
  }
  .slider-athletes__achieve ul {
    width: 100%;
    max-width: 190px;
  }
  .slider-athletes__achieve li {
    padding-left: 14px;
  }
  .slider-athletes__achieve li::before {
    width: 6px;
    height: 6px;
    left: 0;
    top: 3px;
  }
  .slider-athletes__person {
    max-width: 180px !important;
  }
  .slider-athletes__inst {
    margin-top: 20px;
    padding-right: 14px;
    font-size: 12px;
    border-radius: 6px;
  }
  .slider-athletes__inst img {
    margin-top: -6px;
    margin-right: -6px;
    margin-bottom: -6px;
    width: 40px;
    height: 40px;
  }
}
.marquee {
  overflow: hidden;
  opacity: 0.15;
}
.marquee__list {
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.marquee__item:not(:last-child) {
  margin-right: 60px;
}
.marquee__txt {
  font-weight: 900;
  font-size: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .marquee {
    padding: 30px 0;
  }
  .marquee__item:not(:last-child) {
    margin-right: 20px;
  }
  .marquee__txt {
    font-size: 48px;
  }
}
.check__list {
  margin-bottom: 100px;
  display: flex;
}
.check__list-item {
  flex-basis: 0;
  flex-grow: 1;
}
.check__list-img {
  margin: -40px auto;
  display: block;
  width: 350px;
}
.check__list-txt {
  display: block;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.check__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1050px;
}
.check__title {
  margin: 0 0 30px;
  font-weight: 500;
  font-size: 34px;
}
.check__form {
  width: 100%;
  display: flex;
}
.check__input {
  padding: 13px 20px;
  display: block;
  width: calc(100% - 250px);
  font: inherit;
  font-size: 16px;
  color: #fff;
  background: none;
  border: 1px solid #fff;
  border-right: 0;
}
.check__input::placeholder {
  font: inherit;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
.check__submit {
  width: 250px;
  border-radius: 0;
  text-transform: none;
  color: #000;
  background: #fff;
}
.check__submit:hover {
  background: #217aff;
  color: #fff;
}
@media (max-width: 1240px) {
  .check__list-img {
    width: 230px;
  }
  .check__list-txt {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .check__list {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .check__list-txt {
    font-size: 14px;
  }
  .check__list-img {
    margin: -60px auto;
  }
  .check__title {
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    text-align: center;
  }
  .check__form {
    flex-direction: column;
  }
  .check__input {
    width: 100%;
    border: 1px solid #fff;
  }
  .check__submit {
    margin-top: 10px;
    width: 100%;
  }
}
.feedback {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.feedback__athlete {
  display: block;
  max-width: 460px;
  position: absolute;
  bottom: 0;
  left: 110px;
  z-index: 1;
}
.feedback__col {
  position: relative;
  z-index: 2;
}
.feedback__title {
  margin-bottom: 20px;
}
.feedback__subtitle {
  width: 100%;
  max-width: 195px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.feedback__social {
  margin-top: 40px;
}
.feedback__social.feedback__social--mob {
  display: none;
}
.feedback__social-item {
  margin-bottom: 10px;
  display: flex;
}
.feedback__social-link {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s ease-out;
}
.feedback__social-link:hover {
  color: rgba(255, 255, 255, 0.6);
}
.feedback__social-link img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
.feedback__social-link svg {
  margin: -20px;
  margin-right: -10px;
  width: 65px;
  height: auto;
}
.feedback__form {
  display: block;
  width: 400px;
}
.feedback__form-row:not(:last-child) {
  margin-bottom: 20px;
}
.feedback__form-row.feedback__form-row--hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11111;
}
.feedback__form-label {
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.feedback__form-input {
  padding: 13px 15px;
  display: block;
  width: 100%;
  font: inherit;
  color: #fff;
  border: none;
  background: #171717;
  border: 1px solid #171717;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.feedback__form-input::placeholder {
  font: inherit;
  color: rgba(255, 255, 255, 0.5);
}
.feedback__form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}
.feedback__form-textarea {
  resize: none;
  height: 120px;
}
.feedback__form-submit {
  display: block;
  width: 100%;
}
@media (max-width: 1240px) {
  .feedback__athlete {
    display: none;
  }
}
@media (max-width: 767px) {
  .feedback {
    flex-direction: column;
  }
  .feedback__col {
    width: 100%;
  }
  .feedback__athlete {
    display: block;
    position: initial;
  }
  .feedback__title {
    margin-bottom: 5px;
  }
  .feedback__subtitle {
    max-width: 295px;
  }
  .feedback__social {
    display: none;
  }
  .feedback__social.feedback__social--mob {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .feedback__social-link {
    justify-content: center;
  }
  .feedback__form {
    width: 100%;
  }
  .feedback__form-label {
    margin-bottom: 5px;
  }
}
.reviews {
  display: flex;
}
.reviews__col {
  width: 50%;
}
.reviews__mob {
  display: none;
}
.reviews__title {
  margin-bottom: 30px;
  font-size: 80px;
  position: relative;
}
.reviews__title::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background: url(../images/ellipse.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -40px;
  left: -56px;
  z-index: -1;
}
.reviews__title span {
  padding-right: 60px;
  position: relative;
}
.reviews__title span::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url(../images/ico/star.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 10px;
  right: -10px;
  animation: starAnim 10s linear infinite;
}
@keyframes starAnim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.reviews__title.reviews__title--en::before {
  width: 140px;
  height: 140px;
  top: -32px;
  left: 158px;
}
.reviews__title.reviews__title--en span {
  padding-right: 0;
  padding-left: 60px;
}
.reviews__title.reviews__title--en span::after {
  top: 10px;
  right: 61px;
}
.reviews__subtitle {
  margin-bottom: 30px;
  width: -webkit-max-content;
  width: max-content;
  font-size: 20px;
  position: relative;
}
.reviews__subtitle::after {
  content: "";
  display: block;
  width: 51px;
  height: 63px;
  background: url(../images/ico/arrow-img.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -78px;
  top: -22px;
  transform: rotate(-95deg);
  animation: animArrow 3.6s ease-in infinite;
}
@keyframes animArrow {
  0% {
    transform: rotate(-85deg);
  }
  50% {
    transform: rotate(-55deg);
  }
  100% {
    transform: rotate(-85deg);
  }
}
.reviews__btn {
  margin-bottom: 20px;
  font-family: "Monument";
  font-weight: 700;
}
.reviews__img {
  display: block;
  width: 100%;
}
@media (max-width: 1240px) {
  .reviews {
    flex-direction: column;
  }
  .reviews__col {
    width: 100% !important;
  }
  .reviews__col:last-child {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .reviews__col .reviews__subtitle,
  .reviews__col .reviews__btn {
    display: none;
  }
  .reviews__title {
    margin-left: auto;
    margin-right: auto;
    width: -webkit-max-content;
    width: max-content;
    font-size: 32px;
  }
  .reviews__title::before {
    width: 80px;
    height: 80px;
    top: -18px;
    left: -17px;
  }
  .reviews__title span {
    padding-right: 35px;
  }
  .reviews__title span::after {
    width: 40px;
    height: 40px;
    top: 1px;
    right: -2px;
  }
  .reviews__title.reviews__title--en {
    text-align: center;
  }
  .reviews__title.reviews__title--en::before {
    width: 100px;
    height: 100px;
    top: -31px;
    left: 37px;
  }
  .reviews__title.reviews__title--en span {
    padding-left: 40px;
  }
  .reviews__title.reviews__title--en span::after {
    top: 1px;
    right: 29px;
  }
  .reviews__title.reviews__title--en br {
    display: block;
  }
  .reviews__img {
    margin-left: -20px;
    display: block;
    width: calc(100% + 40px);
  }
  .reviews__mob {
    margin: 0 auto;
    margin-top: 30px;
    display: block;
    width: -webkit-max-content;
    width: max-content;
  }
  .reviews__subtitle {
    margin-top: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .reviews__subtitle::after {
    right: -15px;
    top: -3px;
  }
  .reviews__btn {
    margin-bottom: 10px !important;
  }
}
.recommendation {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  --gap: 30px;
  grid-template-areas: "item1 item1 item2 item2" "item1 item1 item3 item3";
}
.recommendation__item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4) url(../images/home-catalog-back.svg) no-repeat
    center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.recommendation__item:nth-child(1) {
  grid-area: item1;
}
.recommendation__item:nth-child(2) {
  grid-area: item2;
}
.recommendation__item:nth-child(3) {
  grid-area: item3;
}
.recommendation__count {
  font-size: 25px;
  position: relative;
  z-index: 2;
}
.recommendation__text-wrapper {
  margin-top: auto;
  position: relative;
  z-index: 3;
}
.recommendation__text-wrapper p {
  margin: 20px 0 0;
  font-size: 14px;
}
.recommendation__img {
  display: block;
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1240px) {
  .recommendation {
    gap: 20px;
    --gap: 20px;
  }
  .recommendation__item {
    padding: 30px;
  }
  .recommendation__text-wrapper br {
    display: none;
  }
}
@media (max-width: 767px) {
  .recommendation {
    display: block;
  }
  .recommendation__item {
    padding: 20px;
    min-height: 370px;
  }
  .recommendation__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .recommendation__img {
    width: 95%;
    height: auto;
    top: auto;
    bottom: 0;
    opacity: 0.7;
  }
}
.cart-button {
  padding: 0;
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  border-radius: 50%;
  border: none;
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
}
.cart-button::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../images/ico/cart-ico.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cart-button__count {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  background: #217aff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
}
body.in-cart .cart-button {
  opacity: 1;
  pointer-events: visible;
}
@media (max-width: 767px) {
  .cart-button {
    width: 55px;
    height: 55px;
    top: auto;
    bottom: 15px;
    right: 15px;
  }
  .cart-button::after {
    width: 22px;
    height: 22px;
  }
}
.popup {
  padding: 80px 40px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
}
.popup.show {
  opacity: 1;
  pointer-events: visible;
}
.popup.show .popup__inner {
  transform: scale(1);
}
.popup::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.popup::-webkit-scrollbar-track {
  background: none;
}
.popup::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0);
  border: none;
}
.popup__close {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.popup__close:hover {
  transform: rotate(-180deg);
}
.popup__close:active {
  opacity: 0.3;
}
.popup__close::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/ico/close.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup__inner {
  margin: auto 0;
  transform: scale(0);
  transition: all 0.3s ease-out;
}
.popup__cart {
  padding: 40px;
  width: 500px;
  background: #fff;
}
.popup__cart-title {
  margin-bottom: 30px;
  display: block;
  font-weight: 600;
  font-size: 25px;
  color: #000;
}
.popup__cart-product-wrapper {
  margin-bottom: 10px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.popup__cart-product {
  display: flex;
  align-items: center;
}
.popup__cart-product:not(:last-child) {
  margin-bottom: 20px;
}
.popup__cart-product-title {
  width: 120px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}
.popup__cart-product-count {
  margin-left: auto;
  padding-left: 10px;
  display: block;
  width: 60px;
  font: inherit;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.popup__cart-product-price {
  margin: 0 15px 0 0;
  width: 60px;
  color: #000;
  text-align: end;
}
.popup__cart-product-remove {
  padding: 0;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  font-size: 0;
  background: none;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-out;
  opacity: 0.3;
  cursor: pointer;
}
.popup__cart-product-remove:hover {
  opacity: 0.6;
}
.popup__cart-product-remove::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/ico/close-black.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.popup__cart-summ {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  font-weight: 600;
  color: #000;
  text-align: end;
}
.popup__cart-form-row {
  margin-bottom: 20px;
}
.popup__cart-form-row.popup__cart-form-row--select {
  position: relative;
}
.popup__cart-form-row.popup__cart-form-row--select::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #217aff transparent transparent transparent;
  position: absolute;
  top: 54px;
  right: 15px;
  pointer-events: none;
}
.popup__cart-form-row.popup__cart-form-row--hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.popup__cart-form-label {
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: #000;
}
.popup__cart-form-input {
  padding: 13px 15px;
  display: block;
  width: 100%;
  font: inherit;
  color: #000;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  transition: all 0.3s ease-out;
}
.popup__cart-form-input::placeholder {
  font: inherit;
  color: rgba(0, 0, 0, 0.5);
}
.popup__cart-form-input:focus {
  outline: none;
  border-color: #000;
}
.popup__cart-select {
  cursor: pointer;
}
.popup__cart-submit {
  margin-top: 20px;
  display: block;
  width: 100%;
}
.popup__cart-submit:hover {
  color: #fff;
  background: #005fed;
}
.popup__cart-catalog {
  margin-top: 10px;
  display: block;
  width: 100%;
}
.popup__cart-catalog:hover {
  color: #fff;
  background: #005fed;
}
.popup__notice {
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  background: #000;
  border: 1px solid #217aff;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
}
.popup__notice.error {
  border-color: red;
}
.pop-up-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 9999999999999;
}
.open-pop {
  visibility: visible;
  opacity: 1;
  transition: 0.3s linear;
}
.pop-up-content {
  width: fit-content;
  padding: 20px;
  height: fit-content;
  border-radius: 12px;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
}
.title-pop {
  text-align: center;
  color: #fff;
}
.text-pop {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.text-pop p {
  color: #fff;
}
.close-pop-up {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.close-pop-up button {
  border: none;
  background-color: initial;
  cursor: pointer;
}
.close-pop-up button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.logo-pop {
  max-width: 100px;
  width: 100%;
}
.content-pop-text {
  display: flex;
}
@media (max-width: 767px) {
  .popup {
    padding: 80px 20px;
    overflow-y: scroll;
  }
  .popup__close {
    width: 30px;
    height: 30px;
  }
  .popup__inner {
    width: 100%;
  }
  .popup__cart {
    padding: 20px;
    width: 100%;
    border-radius: 12px;
  }
  .popup__cart-product-wrapper {
    margin-bottom: 20px;
  }
  .popup__cart-title {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .popup__cart-product:not(:last-child) {
    margin-bottom: 15px;
  }
  .popup__cart-product-title {
    font-size: 12px;
  }
  .popup__cart-product-count {
    padding-left: 2px;
    width: 45px;
    border-radius: 4px;
    font-size: 12px;
  }
  .popup__cart-product-price {
    margin-right: 8px;
    width: 45px;
    font-size: 12px;
  }
  .popup__cart-summ {
    margin-bottom: 15px;
  }
  .popup__cart-form-row {
    margin-bottom: 10px;
  }
  .popup__cart-form-row:nth-child(5) {
    margin-bottom: 20px;
  }
  .popup__cart-form-row.popup__cart-form-row--select::after {
    top: 49px;
  }
  .popup__cart-form-input {
    border-radius: 10px;
  }
}
.form-success {
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 4px 2px #217aff;
  background: #000;
  text-align: center;
  color: #fff;
  position: fixed;
  top: calc(50% + 100px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.form-success span {
  border-bottom: 1px solid rgba(33, 122, 255, 0.7);
}
.form-success.show {
  top: 50%;
  opacity: 1;
}
.footer {
  padding-bottom: 0;
  overflow: hidden;
}
.footer__manager {
  margin-left: auto;
  margin-bottom: -80px;
  margin-right: 30px;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
  z-index: 2;
}
.footer__manager-title {
  margin-bottom: 5px;
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.footer__manager-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 54px;
  background: url(../images/ico/arrow-img.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -38px;
  top: 3px;
  transform: rotate(-95deg);
  animation: footerArrowAnim 3.6s ease-in infinite;
}
@keyframes footerArrowAnim {
  0% {
    transform: rotate(-65deg);
  }
  50% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(-65deg);
  }
}
.footer__manager-list {
  display: flex;
  justify-content: center;
}
.footer__manager-item:not(:last-child) {
  margin-right: 20px;
}
.footer__manager-company {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.footer__manager-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__manager-link {
  transition: all 0.3s ease-out;
}
.footer__manager-link:hover {
  transform: scale(1.1);
}
.footer__manager-link:active {
  opacity: 0.3;
}
.footer__manager-link svg {
  margin: -8px;
  display: block;
  width: 50px;
  height: auto;
}
.footer__inner {
  padding: 40px;
  display: flex;
  height: 390px;
  background: url(../images/footer-back.png) no-repeat center;
  background-size: contain;
}
.footer__inner-col:nth-child(1) {
  width: 35%;
}
.footer__inner-col:nth-child(2) {
  display: flex;
  width: 45%;
}
.footer__inner-col:nth-child(3) {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer__logo {
  display: block;
  width: 60px;
}
.footer__nav:not(:last-child) {
  margin-right: 50px;
}
.footer__nav-title {
  margin-bottom: 30px;
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
.footer__nav-item:not(:last-child) {
  margin-bottom: 4px;
}
.footer__nav-link {
  color: #000;
  transition: all 0.3s ease-out;
}
.footer__nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}
.footer__nav-link:active {
  color: rgba(0, 0, 0, 0.3);
}
.footer__rating {
  display: block;
  width: 188px;
  height: auto;
}
.footer__social {
  margin-top: -40px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footer__social-item:not(:last-child) {
  margin-right: 15px;
}
.footer__social-link {
  display: block;
  transition: all 0.3s ease-out;
}
.footer__social-link:hover {
  transform: scale(1.1);
}
.footer__social-link:active {
  opacity: 0.3;
}
.footer__social-link svg {
  margin: -8px;
  display: block;
  width: 50px;
  height: auto;
}
.footer__bottom {
  padding: 60px 0 40px;
  display: flex;
  justify-content: space-between;
}
.footer__bottom-txt {
  font-size: 10px;
}
@media (max-width: 1060px) {
  .footer__inner {
    padding: 60px 40px;
    height: 370px;
  }
  .footer__manager {
    margin: 0 auto 0;
  }
  .footer__nav-title {
    margin: 20px 0 10px;
  }
  .footer__social {
    margin: 0;
    justify-content: center;
  }
}
@media (max-width: 880px) {
  .footer__inner {
    padding: 30px 40px;
    height: 286px;
  }
  .footer__nav-title {
    margin-top: 10px;
  }
  .footer__nav-item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer__manager {
    margin-bottom: 40px;
  }
  .footer__inner {
    margin: 0 auto;
    padding: 30px 50px;
    width: 100%;
    max-width: 280px;
    height: 484px;
    flex-direction: column;
    background: url(../images/hero-img-mob.webp) no-repeat center;
    background-size: contain;
    position: relative;
  }
  .footer__inner-col {
    width: calc(100%) !important;
  }
  .footer__inner-col:nth-child(1) {
    margin-bottom: 30px;
  }
  .footer__nav:not(:last-child) {
    margin-right: 10px;
  }
  .footer__nav-item:not(:last-child) {
    margin-bottom: 6px;
  }
  .footer__nav-title {
    margin: 0 0 25px;
    font-size: 10px;
  }
  .footer__rating {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__social {
    margin-top: 20px;
  }
  .footer__bottom {
    padding: 20px 0;
  }
}
.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 1s ease-out;
}
.preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.preloader__inner {
  width: 150px;
  height: auto;
}
.preloader__inner svg {
  display: block;
  width: 100%;
  height: auto;
}
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1164.46081543px;
    stroke-dasharray: 1164.46081543px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1164.46081543px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1164.46081543px;
    stroke-dasharray: 1164.46081543px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1164.46081543px;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #3489c0;
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #3489c0;
  }
}
.preloader__logo-1 {
  -webkit-animation: animate-svg-stroke-1 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
    animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-stroke-1 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0s
      both,
    animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}
@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 187.78785706px;
    stroke-dasharray: 187.78785706px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 187.78785706px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 187.78785706px;
    stroke-dasharray: 187.78785706px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 187.78785706px;
  }
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-2 {
  -webkit-animation: animate-svg-stroke-2 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
    animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
  animation: animate-svg-stroke-2 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s
      both,
    animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}
@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 148.25106812px;
    stroke-dasharray: 148.25106812px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 148.25106812px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 148.25106812px;
    stroke-dasharray: 148.25106812px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 148.25106812px;
  }
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-3 {
  -webkit-animation: animate-svg-stroke-3 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
    animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  animation: animate-svg-stroke-3 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s
      both,
    animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}
@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 132.80192566px;
    stroke-dasharray: 132.80192566px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.80192566px;
  }
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 132.80192566px;
    stroke-dasharray: 132.80192566px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.80192566px;
  }
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-4 {
  -webkit-animation: animate-svg-stroke-4 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
    animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
  animation: animate-svg-stroke-4 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s
      both,
    animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}
@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 132.80178833px;
    stroke-dasharray: 132.80178833px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.80178833px;
  }
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 132.80178833px;
    stroke-dasharray: 132.80178833px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.80178833px;
  }
}
@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-5 {
  -webkit-animation: animate-svg-stroke-5 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
    animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-5 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s
      both,
    animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}
@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 147px;
    stroke-dasharray: 147px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 147px;
  }
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 147px;
    stroke-dasharray: 147px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 147px;
  }
}
@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-6 {
  -webkit-animation: animate-svg-stroke-6 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
    animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
  animation: animate-svg-stroke-6 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s
      both,
    animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}
@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 125.91886902px;
    stroke-dasharray: 125.91886902px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 125.91886902px;
  }
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 125.91886902px;
    stroke-dasharray: 125.91886902px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 125.91886902px;
  }
}
@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-7 {
  -webkit-animation: animate-svg-stroke-7 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
    animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
  animation: animate-svg-stroke-7 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s
      both,
    animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}
@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 285.69061279px;
    stroke-dasharray: 285.69061279px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 285.69061279px;
  }
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 285.69061279px;
    stroke-dasharray: 285.69061279px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 285.69061279px;
  }
}
@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-8 {
  -webkit-animation: animate-svg-stroke-8 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
    animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
  animation: animate-svg-stroke-8 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s
      both,
    animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}
@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 391.40103149px;
    stroke-dasharray: 391.40103149px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 391.40103149px;
  }
}
@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 391.40103149px;
    stroke-dasharray: 391.40103149px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 391.40103149px;
  }
}
@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
.preloader__logo-9 {
  -webkit-animation: animate-svg-stroke-9 1.8s
      cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
    animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
  animation: animate-svg-stroke-9 1.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s
      both,
    animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}
@media (max-width: 767px) {
  .preloader__inner {
    width: 100px;
    transform: translateY(-50px);
  }
}
.welcome {
  padding: 60px 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.welcome.hide {
  opacity: 0;
  pointer-events: none;
}
.welcome__inner {
  margin: auto;
  padding: 40px;
  width: 100%;
  max-width: 830px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 44px;
  position: relative;
}
.welcome__close {
  padding: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  position: absolute;
  top: 36px;
  right: 29px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.welcome__close:hover {
  transform: rotate(-180deg);
}
.welcome__section-title {
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 38px;
  text-align: center;
}
.welcome__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.welcome__links-item {
  width: 200px;
}
.welcome__links-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome__links-link:hover svg,
.welcome__links-link:hover span {
  opacity: 1;
}
.welcome__links-link svg {
  margin: 0 auto;
  width: auto;
  height: 50px;
  opacity: 0.4;
  transition: all 0.3s ease-out;
}
.welcome__links-link span {
  display: block;
  font-size: 12px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  opacity: 0.4;
  transition: all 0.3s ease-out;
}
.welcome__links-link span br {
  display: none;
}
.welcome__manager {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.welcome__manager img {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  margin-right: 10px;
}
.welcome__language {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.welcome__language-title {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.welcome__language-list {
  margin-left: 14px;
  display: flex;
}
.welcome__language-list-item:not(:last-child) {
  margin-right: 10px;
}
.welcome__language-list-link {
  color: rgba(255, 255, 255, 0.3);
}
.welcome__language-list-link.active {
  color: #fff;
}
.welcome__news-title {
  margin-top: 20px;
  margin-bottom: 30px;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
}
.welcome__news-img {
  display: block;
  width: 100%;
}
.welcome__news-more {
  margin: 20px auto 0;
  padding: 12px;
  display: block;
  width: 170px;
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
}
.welcome__news-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.welcome__news-pagination span {
  background: #fff;
}
.welcome__news-pagination span.swiper-pagination-bullet-active {
  background: #217aff;
}
@media (max-width: 767px) {
  .welcome {
    padding: 40px 20px;
  }
  .welcome__inner {
    padding: 20px;
    border-radius: 20px;
  }
  .welcome__section-title {
    padding-right: 60px;
    text-align: start;
  }
  .welcome__close {
    padding: 8px;
    width: 40px;
    height: 40px;
    top: 14px;
    right: 9px;
  }
  .welcome__close svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .welcome__section-title {
    font-size: 26px;
  }
  .welcome__links-item {
    width: 50%;
  }
  .welcome__links-link svg,
  .welcome__links-link span {
    opacity: 1;
  }
  .welcome__links-link span {
    width: 100%;
    white-space: wrap;
    text-align: center;
  }
  .welcome__links-link span br {
    display: block;
  }
  .welcome__language {
    flex-direction: column;
  }
  .welcome__news-img {
    max-width: 100%;
  }
  .welcome__news-more {
    margin-top: 10px;
    width: 100%;
  }
}
.home__hero {
  padding: 120px 0 100px;
  background: url(../images/hero-lines.png) no-repeat center;
  background-size: cover;
}
.home__hero-inner {
  padding: 40px 80px;
  height: 544px;
  position: relative;
  overflow: hidden;
}
.home__hero-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/hero-img.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.home__hero-nav {
  margin-bottom: 70px;
  display: flex;
}
.home__hero-nav-item {
  position: relative;
}
.home__hero-nav-item:not(:last-child) {
  margin-right: 40px;
}
.home__hero-nav-item:not(:last-child)::after {
  content: "/";
  font-weight: 500;
  color: #000;
  position: absolute;
  right: -20px;
  top: 0;
}
.home__hero-nav-link {
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease-out;
}
.home__hero-nav-link:hover {
  opacity: 0.3;
}
.home__hero-title {
  width: 100%;
  max-width: 470px;
  height: auto;
  position: relative;
}
.home__hero-star {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 44px;
  right: 21px;
  animation: starAnim 10s linear infinite;
}
.home__hero-hidden {
  opacity: 0;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.home__hero-subtitle {
  display: block;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  opacity: 0.7;
}
.home__hero-title-img {
  display: block;
  width: 100%;
}
.home__hero-txt {
  font-weight: 500;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 45px;
  color: #000;
}
.home__hero-pills {
  position: absolute;
  bottom: 0;
  right: 74px;
}
.home__hero-pills-img {
  display: block;
  width: 100%;
  max-width: 465px;
}
.home__hero-sphere {
  display: block;
  position: absolute;
}
.home__hero-sphere.home__hero-sphere--blue {
  width: 52px;
  height: 52px;
  right: 90px;
  bottom: 80px;
  animation: sphereAnim 14s ease-out infinite;
}
.home__hero-sphere.home__hero-sphere--grey {
  width: 23px;
  height: 23px;
  top: 70px;
  left: 100px;
  animation: sphereAnim 18s ease-out infinite;
  animation-delay: 1s;
}
.home__hero-sphere.home__hero-sphere--black {
  width: 35px;
  height: 35px;
  bottom: 180px;
  left: 50px;
  animation: sphereAnim 12s ease-out infinite;
}
@keyframes sphereAnim {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
.home__hero-managers {
  margin-top: 40px;
  display: flex;
}
.home__hero-managers-item:not(:last-child) {
  margin-right: 20px;
}
.home__hero-managers-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
.home__hero-managers-link img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
}
.home__oxy-section {
  position: relative;
}
.home__oxy {
  padding: 0 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.home__oxy-spline {
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: -1;
}
.home__oxy-subtitle {
  margin: 0 0 40px;
  width: 100%;
  max-width: 424px;
  font-size: 20px;
}
.home__oxy-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home__oxy-img {
  margin-left: -70px;
  margin-bottom: -40px;
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.home__oxy-title {
  font-weight: 700;
  font-size: 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.home__oxy-txt {
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.home__oxy-btn.home__oxy-btn--mob {
  display: none;
}
.home__athletes {
  overflow: hidden;
  padding-left: 80px;
  padding-right: 80px;
}
.home__about {
  padding: 60px 45px;
  display: flex;
  height: 660px;
  position: relative;
}
.home__about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/background-about.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.home__about-col {
  position: relative;
  z-index: 3;
}
.home__about-col:first-child {
  margin-right: 130px;
  width: 55%;
}
.home__about-col:last-child {
  width: 45%;
  z-index: 1;
}
.home__about-title {
  margin-bottom: 30px;
}
.home__about-txt {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
}
.home__about-txt.home__about-txt--black {
  width: 100%;
  max-width: 500px;
  color: rgba(0, 0, 0, 0.6);
}
.home__about-buy {
  padding-right: 30px;
  font-weight: 700;
  color: #fff;
  position: relative;
  transition: all 0.3s ease-out;
}
.home__about-buy:hover {
  opacity: 0.6;
}
.home__about-buy:hover::after {
  right: -5px;
}
.home__about-buy::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/ico/arrow-ico.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.home__about-buy.home__about-buy--blue {
  color: #217aff;
}
.home__about-buy.home__about-buy--blue::after {
  background: url(../images/ico/arrow-ico-blue.svg) no-repeat center;
  background-size: contain;
}
.home__about-pills {
  display: block;
  width: 100%;
  max-width: 600px;
  position: absolute;
  bottom: -60px;
  left: 0;
  pointer-events: none;
}
.home__about-pills.home__about-pills--second {
  max-width: 240px;
  z-index: 1;
  left: auto;
  right: 70px;
}
.home__benefits-section {
  padding-top: 200px;
}
.home__benefits-item {
  position: relative;
}
.home__benefits-item:not(:last-child) {
  margin-bottom: 340px;
}
.home__benefits-img {
  width: 320px;
  height: auto;
  position: absolute;
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.9;
}
.home__benefits-title {
  margin-bottom: 30px;
  font-size: 50px;
  position: relative;
  z-index: 2;
}
.home__benefits-txt {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  position: relative;
  z-index: 2;
}
.home__catalog-list {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.home__catalog-item {
  margin: 15px;
  width: calc((100% / 3) - 30px);
  height: 280px;
}
.home__catalog-item:nth-child(2) {
  width: calc(66.666% - 30px);
}
.home__catalog-link {
  padding: 40px;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(23, 23, 23, 0.4) url(../images/home-catalog-back.svg)
    no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.home__catalog-link:hover .home__catalog-img {
  transform: scale(1.06);
}
.home__catalog-title {
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.home__catalog-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.home__catalog-img {
  display: block;
  width: 100%;
  max-width: 260px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s linear;
}
.home__blog-container {
  height: 700px;
  position: relative;
}
.home__blog-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home__blog-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.home__blog-title {
  margin-bottom: 30px;
  font-weight: 900;
  text-transform: uppercase;
}
.home__blog-more {
  margin: 0 auto;
}
.home__blog-carousel {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
  -webkit-perspective: 5000;
  perspective: 5000;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
  z-index: 1;
}
.home__blog-carousel-wrapper {
  margin: 0 auto;
  height: 300px;
  width: 400px;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -moz-animation: rotate 35s infinite linear;
  -webkit-animation: rotate 35s infinite linear;
  animation: rotate 35s infinite linear;
}
@keyframes rotate {
  0% {
    -moz-transform: rotateX(15deg) rotateY(0) rotateZ(15deg);
    -ms-transform: rotateX(15deg) rotateY(0) rotateZ(15deg);
    -webkit-transform: rotateX(15deg) rotateY(0) rotateZ(15deg);
    transform: rotateX(15deg) rotateY(0) rotateZ(15deg);
  }
  100% {
    -moz-transform: rotateX(15deg) rotateY(360deg) rotateZ(15deg);
    -ms-transform: rotateX(15deg) rotateY(360deg) rotateZ(15deg);
    -webkit-transform: rotateX(15deg) rotateY(360deg) rotateZ(15deg);
    transform: rotateX(15deg) rotateY(360deg) rotateZ(15deg);
  }
}
.home__blog-carousel-image {
  position: absolute;
  height: 100px;
  width: 400px;
  border-radius: 30px;
  text-align: center;
}
.home__blog-carousel-image.i1 {
  transform: translateZ(485px);
}
.home__blog-carousel-image.i2 {
  transform: rotateY(45deg) translateZ(485px);
}
.home__blog-carousel-image.i3 {
  transform: rotateY(90deg) translateZ(485px);
}
.home__blog-carousel-image.i4 {
  transform: rotateY(135deg) translateZ(485px);
}
.home__blog-carousel-image.i5 {
  transform: rotateY(180deg) translateZ(485px);
}
.home__blog-carousel-image.i6 {
  transform: rotateY(225deg) translateZ(485px);
}
.home__blog-carousel-image.i7 {
  transform: rotateY(270deg) translateZ(485px);
}
.home__blog-carousel-image.i8 {
  transform: rotateY(315deg) translateZ(485px);
}
.home__blog-carousel-image img {
  border-radius: 30px;
  width: 380px;
}
.home__analyses {
  position: relative;
}
.home__analyses::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0), #000);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home__analyses-container {
  position: relative;
}
.home__analyses-txt {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 2;
}
.home__analyses-title {
  margin-bottom: 20px;
}
.home__analyses-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.home__analyses-img {
  display: block;
  width: 100%;
  height: auto;
}
.home__analyses-more {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.home__analyses-more-item:not(:last-child) {
  margin-right: 20px;
}
.home__analyses-more-btn {
  font-family: "Monument";
  font-weight: 700;
}
.home__cooperation-item {
  padding: 60px;
  border-radius: 30px;
  overflow: hidden;
  background: url(../images/cooperation-back.png) no-repeat center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.home__cooperation-item:not(:last-child) {
  margin-bottom: 30px;
}
.home__cooperation-title {
  margin: 0 0 20px;
  font-size: 25px;
  position: relative;
  z-index: 2;
}
.home__cooperation-details li {
  opacity: 0.6;
  position: relative;
  z-index: 2;
}
.home__cooperation-details li:not(:last-child) {
  margin-bottom: 2px;
}
.home__cooperation-img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.7;
}
.home__video {
  display: flex;
}
.home__video-col:first-child {
  width: 35%;
}
.home__video-col:last-child {
  margin-left: 100px;
  width: 65%;
}
.home__video-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.home__video-title svg {
  margin-right: 15px;
}
.home__video-subtitle {
  margin: 0 0 130px;
  opacity: 0.6;
  line-height: 1.4;
}
.home__video-btn.home__video-btn--mob {
  display: none;
}
.home__video-iframe {
  height: 100%;
}
.home__video-iframe iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 30px;
}
@media (max-width: 1276px) {
  .home__hero-inner {
    height: 525px;
  }
}
@media (max-width: 1240px) {
  .home__hero {
    padding-bottom: 70px;
  }
  .home__hero-inner {
    padding: 20px 20px;
    height: 315px;
  }
  .home__hero-nav {
    margin-bottom: 0;
    justify-content: center;
  }
  .home__hero-title {
    max-width: 100%;
  }
  .home__hero-subtitle {
    display: none;
  }
  .home__hero-title-img {
    margin: 25px auto 20px;
    max-width: 295px;
  }
  .home__hero-pills {
    display: none;
  }
  .home__hero-star {
    width: 65px;
    height: 65px;
    top: -2px;
    right: calc(50% - 154px);
  }
  .home__hero-txt {
    display: block;
    font-size: 20px;
    text-align: center;
    letter-spacing: 8px;
  }
  .home__hero-managers {
    justify-content: center;
  }
  .home__oxy {
    padding: 0 40px;
    flex-direction: column;
  }
  .home__oxy-col {
    width: 100%;
  }
  .home__oxy-section-title {
    margin-bottom: 0;
  }
  .home__oxy-list {
    margin-top: 60px;
  }
  .home__oxy-item {
    padding: 30px;
    background: url(../images/cooperation-back.png) no-repeat center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
  }
  .home__oxy-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .home__oxy-img {
    margin: 0;
    margin-top: -95px;
    margin-bottom: 20px;
    opacity: 1;
  }
  .home__oxy-btn {
    display: none !important;
  }
  .home__oxy-btn.home__oxy-btn--mob {
    margin: 40px auto 0;
    display: flex !important;
  }
  .home__oxy-spline {
    display: none;
  }
  .home__athletes {
    padding: 0 40px;
  }
  .home__about {
    padding: 0;
    flex-direction: column;
    height: auto;
  }
  .home__about::before {
    display: none;
  }
  .home__about-col {
    width: 80% !important;
  }
  .home__about-col:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .home__about-title {
    color: #fff !important;
  }
  .home__about-txt.home__about-txt--black {
    color: rgba(255, 255, 255, 0.6);
  }
  .home__about-pills {
    display: none;
  }
  .home__benefits-txt {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 660px;
  }
  .home__benefits-txt br {
    display: none;
  }
  .home__catalog-item {
    margin: 10px;
    width: calc((100% / 2) - 20px) !important;
  }
  .home__catalog-link {
    padding: 30px;
  }
  .home__video {
    flex-direction: column;
  }
  .home__video-col {
    margin: 0 !important;
    width: 100% !important;
  }
  .home__video-col:first-child {
    margin-bottom: 30px !important;
  }
  .home__video-subtitle {
    margin-bottom: 10px;
    width: 100%;
    max-width: 420px;
  }
  .home__video-iframe iframe {
    width: 100% !important;
    height: 560px !important;
  }
  .home__video-btn {
    display: none !important;
  }
  .home__video-btn.home__video-btn--mob {
    margin-top: 20px;
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .home__hero {
    padding: 80px 0 60px;
  }
  .home__hero-inner {
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    height: 484px;
    width: 100%;
    max-width: 330px;
    display: flex;
    flex-direction: column;
  }
  .home__hero-inner::before {
    background: url(../images/hero-img-mob.webp) no-repeat center;
    background-size: contain;
  }
  .home__hero-nav {
    margin-left: 28px;
  }
  .home__hero-nav-item:not(:last-child) {
    margin-right: 15px;
  }
  .home__hero-nav-item:not(:last-child)::after {
    right: -11px;
    top: 2px;
  }
  .home__hero-nav-link {
    font-size: 10px;
    white-space: nowrap;
  }
  .home__hero-title-img {
    max-width: 216px;
  }
  .home__hero-star {
    width: 46px;
    height: 46px;
    top: 11px;
    right: calc(50% - 106px);
  }
  .home__hero-txt {
    font-size: 14px;
    letter-spacing: 16px;
    transform: translateX(7px);
  }
  .home__hero-pills {
    margin-right: 39px;
    margin-bottom: 1px;
    margin-top: auto;
    display: block;
    position: relative;
    right: auto;
  }
  .home__hero-pills-img {
    margin: 0 auto;
    height: 246px;
    width: auto;
  }
  .home__hero-sphere.home__hero-sphere--blue {
    width: 35px;
    height: 35px;
    right: 62px;
    bottom: 31px;
  }
  .home__hero-sphere.home__hero-sphere--black {
    width: 22px;
    height: 22px;
    bottom: 120px;
    left: 40px;
  }
  .home__hero-sphere.home__hero-sphere.home__hero-sphere--grey {
    width: 20px;
    height: 20px;
    top: 33px;
    left: auto;
    right: 31px;
  }
  .home__hero-managers-link {
    font-size: 12px;
  }
  .home__hero-managers-link img {
    margin-right: 5px;
    width: 24px;
    height: 24px;
  }
  .home__oxy {
    padding: 0 20px;
  }
  .home__oxy-subtitle {
    margin-bottom: 30px;
    font-size: 12px;
  }
  .home__oxy-img {
    margin-left: -20px;
    margin-top: -90px;
    margin-bottom: 10px;
    width: 95px;
    height: 95px;
  }
  .home__oxy-title {
    font-size: 18px;
  }
  .home__oxy-txt {
    font-size: 14px;
    opacity: 0.7;
  }
  .home__athletes {
    padding: 0 20px;
  }
  .home__about {
    align-items: center;
  }
  .home__about-col {
    padding: 0 20px;
    width: 100% !important;
    max-width: 280px !important;
  }
  .home__about-col:first-child {
    margin-bottom: 0;
    height: 577px;
    position: relative;
    order: 2;
  }
  .home__about-col:first-child::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/background-about-mob.webp) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .home__about-col:last-child {
    order: 1;
  }
  .home__about-title {
    margin-bottom: 10px;
    font-size: 30px !important;
    position: relative;
    z-index: 3;
  }
  .home__about-title.section-title--black {
    margin-top: 280px;
    color: #000 !important;
  }
  .home__about-txt {
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff !important;
    position: relative;
    z-index: 3;
  }
  .home__about-txt.home__about-txt--black {
    color: #000 !important;
  }
  .home__about-pills.home__about-pills--second {
    display: block;
    max-width: 215px;
    right: 42px;
    bottom: -303px;
  }
  .home__about-buy {
    padding: 6px 12px;
    display: block;
    width: 110px;
    background: #1a1a1a;
    border-radius: 6px;
    position: relative;
    z-index: 3;
  }
  .home__about-buy::after {
    top: 7px;
    right: 6px;
  }
  .home__about-buy.home__about-buy--blue {
    margin-top: 25px;
    border: 2px solid #217aff;
    background: #fff;
  }
  .home__benefits-item:not(:last-child) {
    margin-bottom: 230px;
  }
  .home__benefits-img {
    width: 240px;
  }
  .home__benefits-title {
    margin-bottom: 10px;
    font-size: 32px;
  }
  .home__benefits-title br {
    display: none;
  }
  .home__benefits-txt {
    font-size: 14px;
  }
  .home__catalog-list {
    margin: 0;
    flex-direction: column;
  }
  .home__catalog-item {
    margin: 0;
    width: 100% !important;
  }
  .home__catalog-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .home__catalog-link {
    padding: 20px;
  }
  .home__catalog-title {
    font-size: 18px;
    line-height: 1.3;
  }
  .home__catalog-img {
    right: -30px !important;
  }
  .home__blog-container {
    height: 285px;
  }
  .home__blog-carousel {
    transform: translate(-50%, -50%) scale(0.35);
  }
  .home__analyses-txt {
    position: relative;
    left: 0;
  }
  .home__analyses-title {
    margin-bottom: 10px;
  }
  .home__analyses-subtitle {
    font-size: 14px;
  }
  .home__analyses-more {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
  .home__analyses-more-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .home__cooperation-item {
    padding: 20px;
  }
  .home__cooperation-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .home__cooperation-title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .home__cooperation-img {
    margin-left: -60px;
    margin-bottom: -20px;
    display: block;
    width: calc(100% + 80px);
    position: initial;
    opacity: 1;
  }
  .home__video-col:first-child {
    margin-bottom: 10px !important;
  }
  .home__video-title svg {
    width: 35px;
    height: auto;
  }
  .home__video-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .home__video-iframe iframe {
    height: 270px !important;
    border-radius: 0;
  }
}
.catalog {
  padding-top: 120px;
  padding-bottom: 0;
}
.catalog__section-title {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: max-content;
  font-weight: 900;
  font-size: 65px;
  position: relative;
}
.catalog__section-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: url(../images/ellipse.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -35px;
  z-index: -1;
}
.catalog__section-title::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: url(../images/ico/star.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: -52px;
  animation: starAnim 10s linear infinite;
}
.catalog__filter-wrapper {
  margin-bottom: 120px;
  padding: 0 1px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.catalog__filter-wrapper::-webkit-scrollbar {
  height: 8px;
}
.catalog__filter-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.catalog__filter-wrapper::-webkit-scrollbar-thumb {
  background-color: #212121;
  border-radius: 20px;
  border: none;
}
.catalog__filter {
  margin: 0 auto;
  margin-bottom: 20px;
  width: -webkit-max-content;
  width: max-content;
  display: flex;
}
.catalog__filter-item:not(:last-child) {
  margin-right: 10px;
}
.catalog__filter-button {
  padding: 15px 40px;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  white-space: nowrap;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.catalog__filter-button:hover {
  background: #262626;
}
.catalog__filter-button:active span {
  opacity: 0.3;
}
.catalog__filter-button span {
  transition: all 0.3s ease-out;
}
.catalog__filter-button.active {
  background: #217aff;
  border-color: #217aff;
  color: #fff;
}
.catalog__list {
  margin: -30px;
  display: flex;
  flex-wrap: wrap;
}
.catalog__list-item {
  margin: 30px;
  width: calc((100% / 4) - 60px);
  display: flex;
  flex-direction: column;
}
.catalog__list-img-wrapper {
  margin-bottom: 28px;
  position: relative;
}
.catalog__list-img-back {
  display: block;
  width: 100%;
  height: auto;
}
.catalog__list-img {
  display: block;
  width: auto;
  height: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}
.catalog__list-suptitle {
  display: block;
  margin-top: -23px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  text-align: end;
}
.catalog__list-title {
  margin: 0 0 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
}
.catalog__list-subtitle {
  margin-bottom: 30px;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.catalog__list-price-wrapper {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
}
.catalog__list-price {
  margin-bottom: 20px;
  font-size: 20px;
}
.catalog__list-price.catalog__list-price--old {
  margin-left: 10px;
  font-size: 16px;
  color: #3f3f3f;
  text-decoration: line-through;
}
.catalog__btns {
  display: flex;
}
.catalog__list-more {
  margin-right: 10px;
  display: block;
  width: calc(100% - 45px);
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.catalog__list-more:hover {
  opacity: 0.7;
}
.catalog__list-more:active {
  opacity: 0.3;
}
.catalog__list-more span {
  transition: all 0.3s ease-out;
}
.catalog__list-cart {
  padding: 0;
  width: 35px;
  height: 35px;
  display: block;
  font-size: 0;
  background: #217aff;
  border: 1px solid #217aff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  position: relative;
}
.catalog__list-cart:hover {
  background: #005fed;
}
.catalog__list-cart:active::after {
  opacity: 0.3;
}
.catalog__list-cart svg {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}
@media (max-width: 1240px) {
  .catalog__list-item {
    width: calc((100% / 3) - 60px);
  }
}
@media (max-width: 767px) {
  .catalog {
    padding-top: 80px;
  }
  .catalog__section-title {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 230px;
    font-size: 46px;
  }
  .catalog__section-title::before {
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
  }
  .catalog__section-title::after {
    width: 35px;
    height: 35px;
    top: 7px;
    right: -13px;
  }
  .catalog__filter-wrapper {
    margin-bottom: 46px;
  }
  .catalog__filter {
    margin-bottom: 14px;
  }
  .catalog__list {
    margin: -5px;
  }
  .catalog__list-item {
    margin: 5px;
    margin-bottom: 20px;
    width: calc((100% / 2) - 10px);
  }
  .catalog__list-title {
    font-size: 18px;
  }
  .catalog__list-subtitle {
    margin-bottom: 15px;
  }
  .catalog__list-price {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .catalog__list-more {
    margin-right: 5px;
    width: calc(100% - 40px);
    border-radius: 6px;
  }
  .catalog__list-cart {
    border-radius: 6px;
  }
}
.single-product {
  margin-top: 140px;
}
.single-product__row {
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 820px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
}
.single-product__img-col {
  margin-right: 50px;
  width: 30%;
}
.single-product__txt-col {
  width: 70%;
}
.single-product__back {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.6;
  transition: all 0.3s ease-out;
}
.single-product__back:hover {
  transform: translateX(-6px);
}
.single-product__back svg {
  display: block;
  width: 20px;
  height: 20px;
}
.single-product__img {
  display: block;
  width: 100%;
  height: auto;
}
.single-product__title {
  margin-bottom: 10px;
}
.single-product__descr {
  font-size: 14px;
  opacity: 0.6;
}
.single-product__btn-row {
  display: flex;
  align-items: center;
}
.single-product__btn {
  width: 240px;
}
.single-product__price {
  margin-left: 20px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .single-product {
    margin-top: 75px;
  }
  .single-product__row {
    padding: 20px;
    flex-direction: column;
  }
  .single-product__img-col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .single-product__img {
    margin: 30px auto 0;
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
  }
  .single-product__txt-col {
    width: 100%;
  }
  .single-product__title {
    font-size: 26px !important;
  }
  .single-product__descr {
    margin-bottom: 40px;
  }
  .single-product__btn {
    width: 170px;
  }
}
.blog {
  padding-top: 120px;
}
.blog__section-title {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: max-content;
  font-weight: 900;
  font-size: 65px;
  position: relative;
}
.blog__section-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: url(../images/ellipse.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -35px;
  z-index: -1;
}
.blog__section-title::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: url(../images/ico/star.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: -52px;
  animation: starAnim 10s linear infinite;
}
.blog__list {
  margin: -20px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.blog__item {
  margin: 20px;
  width: calc((100% / 2) - 40px);
  transition: all 0.3s ease-out;
}
.blog__item:hover {
  opacity: 0.7;
  transform: rotate(-2deg);
}
.blog__article {
  display: block;
  height: 100%;
  position: relative;
}
.blog__link {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.blog__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.26;
}
.blog__title {
  margin: 0 0 20px;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
}
.blog__descr {
  margin: 0 60px 60px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}
.blog__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.blog__date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.blog__rating {
  margin-right: 100px;
  width: 120px;
  height: auto;
}
.blog__more {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0;
  background: #217aff;
  border: 10px solid #000;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1240px) {
  .blog__list {
    margin: -15px;
    margin-top: 60px;
  }
  .blog__item {
    margin: 15px;
    width: calc((100% / 2) - 30px);
  }
  .blog__link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .blog {
    padding-top: 80px;
  }
  .blog__section-title {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 230px;
    font-size: 46px;
  }
  .blog__section-title::before {
    width: 80px;
    height: 80px;
    top: -9px;
    right: 20px;
  }
  .blog__section-title::after {
    width: 35px;
    height: 35px;
    top: -3px;
    right: 9px;
  }
  .blog__list {
    margin: 0;
  }
  .blog__item {
    margin: 0;
    width: 100%;
  }
  .blog__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .blog__link {
    padding: 20px;
  }
  .blog__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .blog__descr {
    margin: 0 0 30px 0;
  }
  .blog__rating {
    margin-right: 50px;
    width: 100px;
  }
  .blog__more {
    width: 70px;
    height: 70px;
    border-width: 8px;
  }
  .blog__more svg {
    width: 35px;
    height: 35px;
  }
}
.post {
  padding-top: 120px;
}
.post__section-title {
  margin-bottom: 20px;
  margin-right: 68px;
  font-weight: 900;
  font-size: 65px;
  position: relative;
}
.post__subtitle {
  font-size: 22px;
  opacity: 0.7;
}
.post__content {
  margin-top: 60px;
  font-size: 22px;
}
.post__content h2,
.post__content strong {
  margin: 20px 0;
  display: block;
  line-height: 1.2;
  font-size: 30px;
  color: #fff;
}
.post__content strong {
  margin: 0;
}
.post__content table {
  margin: 0 -25px;
  display: block;
  border: none;
}
.post__content table tr {
  display: flex;
}
.post__content table tr td {
  margin: 25px;
  padding: 0;
  border: none;
  width: 50%;
  color: rgba(255, 255, 255, 0.7);
}
.post__content table h2 {
  margin-top: 0;
}
.post__content img {
  display: block;
  width: 100%;
  border-radius: 30px;
}
.post__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.post__content p:not(:last-child) {
  margin-bottom: 20px;
}
.post__content hr {
  margin: 40px 0;
  display: block;
  width: 100%;
  background: none;
  border: none;
}
.post__bottom {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.post__manager {
  display: flex;
}
.post__manager-item:not(:last-child) {
  margin-right: 110px;
}
.post__manager-title {
  margin-bottom: 30px;
  display: block;
  font-size: 22px;
  position: relative;
}
.post__manager-title::after {
  content: "";
  display: block;
  width: 51px;
  height: 63px;
  background: url(../images/ico/arrow-img.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -49px;
  top: 29px;
  transform: rotate(-95deg);
  animation: animArrow 3.6s ease-in infinite;
}
.post__manager-link {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-out;
}
.post__manager-link:hover {
  opacity: 0.7;
}
.post__manager-link:active {
  opacity: 0.3;
}
.post__manager-link img {
  margin-right: 15px;
  width: 40px;
  height: 40px;
}
@media (max-width: 1240px) {
  .post__content table {
    margin: 0;
  }
  .post__content table tr {
    flex-direction: column;
  }
  .post__content table tr td {
    margin: 0 !important;
    width: 100%;
  }
  .post__content table tr td:first-child {
    padding-right: 0;
  }
  .post__content p {
    margin: 20px 0;
  }
  .post__content hr {
    margin: 20px 0;
  }
  .post__manager-item:not(:last-child) {
    margin-right: 88px;
  }
  .post__manager-title {
    font-size: 20px;
  }
  .post__manager-title::after {
    right: -33px;
    top: 39px;
  }
}
@media (max-width: 767px) {
  .post {
    padding-top: 80px;
  }
  .post__section-title {
    margin-right: 0;
    width: auto;
    font-size: 36px;
  }
  .post__section-title::after,
  .post__section-title::before {
    display: none;
  }
  .post__subtitle {
    font-size: 18px;
  }
  .post__content {
    margin-top: 35px;
    font-size: 18px;
  }
  .post__content img {
    margin: 15px auto;
    width: calc(100% - 40px);
  }
  .post__content hr {
    display: none;
  }
  .post__content h2 {
    margin: 30px 0 !important;
  }
  .post__content p {
    margin: 15px 0;
  }
  .post__content table {
    margin: 0;
  }
  .post__content table p {
    margin: 0;
  }
  .post__content table p:not(:last-child) {
    margin-bottom: 15px;
  }
  .post__bottom {
    display: none;
  }
}

.imgs-slider {
  max-width: 800px;
  width: 100%;
  height: 600px;
  border-radius: 20px;
}

.img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-state {
  max-width: 800px;
  width: 100%;
  height: 600px;
  border-radius: 20px;
}

.video-state video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.slider-pog {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-pog .swiper-pagination-bullet {
  background: #3489c0;
}

.blog__pagination a {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  background: #1976ff;
  border-radius: 10px;
}

.blog__pagination span {
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 10px;
}

@media all and (max-width: 768px) {
    
      .blog__pagination a {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 5px 15px;
    background: #1976ff;
    border-radius: 10px;
  }

  .blog__pagination span {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 10px;
  }
    
  .imgs-slider {
    max-width: 800px;
    width: 100%;
    height: 300px;
  }

  .video-state {
    max-width: 800px;
    width: 100%;
    height: 300px;
  }

  .media-wrapper {
    margin-top: 30px;
    gap: 30px;
  }
}

.athlets-items {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: center;
}

.slider-athletes__cols {
  width: 560px;
  position: relative;
}
