 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
.item-image {
    position: relative;
}
.dotsbox {
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    top: 150%;
}

.dot {
  display: inline-block; 
  width: 15px; 
  height: 15px; 
  border-radius: 50%; 
  background-color: #ccc; 
  margin: 0 5px; 
  cursor: pointer; 
}

.dot.active, .dot:hover {
  background-color: #9b0004; 
}

        .slider-caption {
  position: absolute;
  width: 40%;
  left: 10%;
  top: 10%;
  text-align: center;
}

.slider-caption h2 {
  color: #fff;
  /*text-transform: uppercase;*/
  font-size: 60px;
}

.slider-caption .top-caption h2 {
  margin-bottom: -30px;
  font-family: 'Lora', serif;
}

.slider-caption .bottom-caption h2 {
  margin-top: -30px;
  font-family: 'Lora', serif;
}

.slider-caption .middle-caption {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 4px #333;
  display: inline-block;
  padding: 30px 50px;
  text-align: center;
  position: relative;
  z-index: 99;
  width: 80%;
}

.slider-caption .middle-caption h2 {
  font-family: 'Tangerine', cursive;
  font-weight: 400;
  font-size: 90px;
  line-height: 90px;
  color: red;
  text-transform: capitalize;
}

.slider-caption .middle-caption:before,
.slider-caption .middle-caption:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 20px;
  background-color: red;
}

.slider-caption .middle-caption:before {
  top: -60px;
}

.slider-caption .middle-caption:after {
  bottom: -60px;
}

.slider-caption2 {
  width: 100%;
  left: 0;
  top: 100%;
}

.slider-caption2 .middle-caption {
  width: 32%;
}

.owl-carousel .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.owl-carousel .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 45%;
  color: #fff;
}

.owl-carousel .owl-prev {
  left: 50px;
}

.owl-carousel .owl-next {
  right: 90px;
}



.containeri {
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    background-color: #808f66;
    text-align: center;
    margin: 20px auto;
  }
button{
    font-weight: bold;
}
  input[type="text"], input[type="email"], input[type="number"] ,textarea{
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
  }

  button {
    background-color: #bd765c;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px auto;
    display: block;
  }

  button:hover {
    background-color: #a8654d;
  }

  .input-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .input-group input[type="number"] {
    width: 40%;
    padding: 10px;
    margin: 0 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
  }

  ::-webkit-input-placeholder {
    color: white;
  }

  ::-moz-placeholder {
    color: white;
  }

  :-ms-input-placeholder {
    color: white;
  }

  :-moz-placeholder {
    color: white;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
  }

  .col-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .col-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }

  .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .image-container img {
      max-width: 100%;
    border-radius: 15px;
    border: 2px solid #808f66;
    box-shadow: 0 5px 14px #808f66;
   transition: transform 0.3s ease; /* Animation for zoom effect */

  }
   .image-container img:hover {
    transform: scale(1.05); /* Zoom effect on hover */   
  }