* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.wraper {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    padding: 40px;
    /* padding-bottom: 0; */
    margin-top: 40px;
    background: #031025;
}


    .wraper h2 {
        font-family: 'Roboto', sans-serif;
        text-align: center;
        padding-top: 20px;
        text-transform: uppercase;
    }

.owl-theme img {
/*    width: 100%;
    min-height: 200px;*/
    border-radius:6px;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #fff !important;
    color: #000 !important;
    font-size: 1.5em !important;
    width: 40px;
    height: 40px;
    border-radius: 100% !important;
    font-weight: bold;
    padding: 15px !important;
    text-align: center;
    box-shadow: 0px 0px 10px 0px #000;
}

    .owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
        box-shadow: 0px 0px 0px 0px #000;
        background-color: #d5b160 !important;
        color: #494949 !important;
    }

.owl-carousel .owl-prev {
    left: -30px;
}

.owl-carousel .owl-next {
    right: -30px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #d5b160 !important;
    width: 25px;
    transition: 0.2s ease-in-out;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #d5b160 !important;
    transition: 0.2s ease-in-out;
}


/* Responsive design custom css */
@media only screen and (max-width:480px) {


    .owl-theme .owl-dots .owl-dot {
        display: none;
    }

    .owl-carousel .owl-prev, .owl-carousel .owl-next {
        width: 30px;
        height: 30px;
        font-size: 14px !important;
        top: 45%;
        box-shadow: 0px 0px 0px 0px #000;
    }

    .owl-carousel .owl-prev {
        left: 0px;
    }

    .owl-carousel .owl-next {
        right: 0px;
    }
}


/* Feel free to change duration  */ 
.animated  {
    -webkit-animation-duration : 1000 ms  ;
    animation-duration : 1000 ms  ;
    -webkit-animation-fill-mode : both  ;
    animation-fill-mode : both  ;
  }  
  /* .owl-animated-out - only for current item */ 
  /* This is very important class. Use z-index if you want move Out item above In item */ 
  .owl-animated-out {
    z-index : 1 
     }
  /* .owl-animated-in - only for upcoming item
  /* This is very important class. Use z-index if you want move In item above Out item */ 
  .owl-animated-in {
    z-index : 0 
     }
  /* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */ 
  .fadeOut  {
    -webkit-animation-name : fadeOut  ;
    animation-name : fadeOut  ;
  }  
  @-webkit-keyframes  fadeOut  {
    0% {
      opacity : 1   ;
    }  
    100% {
      opacity : 0   ;
    }  
  }
  @keyframes  fadeOut  {
    0% {
      opacity : 1   ;
    }  
    100% {
      opacity : 0   ;
    }  
  }