/*body {
  font-family: Montserrat, sans-serif;
  margin: 0;
}*/

.slider__wrapper {
  margin: 0 auto;
}
.slider__wrapper .slick-track {
  overflow: hidden;
}

.slider__content {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  max-height: 90%;
}
.slider__content .slider__text {
  opacity: 0;
  transition: all 1s ease;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 40px;
  position: absolute;
 left: 0;
  width: 40%;
  z-index: 1;
  opacity: 0;
  transition: all 1s linear;
}
.slider__content .slider__text span {
  font-weight: 600;
  font-size: 1.5em;
 /* background: linear-gradient(151deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);*/
 background:#BE210B;
  border-radius: 50%;
  line-height: 35px;
  width: 35px;
  display: block;
  text-align: center;
  color: white;
}
    .slider__content .slider__text h3 {
        color: #000;
        font-weight: 600;
        font-size: 2em;
        display: inline-block;
        margin-bottom: 0;
        text-transform: uppercase;
    }
.slider__content .slider__text h3:after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: linear-gradient(151deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
    .slider__content .slider__text p {
        line-height: 1.8;
       margin-bottom:5px;
        font-size: 15px;
        color: #000;
    }
.slider__content .slider__image {
  width: 100%;
  margin: 0;
  position: relative;
}
.slider__content .slider__image:before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
    .slider__content .slider__image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 80%;
      /*  min-height:420px;*/
      /*  object-fit: cover;*/
        background-position: center;
        background-size: cover;
        transition: all 0.75s ease;
    }

.slick-arrow {
  position: absolute;
  bottom: 2em;
  right: 2em;
  z-index: 2;
  background: linear-gradient(151deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  background-size: 100%;
  border: 0;
  width: 30px;
  height: 25px;
  text-indent: -9999px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  cursor: pointer;
  transition: all 0.5s ease;
}
.slick-arrow:hover {
  background-size: 190%;
}
.slick-arrow.slick-prev {
  right: 5em;
  transform: rotate(-90deg);
}
.slick-arrow.slick-next {
  transform: rotate(90deg);
}

.slick-active .slider__text {
  opacity: 1;
}
.slick-active .slider__image img {
  width: 100%;
}

@media (max-width: 991.98px){
    .slider__content .slider__text {
        padding:5px 10px;
        line-height: 35px;
        width: 75%;
        height: 60%;
    }
        .slider__content .slider__text h3 {
            font-weight: 600;
            font-size: 10px;
            display: inline-block;
            margin-bottom: 0;
        }

        .slider__content .slider__text span {
            font-weight: 600;
            font-size: 10px;
            background: #BE210B;
            border-radius: 50%;
            line-height: 20px;
            width: 20px;
            display: block;
            text-align: center;
            color: white;
        }
        .slider__content .slider__text p {
            line-height: 1.5;
            font-size:10px;
        }

}