

section.comments-section {
    text-align: center;
    font-family: "Cairo Play", sans-serif;
}
	.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.comment {
    width: calc(50% - 10vw);
    margin: 17px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.comment:hover {
    transform: translateY(-5px);
}

.comment-avatar {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #007bff; */
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.comment-avatar img {
    width: 100%;
    height: 117px;
    border-radius: 50%;
}

.comment-content {
    flex: 0 0 70%;
    padding: 20px;
    text-align: right;
}

.comment-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

@media screen and (max-width: 768px) {
    .comment {
        width: calc(100% - 20px);
    }
}
.footer {
    background-image: linear-gradient(45deg, #001d4b, #002054);
    color: #fff;
    padding: 20px 0;
    text-align: center;
	direction: rtl;
}

.footer p {
    margin: 5px 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}