/* ================================
            STYLE SLIDE
==================================*/
.sc__slide {
  width: 100%;
}
.bg-slide.primary {
  background: linear-gradient(to right, #ffffff 40%, #006a9e 40%);
}
.bg-slide.default {
  background: linear-gradient(to right, #ffffff 40%, #0099d1 40%);
}
.bg-slide.secundary {
  background: linear-gradient(to right, #ffffff 40%, #00546c 40%);
}

.sc__slide-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

@media (min-width: 320px) {
  .sc__slide-img {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .sc__slide-img::after {
    content: "";
    background: url("../images/overlay.png") no-repeat right bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: -1px;
  }
  .sc__slide-img {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background: linear-gradient(to right, #f6f6f6 90%, #006a9e 10%);
    position: relative;
  }
}
@media (min-width: 1024px) {
  .sc__slide-img {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .sc__slide-img::after {
    /* margin-bottom: 24px; */
    bottom: 0;
  }
  .sc__slide-img img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    margin: 24px 0 24px auto;
  }
}
.sc__slide-img figure {
  width: 100%;
}
.sc__slide-desc {
  max-width: 490px;
  margin-left: 65px;
}
.sc__slide-desc .sc__slide-title {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 28px;
  margin-bottom: 65px;
}
/* hack */
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
/* ============================
        MOBILE SLIDE
=============================*/
@media (min-width: 320px) and (max-width: 768px) {
  .sc__slide-content {
    display: block;
    background: #006a9e;
    padding: 16px 0;
  }
  .sc__slide-desc .sc__slide-title {
    font-size: 21px;
    padding: 24px 0;
    margin-bottom: 15px;
  }
  .sc__slide-desc {
    margin-left: 0;
    padding: 16px;
  }
}
