.icon_div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: solid 2px #4d7d4b;
    border-radius: 10px;
    padding: 10px;
}
.container2 {
      width: 100%;
      display: flex;
      justify-content: space-between;
}

.icon_div p{
    margin: 0;
}

.container2 .box {
    width: 100%;
    position: relative;
}

.block-form{
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
  }

.container2 .box:first-of-type:after {
    content: "";
    position: absolute;
    left: 72px;
    top: 0;
    transform: translateY(-50%);
}

.container2 .box .top {
    position: relative;
    height: 300px;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}

.container2 .box .top:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(18 152 254 / 43%);
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    border-radius: 20px;
}

.container2 .box .top:hover:before {
opacity: 1;
}

.container2 .box .top:after {
    content: "View Property";
    color: white;
    font-size: 12px;
    padding: 10px;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
    z-index: 3;
    border-radius: 20px;
}

.container2 .box .top:hover:after {
    opacity: 1;
}


.container2 .box .top img {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    height: 100%;
    width: 100%;
}

.container2 .box .top span {
    position: absolute;
    right: 20px;
    bottom: 15px;
    color: white;
    font-size: 20px;
}

.container2 .box .top span i {
    margin-left: 5px;
}

.container2 .box .bottom {
    padding: 20px 15px;
    position: relative;
}

.container2 .box:not(:last-of-type) .bottom:before {
    content: "Hot";
    background-color: #ea723d;
    color: white;
    font-size: 11px;
    padding: 4px 7px;
    position: absolute;
    left: 20px;
    top: -40px;
    z-index: 1;
}

.icon_div img {
    width: 2rem;
}

.container2 .box .bottom h3 {
    text-align: center;
    font-size: 1rem;
    max-height: 60px;
}

.container2 .box .bottom > span {
    font-size: 1.2rem;
    line-height: 3;
}

.container2 .box .bottom .advants {
    display: flex;
}

.container2 .box .bottom .advants > div {
    margin-right: 15px;
}

.container2 .box .bottom .advants > div > span {
    font-weight: bold;
    font-size: 12px;
}

.container2 .box .bottom .advants > div > div {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.container2 .box .bottom .advants > div > div i {
    font-size: 22px;
}

.container2 .box .bottom .advants > div > div > span {
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.container2 .box .bottom .advants > div > div > span > span {
    font-weight: normal;
    margin-left: 5px;
}

.container2 .box .bottom .price {
    margin-top: 20px;
}

.container2 .box .bottom .price span:first-of-type {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.container2 .box .bottom .price span:last-of-type {
    font-size: 22px;
}


@media screen and (max-width: 768px) {
    .container2 .box .top img{
       max-width: 100%;
       max-height: 100%;
       object-fit: contain;
    }
    .container2 .box .top {
        position: relative;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .container2 .box .top img{
       max-width: 100%;
       max-height: 100%;
       object-fit: contain;
    }
    .container2 .box .top {
        position: relative;
        height: auto;
        align-items: center;
        display: flex;
        justify-content: center;
        width: auto;
    }
    .container2 .box .bottom .advants > div{
        width: 50%
    }
    .bottom img{
        width:2em;
        height: 2em;
    }
    .container2 .box .bottom h3 {
        text-align: center;
        font-size: 1rem;
        max-height: 70px;
    }
}



}