

/* Start:/bitrix/templates/omega/components/bitrix/catalog.section/.default/style.css?17757411726858*/
:root {
  --primary-teal: #0aa0ae;
  --light-teal: #e6f9fa;
  --accent-red: #ff0000;
  --text-dark: #333;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Анимация появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iv-animated {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.iv-container {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 auto;
}
.iv-container .button_wrapper a.btn_red {
  margin: 0;
  margin-bottom: 1rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.iv-container img {
  border-radius: 30px;
  margin-top: 25px;
}
/* Иконки */
.iv-svg-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-teal);
  flex-shrink: 0;
}
/* Увеличенная иконка для заголовков */
.iv-svg-icon-large {
  width: 36px;
  height: 36px;
  fill: var(--primary-teal);
  flex-shrink: 0;
}

/* Блок 1 */
.iv-hero {
  background: linear-gradient(135deg, var(--light-teal) 0%, #fff 100%);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(10, 160, 174, 0.2);
  display: flex;
  flex-direction: column;
  animation-delay: 0.1s;
}
.iv-hero h2 {
  color: var(--primary-teal);
  font-size: 2.5rem;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}
.iv-hero p:last-child {
  margin-bottom: 0 !important;
}
.iv-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.iv-benefits li {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.iv-benefits li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
h2 .iv-benefits b {
  color: var(--primary-teal);
}
.button_wrapper {
  display: flex;
  justify-content: center;
}
.button_wrapper a.btn_red {
  margin-top: 25px;
}
/* Блок 2 */
.iv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 40px 0;
}
.iv-flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 25px 0;
}
.iv-card {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.iv-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 10px 30px rgba(10, 160, 174, 0.1);
}

.iv-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.iv-card-header h3 {
  color: var(--primary-teal);
  margin: 0 !important;
  font-size: 1.3rem;
}

.iv-card ul {
  padding-left: 15px;
  margin: 0;
  list-style-type: none;
}
.iv-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.iv-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-teal);
}

/* Блок 3: Шаги */
.iv-steps {
  background: #fafafa;
  border-radius: 30px;
  padding: 40px;
  border: 2px dashed #eee;
}

.iv-step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.iv-step-item:first-child {
  margin-top: 30px;
}
.iv-step-num {
  background: var(--primary-teal);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(10, 160, 174, 0.3);
}

.iv-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.iv-detail-card {
  background: var(--white);
  border: 2px solid var(--light-teal);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(10, 160, 174, 0.05);
}
.iv-detail-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 8px 25px rgba(10, 160, 174, 0.15);
  transform: translateY(-5px);
}

.iv-detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.iv-detail-header h3 {
  margin: 0;
  color: var(--primary-teal);
  font-size: 1.4rem;
}

.iv-detail-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.iv-detail-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* SVG галочка через CSS */
.iv-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230aa0ae'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.iv-cta {
  text-align: center;
  margin: 60px 0;
  animation-delay: 0.5s;
  padding: 30px;
  background: var(--light-teal);
  border-radius: 20px;
}
.iv-images {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.iv-images img {
  width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
  .iv-grid {
    grid-template-columns: 1fr;
  }
  .iv-container,
  .iv-detail-list,
  .iv-benefits {
    padding: 0 !important;
  }
  .iv-detail-card {
    padding: 18px;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  p {
    font-size: 15px;
  }
  .iv-hero {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .iv-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 15px !important;
  }

  .iv-benefits li {
    padding: 12px 14px;
    gap: 10px;
  }

  .iv-svg-icon {
    width: 20px;
    height: 20px;
  }
  .iv-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .iv-card-header {
    gap: 10px;
  }

  .iv-card-header h3 {
    font-size: 1.15rem;
  }

  .iv-card li {
    font-size: 14px;
    padding-left: 14px;
  }
  .iv-steps {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .iv-step-item {
    flex-direction: column;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  }

  .iv-step-item:first-child {
    margin-top: 0;
  }

  .iv-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
  }

  .iv-step-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .iv-step-item div {
    font-size: 14px;
    line-height: 1.5;
  }
  .iv-step-item ul {
    padding-left: 0;
  }

  .iv-step-item li {
    padding-left: 22px;
    font-size: 14px;
  }
}

/* End */


/* Start:/bitrix/templates/omega/components/bitrix/news.list/section_vrach/style.css?1633951376927*/
.item-teem {
    padding: 0px;


    position: relative;
    margin-bottom: 80px;
    transition: 0.5s;
    margin-top: 30px;
}

.img-slide-team img {
    /* border: 8px solid #EBFAFF; */
    border-radius: 20px;
    /* transition: 0.5s; */
}

a.name-team {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    line-height: 130%;
    margin-bottom: 15px;
    margin-top: 15px;
    display: block;
    /* text-align: center; */
    text-decoration: none;
}
a.name-team:hover {
    color: #0aa0ae;
}
.item-teem p {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}


.stag-team span {
    display: block;
    width: 100%;
    font-size: 36px;
    color: #fff;
    margin: 2px 0px;
    font-weight: 700;
}

.item-teem:hover .stag-team {
    /* background: #2465DF; */
    /* transition: 0.5s; */
}

.item-teem:hover a.name-team {
    color: #0aa0ae;
    text-decoration: underline;
}


/* End */


/* Start:/bitrix/templates/omega/components/bitrix/catalog.section/.default/themes/blue/style.min.css?1633683248706*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .catalog-section-header{border-color:#006cc0}
/* End */
/* /bitrix/templates/omega/components/bitrix/catalog.section/.default/style.css?17757411726858 */
/* /bitrix/templates/omega/components/bitrix/news.list/section_vrach/style.css?1633951376927 */
/* /bitrix/templates/omega/components/bitrix/catalog.section/.default/themes/blue/style.min.css?1633683248706 */
