
 ul.bannerSlider{
	padding-left:0;
	margin: 0px;
  }
  .bannerSlider{
	  height: 530px;
  }
  .bannerSlider .slide__image::before{
	  content: "";
	  position: absolute;
	  width: 100%;
	  height: 530px;
	  background: rgba(255,255,255,.5);
  }
  .bannerSlider .slick-slide {
	  position: relative;
  }
  .bannerSlider .slide__image img {
	  width: 100%;
	  height: 530px;
	  object-fit:cover;
  }
  img.slide__image__top-position {
	  object-position:center bottom;
  }

  .slide__image img{
	width: 100%;
	-webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-transition: opacity 2s ease-in;
    -moz-transition: opacity 2s ease-in;
    -o-transition: opacity 2s ease-in;
    -ms-transition: opacity 2s ease-in;
    transition: opacity 2s ease-in;
  }

  .bannerSlider .slick-active .slide__image img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
	animation: cssAnimation 8s 1 ease-in-out forwards;
  }
  
  @keyframes cssAnimation {
	from {
	  -webkit-transform: scale(1) translate(0px);
	  opacity: 0.5;
	}
	to {
		opacity: 1;
	  -webkit-transform: scale(1.3) translate(0px);
	}
  }
  
  /***Slider Text***/
.bannerSlider .slide__text h2 {
	font-family: 'Red Hat Display', sans-serif;
	font-size: 40px;
	padding: 0 0px;
	line-height: 40px;
	color: #d11044;
	text-decoration: unset;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
	margin: 10px 0px;
  }

.bannerSlider .slide__text {
	position: absolute;
	z-index: 100;
	text-align: center;
	width: 100%; 
	top: 50%;
    height: 265px;
    margin-top: -50px;
}

.bannerSlider .slick-active .slide__text 
{
animation: slideInRight 4s;
animation-fill-mode:forwards;
}

.viewcatbtn {
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #d11044;
    display: inline-block;
    margin: 20px auto;
    text-decoration: none;
    padding:10px 30px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    border-radius: 6px;
}

@keyframes slideInRight {
	0% {
		  transform: translateX(-100px);
		  opacity: 0;
		}
	50% {
		  opacity: 0.2;
	    }
	80% {
		  opacity: 0.6;
	    }
	100% {
		  transform: translateX(0);
		  opacity: 1
		}
	  }

@media (max-width:767px)
{
	.bannerSlider .slide__text h2 {
		font-size: 32px;
		line-height: 32px;
	}
	.bannerSlider .slide__text {
		height: 200px;
		top:40%;
	}
}
