/*!
 * Template Name : cover-flow-1
 */

/**********************/
/* Cover Flow 1
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.cover-flow-1.sz-slider {
  background: rgba(0,0,0,.8);
}

/* 2 - Background images wrapper color */
.cover-flow-1.sz-slider .carousel-item .sz-wrapper::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: rgba(0,0,0,.8);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

/* 3 - Background images wrapper color change on active */
.cover-flow-1.sz-slider .carousel-item.active .sz-wrapper::before {
  background: rgba(0,0,0,.4);
}

/**********************/
/* Cover Flow 1
/* Layer Style
/**********************/

/* 1 - Main layer wrapper */
.cover-flow-1-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 98%;
  margin: auto;
  height: 180px;
  display: block;
  position: absolute;
  text-align: center;
}
/* Container */
.cover-flow-1-layer > div {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* 2 - Children of the layer */
.cover-flow-1-layer > div > span {
  color: #fff;
  display: block;
}
/* 3 - First child */
.cover-flow-1-layer > div > span:nth-child(1) {
  font-size: 14.5px;
  font-family: 'Arimo', sans-serif;
}
/* 4 - Second child */
.cover-flow-1-layer > div > span:nth-child(2) {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
}
/* 5 - Button */
.cover-flow-1-layer > div > a {
  color: #fff;
  width: 172px;
  height: 36px;
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  margin: 25px auto 0 auto;
  text-transform: uppercase;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* 6 - Button on hover */
.cover-flow-1-layer > div > a:hover {
  color: #000;
  background: #fff;
}

/* 7 - Media Queries For Responsiveness */

/* 7 - 1 - Smaller than 576px screens */
@media (max-width: 575.98px) {
  /* Main layer wrapper */
  .cover-flow-1-layer {
    height: 145px;
  }
  /* First child */
  .cover-flow-1-layer > div > span:nth-child(1) {
    font-size: 12px;
  }
  /* Second child */
  .cover-flow-1-layer > div > span:nth-child(2) {
    font-size: 24px;
  }
}

/************************************/
/* Cover Flow 1
/* Navigation Left And Right Buttons
/************************************/

/* 1 - Common style */
.cover-flow-1-btn .carousel-control-btn {
  opacity: 1;
  color: #fff;
  width: 78px;
  height: 50px;
  display: block;
  font-size: 34px;
  text-decoration: none;
}
/* 2 - Text style */
.cover-flow-1-btn .carousel-control-btn > span {
  color: #fff;
  width: 76px;
  height: 15px;
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* 3 - Text style on hover */
.cover-flow-1-btn .carousel-control-btn:hover > span {
  color: #000;
  background: #fff;
}

/* 4 - Media Queries For Responsiveness */

/* 4 - 1 - Smaller than 576px screens */
@media (max-width: 575.98px) {
  /* Common style */
  .cover-flow-1-btn .carousel-control-btn {
    width: 30px;
    height: 38px;
    font-size: 24px;
  }
  /* Text style */
  .cover-flow-1-btn .carousel-control-btn > span {
    display: none;
  }
}