ul.prop {
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    display: none
}

ul.prop li a {
    border: 1px solid transparent;
    padding: 13px 35px;
    font-size: var(--f14);
    font-weight: 500;
    line-height: 1;
    border-radius: 12px;
    font-family: var(--primary-font);
    transition: .3s ease-out;
    display: inline-block
}

ul.prop li a.active,
ul.prop li a:hover {
    border-color: var(--secondary-color)
}

.adult-btn,
.search-bar-inner i {
    top: 50%;
    transform: translateY(-50%)
}

.see-more {
    margin-top: 80px;
    padding: 0
}

.list-content {
    padding: 14px
}

section.properties-list .property-list .list-content .price p {
    font-size: var(--f14);
    font-weight: 700;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    margin-top: 10px
}

section.list-banner {
    height: 450px;
    width: 100%;
    background: url(../images/list-bg.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 40px 12px 10px
}

section.list-banner h1 {
    text-align: center;
    margin-bottom: 100px;
}

section.list-banner p {
    text-align: center;
    color: var(--white-color);
}


/* property section */
section.home-list {
    padding: var(--p60) var(--p12);
    background: #fff;
}

section.home-list .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    transition: .5s ease-in-out;
}

section.home-list .overlay a {
    color: var(--white-color);
    font-size: var(--f18);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section.home-list .overlay i {
    color: var(--white-color);
    font-size: var(--f18);
}

section.home-list .prop-card:hover .overlay {
    display: flex;
}

section.home-list .row {
    justify-content: center;
    gap: 30px 0;
}

section.home-list .how-we-value-heading span {
    font-size: var(--f14);
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--white-color);
    border-radius: 50px;
    padding: 4px 18px;
}

section.home-list .view {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: var(--p15);
    background: rgba(49, 75, 80, 0.9);
}

section.home-list .view h5{
    color: var(--white-color);
}

section.home-list .view a {
    background: var(--white-color);
    padding: var(--p10);
    box-shadow: 2.5px 4.33px 18px 0px rgb(0 0 0 / 10%);
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-align: center;
}

section.home-list .view i {
    margin-right: 0;
}


section.home-list .col-4 {
    width: 33%;
}

section.home-list .pro {
    display: flex;
    justify-content: center;
    margin-top: var(--m30);
}

section.home-list img.img-fluid {
    width: 100%;
    height: 320px;
    object-fit: cover;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

section.home-list .pro-img:hover img {
    transform: scale(1.14);
}

section.home-list .pro-img a::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 15px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    width: calc(100% - 66px);
    left: 33px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}

section.home-list .pro-img a::after {
    content: "";
    position: absolute;
    top: 8px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    width: calc(100% - 16px);
    left: 8px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}


section.home-list .pro-img a {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    display: flex;
    border-radius: 0;
}

section.home-list .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--p40) var(--p25) var(--p25) var(--p25);
    background: var(--white-color);
    box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
    margin-top: -20px;
    border-radius: 0;
}

section.home-list .rating i {
    color: var(--other-color);
    margin-right: 0;
    font-size: var(--f14);
}

section.home-list .adr-rev {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #36454f59;
    margin-bottom: 15px;
}

section.home-list .rating {
    margin-bottom: 0;
    color: var(--other-color);
    font-size: 16px;
    min-width: 60px;
}

section.home-list h3.title {
    font-size: var(--f24);
    line-height: 30px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: var(--m11);
    height: auto;
    overflow: hidden;
    width: 100%;
}

section.locations-list-page h3.title{
    height: unset;
}

section.home-list h3.title a {
    color: var(--other-color);
}

.prop-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--m40);
}

section.home-list p.adr {
    font-size: var(--f15);
    font-weight: 400;
    color: var(--para-color);
    margin-bottom: 0;
    line-height: 1.5;
    height: 22px;
    overflow: hidden;
    border-bottom: 0px solid #36454f59;
    padding-bottom: 0;
}

.prop-view-btn {
    padding-top: var(--p20);
}

.prop-view-btn a {
    text-decoration: underline;
    font-size: var(--f18);
}

section.home-list .descp {
    max-height: 60px;
    overflow: hidden;
}

section.home-list .how-we-value-heading {
    text-align: center;
}

section.home-list .amn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #36454f59;
    padding-top: var(--p20);
}

