.line-yellow {
  display: block;
  width: 100%;
  height: 8px;
  background-color: #FFDD00;
}

.one-carousel {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .one-carousel {
    height: auto;
  }
}
.one-carousel .item .text {
  display: inline-block;
  width: 46%;
  position: absolute;
  left: 5%;
  top: 20%;
  z-index: 999;
}
@media (max-width: 1024px) {
  .one-carousel .item .text {
    width: 90%;
    left: 5%;
    right: 5%;
    top: 2%;
    padding: 10px;
    background-color: rgba(34, 34, 34, 0.5);
    text-align: center;
  }
}
.one-carousel .item .text h1 {
  display: block;
  font-size: 44px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .one-carousel .item .text h1 {
    font-size: 24px;
  }
}
.one-carousel .item .text p {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding: 10px 0;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .one-carousel .item .text p {
    font-size: 14px;
  }
}
.one-carousel .owl-stage-outer {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.one-carousel .owl-stage-outer .owl-stage {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.one-carousel .owl-stage-outer .owl-stage .owl-item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.one-carousel .owl-stage-outer .owl-stage .owl-item .item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-position: center center;
  background-repeat: no-repeat;
}
.one-carousel .owl-controls {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
}
.one-carousel .owl-controls .owl-nav > div {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.one-carousel .owl-controls .owl-nav > div:hover {
  background-color: #667198;
}
.one-carousel .owl-controls .owl-nav .owl-prev {
  left: 20px;
  top: 46%;
  background-image: url("/assets/images/icon-prev-arrow.svg");
}
.one-carousel .owl-controls .owl-nav .owl-next {
  right: 20px;
  top: 46%;
  background-image: url("/assets/images/icon-next-arrow.svg");
}
.one-carousel .owl-controls .owl-dots {
  display: inline-block;
  bottom: 50px;
  padding: 8px 16px;
  background-color: #222;
  position: relative;
  z-index: 99999;
  text-align: center;
  border-radius: 4px;
}
.one-carousel .owl-controls .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background-color: #2d6d8d;
  border-radius: 2px;
}
.one-carousel .owl-controls .owl-dots .owl-dot.active {
  background-color: #54C2F9;
}