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

/**********************/
/* Simple Version 25
/* Main Carousel Style
/**********************/

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

/*******************/
/* Simple Version 25
/* Layer Settings
/*******************/

/* 1 - Layer - wrapper */
.simple-ver-25-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  line-height: 1;
  position: absolute;
}
/* 2 - Text - Container - center */
.simple-ver-25-layer > div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: auto;
  font-size: 0;
  width: 350px;
  height: 253px;
  display: block;
  text-align: center;
  position: absolute;
}
/* 3 - Text - Container - left */
.simple-ver-25-layer.simple-ver-25-layer-left > div {
  text-align: left;
  margin: auto auto auto 20%;
}
/* 4 - Text - Container - right */
.simple-ver-25-layer.simple-ver-25-layer-right > div {
  text-align: right;
  margin: auto 20% auto auto;
}
/* 5 - 1st child - ( Hello I'M ) */
.simple-ver-25-layer > div > span:nth-child(1) {
  color: #333;
  margin: auto;
  display: block;
  font-size: 65px;
  font-weight: 300;
  letter-spacing: -.5px;
  text-transform: capitalize;
  font-family: 'Barlow Condensed', sans-serif;
}
/* 6 - 2nd child - ( thomas smith ) */
.simple-ver-25-layer > div > span:nth-child(2) {
  color: #333;
  margin: auto;
  display: block;
  font-size: 65px;
  font-weight: 800;
  margin-top: -10px;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}
/* 7 - 3rd child - ( Creative web designer and UI/UX Designer in Web Solution Company. ) */
.simple-ver-25-layer > div > span:nth-child(3) {
  color: #333;
  margin: auto;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 9px 0 32px 0;
  letter-spacing: .2px;
  font-family: 'Barlow', sans-serif;
}
/* 8 - Button - ( view my portfolio ) */
.simple-ver-25-layer > div > a {
  color: #333;
  margin: auto;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  text-align: center;
  letter-spacing: .5px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #333;
  text-transform: uppercase;
  padding: 17px 30px 16px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  transition: background .1s ease, border .1s ease, color .1s ease;
  -webkit-transition: background .1s ease, border .1s ease, color .1s ease;
}
/* 9 - Button - hover - ( view my portfolio ) */
.simple-ver-25-layer > div > a:hover {
  color: #d90c11;
  border-color: #d90c11;
  background: transparent;
}
/* 10 - Button - line - left & center ( - ) */
.simple-ver-25-layer > div > a::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  content: "";
  position: absolute;
  background: #1d335c;
  margin: auto -15px auto auto;
  transition: background .1s ease;
  -webkit-transition: background .1s ease;
}
/* 11 - Button - line - right ( - ) */
.simple-ver-25-layer.simple-ver-25-layer-right > div > a::after {
  margin: auto auto auto -15px;
}
/* 12 - Button - line - hover ( - ) */
.simple-ver-25-layer > div > a:hover::after {
  background: #d90c11;
}

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

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Text - Container - center */
  .simple-ver-25-layer > div {
    width: 290px;
    height: 235px;
  }
  /* Text - Container - left */
  .simple-ver-25-layer.simple-ver-25-layer-left > div {
    margin: auto auto auto 15%;
  }
  /* Text - Container - right */
  .simple-ver-25-layer.simple-ver-25-layer-right > div {
    margin: auto 15% auto auto;
  }
  /* 1st child - ( Hello I'M ) */
  .simple-ver-25-layer > div > span:nth-child(1) {
    font-size: 55px;
  }
  /* 2nd child - ( thomas smith ) */
  .simple-ver-25-layer > div > span:nth-child(2) {
    font-size: 55px;
  }
}

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Text - Container - center */
  .simple-ver-25-layer > div {
    width: 270px;
    height: 215px;
  }
  /* Text - Container - left */
  .simple-ver-25-layer.simple-ver-25-layer-left > div,
  .simple-ver-25-layer.simple-ver-25-layer-right > div {
    margin: auto;
    text-align: center;
  }
  /* 1st child - ( Hello I'M ) */
  .simple-ver-25-layer > div > span:nth-child(1) {
    font-size: 45px;
  }
  /* 2nd child - ( thomas smith ) */
  .simple-ver-25-layer > div > span:nth-child(2) {
    font-size: 45px;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Text - Container - center */
  .simple-ver-25-layer > div {
    width: 95%;
    height: 173px;
  }
  /* Text - Container - left */
  .simple-ver-25-layer.simple-ver-25-layer-left > div,
  .simple-ver-25-layer.simple-ver-25-layer-right > div {
    margin: auto;
    text-align: center;
  }
  /* 1st child - ( Hello I'M ) */
  .simple-ver-25-layer > div > span:nth-child(1) {
    font-size: 35px;
  }
  /* 2nd child - ( thomas smith ) */
  .simple-ver-25-layer > div > span:nth-child(2) {
    font-size: 35px;
    margin-top: -5px;
  }
  /* 3rd child - ( Creative web designer and UI/UX Designer in Web Solution Company. ) */
  .simple-ver-25-layer > div > span:nth-child(3) {
    font-size: 12px;
    margin: 9px 0 9px 0;
  }
  /* Button - ( view my portfolio ) */
  .simple-ver-25-layer > div > a {
    font-size: 12px;
    padding: 14px 25px 14px 25px;
  }
}

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

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

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

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Prev - Button */
  .simple-ver-25-btn.sz-slider .carousel-control-btn.carousel-control-prev {
    margin: 5px auto auto 5px;
  }
  /* Next - Button */
  .simple-ver-25-btn.sz-slider .carousel-control-btn.carousel-control-next {
    left: 48px;
    margin: 5px auto auto auto;
  }
}

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

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

/*********************/
/* Simple Version 25
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=slider][data-ind-direction=x] .simple-ver-25-indicators.carousel-indicators {
  padding: 0;
  width: 65px;
  height: 20px;
  margin: 0 30px 30px auto;
}
/* 2 - Indicators - children */
.sz-slider[data-type=slider] .simple-ver-25-indicators.carousel-indicators > li {
  padding: 0;
  margin: 3px;
  width: 15px;
  height: 15px;
  border: none;
  background: #333;
  line-height: 15px;
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 0 0 1px #333;
  -webkit-box-shadow: 0 0 0 1px #333;
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
  -webkit-transition: background .2s ease, border .2s ease, -webkit-box-shadow .2s ease;
}
/* 3 - Indicator - active - child */
.sz-slider[data-type=slider] .simple-ver-25-indicators.carousel-indicators > li.active {
  border: none;
  background: transparent;
  box-shadow: 0 0 0 1px #1d335c;
  -webkit-box-shadow: 0 0 0 1px #1d335c;
}
/* 4 - Indicators - inside circle */
.sz-slider[data-type=slider] .simple-ver-25-indicators.carousel-indicators > li::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background: #333;
  position: absolute;
  transform: scale(.7);
  -webkit-transform: scale(.7);
}
/* 5 - Indicator - active - inside circle */
.sz-slider[data-type=slider] .simple-ver-25-indicators.carousel-indicators > li.active::after {
  background: #1d335c;
}

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

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .simple-ver-25-indicators.carousel-indicators {
    margin: 0 10px 10px auto;
  }
}

/*----- 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-25-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-25-indicators.carousel-indicators {
    display: none;
  }
}