.owl-carousel {
  margin-bottom: 20px;
}

.owl-item {
  height: 60vh;
}

.owl-carousel .slide {
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 500px;
  min-width: 450px; */
  overflow: hidden;
  border-bottom: solid 15px #EFB624;
  border-radius: 20px;
  background-size: cover;
}

.owl-carousel .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  padding: 10px;
  color: #fff;
}

.owl-carousel .slide-content h3 {
  margin: 0;
  font-size: 18px;
}

.owl-carousel .slide-content p {
  margin: 5px 0;
}

.owl-carousel .slide-content .read-more {
  position: relative;
  top: -15px;
  left: 20px;
  color: #fff;
  background-color: #25B0B8;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 30px 10px 30px;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-slides: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 1;
}

.owl-carousel .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel .owl-nav .owl-next {
  right: 0;
}

.owl-nav {
  height: 50px !important;
}

.owl-prev {
  font-size: 3em !important;
  font-weight: 800 !important;
  margin-left: -275px !important;
  color: white !important
}

.owl-next {
  font-size: 3em !important;
  font-weight: 800 !important;
  margin-right: -275px !important;
  color: white !important
}

h3.slide-title {
  font-family: Roboto;
  position: relative;
  font-size: 2.0em !important;
  /* top: -180px !important; */
  top: -70vw !important;
  left: 3vw;
  font-weight: 400;
  line-height: 1.0rem
}

p.slide-subtitle {
  font-family: Roboto;
  position: relative;
  font-size: 0.9em !important;
  /* top: -160px !important; */
  top: -60vw !important;
  left: 3vw;
  width: 70%;
  line-height: 1.0rem
}

/* desktop specific styles follow in media query */
@media only screen and (min-width: 768px) {
  .owl-carousel .slide-content .read-more {
    position: relative;
    top: -2vw;
    left: 3vw;
    color: #fff;
    background-color: #25B0B8;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px 10px 30px;
  }

  .owl-carousel .slide {
    min-height: 450px;
    /* width: 615px;
    min-width: 415px; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: solid 15px #EFB624;
    border-radius: 20px;
  }

  .owl-carousel {
    width: 140%;
    margin-left: -20%
  }
  
  .owl-nav {
    width: 70% !important;
    min-width: 20% !important;
    margin-left: 15%;
    margin-right: auto;
  }

  h3.slide-title {
    font-family: Roboto;
    position: relative;
    font-size: 2.0em !important;
    top: -39vh !important;
    left: 3vw;
    font-weight: 400;
    line-height: 1.0rem
  }
  
  p.slide-subtitle {
    font-family: Roboto;
    position: relative;
    font-size: 0.9em !important;
    top: -36vh !important;
    left: 3vw;
    width: 70%;
    line-height: 1.0rem
  }

  .fa-solid.fa-chevron-right, .fa-solid.fa-chevron-left {
  color: #ffffff;
  font-size: 39px;
  border-radius: 3px;
  }
}