body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: white;
}
/*Button*/
.btn{
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  font-size: 16px;
  margin: 20px 0;
}

.btn:hover{
  background-color: white;
  color: black;
  transition: 0.5s;
}

/* Slider */

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  margin: auto;
}

.slide {
    display: flex;
    flex: 0 0 100%;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* transition: transform 2s ease-in-out;
    transform: translateX(100%); */
  }

/* .slide.active {
  transform: translateX(0);
} */

.text-box {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 4em;
  box-sizing: border-box;
  width: 30%;
}

.owl-carousel .owl-item img {
  object-fit: cover;
  flex: 7;
  width: 70% !important;
  height: auto;
  box-sizing: border-box;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

/* Background colors for each slide*/
.slide1 {background-color: #0fa19a;}
.slide2 { background-color: #0767b2; }
.slide3 { background-color: #d89069; }

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #fff !important;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000 !important;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}

/* Tablet */
@media screen and (max-width: 768px) {
  .slide {
    flex-direction: column;
  }

  .text-box {
    order: 2;
    width: 100%;
    padding: 2em;
  }

  .owl-carousel .owl-item img {
    width: 100% !important;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .slide {
    flex-direction: column;
  }

  .text-box {
    order: 2;
    width: 100%;
    padding: 1em;
  }

  .owl-carousel .owl-item img {
    width: 100% !important;
    height: 400px;
  }
}
.footer {
  background-color: #ffffff;
  color: #000;
  padding: 10px;
}
