/*!
 * Template Name : multiple-items-1
 */

/**********************/
/* Multiple Items 1
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.multiple-items-1.sz-slider {
  background: #fff;
  -webkit-font-smoothing: antialiased !important;
}

/********************/
/* Multiple Items 1
/* Layer Settings
/********************/

/* 1 - Text - wrapper */
.multiple-items-1-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  display: block;
  position: absolute;
}
/* 2 - Image */
.multiple-items-1-layer > img {
  width: 224px;
  margin: auto;
  display: block;
  position: relative;
}
/* 3 - Container */
.multiple-items-1-layer > div {
  margin: auto;
  width: 224px;
  font-size: 0;
  line-height: 1;
  display: block;
  text-align: left;
  position: relative;
  padding: 10px 0 0 0;
}
/* 4 - Heading - Tag */
.multiple-items-1-layer > div > a {
  display: block;
  letter-spacing: .1px;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  transition: color .2s ease;
  -webkit-transition: color .2s ease;
}
/* 5 - Heading */
.multiple-items-1-layer > div > a:nth-child(1) {
  color: #333;
  font-size: 21px;
  font-weight: 700;
}
/* 6 - Tag */
.multiple-items-1-layer > div > a:nth-child(2) {
  color: #777;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
/* 7 - Heading - Tags - hover */
.multiple-items-1-layer > div > a:hover {
  color: #286ed1;
}

/**************************/
/* Multiple Items 1
/* Left And Right Buttons
/**************************/

/* 1 - Buttons */
.multiple-items-1-btn.sz-slider .carousel-control-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 15;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-decoration: none;
  background: rgba(0,0,0,.5);
  border-radius: 0;
  -webkit-border-radius: 0;
  transition: color .2s ease, background .2s ease;
  -webkit-transition: color .2s ease, background .2s ease;
}
/* 2 - Prev - Button */
.multiple-items-1-btn.sz-slider .carousel-control-btn.carousel-control-prev {
  margin: 0 auto auto 25px;
}
/* 3 - Next - Button */
.multiple-items-1-btn.sz-slider .carousel-control-btn.carousel-control-next {
  margin: 0 25px auto auto;
}
/* 4 - Hover */
.multiple-items-1-btn.sz-slider .carousel-control-btn:hover {
  color: #fff;
  background: #286ed1;
}
/* 5 - Icons */
.multiple-items-1-btn.sz-slider .carousel-control-btn > i {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 14px;
  margin: auto;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  display: inline-block;
  transition: color .2s ease;
  -webkit-transition: color .2s ease;
}
/* 6 - Icons - hover */
.multiple-items-1-btn.sz-slider .carousel-control-btn:hover > i {
  color: #fff;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Prev - Button */
  .multiple-items-1-btn.sz-slider .carousel-control-btn.carousel-control-prev {
    margin: 0 auto auto 15px;
  }
  /* Next - Button */
  .multiple-items-1-btn.sz-slider .carousel-control-btn.carousel-control-next {
    margin: 0 15px auto auto;
  }
}

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Buttons */
  .multiple-items-1-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Buttons */
  .multiple-items-1-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}