:root {
    --text-color-white: #ffffff;
    --overlay-font-size: 55px;
    --overlay-font-weight: bold;
    --overlay-padding: 10px 20px;
    --overlay-border-radius: 8px;
    --border-radius: 10px;
    --yacht-wrapper-justify: center;
    --yacht-grid-gap: 30px;
    --yacht-grid-max-width: 907px;
    --yacht-grid-margin-top: 40px;
    --yacht-grid-margin-bottom: 100px;
    --card-width: 300px;
    --card-border-radius: 12px;
    --card-bg-color: #f9f9f9;
    --card-hover-translate: -5px;
    --card-img-height: 255px;
    --card-img-border-radius: 11px;
    --card-title-font-size: 23px;
    --card-title-font-weight: 600;
    --card-title-margin: 15px;
    --card-text-font-size: 14px;
    --card-text-margin-x: 15px;
    --card-text-margin-bottom: 23px;
    --price-font-size: 16px;
    --price-font-weight: bold;
    --price-color: #000;
    --price-margin-right: 8px;
    --duration-font-size: 14px;
    --duration-color: #999;
    --btn-padding: 12px 0;
    --btn-bg-color: #a68b67;
    --btn-color: white;
    --btn-border-radius: 6px;
    --btn-font-size: 15px;
    --btn-font-weight: 500;
    --btn-width: 51%;
    --btn-margin-left: 142px;
    --btn-margin-bottom: 20px;
    --btn-margin-top: -65px;
  }
  
  .image-overlay-text {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color-white);
    font-size: 48px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    text-align: center;
    z-index: 1;
  }
  
  .img-fluid1 {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    object-fit: cover;
    border-radius: 0;
  }
  
  .yacht-wrapper {
    /* display: flex; */
    justify-content: var(--yacht-wrapper-justify);
    /* padding-left: 50px; */
    /* padding-right: 50px; */
  }
  
  /*.yacht-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--yacht-grid-gap);
    justify-content: flex-start;
    max-width: var(--yacht-grid-max-width);
    margin-top: var(--yacht-grid-margin-top);
    margin-bottom: var(--yacht-grid-margin-bottom);
  }*/
  
  .yacht-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    justify-content: center;
    /* max-width: var(--yacht-grid-max-width); */
    margin-top: 0;
    margin-bottom: 0;
    max-width: 100%;
    /* padding: 0 20px; */
  }
  
  
  .yacht-card {
    width: var(--card-width);
    border-radius: 8px;
    overflow: hidden;
    width: auto;
    transition: transform 0.3s ease;
    flex: 0 1 calc((100% - 60px) / 3);
    text-align: left;
    background-color: var(--card-bg-color);
  }
  
  .yacht-card:hover {
    transform: translateY(var(--card-hover-translate));
  }
  
  .yacht-card img {
    width: 100%;
    height: 283px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .yacht-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    line-height: 32px;
    height: 32px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .pro-cont{
    padding:16px 16px 24px;
  }
.yacht-card h3 a{
  color:var(--primary-color);
  font-family:var(--secondary-font);
}
  .yacht-card h5 {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    color: #9B9B9B;
    font-family: var(--primary-font);
    line-height: 24px;
    margin-bottom: 8px;
    height: 24px;
    overflow: hidden;
  }
.mob-addr{
  display:none;
}
  .yacht-card p {
    font-size: 15px;
    margin: 0;
    margin-bottom: 0;
    color: var(--primary-color);
  }
  .prc-btn{
    margin-top:16px;
    display: flex;
    justify-content: space-between;
  }
  /* .price-row {
    display: flex;
    align-items: center;
    margin: var(--card-title-margin);
  } */
  .price-row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
  }
  
  .price-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .from-text {
    font-size: 14px;
    color: #9B9B9B; /* matches your existing style */
    margin-bottom: 0;
  }
  
  .price {
    font-weight: var(--price-font-weight);
    font-size: var(--price-font-size);
    color: var(--price-color);
    margin-right: 0;
    line-height: 24px;
  }
  
  .duration {
    font-size: var(--duration-font-size);
    color: var(--duration-color);
  }
  
  .book-btn {
    display: block;
    padding: var(--btn-padding);
    background-color: var(--btn-bg-color);
    color: var(--btn-color);
    border: none;
    border-radius: var(--btn-border-radius);
    cursor: pointer;
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    width: var(--btn-width);
    text-align: center;
    /* margin-left: var(--btn-margin-left); */
    /* margin-bottom: var(--btn-margin-bottom); */
    /* margin-top: var(--btn-margin-top); */
  }
  
  
  .book-btn:hover{
    color: #fff;
  }
  
  .search-bar {
    margin-top: 0;
    border: 0 solid #fffFFF52;
    border-radius: 30px;
    padding: 0;
    z-index: 1;
    position: absolute;
    margin: auto;
    width: 80%;
    max-width: 1108px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
  }
  
  .search-bar-inner {
    background: #fff;
    border-radius: 15px;
    padding: 16px;
  }
  .search-bar-inner .col-3{
    width: 20%;
  }
  .search-bar-inner .check {
    padding: 0;
    position: relative;
    padding-right: 12px;
    /* width: 20%; */
  }
  
  .search-bar-inner .row {
    position: relative
  }
  
  .search-bar-inner .col-6.datepicker-common-2.datepicker-main {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 24px;
    padding: 0
  }
  
  input#demo17 {
    top: auto !important;
    bottom: 0;
    padding-left: 0;
    width: 100%!important;
    height: 24px!important;
  }
  
  .search-bar-inner .check-detail,.search-bar-inner .guest-detail {
    padding-top: 0;
    padding-bottom: 0;
    border-right: 1px solid #D0D0D0;
    padding-right: 12px;
    position: relative
  }
  
  .search-bar-inner input[type=text],.search-bar-inner select {
    background: 0 0;
    border: 0 solid;
    width: 100%;
    padding-left: 0;
    font-size: 13px;
    color: var(--primary-color);
    height: 24px;
    padding-right: 0;
  }
  
  #guestsss1 .close12,.search-bar-inner i {
    color: var(--secondary-color);
    position: absolute
  }
