.shoqan_wrapper {
  position: absolute;
  pointer-events: none;
  /* height: 100%; */
  bottom: 0;
  right: 0;
  margin-right: -630px;
  margin-bottom: -20px;
  filter: saturate(50%);
}
.shoqan_wrapper .U_,
.shoqan_wrapper .alikhanov,
.shoqan_wrapper .niversity,
.shoqan_wrapper .shoqan_year {
  display: none;
}
.shoqan_wrapper .logo-full svg {
  min-width: 720px;
  width: 720px;
  height: 200px;
}

.cols_with_video .col-12.col-lg-3 {
  display: flex;
  flex-direction: column;
}

/*--------------- Information_card ---------------------- */

.cardInfos {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
  width: 100%;
}

.card-uni {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--gray-color), 0.3);
  background: rgb(var(--white-color));
  display: flex;
  flex-direction: column;
}

/* Шапка карточки */
.card-header {
  background: rgb(var(--blue-color));
  padding: 18px 26px 16px;
  position: relative;
  overflow: hidden;
}

.card-header::before,
.card-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.card-header::before { right: -30px; top: -40px; width: 120px; height: 120px; }
.card-header::after  { right: 20px; bottom: -20px; width: 70px; height: 70px; }

.card-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.card-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* Тело карточки */
.card-body {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-body {
  padding-bottom: 0;
}

.mission-text {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Ценности */
.section-title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(var(--blue-color));
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(var(--gray-color), 0.4);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.values-list li {
  background: #eef3fc;
  color: rgb(var(--blue-color));
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1px solid #c8d8f5;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}

.values-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--bronze-color));
  flex-shrink: 0;
}

.values-list li:hover {
  background: rgb(var(--blue-color));
  color: #fff;
  border-color: rgb(var(--blue-color));
  transform: translateY(-2px);
}

/* Блок с изображением */
.card-image-block {
  margin-top: auto;
  border-radius: 0 0 19px 19px;
  overflow: hidden;
  height: 185px;
}

.card-image-block img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* Адаптив */
@media (max-width: 768px) {
  .cardInfos { flex-direction: column; }
}


/*--------------- Information_block ---------------------- */


/* ===== СЕТКА ===== */
.ib-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ===== КОЛОНКА СТАТИСТИКИ ===== */
.ib-col {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ib-stat {
  flex: 1;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #f0f2f8;
  position: relative;
}

.ib-stat:last-child {
  border-bottom: none;
}

/* Акцент-полоска слева */
.ib-accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 40%;
  background: rgb(var(--blue-color), 1);
  border-radius: 0 3px 3px 0;
}

/* Правая колонка — полоска справа */
.ib-col--right .ib-accent {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.ib-num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  color: rgb(var(--blue-color), 1);
}

.ib-col--right .ib-num {
  color: rgb(var(--blue-color), 1);
}

.ib-name {
  display: block;
  font-size: 18px;
  color: #8892a4;
  margin-top: 5px;
  line-height: 1.4;
  font-weight: 400;
}

/* ===== ВИДЕО ===== */
.ib-video {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.ib-video__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.ib-video__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ib-video__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 1;
}

.ib-video__link:hover .ib-video__overlay {
  background: rgba(0, 0, 0, 0.18);
}

.ib-video__link:hover .ib-play {
  -webkit-transform: translate(-50%, -50%) scale(1.09);
  transform: translate(-50%, -50%) scale(1.09);
}

.ib-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
}

.ib-play__arrow {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 19px solid #1a56db;
  margin-left: 5px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 860px) {
  .ib-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .ib-video {
    grid-column: span 2;
    min-height: 220px;
  }
}

@media (max-width: 500px) {
  .ib-grid {
    grid-template-columns: 1fr;
  }
  .ib-video {
    grid-column: span 1;
    min-height: 200px;
  }
  .ib-num {
    font-size: 32px;
  }
}