section.home-list ul {
    margin: 0 0 0;
    padding: 0;
    /* background-color: #f2f2f2; */
    font-size: var(--f14);
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

section.home-list i {
    margin-right: var(--m8);
    color: var(--secondary-color);
}

section.home-list ul li {
    font-size: var(--f14);
    color: var(--black-color);
    font-weight: 500;
}

section.home-list ul.last li {
    color: var(--other-color);
}

section.home-list h5 {
    font-size: var(--f18);
    color: #ad7630;
    font-weight: 500;
    margin-bottom: 0;
}

section.home-list .pro-img {
    position: relative;
}

section.home-list h5 span {
    font-weight: 600;
    font-size: var(--f22);
    color: var(--white-color);
}

section.home-list .featured span {
    font-weight: 500;
    font-size: var(--f13);
    color: var(--white-color);
    background-color: var(--heading-color);
    padding: 4px 12px;
    display: inline-block;
    border-radius: 30px;
}

section.home-list .featured {
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 1;
}

section.home-list .how-we-value-heading p {
    font-size:var(--f12);
    color: white;
    background-color: #ef3f3e;
    text-transform: uppercase;
    padding: 4px 18px;
    line-height: 1.7;
    border-radius: 3px;
    font-family: var(--secondary-font);
    font-weight: 600;
}

section.home-list .how-we-value-heading h2 {
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 0px;
}

section.home-list .how-we-value-heading h6 {
    line-height: 1.3;
    color: var(--secondary-color);
    letter-spacing: 0.03em;
    font-size: var(--f17);
    font-weight: 600;
    margin-bottom: 0px;
}

.form-control:focus {
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
}

/* div#p-list {
background: var(--lt-bg-color);
} */
.datepicker {
    left: 0;
}   
.locc-srch .search-bar-inner .check{
    width:25%;
}
.locc-srch  .search-bar-inner .search-btn{
     width:25%;
}
.search-bar-inner .col-4.datepicker-common-2.datepicker-main {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 50%; */
    width: 200%;
    height: 62px;
    padding: 0
}

section.search-sec {
    padding: 0.5rem 1rem;
    padding-top: 146px;
    z-index: 3;
    position: relative;
    top: 0;
    width: 100%;
    left: 0;
}
section.search-sec .container-fluid{
    /* padding:0; */
}
.hero-content {
    z-index: 1;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items:center;
    left: 0;
}
.hero-content a.main-btn.filter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-bar-inner input[type=text], .search-bar-inner select {
    background: 0 0;
    border: 0 solid;
    width: 100%;
    padding-left: 0;
    font-size: 14px;
    color: #000;
    height: 28px;
}
.search-bar {
    backdrop-filter: blur(0px);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}
.search-bar {
    margin-top: 0;
    border: 1px solid #ddd;
    border-radius: 100px;
    padding: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 850px;
    /* transform: translateX(-50%); */
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    background: #fff;
    /* overflow: hidden; */
}
.search-bar .container {
    padding: 0;
}
.search-bar-inner .row {
    position: relative;
    width: 100%;
    /* gap: 10px; */
    justify-content: space-between;
}
section.search-sec .col-4 {
    padding: 15px 24px;
    border-radius: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.search-bar .destination-list {
    position: absolute;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.14));
    width: 425px;
    background: #fff;
    /* clip-path: inset(0 round 32px); */
    padding: 24px 24px;
    border-radius: 32px;
    /* height: 390px; */
    /* overflow-y: scroll; */
    left: 0;
    top: 70px;
    display: none;
}
section.search-sec form label {
    font-size: 12px;
    display: block;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 3px;
}
section.search-sec form input {
    font-size: 0.875rem !important;
    border: 0px solid;
    height: 18px !important;
    color: #222 !important;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
}
.search-bar .destination-list-info {
    width: 100%;
    height: 390px;
    overflow-y: scroll;
}
.search-bar .destination-list-info p.destination-head {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 4px;
}

