/*!
 * Template Name : simple-ver-28
 */

/**********************/
/* Simple Version 28
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.simple-ver-28.sz-slider {
  background: #fff;
  -webkit-font-smoothing: antialiased !important;
}
/* 2 - Background Images Position */
.simple-ver-28.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner > .carousel-item {
  background-position: center;
}

/*******************/
/* Simple Version 28
/* Layer Settings
/*******************/

/* 1 - Layer - wrapper */
.simple-ver-28-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  position: absolute;
}
/* 2 - Text - Container - center */
.simple-ver-28-layer > div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: auto;
  font-size: 0;
  width: 290px;
  height: 270px;
  display: block;
  line-height: 1;
  text-align: center;
  position: absolute;
}
/* 3 - Text - Container - left */
.simple-ver-28-layer.simple-ver-28-layer-left > div {
  text-align: left;
  margin: auto auto auto 15%;
}
/* 4 - Text - Container - right */
.simple-ver-28-layer.simple-ver-28-layer-right > div {
  text-align: right;
  margin: auto 15% auto auto;
}
/* 5 - 1st child - ( Get Ready! ) */
.simple-ver-28-layer > div > span:nth-child(1) {
  color: #fff;
  margin: auto;
  font-size: 51px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
}
/* 6 - Button - underline - ( _ )*/
.simple-ver-28-layer > div > span:nth-child(1)::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #fff;
  position: absolute;
  margin: auto auto -2px auto;
}
/* 7 - 2nd child - ( Creative Slide Design Idea ) */
.simple-ver-28-layer > div > span:nth-child(2) {
  color: #080808;
  display: block;
  font-size: 49px;
  font-weight: 400;
  letter-spacing: .8px;
  margin: 20px 0 50px 0;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
}
/* 8 - Button - ( More Information ) */
.simple-ver-28-layer > div > a {
  color: #fff;
  margin: auto;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-align: center;
  letter-spacing: .5px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #fff;
  text-transform: uppercase;
  padding: 17px 35px 17px 35px;
  font-family: 'Barlow Condensed', sans-serif;
  transition: background .1s ease, color .1s ease;
  -webkit-transition: background .1s ease, color .1s ease;
}
/* 9 - Button - hover - ( view my portfolio ) */
.simple-ver-28-layer > div > a:hover {
  color: #080808;
  background: #fff;
}

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

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Text - Container - center */
  .simple-ver-28-layer > div {
    width: 270px;
    height: 242px;
  }
  /* Text - Container - left & right */
  .simple-ver-28-layer.simple-ver-28-layer-left > div,
  .simple-ver-28-layer.simple-ver-28-layer-right > div {
    margin: auto;
    text-align: center;
  }
  /* 1st child - ( Get Ready! ) */
  .simple-ver-28-layer > div > span:nth-child(1) {
    font-size: 41px;
  }
  /* 2nd child - ( Creative Slide Design Idea ) */
  .simple-ver-28-layer > div > span:nth-child(2) {
    font-size: 39px;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Text - Container - center */
  .simple-ver-28-layer > div {
    width: 95%;
    height: 165px;
  }
  /* Text - Container - left & right */
  .simple-ver-28-layer.simple-ver-28-layer-left > div,
  .simple-ver-28-layer.simple-ver-28-layer-right > div {
    margin: auto;
    text-align: center;
  }
  /* 1st child - ( Get Ready! ) */
  .simple-ver-28-layer > div > span:nth-child(1) {
    font-size: 31px;
  }
  /* 2nd child - ( Creative Slide Design Idea ) */
  .simple-ver-28-layer > div > span:nth-child(2) {
    font-size: 29px;
    margin: 20px 0 20px 0;
  }
  /* Button - ( More Information ) */
  .simple-ver-28-layer > div > a {
    font-size: 12px;
    padding: 10px 15px 10px 15px;
  }
}

/**************************/
/* Simple Version 28
/* Left And Right Buttons
/**************************/

/* 1 - Buttons */
.simple-ver-28-btn.sz-slider .carousel-control-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  width: 40px;
  color: #fff;
  height: 40px;
  display: block;
  font-size: 14px;
  line-height: 40px;
  background: #080808;
  text-decoration: none;
  margin: 5px auto auto auto;
  transition: background .1s ease, color .1s ease;
  -webkit-transition: background .1s ease, color .1s ease;
}
/* 2 - Prev - Button */
.simple-ver-28-btn.sz-slider .carousel-control-btn.carousel-control-prev {
  left: -45px;
}
/* 3 - Next - Button */
.simple-ver-28-btn.sz-slider .carousel-control-btn.carousel-control-next {
  left: 45px;
}
/* 4 - Buttons - hover */
.simple-ver-28-btn.sz-slider .carousel-control-btn:hover {
  color: #080808;
  background: #fff;
}

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

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

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

/*********************/
/* Simple Version 28
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=slider][data-ind-direction=x] .simple-ver-28-indicators.carousel-indicators {
  padding: 0;
  width: 76px;
  height: 25px;
  margin: auto auto 10px 10px;
}
/* 2 - Indicators - children */
.sz-slider[data-type=slider] .simple-ver-28-indicators.carousel-indicators > li {
  padding: 0;
  margin: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  line-height: 15px;
  border: 2px solid #fff;
  border-radius: 0;
  -webkit-border-radius: 0;
  transition: background .2s ease, border .2s ease;
  -webkit-transition: background .2s ease, border .2s ease;
}
/* 3 - Indicator - active - child */
.sz-slider[data-type=slider] .simple-ver-28-indicators.carousel-indicators > li.active {
  background: #080808;
  border: 2px solid #080808;
}


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

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .simple-ver-28-indicators.carousel-indicators {
    display: none;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .simple-ver-28-indicators.carousel-indicators {
    display: none;
  }
}