.title {
    margin-top: 25px;
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    padding-right: 10px;
}
.title img {
    width: 36px;
    height: 28px;
    border-radius: 10px;
}
.title span {
    font-family: Cairo;
    font-size: 20px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: right;
    color: #2c7be5;
    margin-right: 4px;
}
.post {
    margin-top: 85px;
    background-color: #2c7be5;
    margin-bottom: 10px;
    width: 360px;
    border-radius: 45px;
    position: relative; /* Add relative positioning to the container */
}

.post-img {
    width: 137px;
    height: 137px;
    border-radius: 50%;
    border: 2px solid #2c7be5;
    box-shadow: 0px 0px 8px 0px #2c7be5;
    position: absolute;
    left: 50%; /* Move the left side of the image to the center of the container */
    transform: translate(
        -50%,
        -50%
    ); /* Use transform to center the image precisely */
}

.post-details h5 {
    padding-top: 70px;
    font-family: Cairo;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    margin: 0px;
}
.contact-post {
    display: flex;
    justify-content: space-around;
}
.address,
.contact {
    display: flex;
    align-items: center;
    align-content: center;
    color: white;
}
.address img {
    width: 24px;
    height: 24px;
    margin: 5px;
}
.contact img {
    width: 20px;
    height: 20px;
    margin: 5px;
}
.post-details p {
    padding: 5px 15px;
    color: white;
    text-align: center;
}