.search-bar .destination-list-info li {
    padding: 8px 0;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.search-bar .destination-list-info li img {
    background: #f4f4f4;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.search-bar .destination-list-info li p {
    font-size: 14px;
    color: var(--primary-color);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
    line-height: 18px;
}
.search-bar .check-search {
    position: relative;
}
.search-bar .check-field {
    display: flex;
}
input#demo17 {
    top: 0 !important;
    padding-left: 0;
    width: 100% !important;
    height: 46px !important;
    left: 0;
}
#datepicker-demo17.datepicker {
    top: 50px;
}
.search-bar .datepicker {
    width: 590px;
    background: #fff;
    padding: 30px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.14));
    border-radius: 32px;
    left: -80%;
}
.search-bar .datepicker__inner {
    padding: 7px 0;
}
.search-bar .guests-list-info {
    position: absolute;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.14));
    width: 425px;
    background: #fff;
    padding: 16px 40px;
    border-radius: 32px;
    right: 0;
    top: 70px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.14));
    display: none;
}
.search-bar .guest-listing {
    padding: 24px 0;
    border-bottom: 1px solid #EBEBEB;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.search-bar .guest-listing h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: var(--primary-font);
}
.search-bar .guest-listing .guest-list-para p {
    font-size: 14px;
    color: var(--primary-color);
    text-shadow: 0 0 0;
    letter-spacing: 0;
}
.search-bar .guest-list-btn {
    display: flex;
    align-items: center;
    width: 104px;
    justify-content: space-between;
}
.search-bar .guest-list-btn button {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    color: #000;
}
.search-bar .guest-list-btn button.minus-btn {
    color: #EBEBEB;
    border-color: #EBEBEB;
}
.search-bar .guest-list-btn p {
    font-size: 16px;
    color: var(--primary-color);
    text-shadow: 0 0 BLACK;
    line-height: 1;
    margin-bottom: 0;
}
.search-bar .search-form-btn .main-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100%;
    background-color: var(--btn-color);
    color: var(--white-color);
}

