/* colors */
/* easing bezier */
/* layout vars */
/* TABS WITH IMAGE MODULE */
@keyframes fadein-tab-img {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs-with-image {
  display: grid;
  gap: 20px;
}
@media screen and (min-width : 68.75em) {
  .tabs-with-image {
    gap: 40px;
  }
}
.tabs-with-image .image-container img {
  border-radius: 20px;
  aspect-ratio: 1220/680;
  object-fit: cover;
  animation: fadein-tab-img 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.tabs-with-image .tab-item {
  padding: 20px;
}
.tabs-with-image .tab-item.active {
  box-shadow: 0px 12px 34px 0px rgba(0, 0, 0, 0.05);
  background-color: white;
  border-radius: 15px;
}

@media screen and (min-width : 48em) {
  .tabs-with-image.tab-counter-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tabs-with-image.tab-counter-2 .image-container {
    grid-column: 1/span 2;
  }
  .tabs-with-image.tab-counter-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tabs-with-image.tab-counter-3 .image-container {
    grid-column: 1/span 3;
  }
}
