.awards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0px !important;
}

.award-item {
    text-align: center;
    width: 100%;
    padding:10px;
    position: relative;
}

.award-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
}
.award-item:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #ffffff36;
}
.award-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family:'Inter';
}

.award-item p {
    font-size: 12px;
    color: #000000;
    font-weight: 900;
    text-align: left;
    margin-bottom:0px;
}
.award-details {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-left: 5px solid #16AD87;
    z-index: 9;
    width: 96%;
    text-align: left;
    background: #ffffffbd;
    padding: 10px 10px 10px 20px;
}

/* properties search bar */
.properties-search-bar {
    max-width: 50% !important; 
    margin:0 auto;
}
.properties-search-bar #property-search-wrapper input[type="text"],
.properties-search-bar #property-search-wrapper select{
    height:50px;
    border:1px solid #D7D7D7 !important;
    padding: 10px 16px !important;
    border-radius: 0px !important;
}
.properties-search-bar #property-search-wrapper #search-button{
    background: #243B73 !important;
    border-color: #243B73 !important;
    display: inline-block;
    width: 28%;
    align-self: stretch;
    border-radius: 0 !important;
}
@media only screen and (max-width: 1024px) {
    .properties-search-bar {
        max-width: 100% !important; 
        margin:0 auto;
        padding:0px 15px;
    }
  
}
@media only screen and (max-width: 767px) {
    .award-item {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .properties-search-bar #property-search-wrapper{
        flex-wrap:wrap;
        gap: 10px;
    }
    .award-details {
        width: 95%;
    }
}