div#exampleModal .modal-dialog{
max-width: 568px;
}
div#exampleModal .modal-content{
  border-radius:32px;
}
div#exampleModal .modal-header{
  padding-left:24px;
  padding-right:24px;
      border-bottom: 1px solid #ddd;
}
div#exampleModal .modal-header h1{
     width: 100%;
    text-align: center;
    font-size: 16px !important;
    color: #222; 
  letter-spacing:2px;
  text-transform:capitalize;
}
div#exampleModal .modal-header .btn-close{
      position: absolute;
    right: 24px;
}
div#exampleModal .modal-body{
  padding: 0 24px;
    height: 360px;
    overflow-y: scroll;
}
div#exampleModal .recommended-content {
    padding: 28px 0;
    border-bottom: 1px solid #EBEBEB;
}
div#exampleModal h3{
 font-size:20px; 
}
div#exampleModal .recommended-list-item {
    width: 24%;
}
div#exampleModal .recommended-list-item .recommended-list-img {
    width: 118px;
    height: 112px;
    border: 1px solid #ddd;
    transition-duration: 0.15s;
    transition-property: transform, background-color, border-color;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
    border-radius: 12px;
      display: flex;
    align-items: center;
    justify-content: center;
  margin-bottom:12px;
}
div#exampleModal .recommended-list-item .recommended-list-img:hover{
  border-color:#000;
}
div#exampleModal .recommended-list-item .recommended-list-cont {
    text-align: center;
}
div#exampleModal .recommended-list-item .recommended-list-cont p{
 margin-bottom:0; 
      font-size: 14px;
    letter-spacing: 0;
}
div#exampleModal .recommended-list-item .recommended-list-img img{
 width:56px; 
}
div#exampleModal .recommended-list {
    display: flex;
    justify-content: space-between;
}
div#exampleModal .place-type {
    padding-top: 28px;
    padding-bottom: 28px;
  border-bottom: 1px solid #EBEBEB;
}
div#exampleModal .place-type ul{
     display: flex;
    width: 100%;
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 16px; 
}
div#exampleModal .place-type ul li a{
      display: inline-flex;
    width: 100%;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
  border-right:1px solid #ddd;
}
div#exampleModal .place-type ul li:last-child a{
  border-right:0px solid #ddd;
}
div#exampleModal .place-type ul li{
 width:33.33% 
}
div#exampleModal .place-type ul li a.active{
 border:2px solid #000; 
  border-radius:12px;
}
div#exampleModal .place-type ul li a:hover{
 border-radius:12px;
  background:#f7f7f7;
      color: var(--btn-color);
  border-right:0px solid #ddd;
}
div#exampleModal .place-type ul li a.active:hover{
 border:2px solid #000; 
  border-radius:12px;
   background:transparent;
}
div#exampleModal .bed-rooms{
  padding-top:28px;
  padding-bottom:28px;
  border-bottom: 1px solid #EBEBEB;
}
div#exampleModal .bed-rooms-list p{
  margin-bottom:0;
}
div#exampleModal .bed-rooms-list button{
 width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #B0B0B0;
    color: #B0B0B0; 
}
div#exampleModal .bed-rooms-list button:hover{
 border-color:#222;
  color:#222;
}
div#exampleModal .bed-rooms-list .bed-rooms-right {
    display: flex;
    align-items: center;
}
div#exampleModal .bed-rooms-list .bed-rooms-right p{
 width:80px;
  padding-left:8px;
  padding-right:8px;
  text-align:center;
}
div#exampleModal .bed-rooms-list .bed-rooms-info {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
div#exampleModal .bed-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
div#exampleModal .amenities-info{
  padding-top:28px;
  padding-bottom:28px;
  border-bottom: 1px solid #EBEBEB;
}
div#exampleModal .amenities-info h5{
 font-size:16px;
  margin-bottom:12px;
}
div#exampleModal .amenities-info li a{
     display: inline-flex;
     padding: 11px 16px;
     transition: box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1), transform 0.1s cubic-bezier(0.2, 0, 0, 1), border-color 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s cubic-bezier(0.2, 0, 0, 1);
     border-radius: 28px;
     border: 1px solid #ddd;
     align-items: center;
     gap: 8px;
}
div#exampleModal .amenities-info li a:hover{
 color:var(--btn-color);
  border-color:var(--btn-color);
}
div#exampleModal .amenities-info ul{
     display: inline-flex;
    flex-wrap: wrap;
    gap: 12px 8px; 
}
div#exampleModal .amenities-info .amenities-list {
    margin-bottom: 30px;
}
div#exampleModal .amenities-info .amn-show a{
      display: inline-flex;
    align-items: center;
    gap: 6px;
}
div#exampleModal .amenities-info .amn-show a.less-btn{
 display:none; 
}
.amenity-list-item {
    height: 160px;
    overflow: hidden;
}
div#exampleModal .booking-options {
    padding-top: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #EBEBEB;
}
div#exampleModal .booking-options li a{
  display: inline-flex;
    padding: 11px 16px;
    transition: box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1), transform 0.1s cubic-bezier(0.2, 0, 0, 1), border-color 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s cubic-bezier(0.2, 0, 0, 1);
    border-radius: 28px;
    border: 1px solid #ddd;
    align-items: center;
    gap: 8px;
}
div#exampleModal .booking-options li a:hover{
     color: var(--btn-color);
    border-color: var(--btn-color); 
}
div#exampleModal .booking-options ul{
     display: inline-flex;
    flex-wrap: wrap;
    gap: 12px 8px; 
}
div#exampleModal div#accordionFlushExample .accordion-button{
  padding:0 !important;
  line-height: 1.3;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 20px;
}
div#exampleModal div#accordionFlushExample .accordion-item{
      padding-top: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #EBEBEB;
}
div#exampleModal div#accordionFlushExample .accordion-item:last-child{
     /* padding-bottom:0px; */
}
div#exampleModal div#accordionFlushExample .accordion-button:not(.collapsed){
  background-color:#fff !important;
  box-shadow: inset 0 calc(0 * 0) 0 var(--bs-accordion-border-color) !important;
}
div#exampleModal div#accordionFlushExample .accordion-body {
    padding: 0;
    padding-top: 15px;
}
div#exampleModal div#accordionFlushExample .property-type a{
      display: inline-flex;
    padding: 11px 16px;
    transition: box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1), transform 0.1s cubic-bezier(0.2, 0, 0, 1), border-color 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s cubic-bezier(0.2, 0, 0, 1);
    border-radius: 28px;
    border: 1px solid #ddd;
    align-items: center;
    gap: 8px;
}
div#exampleModal div#accordionFlushExample .property-type a:hover{
  color: var(--btn-color);
    border-color: var(--btn-color);
}
div#exampleModal div#accordionFlushExample .property-type a img{
 width:24px; 
}
div#exampleModal div#accordionFlushExample .property-type ul{
  display: inline-flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}
div#exampleModal div#accordionFlushExample .accessibility-features-list h5{
        font-size: 16px;
    margin-bottom: 12px;
}
div#exampleModal div#accordionFlushExample .accessibility-features-list input{
 width:22px;
  height:22px;
  border-radius:6px;
}
div#exampleModal div#accordionFlushExample .accessibility-features-list label{
 font-size:16px; 
}
div#exampleModal div#accordionFlushExample .accessibility-features-list li{
 display: flex;
    align-items: center;
    gap: 16px; 
  margin-bottom:24px;
}
div#exampleModal div#accordionFlushExample .modal-footer{
      box-shadow: 0 -2px 16px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 16px 24px;
}
div#exampleModal .modal-footer>*{
  margin:0;
}
div#exampleModal .modal-footer{
     justify-content: space-between; 
  padding:16px 24px;
}
div#exampleModal .modal-footer .main-btn{
 padding-top:11px;
  padding-bottom:11px;
}
div#exampleModal .modal-footer button.clear-btn {
    padding: 10px;
    border: 0px solid;
    border-radius: 8px;
    font-size: 16px;
    background: transparent;
}
div#exampleModal .modal-footer button.clear-btn:hover{
  background: #f7f7f7;
}

