.custom-case-study-wrapper {
  padding: 0px 80px 0px 80px;
}

.custom-case-study-slider {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 720px;
  width: calc(100vw - (100vw - 100%));
/*   width: 100vw; */
  padding: 20px 0px;
/*   overflow: hidden; */
}

.custom-case-study-slider a.slick-slide {
  width: 900px;
  height: 500px;
  margin-right: 88px;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: justify;
  justify-content: space-between;
  box-shadow: rgba(0,0,0,0.3) 0px 0px 10px;
  padding: 20px 0px 0px 20px;
  border-radius: 10px;
  transition: all .2s ease-in-out 0s;
  margin-left: 12px;
  text-decoration: none;
}

.custom-case-study-slider a.slick-slide .content {
  flex: 1;
  margin: auto 0px;
}

.custom-case-study-slider a.slick-slide .content h5.desktop-content {
  display: none;
}

.custom-case-study-slider a.slick-slide .content h5.mobile-content {
  display: none;
}

.custom-case-study-slider a.slick-slide .content h5 {
  font-family: Montserrat-Regular, sans-serif;
  color: white;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

.custom-case-study-slider a.slick-slide .content h3 {
  color: white;
  font-size: 30px;
}

.custom-case-study-slider a.slick-slide .content p {
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 26.1px;
}

.custom-case-study-slider a.slick-slide .img-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.custom-case-study-slider a.slick-slide .img-wrap img {
  max-height: 100%;
  max-width: 100%;
}

.custom-case-study-slider a.slick-slide .img-wrap img.desktop-content {
  display: inherit;
}

.custom-case-study-slider a.slick-slide .img-wrap img.mobile-content {
  display: none;
}

.custom-case-study-slider .slick-arrow {
  position: absolute;
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  z-index: 2;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 3px;
  display: flex;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
  text-align: center;
  padding: 0;
  z-index: 9;
}

.custom-case-study-slider .slick-list.draggable {
  overflow: visible;
}

.custom-case-study-slider a.slick-slide:hover {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
}

.custom-case-study-slider .slick-arrow.slick-prev {
  transform: scaleX(-1);
  left: 30px;
  background-color: rgb(255, 255, 255);
}

.custom-case-study-slider .slick-arrow.slick-next {
  right: 30px;
  background-color: rgb(255, 255, 255);
  left: auto;
  margin-top: 30px;
}

.custom-case-study-slider .slick-arrow:hover svg g g {
  fill: rgb(25, 25, 25);
}

.custom-case-study-slider .slick-arrow svg {
  width: 10px;
  margin: -20px 0 0 27px;
  transition: all 0.2s ease-in-out 0s;
  display: block;
  margin: auto 0px auto 27px;
}

.custom-case-study-slider .slick-arrow svg g g {
  fill: rgb(112, 111, 103);
}

.custom-case-study-slider .slick-arrow:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  opacity: 0.8;
}

.custom-case-study-slider .slick-arrow.slick-next svg {
  margin: -20px 0 0 27px;
  margin: auto 0px auto 27px;
}

.custom-case-study-slider .slick-arrow:before {
  display: none;
}

.custom-case-study-slider-inner { display: none; }
.custom-case-study-slider-inner.slick-initialized { display: block; }

{# CSS styles applied when the visitor is using a smartphone, an old tablet, ... #}
@media only screen and (max-width: 1024px){
  
  .custom-case-study-slider {
    height: 300px;
    padding: 0px;
  }
  
  .custom-case-study-slider a.slick-slide {
    width: 300px;
    height: 200px;
    padding: 0px;
    margin-left: 0px;
    margin-right: 30px;
    flex-direction: column;
  }
  
  .custom-case-study-slider a.slick-slide .content {
    width: 300px;
  }
  
  .custom-case-study-slider a.slick-slide .content h5 {
    font-size: 12px;
    text-align: center;
    padding-top: 15px;
  }
  
  .custom-case-study-slider a.slick-slide .content h5.desktop-content {
    display: none;
  }

  .custom-case-study-slider a.slick-slide .content h5.mobile-content {
    display: inherit;
  }
  
  .custom-case-study-slider a.slick-slide .content h3 {
    display: none;
  }
  
  .custom-case-study-slider a.slick-slide .content p {
    display: none;
  }
  
  .custom-case-study-slider a.slick-slide .img-wrap {
    height: 160px;
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .custom-case-study-slider a.slick-slide .img-wrap img {
    max-width: 100%;
    height: auto;
  }
  
  .custom-case-study-slider a.slick-slide .img-wrap img.desktop-content {
    display: none;
  }

  .custom-case-study-slider a.slick-slide .img-wrap img.mobile-content {
    display: inherit;
  }
  
  .custom-case-study-slider .slick-arrow.slick-prev {
    left: -30px;
  }
  
  .custom-case-study-slider .slick-arrow.slick-next {
    right: -30px;
  }
  
}