.anthemeblocks-homeslider-desc {
  position: absolute;
  top: 29%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: auto;
  text-align: center;
}

.anthemeblocks-homeslider-desc h2 {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.anthemeblocks-homeslider-desc .block-text p{
    font-weight: 500;
    margin-bottom: 20px;
}
.anthemeblocks-homeslider-desc>.container { 
  position: relative;
  height: 100%;
}
.anthemeblocks-homeslider.owl-carousel.owl-drag .owl-item .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.block-text {
    margin-top: 15px;
}
.anthemeblocks-homeslider-desc .btn-primary p{
  margin: 0;
  padding: 0;
  float: left;
}
.anthemeblocks-homeslider-desc .btn-primary{
  padding: 15px 55px;
  text-transform: uppercase;
  font-weight: 500!important;
  letter-spacing: 1px;
  margin-top: 50px;
  transition: 0.3s;
}
.anthemeblocks-homeslider-desc .btn-primary:hover{
  transition: 0.3s;
}
.anthemeblocks-homeslider.owl-carousel.owl-drag .owl-item .item img { width: auto; }
.anthemeblocks-homeslider_left { text-align: left; }
.anthemeblocks-homeslider_center { text-align: center; }
.anthemeblocks-homeslider_right { text-align: right; }
.anthemeblocks-homeslider .owl-prev,
.anthemeblocks-homeslider .owl-next {
  position: absolute;
  top: calc(50% - 15px);
  z-index: 2;
  cursor: pointer;
  height: 70px;
  width: 40px;
  border: 1px solid rgba(0,0,0,.15);
  transition: .25s;
}
.anthemeblocks-homeslider .owl-prev:hover,
.anthemeblocks-homeslider .owl-next:hover {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(0,0,0,0);
  transition: .3s;
}
.anthemeblocks-homeslider .owl-prev {
  left: 60px;
}
.anthemeblocks-homeslider .owl-next {
  right: 60px;
}
.anthemeblocks-homeslider .owl-stage-outer.disabled .owl-prev,
.anthemeblocks-homeslider .owl-stage-outer.disabled .owl-next { display: none; }
.anthemeblocks-homeslider .owl-dots {
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.anthemeblocks-homeslider.owl-dots_left .owl-dots { text-align: left; }
.anthemeblocks-homeslider.owl-dots_center .owl-dots { text-align: center; }
.anthemeblocks-homeslider.owl-dots_right .owl-dots { text-align: right; }
.anthemeblocks-homeslider.owl-dots_disabled .owl-dots {
  text-align: center;
}

.prev-icon {
    position: absolute;
    display: inline-block;
    height: 19px;
    width: 12px;
    top: 35%;
    left: 33%;
    background-image: url(../img/prev-icon.png);
    opacity: 0.3; 
    transition: 0.3s;
}
.next-icon {
    position: absolute;
    display: inline-block;
    height: 19px;
    width: 12px;
    top: 35%;
    right: 33%;
    background-image: url(../img/next-icon.png);
    opacity: 0.3;
    transition: 0.3s;
}
.owl-prev:hover .prev-icon {
    opacity: 1;
    background-image: url(../img/prev-icon-hover.png);
    transition: 0.3s;
}
.owl-next:hover .next-icon {
    opacity: 1;
    background-image: url(../img/next-icon-hover.png);
    transition: 0.3s;
}

.anthemeblocks-homeslider .owl-dots .owl-dot {
 display: inline-block;
 zoom: 1;
 *display: inline;
}
.anthemeblocks-homeslider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  transform: scale(.6,.6);
  border-radius: 50%;
  border: 2px solid transparent;
  margin: 5px 15px;
  background: rgba(0,0,0,.1);
  display: block;
  -webkit-backface-visibility: visible;
  transition: transform 200ms ease;
}
.anthemeblocks-homeslider .owl-dots .owl-dot.active span,
.anthemeblocks-homeslider .owl-dots .owl-dot:hover span { 
  background: transparent;
  transform: scale(1,1);
  transition: transform 200ms ease;
}
.slider-line{
    position: relative;
    width: 150px;
    height: 1px;
    bottom: 0;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 5px;
}
.slider-line{
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.anthemeblocks-homeslider:not(.owl-carousel) {
  display: flex!important;
  min-height: 500px;
}

.anthemeblocks-homeslider:not(.owl-carousel) {
  opacity: 0;
}

.anthemeblocks_homeslider-block {
  position: relative;
}
.anthemeblocks-homeslider-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.75s ease 0.75s;
}

.loader-image {
  width: 40px;
  height: 40px;
  content: url("../img/loading.svg");
  
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: loader_rotate;
  animation-timing-function: linear;
}
@keyframes loader_rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.anthemeblocks_homeslider-block.initialized .anthemeblocks-homeslider-loader {
  opacity: 0;
}

.anthemeblocks-homeslider.owl-carousel.owl-drag .owl-item img {
  width: auto!important;
}
.anthemeblocks-homeslider.owl-carousel.owl-drag.img-responsive .owl-item .item img {
  width: auto!important;
}

.anthemeblocks-homeslider .anthemeblocks-homeslider-desc>.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.anthemeblocks-homeslider-desc {
  top: 0;
  bottom: 0;
  text-align: center;
  margin: auto;
  height: 100%;

}

@media (max-width: 1600px) {
    .anthemeblocks-homeslider-desc, .anthemeblocks-homeslider-desc p {
        padding: 0 20%;
    }      
}

@media (max-width: 1500px) {

}

@media (max-width: 1400px) {

}

@media (max-width: 1300px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 1100px) {

}

@media (max-width: 1000px) {
    .anthemeblocks-homeslider-desc, .anthemeblocks-homeslider-desc p {
        padding: 0 15%;
    }  
}

@media (max-width: 900px){

}

@media (max-width: 800px){

}
    
@media (max-width: 767px) {
    .anthemeblocks-homeslider-desc, .anthemeblocks-homeslider-desc p {
        padding: 0 12%;
    }  
}

@media (max-width: 700px){
    .anthemeblocks-homeslider .owl-prev {
        left: 20px;
    }
    .anthemeblocks-homeslider .owl-next {
        right: 20px;
    }
}

@media (max-width: 600px){

}

@media (max-width: 580px) {

}

@media (max-width: 500px){
  
}

@media (max-width: 400px){
    
}