/* Стили для страницы Консультаций */

.consultation-section {
  padding: 60px 0 86px;
  background: linear-gradient(
    to bottom,
    rgb(168 215 255 / 0.05) 0%,
    rgb(255 194 36 / 0.09) 100%
  );
}

.consultation-section .breadcrumb {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.consultation-section .breadcrumb li {
  padding-right: 20px;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
}

.consultation-section .breadcrumb li a {
  font-weight: 500;
  font-family: var(--topas63-default);
}

.consultation-section .breadcrumb li::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  right: 5px;
  position: absolute;
  line-height: 0;
  top: 50%;
  font-size: 14px;
  color: var(--topas63-gray);
  margin-top: 2px;
}

.consultation-section .breadcrumb > li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  padding: 0 5px;
  color: var(--topas63-white);
  display: none;
}

.consultation-section .breadcrumb li i {
  margin-right: 3px;
  font-weight: 100;
}

.consultation-section .breadcrumb li:last-child::after {
  display: none;
}

.questions-box {
    background-color: #f8fafd;
    border-left: 4px solid var(--topas63-base);
}

.questions-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
}

.consult-list {
    list-style: none;
    padding: 0;
}

.consult-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.consult-list li::before {
    content: "\f058"; /* Галочка FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Видео контейнер */
.video-diagnostic-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.video-header {
    background: #052143; /* Ваш фирменный темно-синий */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Формат 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-box .thm-btn-two {
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-content .lead{
    padding-bottom: 15px;
}

.consultation-content .alert{
    margin-top: 10px;
}

@media (max-width: 991px) {
    .consultation-content {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .consultation-section {
        padding: 10px 0 10px !important
    }
}