.flexible-btn {
    display: flex;
    align-items: center;
}
  input#date-flexibility-show {
    padding-left: 0;
    width: 80px;
    text-align: center;
}
  .search-bar-inner select option {
    color: #000
  }
  
  .search-bar-inner i {
    left: 0px;
    bottom: -4px;
    top: auto;
  }
  
  .search-bar-inner .guest-detail {
    border-right: 0px solid;
    position: relative
  }
  
  .search-bar-inner .search-btn,section.experience-section .container-fluid,section.yacht-section .container-fluid {
    padding: 0
  }
  
  .search-bar-inner .search-btn button {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    letter-spacing: 0;
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--primary-font);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .search-bar-inner .search-btn button i{
    position:relative;
    color:var(--white-color);
    top:0;
    left:0;
    bottom: 0;
    transform: translateY(0%);
  }
  div#guestsss1 {
    width: 100%;
    min-width: 250px;
    background: var(--black-color);
    padding: var(--p20);
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;
    display: none;
    box-shadow: 0 0 3px 0 #888
  }
  
  #guestsss1 .close12 {
    right: 10px;
    left: auto;
    top: .9rem;
    font-size: var(--f18);
    cursor: pointer
  }
  
  #guestsss1 .adult-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--m20)
  }
  
  #guestsss1 .adult-box p {
    letter-spacing: 0;
    color: var(--white-color);
    text-shadow: 0 0 0 #000;
    font-size: var(--f14);
    text-align: left;
    margin: 0
  }
  
  #guestsss1 button.button1 {
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: var(--f19);
    line-height: 30px;
    border: 1px solid var(--white-color);
    color: var(--white-color)
  }
  
  #guestsss1 button.button11.button1 {
    margin-left: var(--m14)
  }
  
  #guestsss1 button.main-btn.close1112 {
    width: 100%;
    font-size: 14px
  }
  
  .adult-btn {
    display: flex;
    align-items: center;
    position: absolute;
    right: 5px
  }
  
  .guests button.button1 {
    height: 44px;
    width: 50px;
    text-align: center;
    border-radius: 22px 0 0 22px;
    font-size: var(--f20);
    border: 0 solid rgba(255,255,255,.5);
    color: rgba(255,255,255,.5);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-right: 0px solid
  }
  
  .guests button.button11.button1 {
    margin-left: 0;
    border-right: 0px solid;
    border-left: 0 solid;
    border-radius: 0 22px 22px 0
  }
  
  .search-bar button.button1 i {
    position: relative;
    top: 0;
    right: 0;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transform: translateY(0)
  }
  
  .guests button.button1:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color)
  }
  
  section.about-us span.ratings {
    display: flex;
    gap: 10px;
    margin-bottom: 15px
  }
  
  section.about-us p.head,section.services-section .head-sec p {
    margin-bottom: 20px;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px
  }
  
  section.about-us .about-content-sec {
    padding-right: 50px
  }
  
  section.about-us .about-content-sec a.main-btn {
    display: block;
    width: 200px;
    transition: .3s ease-in-out
  }
  
  .service-right-info a.main-btn:hover,section.about-us .about-content-sec a.main-btn:hover,section.cards .card-info:hover,section.choose-section .choose-btn a.main-btn:hover,section.choose-section .choose-info:hover,section.cta-section a.main-btn:hover,section.offer-section .offer-btn a.main-btn:hover,section.offer-section .offer-info:hover,section.properties-list .property-list:hover {
    transform: translateY(-4px)
  }
  
  section.about-us .about-content-sec .abt-btn {
    margin-top: 40px
  }
  
  section.about-us .about-image-sec img {
    width: 500px;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    box-shadow: 0 15px 45px 0 rgba(0,0,0,.1);
    filter: brightness(.8)
  }
  
  section.about-us .about-image-sec .abt-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column
  }
  
  section.about-us .about-image-sec .abt-img1 {
    margin: -50px 0 30px -15%
  }
  
  section.about-us .about-image-sec .abt-img2 {
    margin: 0 -15% 0 0
  }
  
  section.cards {
    padding-top: 0
  }
  
  section.cards .head-sec h2,section.cards .head-sec p,section.choose-section .head-sec h2,section.choose-section .head-sec p,section.faq-section .head-sec h2,section.properties-list .head-sec h2,section.testimonial-section .head-sec h2 {
    text-align: center
  }
  
  section.cards .card-info {
    min-height: auto;
    height: 100%;
    padding: 25px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    display: flex;
    background: #383838;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform .4s;
    box-shadow: 4px 10px 15px 0 rgb(0 0 0 / 20%);
    border: 1px solid #00000029
  }
  
  section.cards .card-info img {
    width: 35px;
    margin-bottom: 15px
  }
  
  section.cards .card-info svg {
    width: 45px;
    height: 45px;
    fill: #fff
  }
  
  section.cards .card-info .card-icon,section.services-section .head-sec {
    margin-bottom: 20px
  }
  
  section.cards .card-info h4 {
    font-size: var(--f20);
    margin-bottom: 10px;
    color: var(--white-color);
    font-weight: 400;
    text-align: center
  }
  
  section.cards .card-info p {
    text-align: center;
    margin-bottom: 0;
    font-size: 14px
  }
  
  section.properties-list .item {
    padding-top: 5px
  }
  
  section.properties-list .property-list {
    background: #383838;
    border: 1px solid #ffffff17;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 25px -10px rgba(0,0,0,.1);
    transition: transform .4s
  }
  
  section.properties-list .property-list img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px
  }
  
  section.properties-list .property-list h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    height: 27px;
    overflow: hidden
  }
  
  section.properties-list .property-list h3 a,section.yacht-section h4 a,section.yacht-section p.head a {
    color: var(--white-color)
  }
  
  section.properties-list .property-list p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white-color);
    height: 24px;
    overflow: hidden
  }
  
  section.properties-list .property-list ul {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between
  }
  
  section.properties-list .property-list li {
    font-size: 14px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 0
  }
  
  section.properties-list .property-list li i {
    margin-right: 5px;
    color: var(--secondary-color)
  }
  
  section.properties-list .property-list li span {
    font-weight: 700;
    margin-right: 2px
  }
  
  section.properties-list .property-list .pro-btn {
    margin-top: 10px
  }
  
  section.properties-list .property-list a.main-btn {
    padding: 13px 20px;
    font-size: 14px;
    display: block
  }
  
  section.properties-list button.owl-dot,section.yacht-section button.owl-dot {
    transition: .4s ease-in-out;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #ffffff70!important
  }
  
  section.properties-list button.owl-dot:hover,section.yacht-section button.owl-dot:hover {
    background: #fff!important
  }
  
  section.properties-list button.owl-dot.active,section.yacht-section button.owl-dot.active {
    width: 35px;
    background: #fff!important
  }
  
  section.properties-list .owl-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px
  }
  
  section.experience-section {
    background: #1e1e1e;
    padding: 0
  }
  
  section.experience-section .experience-image {
    background-image: url(../images/experience.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
  }
  
  section.experience-section .experience-content {
    padding-top: 100px;
    padding-bottom: 100px
  }
  
  section.experience-section .experience-details {
    padding: 50px;
    box-shadow: 10px 10px 45px 0 rgba(0,0,0,.1);
    border-radius: 10px;
    max-width: 700px;
    margin-left: -100px;
    background-color: #2c2c2ce8;
    background-image: url(../images/frame.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken
  }
  section.experience-section.rev .experience-details{
    margin-left: auto;
    margin-right: -100px;
    z-index: 1;
    position: relative;
  }
  section.experience-section .experience-details p {
    margin-bottom: 35px
  }
  
  div#list-slider1,section.choose-section .row,section.offer-section .row {
    gap: 30px 0
  }
  
  section.choose-section .choose-info {
    padding: 30px 15px;
    box-shadow: 4px 10px 15px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;
    border: 1px solid #00000029;
    transition: transform .4s;
    height: 100%;
    background: #383838;
    text-align: center
  }
  
  section.choose-section .choose-info img,section.offer-section .offer-info img {
    margin-bottom: 15px;
    width: 35px
  }
  
  section.choose-section .choose-info h4,section.offer-section .offer-info h4 {
    font-size: var(--f20);
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 10px
  }
  
  section.choose-section .choose-info p,section.offer-section .offer-info p {
    font-size: 14px;
    margin-bottom: 0
  }
  
  section.choose-section .choose-btn,section.offer-section .offer-btn {
    margin-top: 40px;
    text-align: center
  }
  
  section.choose-section .choose-btn a.main-btn,section.offer-section .offer-btn a.main-btn {
    display: block;
    width: 200px;
    margin: auto;
    transition: .3s ease-in-out
  }
  
  
  
  .WidgetTitle__Header-sc-ruy1gu-2.DZBVr {
    display: none!important
  }
  
  section.offer-section {
    background-color: #2d2d2de8;
    background-image: url(../images/frame.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken
  }
  
  section.offer-section .head-sec {
    max-width: 750px;
    margin: auto auto 40px;
    text-align: center
  }
  
  section.offer-section .offer-listings {
    max-width: 95%;
    margin: auto;
    background: url(../images/offer.jpg) 0 0/cover;
    border-radius: 20px;
    padding: 40px 0
  }
  
  section.offer-section .offer-info {
    padding: 30px 15px;
    box-shadow: 4px 10px 15px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;
    border: 1px solid #00000029;
    transition: transform .4s;
    background-color: #2d2d2dde
  }
  
  section.yacht-section {
    padding-left: 0;
    padding-right: 0;
    background: #1e1e1e
  }
  
  section.cta-section,section.yacht-section .yacht-list {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
  }
  
  section.yacht-section .head-sec {
    max-width: 750px;
    margin: auto auto 60px;
    text-align: center
  }
  
  section.yacht-section .yacht-list {
    height: 500px;
    background-image: url(../images/yacht1.jpg);
    border-radius: 10px
  }
  
  section.yacht-section .yacht-content {
    width: 350px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: #2d2d2db0;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 4px 10px 15px 0 rgb(0 0 0 / 20%)
  }
  
  section.yacht-section a.link-yacht {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0
  }
  
  section.yacht-section .item {
    padding-bottom: 25px
  }
  
  section.yacht-section p.head {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px
  }
  
  section.yacht-section h4 {
    font-size: 20px;
    font-weight: 700
  }
  
  section.yacht-section p {
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 20px
  }
  
  section.yacht-section a.main-btn {
    font-size: 14px;
    display: block;
    width: 204px;
    height: 53px;
    background: 0 0;
    border: 2px solid var(--white-color);
    letter-spacing: 1px;
    border-radius: 30px;
    transition: .3s ease-in-out
  }
  
  section.yacht-section a.main-btn:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-4px)
  }
  
  section.yacht-section .owl-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px
  }
  
  section.faq-section .accordion-button {
    background: 0 0!important;
    padding: 20px 20px 20px 50px;
    font-size: 18px;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: 700
  }
  
  section.faq-section .accordion-item {
    border-bottom: 1px solid #d5d8dc!important;
    background: 0 0!important
  }
  
  section.faq-section .accordion-body {
    padding-left: 50px
  }
  
  .accordion-button::after {
    background-image: url("../images/down-arrow.png")!important;
    background-color: #323232;
    width: 30px;
    height: 30px;
    background-position: center;
    border-radius: 100%;
    margin-left: 0;
    left: 0;
    position: absolute
  }
  
  section.cta-section {
    background-image: url(../images/cta.png);
    background-position: center center;
    height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    background-size: cover;
    padding-top: 40px;
    margin-bottom: -96px;
  }
  
  section.cta-section .overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg,#071E2F6B 0,#1b1b1b 92%);
    opacity: 1;
    transition: background .3s,border-radius .3s,opacity .3s;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56.15%, #FFFFFF 100%),
  linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
  linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 45.75%);
  }
  
  section.cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 870px;
  }
  
  section.cta-section h2 {
    text-align: center;
    /* font-size: 60px; */
    /* line-height: 1.2; */
    margin-bottom: 60px
  }
  
  section.cta-section a.main-btn {
    display: inline-block;
    margin: auto;
    width: 200px;
    transition: .3s ease-in-out;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  section.airbnb-section {
    background: #1b1b1b;
    padding: 30px 12px
  }
  
  section.banner-header .images-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 45px;
    margin-bottom: 20px;
    position: absolute;
    bottom: 10px;
    width: 100%
  }
  
  section.banner-header .images-sec img {
    width: 100px;
    height: 70px;
    object-fit: contain
  }
  
  .search-bar-inner label{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
  }
  .search-bar-inner .flexible-detail {
      position: relative;
      border-right: 1px solid #D0D0D0;
      align-items: center;
      gap: 10px;
  }
  .icon-stack {
         display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    position: relative;
    color: #333;
    top: 0;
  }
  .search-bar-inner .flexible {
      padding: 0;
  }
