/**
 * 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 .las {
  color: #ceac75;
  font-size: 30pt;
}
.owl-theme .owl-nav {
  padding : 10px 0;
  float:right;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
  background: none;
  color: #ceac75;
  font-size: 30pt;
  margin: 5px;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
  color: #ceac75;
  text-decoration: none; }
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

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

.owl-theme .owl-dots {
  background: none; 
  text-align: center;
  padding: 25px 0;
  -webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-dots .owl-dot {
  background: none; 
  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: #ceac75; 
}
.owl-theme .owl-dots .owl-dot.active span{
  width: 50px;
}


:root {
  --main-white-color: white;
  --main-black-color: black;
}
  
.static {
  position: static; 
}

.owl-slide-text{
  position: relative;
  z-index: 99;
}
.owl-slide-text [class*='owl-']{
  color: #fff;
}
.item-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  height: 600px;
  width: 80%;
}
.item-content{
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  align-items: center;
}
.item-content > div{
  margin-left: auto;
  width: 700px;
  height: auto;
}
.item-content > div h2{
  text-transform:capitalize;font-size:40pt;
}
.owl-slide-animated {
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.05s;
}
  
.owl-slide-animated.is-transitioned {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
  
.owl-slide-title.is-transitioned {
  transition-delay: 0.2s;
}
  
.owl-slide-subtitle.is-transitioned {
  transition-delay: 0.35s;
}
  
.owl-slide-cta.is-transitioned {
  transition-delay: 0.5s;
}
    /* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
  
  .item-content > div h2{
    font-size:20pt;
  }
  .owl-theme .owl-dots {
    text-align: left;
  }
  
  .item-img {
    height: 400px;
    width: 100%;
  }
  .item-content{
    position: relative;
  }
  .item-content > div{
    margin-left: 0;
    width: 100%;
    height: auto;
  }
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
  
  .item-content > div h2{
    font-size:20pt;
  }
  .owl-theme .owl-dots {
    text-align: left;
  }
  
  .item-img {
    height: 400px;
    width: 100%;
  }
  .item-content{
    position: relative;
  }
  .item-content > div{
    margin-left: 0;
    width: 100%;
    height: auto;
  }
}


/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
  .owl-theme .owl-dots {
    text-align: left;
  }
}