.pro-list-details img{
  width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    box-shadow: 0px 2px 4px -1px rgba(61, 5, 5, 0.2), 0px 4px 5px 0px rgba(61, 5, 5, 0.14), 0px 1px 10px 0px rgba(61, 5, 5, 0.12);
}
.pro-list-details .pro-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
}
.pro-list-details .pro-icon {
    bottom: 0;
    position: absolute;
    z-index: 2;
    height: auto;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(39, 39, 39, 0.59) 41.95%, rgba(28, 28, 28, 0.74) 100%);
    border-bottom-left-radius: 0;
    -webkit-transform: translateZ(1px);
    -moz-transform: translateZ(1px);
    -ms-transform: translateZ(1px);
    transform: translateZ(1px);
    border-bottom-right-radius: 0;
    width: 100%;
    padding:12px;
}
.pro-list-details .pro-icon ul{
 display:flex;
 align-items:center;
 gap:16px;
 justify-content: space-around;
}
.pro-list-details .pro-icon ul li{
  display:flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color:var(--white-color);
}
.pro-list-details .pro-icon ul li svg{
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     width: 25px;
     height: 25px;
     display: inline-block;
     fill: currentColor;
     -webkit-flex-shrink: 0;
     -ms-flex-negative: 0;
     flex-shrink: 0;
     -webkit-transition: fill 200ms 
cubic-bezier(0.4, 0, 0.2, 1) 0ms;
     transition: fill 200ms 
cubic-bezier(0.4, 0, 0.2, 1) 0ms;
     font-size: 1.5rem;
     color: white;
     font-size: 16px;
}
.pro-list-details .pro-cont {
    margin-top: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 20px;
    border-radius: 0px 0 10px 10px;
    transition: .45s;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 170px;
}
.pro-list-details .pros-btn {
    margin-top: 15px;
    transition: .8s;
    bottom: -70px;
    position: relative;
}
.pro-list-details .pro-list:hover .pros-btn{
    bottom: 0px;
}
.pro-list-details .pros-btn .main-btn{
    width:100%;
    text-align:center;
}
.pro-list-details .pro-list {
    overflow: hidden;
    /* height: 455px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}
.pro-list-details .pro-list:hover{
    /* transition: .45s; */
    /* height: 535px; */
}
.pro-list-details .pro-list:hover .pro-cont {
 bottom:0px;
}
.pro-list-details .pro-cont h3{
      /* font-weight: 400; */
      font-size: 17px;
      /* line-height: 150%; */
      letter-spacing: 2px;
      margin-bottom: 10px;
}
.pro-list-details .pro-cont h3 a{
    font-family:var(--heading-font);
}
.pro-list-details .pro-cont p a{
  color:var(--secondary-color);
}
.pro-list-details .pro-cont p{
    line-height:1;
    margin-bottom:0;
}
.pro-list-details .pro-img img:hover{
  -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.pro-list-details .pro-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    text-align: center;
    justify-content: center;
}
section.pro-list-sec {
    padding: 0;
}
section.pro-list-sec .container-fluid{
  padding: 0;
}
section.pro-list-sec .col-7, section.pro-list-sec .col-5{
  padding:0;
}
section.pro-list-sec .pro-list-left {
    width: 62%;
    padding-left: 48px !important;
    padding-right: 48px !important;
}
section.pro-list-sec .pro-list-head {
    padding-top: 24px;
    padding-bottom: 24px;
}
section.pro-list-sec .pro-list-right{
  width: 38%;
  padding-top:24px;
  padding-bottom:24px;
  padding-right:48px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}
section.pro-list-sec h1{
      font-size: 30px;
    color: var(--heading-color);
    margin-bottom: 0;
}
section.pro-list-sec .pro-list-content .col-6{
 width:49%;
  padding:0;
}
section.pro-list-sec .pro-list-content .row{
 gap:30px 2%; 
}
.pro-list-map {
    position: sticky;
    top: 140px;
    height: 80vh;
    width: 100%;
}