.logo_head {
    position: relative;
}

/*about us*/

.about_head {
    width: fit-content;
    color: var(--main);
    background-color: rgba(254, 247, 226, 1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    max-height: 421px;
}

.video-wrapper video {
    width: 100%;
    display: block;
}
.custom-play-btn{
    transition: all 0.3s ease-in-out;
}
.custom-play-btn i {
    font-size: 22px;
    color: #c8a976;
}

.video-wrapper video.playing+.custom-play-btn {
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}

.icon_div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(115 108 97);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}


.circ_after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 51px;
    height: 51px;
    background-color: #00000033;
    z-index: 2;
    transition: all 0.3s ease-in-out;

}

.circ_before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: rgb(0 0 0 / 9%);
    z-index: 1;
    transition: all 0.3s ease-in-out;

}



/* testimonials */
.testimonials .owl-stage-outer {
    display: grid;
}

.testimonials .owl-stage {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.testimonials .owl-carousel.owl-drag .owl-item {
    height: unset;
    background: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 28px;
}

.testimonials .client_img {
    width: 50px !important;
}

.testimonials .client_name {
    color: var(--main) !important;
    font-weight: bold;
    height: 45px;
}

.testimonials .client_name {
    color: var(--main) !important;
    font-weight: bold;
    height: 45px;
}

.testimonials p {
    height: 37px;
}


.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* عرض 3 سطور فقط */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}



.show-more {
    color: var(--main);
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
}

/*latest_news*/
.news {
    background-color: #fff;
    border-radius: 28px;

}

.news_title{
    color: black;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
    height: 53px;
}