section.airbnb-section .head-sec{
  margin-bottom:40px;
}
section.airbnb-section .airbnb-img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
section.airbnb-section .airbnb-img img{
  width: 100%;
    height: 400px;
  object-fit:cover;
}
section.airbnb-section .airbnb-content {
     position: absolute;
     width: 100%;
     padding: 15px;
     bottom: -125px;
     z-index: 1;
     transition: all 0.3s;
     border-radius: 0 0 20px 20px;
     background: #00000045;
}
.airbnb-info {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}
section.airbnb-section .airbnb-content h4{
 color: var(--white-color);
    text-shadow: 0px 0px 2px #000;
    font-size: 20px;
  font-weight:600;
  margin-bottom: 5px;
}
section.airbnb-section .airbnb-content h4 a{
  color: var(--white-color);
    text-shadow: 0px 0px 2px #000;
}
section.airbnb-section .airbnb-content p{
  color: var(--white-color);
    text-shadow: 0px 0px 2px #000;
  margin-bottom: 5px;
}
section.airbnb-section .airbnb-info:hover .airbnb-content {
  bottom:0;
}