/* Css added for walkthrough section start */
.walkthrough-container {  
    padding: 60px 80px;
    background: url('../../Images/1842/walkthrough/walkthrough-background.jpg') no-repeat center/cover;
  }
.walkthrough-form-cover { color:#fff; background-color:rgba(0,0,0,.8); border-radius:20px; padding:40px 30px; }
.walkthrough-form-cover h2 {
  font-size: 25px;
  font-family: 'Denton Test';
  font-weight: 400;
  text-align: center;   /* 👈 centers text */
  margin-bottom: 10px;
}

.walkthrough-form-cover .main-form label {  
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  font-family: 'DM Sans',sans-serif;
}
.walkthrough-form-cover .main-form { display:flex; flex-wrap: wrap; gap: 30px; margin-top:40px; }
.walkthrough-form-cover .main-form .input-group { width: calc(50% - 40px);  margin: 0 auto; }
.walkthrough-form-cover .main-form input, .walkthrough-form-cover .main-form select {
  width: 100%; color:#fff;
  padding: 2px 0;
  border: none;
  border-bottom:1px solid #A8A5A5;
  font-size: 14px;
  outline: none;
  background: transparent;
  font-family: 'Noto Sans', sans-serif;
  resize: none;
  margin-bottom: 6px;
}
select option {
    background-color:#000;
    color:#fff;
}

.btn-wrap { text-align: center; width:100%; }
.book-btn {
  width: 420px;
  height: 46px;
  background: #B2782E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 12px 16px;
  transition: 0.3s ease ease-in-out;
}
.book-btn:hover { color:#fff;
    background: #9a6527;
}



@media(max-width:767px){
    .walkthrough-container { padding:40px 30px; }
    .walkthrough-form-cover .main-form .input-group { width: calc(100% - 0px); }
}
@media(max-width:575px){
  .book-btn { width:100%; }
}
/* Css added for walkthrough section end */