:root {
  --main-white-color: white;
  --main-black-color: black;
}
 
.static {
  position: static; 
}
 
.cover {
  background-size: cover;
  /*background-position: center;*/
  background-repeat: no-repeat;
}
.owl-carousel .owl-slide {
  position: relative;
  height: 90vh;
  background-color: lightgray;
}
 /*
.owl-carousel .owl-slide-animated {
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.05s;
}
 
.owl-carousel .owl-slide-animated.is-transitioned {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
 
.owl-carousel .owl-slide-title.is-transitioned {
  transition-delay: 0.2s;
}
 
.owl-carousel .owl-slide-subtitle.is-transitioned {
  transition-delay: 0.35s;
}
 
.owl-carousel .owl-slide-cta.is-transitioned {
  transition-delay: 0.5s;
}*/
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  position: absolute;
  display: none;
}
 
.owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid var(--main-black-color);
  transition: all 0.2s ease;
}
 
.owl-carousel .owl-dots .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--main-black-color);
}
 
.owl-carousel .owl-nav {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  margin: 0;
}
.owl-slide-text{
  margin-top: 120px;
  text-align: left !important;
}
.owl-slide-text h2, .owl-slide-text h1 {
    text-align: left;
    font-size: 60px;
    line-height: 7rem;
    font-weight: bold;
    font-family: 'arial', sans-serif;
    color: #fff !important;
    margin-bottom: 10px;
    font-style: normal;
}
.owl-slide-animated.owl-slide-subtitle.mb-3{
  font-size: 25px;
  line-height: 3rem;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .owl-slide-text{
  margin-top: 20px;
}
}