@font-face {
  font-family: "Tilda Sans VF";
  src: url("/assets/fonts/TildaSans-VF.woff2") format("woff2"),
    url("/assets/fonts/TildaSans-VF.woff") format("woff"),
    url("/assets/fonts/TildaSans-VF.ttf") format("truetype");
}

@font-face {
  font-family: "StranaFont";
  src: url("/assets/fonts/StranaFont-Medium.otf") format("opentype"),
    url("/assets/fonts/StranaFont-Regular.otf") format("opentype"),
    url("/assets/fonts/StranaFont-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "BebasNeue";
  src: url("/assets/fonts/BebasNeue-Thin.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
html {
  /* font-family: "Roboto", sans-serif; */
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
li {
  list-style: none;
}

body {
  padding-top: 60px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.63;
  color: #000000;
  text-align: left;
}

a {
  color: inherit;
  text-decoration: none;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-200 {
  margin-bottom: 200px;
}
.container {
  max-width: 1180px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

.container-custom {
  padding: 0 30px;
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
}

.container-custom h2 {
  font-family: "StranaFont" !important;
  font-size: 38px !important;
  font-weight: 500 !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .container-custom h2 {
    font-size: 20px !important;
    text-align: center !important;
  }
}

.menu-toggle {
  padding: 0 10px !important;
  border: none;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  position: relative;
}

/* Бургер-меню */
.open {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  background: url("/assets/img/burger-menu.png") no-repeat center;
  width: 50px;
  height: 50px;
}

/* Крестик */
.close1 {
  position: absolute;
  background: url("/assets/img/close-icon.png") no-repeat center;
  top: -5px;
  right: 0;
  left: 0;
  width: 50px;
  height: 50px;
}

.navigation {
  display: flex;
  gap: 0;
}

.navigation-dropdown {
  border-radius: 0 0 30px 30px;
  font-size: 20px;
  text-align: center;
  display: none;
  flex-direction: column;
  background: linear-gradient(#ffa600, #a50024);
  position: absolute;
  top: 60px;
  right: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 1000;
}

.navigation-dropdown a {
  text-decoration: none;
  color: #ffffff;
  padding: 8px 10px;
  display: block;
  position: relative; /* Для полосы */
  margin: 5px 0; /* Пространство между ссылками */
}
.navigation-dropdown a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    #ffffff,
    rgba(255, 255, 255, 0)
  ); /* Эффект свечения */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Лёгкое свечение */
  border-radius: 10px;
}

/* .navigation-dropdown a:hover {
  background-color: #f2f2f2;
} */

.show {
  display: flex;
}

@media (max-width: 1200px) {
  .navigation {
    display: none; /* Скрываем десктопное меню */
  }

  .menu-toggle {
    padding: 0 10px !important;
    display: block; /* Показываем кнопку для мобильного меню */
  }
}

.menu {
  display: flex;
  align-items: center;
}
/*
header h1 {
  font-size: 36px;
  margin: 0;
  font-weight: bold;
}

header nav {
  margin-top: 15px;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}


.navigation {
  display: flex;
  gap: 20px; /* Расстояние между ссылками 
}
*/
.navigation a {
  padding: 15px 8px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: var(--bs-red);
}

.right-button {
  border-radius: 25px;
  padding: 12px 25px !important;
  border: 1px solid #fcb634;
  background-color: #ffffff;
  text-decoration: none;
  color: var(--bs-red);
}

@media (max-width: 768px) {
  .right-button {
    font-size: 14px;
  }
}
.right-button:hover {
  background-color: #fcb634;
  color: #ffffff;
}
.logo {
  margin-right: 0;
  text-align: left;
}
.footer .logo {
  margin-bottom: 20px;
}

.footer .mt-55 {
  margin-top: 55px;
}
.logo p {
  font-size: 15px !important;
  margin-bottom: -13px;
}
.logo span {
  font-family: "StranaFont";
  font-size: 18px;
  text-transform: uppercase;
  color: #dc0031;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .logo {
    margin-right: 0;
  }
  .footer .logo {
    margin-bottom: 0;
  }

  .footer .mt-55 {
    margin-top: 0;
  }
  .logo p {
    margin-bottom: -10px;
  }
  .logo span {
    font-size: 14px;
  }
}

/* .right-button a:hover {
  text-decoration: none;
  color: #ffffff;
} */

/* Блок баннера */
.cholesterol-banner {
  padding: 20px;
  position: relative;
  background: radial-gradient(circle, #a50024 80%, #ffa600);
  overflow: hidden;
  z-index: 1;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.all-class {
  position: relative;
  z-index: 3;
}

/* Круги */
.circle {
  position: absolute;
  width: 800px; /* Увеличенный размер */
  height: 800px;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(90px);
}

/* Цвета */
.red {
  background: radial-gradient(circle, rgba(165, 0, 36, 0.7), transparent);
}

.orange {
  background: radial-gradient(circle, rgba(255, 166, 0, 0.7), transparent);
}

.circle:nth-child(1) {
  top: -20%;
  left: 40%;
} /* Верхний центр */
.circle:nth-child(2) {
  top: 10%;
  left: 5%;
} /* Левый верхний */
.circle:nth-child(3) {
  top: 10%;
  right: 5%;
} /* Правый верхний */
.circle:nth-child(4) {
  top: 45%;
  left: 30%;
} /* Левый центр */
.circle:nth-child(5) {
  top: 45%;
  left: 70%;
} /* Правый центр */
.circle:nth-child(6) {
  bottom: 10%;
  left: 5%;
} /* Левый нижний */
.circle:nth-child(7) {
  bottom: 10%;
  right: 5%;
} /* Правый нижний */
.circle:nth-child(8) {
  bottom: -20%;
  left: 40%;
} /* Нижний центр */
.circle:nth-child(9) {
  top: 60%;
  left: 15%;
} /* Внутренний */
.circle:nth-child(10) {
  top: 60%;
  left: 85%;
} /* Внутренний */

.cholesterol-banner .text-content {
  text-align: center;
  margin-bottom: 100px;
}
.cholesterol-banner .text-content h1 {
  font-family: "StranaFont";
  font-size: 110px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .cholesterol-banner .text-content h1 {
    font-size: 36px;
  }
}

.cholesterol-banner .text-content p {
  line-height: 100%;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .cholesterol-banner .text-content p {
    font-size: 15px;
  }
}
.cholesterol-banner .text-content.about {
  margin-bottom: 10px;
}
.cholesterol-banner .text-content.about h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 68px;
  line-height: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .cholesterol-banner .text-content.about h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

/* Блок с фото и кнопками */
.cholesterol-banner .image-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}
.cholesterol-banner .image-content img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.cholesterol-banner .info-block {
  background: white;
  padding: 20px;
  margin-bottom: 80px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.cholesterol-banner .info-block h2 {
  font-family: "Tilda Sans VF", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--bs-red);
}

.cholesterol-banner .info-block p {
  line-height: 130%;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .cholesterol-banner .info-block h2 {
    font-size: 28px;
  }
}

.cholesterol-banner .test-button {
  color: #ffffff;
  padding: 12px 40px !important;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .cholesterol-banner .test-button {
    width: 100%;
    max-width: 300px;
  }
  .risk-button {
    width: 100%;
    max-width: 300px;
  }
}
.cholesterol-banner .test-button:hover {
  background: var(--bs-red);
  transform: scale(0.95);
}

.info-block {
  max-width: 1158px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* Изображение слева, текст справа */
  flex-wrap: wrap;
  align-items: flex-start; /* Выравнивание по верхнему краю */
  padding: 20px;
  position: relative;
}

.image-container {
  position: relative;
  margin-right: 20px;
  z-index: 1;
}

.image-container img {
  margin-top: -145px;
  position: relative;
  top: 20px;
  left: 0;
  max-width: 300px;
  max-height: 460px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container img {
    max-height: 230px;
    max-width: 190px;
    margin-top: -80px;
    position: relative;
    top: 0;
    left: 60px;
    border-bottom: 2px solid;
    border-image: linear-gradient(
        to right,
        rgba(220, 0, 49, 0),
        #dc0031,
        rgba(220, 0, 49, 0)
      )
      1;
  }
  .image-container.med img {
    max-height: 320px !important;
    max-width: 243px !important;
  }
}

.image-container1 {
  position: relative; /* Для настройки "выступания" */
  margin-right: 20px; /* Отступ от текста */
  z-index: 1;
}

.image-container1 img {
  position: absolute;
  top: -119px;
  left: 70px;
  max-width: 300px;
  max-height: 460px;
  height: auto;
}

@media (max-width: 768px) {
  .image-container1 img {
    position: absolute;
    top: -119px;
    left: 0;
    max-width: 300px;
    max-height: 460px;
    height: auto;
  }
}

.test-background {
  margin-left: 65px;
  max-width: 660px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .test-background {
    padding: 20px 0;
    margin-left: 0;
  }
}

.banner-med {
  background: none;
  /* padding-top: 50px; */
}
.banner-medical {
  background: url("/assets/img/image-3.png") no-repeat !important;
  background-size: cover !important;
}
@media (max-width: 375px) {
  .banner-medical {
    background: url("/assets/img/image-3-mob.png") no-repeat !important;
    background-size: cover !important;
  }
}

.banner-med span {
  text-align: center;
  font-family: "BebasNeue";
  letter-spacing: -2px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 65px !important;
  font-weight: 100 !important;
  color: #ffffff;
}

@media (max-width: 768px) {
  .banner-med span {
    font-size: 36px !important;
  }
}
.banner-med h2 {
  margin-bottom: 40px !important;
  font-size: 52px !important;
  font-weight: 800 !important;
  color: #000000 !important;
}

.test-background.banner-med {
  padding-top: 50px !important;
  margin-left: 0 !important;
}

@media (max-width: 768px) {
  .banner-med h2 {
    font-size: 30px !important;
  }
}

/* .test-background {
  margin: 0 220px;
  /* width: 100%; * 
  margin-left: 150px;  
  padding: 20px;
  z-index: 1;
} */

/* Дополнительный блок информации */
.cholesterol-banner {
  padding: 165px 0 25px;
}

.additional-info {
  display: flex;
  /* height: 460px; */
  padding: 50px 0;
  background-color: #fcb634;

  align-items: center;
}

.additional-info p {
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  font-weight: 400;
  font-size: 22px !important;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000;
}

@media (max-width: 768px) {
  .additional-info p {
    margin: 0;
    font-size: 18px !important;
  }
  .cholesterol-banner {
    padding: 60px 0 25px;
  }
}

button {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  padding: 12px 40px !important;
  border-radius: 50px;
}

.button-red {
  color: #ffffff;
  background-color: #dc0031;
}
.button-black {
  display: block;
  text-align: left;
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .button-black {
    width: 100%;
    text-align: center;
  }
}

.button-black:hover {
  background-color: #ffffff;
  color: #000000;
  transform: scale(0.95);
}
.button-yellow {
  position: relative;
  z-index: 2;
  background-color: #fcb634;
  color: #000000;
}

.button-yellow:hover {
  background-color: #ffffff;
  transform: scale(0.95);
}

/* .norm-button {
} */

.norm-button:hover {
  background-color: var(--bs-red);
  transform: scale(0.95);
}

.norm-button {
  background: #dc0031;
  color: white;
  text-align: center;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.above-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/img/top-footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  min-height: 80px;
}

.above-footer h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.above-footer p {
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  .above-footer p {
    font-size: 14px;
    padding: 10px;
  }
}

/* Футер */
.footer {
  width: 100%;
  background: #ffffff;
  color: #000000;
  padding: 40px 0 20px;
  font-family: "Roboto", sans-serif;
}

.footer h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer p,
.footer ul li {
  line-height: 130%;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer strong {
  color: #ffd700;
}

@media (max-width: 768px) {
  .footer-three {
    display: flex;
  }
  .footer-three-img {
    margin-right: 20px;
  }
}

/* ------------------------------ */
.colums_4 {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.section {
  background: radial-gradient(circle, #a50024, #ffa600);
}

.section-1 .column {
  margin-right: 20px !important;
  /* margin-left: 30px; */
  background-color: #fcb634;
  border-radius: 20px; /* Радиус углов */
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 250px;
  height: 530px;
}

.section-1 .column:nth-last-of-type(1) {
  margin-right: 0 !important;
}

.section-1 .column img {
  max-width: 143px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.section-1 h2 {
  font-family: "Tilda Sans VF", sans-serif;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
}

.section-1 p {
  line-height: 100%;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-1 h2 {
    font-size: 28px;
  }
  .section-1 p {
    font-size: 15px;
  }
}
.section-1 .column h4 {
  font-family: "Tilda Sans VF", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  margin: 10px 0;
}
.section-1 .column p {
  line-height: 125%;
  font-size: 15px;
  text-align: left;
}
/* Стили для второй секции */
.section-2 img {
  padding-bottom: 65px;
}
.section-2 {
  /* margin: 80px 0; */
}
.section-2 .content {
  /* padding: 20px; */
}
.section-2 h2 {
  font-family: "Tilda Sans VF", sans-serif;
  text-align: left;
  text-transform: inherit;
  font-weight: 800;
  font-size: 32px;
}

.about-color {
  font-family: "Tilda Sans VF";
  font-size: 24px;
  font-weight: 800;
  color: #fcb634;
  line-height: 100%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-2 h2 {
    font-size: 28px;
  }
  .reverse-column {
    flex-direction: column-reverse;
  }
  .new-style {
    max-width: 206px;
    margin: 0 auto;
  }
  .new-style-1 {
    max-width: 160px;
    margin: 0 auto;
  }
}
.section-2 p {
  text-align: left;
  text-transform: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  .section-2 p {
    font-size: 15px;
  }
}
.section-2 .button {
  display: inline-block;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.about-section-2 {
  border-radius: 10px;
  border: 1px solid #000000;
  background: linear-gradient(var(--bs-red), #2d000a);
}
.about-section-2 span {
  color: #fcb634;
}

.about-section-3 {
}
.color-white {
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
  color: #ffffff;
}
/* Стили для третьей секции */
.section-3 .column {
  width: 350px;
  height: 350px;
  background-color: transparent;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}
.section-3 p {
  font-size: 20px;
  font-weight: 400;
  text-align: center !important;
}
.section-3 h2 {
  font-family: "Tilda Sans VF", sans-serif;
  font-size: 52px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .section-3 h2 {
    font-size: 28px;
  }
  .section-3 p {
    font-size: 15px;
  }
  .index-colum {
    max-width: 320px !important;
    height: auto !important;
    display: flex;
    padding: 0 !important;
  }
  .index-colum p,
  .index-colum h4 {
    padding-left: 10px;
    text-align: left !important;
  }
  .index-colum img {
    width: 110px !important;
  }
}

.section-3 .column-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 260px !important;
  text-align: center;
}

.column-about p {
  width: 80%;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.column-about img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .column-about p {
    font-size: 14px;
    max-width: 155px;
    width: 100%;
  }
  .column-about img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }
  .section-3 .column-about {
    margin-bottom: 10px;
    width: 165px !important;
    height: auto !important;
    padding: 0;
  }
}

.content p,
.content h2,
.content h4 {
  color: #ffffff;
}
h2.uppercase {
  text-transform: uppercase;
  color: #ffffff;
}
.uppercase p {
  color: #ffffff;
}
.left-img {
  width: 400px;
  margin-left: -150px;
  margin-top: -170px;
}
.right-img {
  width: 400px;
  margin-right: -151px;
  margin-top: -315px;
}

@media (max-width: 768px) {
  .left-img {
    margin-left: -20px;
    margin-top: 13px;
  }
  .right-img {
    margin-right: -15px;
    margin-top: -11px;
  }
}
/* о холестерине */

.image-container-about {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
  font-weight: 400;
  transform: rotate(180deg);
}

.image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-block img {
  padding-bottom: 0 !important;
  width: 180px;
  height: auto;
}

.horizontal-text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}
.holesterin img {
  max-width: 490px;
  width: 100%;
}

.about-text-right {
  text-align: right !important;
}

/* термины и значения */

.terms {
  color: #ffffff;
}

.terms-list {
  padding: 0 40px;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .terms-list {
    padding: 0 16px;
    font-size: 15px;
  }
}

.terms-list {
  position: relative;
}

.terms-list li {
  padding-bottom: 25px;
  border-bottom: 1px solid #fcb634;
  margin-bottom: 30px;
  position: relative;
}

.terms-list li::after {
  content: url("/assets/img/forward.png");
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.terms-list a:not(.collapsed) li::after {
  transform: translateY(-50%) rotate(90deg);
}

.custom-li li {
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom: none;
}

.custom-li li::after {
  content: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.custom-li li {
  list-style-type: disc;
}

.terms-list-1 {
  font-weight: 400;
  font-family: "Roboto";
  font-size: 18px;
  padding: 0 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .terms-list-1 {
    padding: 0 16px;
    font-size: 15px;
  }
}

/* риски */

.risk .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.background-risk,
.background-risk-1,
.background-risk-2 {
  height: 400px;
  width: 100%;
  max-width: 460px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.background-risk p,
.background-risk-1 p,
.background-risk-2 p {
  margin-top: 120px;
  font-size: 18px;
  color: #ffffff;
  width: 60%;
  height: 140px;
  text-align: center;
}

.background-risk {
  background-image: url("/assets/img/risk-1.png");
}

.background-risk-1 {
  background-image: url("/assets/img/risk-2.png");
}

.background-risk-2 {
  background-image: url("/assets/img/risk-3.png");
}

.risk-fs {
  font-family: "Tilda Sans VF";
  font-size: 28px !important;
  font-weight: 600 !important;
}

.risk-column {
  text-align: left;
  color: #ffffff;
}

@media (max-width: 768px) {
  .risk-fs {
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  .risk1 {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .risk-column {
    text-align: center;
  }
}
.bg-white {
  background-color: #ffffff;
}
.risk-column h4 {
  font-family: "Tilda Sans VF", sans-serif;
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 30px;
  color: #fcb634;
}
.triangle-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 60px auto;
}

.triangle-item.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 255px;
  height: 255px;
}

.triangle-item.left {
  bottom: 10%;
  left: -40%;
  width: 210px;
  height: 210px;
}
.triangle-item.bottom {
  bottom: -13%;
  right: 36%;
  width: 185px;
  height: 185px;
}
@media (max-width: 768px) {
  .triangle-container {
    height: 180px;
  }

  .triangle-item.top {
    top: 0;
    left: 64%;
    transform: translateX(-50%);
    width: 122px;
    height: 122px;
  }

  .triangle-item.left {
    bottom: 6%;
    left: 0%;
    width: 102px;
    height: 102px;
  }
  .triangle-item.bottom {
    bottom: -20%;
    right: 41%;
    width: 90px;
    height: 90px;
  }
  .three-risk {
    flex-wrap: wrap;
  }
}
.triangle-item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.triangle-item img {
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.triangle-item.top img {
  width: 100%;
  height: 100%;
}

.triangle-item.left img {
  width: 100%;
  height: 100%;
}

.triangle-item.bottom img {
  width: 100%;
  height: 100%;
}
/* терапия */
.border-therapy {
  border-top: 3px solid #fcb634;
  border-bottom: 3px solid #fcb634;
}

.therapy {
  padding-left: 160px;
  /* padding: 0 110px; */
  padding-top: 20px;
}

.therapy-title {
  text-transform: uppercase !important;
  font-size: 32px !important;
}

.therapy-text {
  margin-top: 16px;
  font-size: 26px !important;
  line-height: 30px;
  font-weight: 600;
  font-family: "Tilda Sans VF";
}
@media (max-width: 768px) {
  .therapy-text {
    font-size: 20px !important;
    line-height: 120%;
  }
}
@media (max-width: 768px) {
  .therapy {
    padding: 0;
    margin: 0 auto !important;
    text-align: center;
  }
  .therapy img {
    padding-bottom: 20px !important;
  }

  .therapy-title {
    text-align: center !important;
    font-size: 22px !important;
  }
}
/* --- Для мобильных устройств --- */
/* .swiper-container {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;  
}

.swiper-slide {
  flex: 0 0 100vw;  
  display: flex;
  justify-content: center;
  align-items: center;
}

 
@media (min-width: 768px) {
  .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;  
  }

  .swiper-slide {
    flex: 0 0 100vw;
    width: 100vw;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;  
  }
} */

/* .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.swiper-slide {
  flex: 0 0 25%; 
  display: flex;
  justify-content: center;
  align-items: center;
} */

.swiper-container {
  display: block;
}
/* .grid-container {
  display: flex;
  flex-wrap: wrap;  
  gap: 20px;
  justify-content: center;
  align-items: center;
}

 
.grid-item {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
 
.grid-item:nth-child(5),
.grid-item:nth-child(6),
.grid-item:nth-child(7) {
  flex: 0 0 33.33%;
  max-width: 33.33%;
} */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.swiper-wrapper {
  /* padding: 0 30px; */
  display: flex;
  flex-wrap: wrap;
}
/* @media (max-width: 768px) {}
.swiper-wrapper {
    padding: 0 30px;  
}
  */

@media (max-width: 768px) {
  .grid-container {
    display: none;
  }

  .swiper-container {
    display: block; /* Показываем Swiper */
    max-width: 100%;
    overflow: hidden;
  }

  .swiper-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .swiper-wrapper {
    margin-bottom: 80px;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
    right: 0;
    top: 605px;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #fcb634;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
}
.swiper-container1 {
  position: relative;
  width: 100%;
  max-width: 1000px !important;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-slide {
  flex: 0 0 25%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

/* --- КРУГЛЫЕ СТРЕЛКИ --- */

.swiper-button-prev {
  left: 0;
}

/* Цвет стрелочек внутри круга */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #fcb634;
}

/* --- ПАГИНАЦИЯ --- */
.swiper-pagination-bullet {
  background-color: #fcb634;
  opacity: 0.7;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Активная точка */
.swiper-pagination-bullet-active {
  background-color: #fcb634;
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper-container {
    max-width: 100%;
    /* padding-bottom: 60px; */
    overflow: hidden;
  }

  .swiper-slide {
    flex: 0 0 auto;
    width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 56px;
    height: 56px;
    bottom: -40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }

  .swiper-pagination {
    top: 593px !important;
    left: 80px !important;
    width: 50% !important;
    bottom: -50px;
  }
}

.slide1 {
  display: flex;
  flex-wrap: nowrap;
}

@media (max-width: 1000px) {
  .slide1 {
    display: block;
  }

  .slide1 .swiper-button-next::after,
  .slide1 .swiper-button-prev::after {
    font-size: 20px;
    color: #ffffff;
  }

  .slide1 .swiper-pagination-bullet {
    background-color: #ffffff;
  }

  .slide1 .swiper-pagination-bullet-active {
    background-color: #ffffff;
  }

  .slide1 .swiper-button-next,
  .slide1 .swiper-button-prev {
    top: 575px;
    border: 2px solid #ffffff;
  }

  .slide1 .swiper-pagination {
    top: 575px !important;
  }
}

.button-container {
  position: relative;
  display: inline-block;
}

.curved-line {
  position: relative;
  top: -115px;
  /* left: 546px; */
  /* transform: translate(-50%, -50%); */
  z-index: 1;
  width: 100%;
}

.curved-line {
  display: block;
  position: relative;
  top: -115px;
  /* left: 546px; */
  /* transform: translate(-50%, -50%); */
  z-index: 1;
  width: 100%;
}
.curved-line1 {
  display: none;
  position: relative;
  top: -70px;
  /* left: 546px; */
  /* transform: translate(-50%, -50%); */
  z-index: 1;
  width: 100%;
}
.img-fluid.boy {
  padding: 0;
  margin-bottom: 20px;
  margin-top: -50px;
}

@media (max-width: 768px) {
  .curved-line {
    display: none;
  }
  .curved-line1 {
    display: block;
  }
  .img-fluid.boy {
    display: none;
  }
  .custom-mob {
    justify-content: center;
  }
  .custom-mob img {
    width: 160px;
  }
  .fs-24-mob {
    font-size: 24px !important;
  }
}
.info1-block {
  height: 445px;
}
.info h2 {
  display: block !important;
  padding-top: 127px;
  color: #000;
}

.info2 {
  margin-top: 86px;
}
@media (max-width: 768px) {
  .info h2 {
    padding-top: 10px;
  }
  .info1 {
    display: none;
  }
  .info2 {
    display: none;
  }
}
.bg-img {
  background: url("/assets/img/vector-6.svg") center no-repeat;
}

@media (max-width: 768px) {
  .bg-img {
    background: url("/assets/img/line_mob.png") no-repeat;
  }
  .info2 {
    display: none;
  }
  .width-desktop {
    padding-left: 75px;
  }
}

.circl,
.circl1 {
  position: relative;
}
.circl::before {
  right: 110%;
  top: 190%;
  position: absolute;
  content: url("/assets/img/circle.png");
}

.circl1::after {
  left: 110%;
  top: 120%;
  position: absolute;
  content: url("/assets/img/circle.png");
}

h2.circl,
h2.circl1 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .circl1::after {
    display: none;
  }

  .circl::before {
    content: "";
    position: absolute;
    right: 112%;
    top: 135px;
    width: 40px;
    height: 40px;
    background: url("/assets/img/circle.png") no-repeat center;
    background-size: contain;
  }
  .section1 .content h2.circl1::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("/assets/img/circle.png") no-repeat center;
    background-size: contain;
  }

  .section1:nth-of-type(2) .content h2.circl1::before {
    right: 110%;
    top: 190%;
  }

  .section1:nth-of-type(4) .content h2.circl1::before {
    right: 118%;
    top: 119px;
  }

  .section1:nth-of-type(6) .content h2.circl1::before {
    right: 105%;
    top: 170%;
  }

  .section1:nth-of-type(8) .content h2.circl1::before {
    right: 117%;
    top: 285%;
  }

  h2.circl,
  h2.circl1 {
    margin-bottom: 5px;
  }
  .pb-mob-0 {
    padding-bottom: 0 !important;
  }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 500px));
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.video-card {
  position: relative;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(217, 217, 217);
  box-shadow: 2px 2px 10px rgba(202, 190, 190, 0.88);
}

.video-card iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
}
/* span.border-line {
} */
/* span.border-line {
  display: block;
  height: 10px;

  background-repeat: no-repeat;
  background-image: url(/assets/img/border-line.png);
  position: relative;
  top: 0;
  left: 110px;
} */
.border-line-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.line-under {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.video-text {
  left: 150px;

  top: 150px;
  position: absolute;
}
.line-border {
  text-align: left !important;
}
p.line-border {
  text-align: left !important;
}
.video-card.update {
  width: 100%;
  max-width: 490px;
}

@media (max-width: 768px) {
  .only-desc {
    display: none;
  }
  .text-content.about.video h1 {
    font-size: 27px;
  }
}
