header .item {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
header{
    height: 100vh;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 77px;
}
/* header::after {
    position: absolute;
    content: '';
    background: #00000033;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
} */
header img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: zoom-in-zoom-out 80s ease-out infinite;
}
@keyframes zoom-in-zoom-out{
  0% {
    transform: scale(1, 1);
}
50% {
    transform: scale(1.2, 1.2);
}
100% {
    transform: scale(1, 1);
}
}
#banner_slider .owl-dots {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 99;
}
#banner_slider .owl-dots button{
  position: relative;
  background: #fff!important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 8px;
}
#banner_slider .owl-dots .active::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff59;
}
.header_caption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background: #00000080;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px 110px;
}
.main_caption {
  font-size: 42px;
  font-weight: 500;
  color: #FFFFFF;
}
.text_green {
  color: #00E466;
  font-weight: 600;
}
.header_caption ul {
  padding: 0;
  margin: 10px 0px 10px;
  list-style: none;
  display: inline-block;
  width: 600px;
}
.header_caption ul li {
  width: 45%;
  float: left;
  color: #F1F1F1;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.starting_price {
  background: #04be57;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  width: fit-content;
}
.header_caption ul li::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/bullet2.svg);
  left: 0;
  top: 6px;
}
.header_caption p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  margin: 0px 0px 15px;
}
.header_caption h6 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin: 20px 0px 30px;
}
.header_caption h6 span{
  font-size: 16px;
}