.i-case-study-carousell .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.i-case-study-carousell .swiper-body--overflow-hidden .swiper {
  overflow: hidden;
}
.i-case-study-carousell .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.i-case-study-carousell .swiper-slide {
  height: auto;
}

.i-case-study-carousell-header h2 {
  color: #313131;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 80px;
}

.i-case-study-image {
  position: relative;
  width: 100%;
  padding-bottom: 52%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.i-case-study-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i-case-study-label {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 50px;
  padding: 11px 16px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  background: rgba(33, 33, 33, 0.5);
}
.i-case-study-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
  color: #313131;
}
.i-case-study-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(31, 31, 31, 0.8);
  margin-bottom: 0;
}
.i-case-study-content {
  min-height: var(--content-min-height-desktop);
}
.i-case-study-link {
  color: var(--e-theme-color-secondary) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 32px;
  margin-top: 16px;
}
.i-case-study-carousell .swiper-navigation {
  position: absolute;
  top: 7px;
  right: 0;
  margin: 0;
}
.i-case-study-carousell .swiper-button-next,
.i-case-study-carousell .swiper-button-prev {
  margin-right: 0;
  margin-left: 8px;
}

.i-case-study-scopes {
  margin-bottom: 12px;
  color: var(--green, #7acd17);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  column-gap: 16px;
  row-gap: 8px;
}
.i-case-study-label-scope {
  display: inline-block;
}

@media (max-width: 767px) {
  .i-case-study-content {
      min-height: var(--content-min-height-mobile);
  }
  .i-case-study-carousell .swiper-navigation {
    display: none;
  }
  .i-case-study-carousell .swiper-body {
    padding-right: 8px;
  }
}

/* Dark Theme */
.i-case-study-carousell--theme-dark .i-case-study-carousell-header h2 {
  color: #d1f1ab;
}
.i-case-study-carousell--theme-dark .i-case-study-title {
  color: #fff;
}
.i-case-study-carousell--theme-dark .i-case-study-text {
  color: rgba(255, 255, 255, 0.8);
}
.i-case-study-carousell--theme-dark .i-case-study-scopes {
  color: #d1f1ab;
}
.i-case-study-carousell--theme-dark .i-case-study-link {
  color: #d1f1ab !important;
}

.i-case-study-carousell .swiper-button-disabled {
	display: none;
}

/*

Case Study Hero

*/
.i-case-study-carousell--layout-hero {
  padding: 0 0 75px 0;
}
.i-case-study-hero .i-case-study-image {
  padding-bottom: 115%;
}
.i-case-study-hero {
  transition: all 0.3s ease-in-out;
}
.i-case-study-carousell--layout-hero .i-move-bottom .i-case-study {
  transform: translate3d(0, 75px, 0);
}

.i-case-study-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s ease;
	opacity: 0;
}

/* Video Hover */
.i-case-study-image img {
  transition: .5s ease;
}
.i-case-study:hover .i-case-study-image img {
	transform: scale(1.1);
}
.i-case-study.i-hover-video:hover .i-case-study-video {
	transform: scale(1.1);
	opacity: 1;
}

.i-case-study-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.i-case-study-carousell--layout-hero a:hover img {
  transform: scale(1.1);
}
.i-case-study-carousell--layout-hero a:hover video {
  transform: scale(1.1);
  opacity: 1;
}