.home-banner {
  position: relative;
  top: 0;
  width: 100%;
  margin-bottom: 40px;
}
.home-banner-mobile{
  display: none;
}

.home-banner .owl-nav {
  display: none;
}
.owl-carousel .owl-item .mobile_banner {
  display: none;
}

.item {
  height: 100vh;
  position: relative;
}

.item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.item .cover,
.home-banner-mobile .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50px;
  left: 0;
  right: 0px;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0px auto;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 2;
}
.home-banner-mobile{
  position: relative;
}

.home-banner .item:before,
.home-banner-mobile:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: -moz-linear-gradient(
    top,
    rgba(0, 10, 16, 0.6) 0%,
    rgba(0, 10, 16, 0.6) 100%
  );
  /* background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,10,16,0.6)),color-stop(100%,rgba(0,10,16,0.6))); */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 10, 16, 0.6) 0%,
    rgb(30 30 30 / 60%) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 10, 16, 0.6) 0%,
    rgb(30 30 30 / 60%) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 10, 16, 0.6) 0%,
    rgb(30 30 30 / 60%) 100%
  );
  background: linear-gradient(
    to bottom,
    rgb(0 10 16 / 60%) 0%,
    rgb(0 0 0 / 60%) 100%
  );
  z-index: 1;
}

.item .cover .header-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
}

.item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

.item .cover .header-content h2,
.home-banner-mobile .cover .header-content h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 55px;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.item .cover .header-content p
,.home-banner-mobile .cover .header-content p {
  color: #fff;
  margin-bottom: 25px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.6s;
  font-size: 20px;
  line-height: 30px;
}

.item .cover .header-content a,
.home-banner-mobile .cover .header-content a {
  background-color: #f7c51e;
  border: none;
  padding: 10px 20px;
  color: #000;
  font-size: 20px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.6s;
  text-decoration: none;
  display: block;
  border: 1px solid #f7c51e;
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  display: inline-block;
}

.item .cover .header-content a:hover,
.home-banner-mobile .cover .header-content a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #505050;
}

.item .cover .header-content button {
  padding: 0;
  border: none;
  outline: none;
}

.home-banner .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
}

.item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}

.home-banner .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
}

.owl-nav .owl-prev {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.owl-nav .owl-prev:focus {
  outline: 0;
}

.home-banner .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
}

.owl-nav .owl-next {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.owl-nav .owl-next:focus {
  outline: 0;
}
header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

header:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  margin: 0px auto;
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #f7c51e;
}


@media only screen and (max-width: 820px) {
  .home-banner .item {
    height: 50vh;
    position: relative;
  }

  .owl-carousel .owl-item .mobile_banner {
    display: none;
  }

  .owl-carousel .owl-item .desktop_banner {
    display: block;
  }

  .item .cover,
  .home-banner-mobile .cover {
    justify-content: center;
  }

  .item .cover .header-content,
  .home-banner-mobile .cover .header-content {
    text-align: center;
  }

  .item .cover .header-content h2,
.home-banner-mobile .cover .header-content h2  {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }

  .item .cover .header-content p,
  .home-banner-mobile .cover .header-content p {
    font-size: 16px;
    line-height: 27px;
    text-align: center;
  }

  .owl-theme .owl-dots {
    bottom: 13px;
  }

  .item .cover .header-content a,
  .home-banner-mobile .cover .header-content a {
    font-size: 18px;
  }

  h2,
  h1 {
    font-size: 25px;
    line-height: 32px;
    color: #111111;
    font-weight: 600;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
h2 {
  font-size: 30px;
  line-height: 40px;
}
.home-banner-mobile{
  display: block;
  margin-bottom: 25px;
  height: 80vh;
}
.home-banner-mobile img {
    height: 100%;
}
.home-banner{
  display: none;
}



}

@media only screen and (max-width: 600px) {
  .owl-carousel .owl-item .mobile_banner {
    display: block;
  }

  .owl-carousel .owl-item .desktop_banner {
    display: none;
  }

}