.search-bar-inner .icon-stack i {
    position: relative;
    top: 0;
    transform: translateY(0%);
}
 .search-bar-inner .fa-plus{
    /* position:absolute; */
    /* bottom:6px; */
}
  .icon-btn {
      background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    height: auto;
  }
  
  .search-bar-inner .guest-info {
      display: flex;
      align-items: center;
      width: 90px;
      justify-content: space-between;
  }
  
  
  .search-bar-inner .guest-info button{
    width: 24px;
      height: 24px;
      min-width: 24px;
      border: 1px solid var(--secondary-color);
      background: transparent;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary-color);
      font-size: 12px;
  }
  .search-bar-inner .guest-info button i{
    color: var(--secondary-color);
      font-size: 12px;
  }
  .search-bar-inner .guest-info input{
    padding-left: 0px;
      text-align: center;
  }
  .input-with-icon {
    display: flex;
    align-items: center;
    gap: 8px; /* spacing between icon and input */
  }
  
  .calendar-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  @keyframes fadeIn {
    from {
        opacity: 0
    }
  
    to {
        opacity: 1
    }
  }
  
  .fadeIn {
    animation-name: fadeIn
  }
  
  @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
  
    to {
        opacity: 1;
        transform: none
    }
  }
  
  .fadeInDown {
    animation-name: fadeInDown
  }
  
  @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
  
    to {
        opacity: 1;
        transform: none
    }
  }
  
  .fadeInLeft {
    animation-name: fadeInLeft
  }
  
  @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
  
    to {
        opacity: 1;
        transform: none
    }
  }
  
  .fadeInRight {
    animation-name: fadeInRight
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
  
    to {
        opacity: 1;
        transform: none
    }
  }
  
  .fadeInUp {
    animation-name: fadeInUp
  }


section.pro-list-sec{
  padding-top:40px;
  padding-bottom: 180px;
}
.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #30282533;
}
#datepicker-demo17.datepicker{
 left:0; 
}