body,
html {
  overflow-x: hidden;
}
body {
  margin: 0;
}

/* slider */
.mainslider {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
.slider-big {
  margin: 0;
}
.slider-big .slick-track {
  height: 100%;
}
.slider-big .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.slider-big .item {
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  text-decoration: none !important;
  position: relative;
}
.slider-big .item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 9;
}
.slider-big .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  outline: 0px;
  -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.2);
  transform: scale(1.2);
}
.slider-big .item.slick-active img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mainslider .slick-list {
  height: 100vh;
}
.mainslider .slider-thumbs {
    position: absolute;
    bottom: 30px;
	left: 0;
	right: 0;
    z-index: 1;
}
.mainslider .slider-thumbs .item {
  padding: 0px 9px;
  display: block;
  border: none;
	display: none;
}
.mainslider .slider-thumbs .item:focus {
  outline: none;
}
.mainslider .slider-thumbs .item h6 {
  margin: 0;
  width: 100%;
  display: block;
  width: auto;
  display: inline-flex;
  outline: 0px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Quicksand";
  border-left: 3px solid transparent;
  padding-left: 20px;
  text-transform: capitalize;
}
.mainslider .slider-thumbs .slick-active.item h6 {
  border-left: 3px solid #ffffff;
  color: #ffffff;
}
ul.slick-dots
{
	padding: 0;
	margin: 0;
	text-align: center;
	display: none !important;
}
ul.slick-dots li
{
	display: inline-block;
	margin: 0 5px;
}
ul.slick-dots li button
{
    font-family: "Archivo", sans-serif;
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.slick-dots li.slick-active button
{
    background: rgba(249, 29, 71, 0.6);
	transform: translateY(-10px);
}
.caption
{
    position: absolute;
    width: 100%;
    top: 40%;
    left: 0px;
	right:0;
	margin:auto;
    z-index: 999;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	text-align:center;
	padding:0 20px;
}
.caption > div
{

}
.caption h3
{
	font-family: "Playball", cursive;
	color: #fff;
	font-size: 30px;
}
.caption h2
{
	font-family: "Train One", system-ui;
	color: #fff;
	font-size: 70px;
}
/* Transitions */
.activate
{
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1 * 100);
	filter: alpha(opacity=1 * 100);
}
.activate .wow
{
	visibility: visible !important;
}
.animated {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
	filter: alpha(opacity=0 * 100);
}
/*Line Drop Animation*/
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
	display: none;
}
.line {
  height: 100vh;
  width: 1.5px;
  position: absolute;
  content: "";
  background-color: rgb(238 238 238 / 15%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.line:nth-child(1) {
  margin-left: -33.34%;
}
.line:nth-child(2) {
  margin-left: -16.67%;
}
.line:nth-child(3) {
  margin-left: 0;
}
.line:nth-child(4) {
  margin-left: 16.67%;
}
.line:nth-child(5) {
  margin-left: 33.34%;
}
/* animation */
.line::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%; /* height: 138px; */
  height: 15vh;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(75%, #f11d47),
    to(#f11d47)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #f11d47 75%,
    #f11d47 100%
  );
  -webkit-animation: run 05s 0s infinite;
  animation: run 05s 0s infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: none;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@-webkit-keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.lines .line:nth-child(2)::after {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

/* Media */
@media (max-width: 575px) {
  .mainslider .slider-thumbs {
    bottom: 20%;
  }
}