/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  position: absolute;
}

  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
   
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.owl-carousel .owl-nav{
    position: absolute;
    top: 40%;
    width: 100%; 
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 00%;
}
.owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px 8px;
    line-height: normal;
    position: relative;
    transition: .3s all ease;
    z-index: 3;
}
.owl-carousel .owl-nav button.owl-prev span:hover:before, .owl-carousel .owl-nav button.owl-next span:hover:before{
    position: absolute;
    outline: 5px solid rgba(255,255,255,.2);
    content: "";
    border-radius: 50%;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}
.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}
 .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      border-radius: 50%;
      color: #FFF;
      text-decoration: none; }
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel .owl-item .item {
    position: relative;
}
.owl-carousel .owl-item .item:before {
    position: absolute;
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.owl-carousel .owl-item .item div {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    width: 50%;
    padding: 100px 0;
    text-align: center;
    transform: translateX(-50%);
}
.owl-carousel .owl-item .item div h2 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
}
.owl-carousel .owl-item .item div p {
    color: #FFFFFF;
    text-align: center;
}
.owl-carousel .owl-item .item div .btn-primary {
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(153,4,10,1) 0%, rgba(112,2,6,1) 100%);
    outline: 3px solid rgba(255,255,255,.6);
    margin: 0px;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .1s ease;
    display: inline-block;
}
.owl-carousel .owl-item .item div .btn-primary:hover {
    color: #000000;
    background: linear-gradient(180deg, rgba(230,230,230,1) 0%, rgba(200,200,200,1) 100%);
    outline: 5px solid rgba(255,255,255,.6);
}

.owl-theme .owl-dots {
    width: 100%;
    position: absolute;
    bottom: 40px;
}

@media screen and (max-width: 767px) {
    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: top;
        height: auto;
    }
    .owl-carousel .owl-item .item div .btn-primary {
        font-size: 12px;
        padding: 3px 15px;
    }
    .owl-carousel .owl-item .item div h2 {
        font-size: 16px;
        margin-bottom: 10px;
        position: absolute;
        left: 0;
        bottom: 135px;
    }
    .owl-carousel .owl-item .item div p {        
        margin-bottom: 10px;
    }
    .owl-theme .owl-dots {
        bottom: 10px;
    }
    .owl-carousel .owl-item .item div {
        bottom: -50px;
        padding: 100px 30px;
        width: 70%;
    }
    
    .owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span {
        width: 30px;
        height: 30px;
        font-size: 32px;
    }
}
