.tab-wrap {
  display: flex;
  margin-bottom: 25px;
  overflow: auto;
}
.tab-item {
  --background: #A0A0A4;
  --border: #A0A0A4;
  flex-shrink: 0;
  margin-bottom: 15px;
}
.tab-item:not(:last-child) {
  margin-right: 20px;
}
.tab-item.active {
  --background: #14191B;
  --border: #14191B;
  pointer-events: none;
}
.tab-item:hover {
  --borderHover: #14191B;
  --colorHover: #14191B;
}
.tab-column {
  display: flex;
  justify-content: space-between;
}
.tab-image {
  width: 46.1%;
  margin-right: 60px;
  position: sticky;
  top: 162px;
  height: 100%;
}
.tab-image:before {
  content: "";
  padding-bottom: 74%;
  display: block;
}
.tab-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tab-text {
  flex: 1;
}

@media (max-width: 1024px) {
  .tab-image {
    top: 100px;
  }
}
@media (max-width: 992px) {
  .content-image {
    width: 50%;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .tab-column {
    flex-direction: column-reverse;
  }
  .tab-image {
    margin: 30px auto 0;
  }
}
@media (max-width: 592px) {
  .tab-image {
    width: 90%;
  }
}/*# sourceMappingURL=block.css.map */