html {
    scroll-behavior: smooth;
}

.home-page {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.home-page .topArrow {
    border: none;
    cursor: pointer;
    background-color: var(--main-green-color);
    color: var(--main-white-color);
    opacity: 1;
    border-radius: 10px;
    padding: 7px 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    z-index: 99;
    opacity: 0;
    animation: bounce_513 1s infinite;
}


@keyframes bounce_513 {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}


.home-page .home_banner {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    margin-bottom: 60px;
    padding: 0 !important;
}

.home-page .home_banner .owl-carousel.owl-theme {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer {
    width: 100%;
    height: 100%;
}



.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage,
.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item,
.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .item {
    width: 100%;
    height: 100%;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .item {
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 100px;
    padding-inline-start: 60px;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content {
    width: 50%;
    text-align: start;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content h2 {
    font-weight: 700;
    font-size: 40px;
    color: var(--main-white-color);
    margin-bottom: 15px;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content p {
    font-weight: 600;
    font-size: 20px;
    color: var(--main-gray-color);
    margin-bottom: 45px;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content a.read-more {
    color: var(--main-white-color);
    background: var(--main-green-color);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 55px;
    font-weight: 600;
    font-size: 16px;

    z-index: 1;
    position: relative;
    outline: none;
    border: none;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content a.read-more::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 4px solid var(--main-green-color);
    transform-origin: center;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content a.read-more:hover::before {
    transition: all 0.75s ease-in-out;
    transform-origin: center;
    transform: scale(1.4);
    opacity: 0;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
}

.home-page .home_banner .owl-carousel.owl-theme .owl-nav {
    width: 100%;
    height: 10px;
    position: absolute;
    top: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 180px;
    padding-inline-start: 60px;
    margin-top: 0;
}

.home-page .home_banner .owl-carousel.owl-theme .owl-nav button {
    color: var(--main-white-color);
    font-size: 20px;
    background-color: transparent;
}

.home-page .home_banner .custom-paginator-container {
    width: 173px;
    height: 10px;
    position: absolute;
    top: 500px;
    z-index: 999;
    margin-inline-start: 90px;
}

.home-page .home_banner .custom-paginator-container .paginator-pages-slider {
    width: 100%;
    height: 8px;
    background-color: var(--main-gray-color);
    position: relative;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.home-page .home_banner .custom-paginator-container .paginator-pages-slider .current-page {
    height: 8px;
    background-color: var(--main-red-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.home-page .home_banner .social-links {
    width: 100%;
    position: absolute;
    bottom: 35px;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.home-page .home_banner .social-links ul::before {
    content: "";
    position: absolute;
    right: 120px;
    width: 30%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-page .home_banner .social-links ul::after {
    content: "";
    position: absolute;
    left: 120px;
    width: 30%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-page .home_banner .social-links ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-page .home_banner .social-links ul li {
    margin-inline-end: 27px;
}

.home-page .home_banner .social-links ul li a {
    color: var(--main-white-color);
    font-size: 21px;
}

/*  */
ul li a .icon {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

ul li:hover a .icon {
    color: var(--main-green-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

/* start  our news section  */

.home-page .our_news {
    width: 100%;
    padding: 0 120px;
    margin-bottom: 72px;
}

.home-page .our_news .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .our_news .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .our_news .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_news .title h3:hover {
    color: var(--main-green-color);
}

.home-page .our_news .news {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-gap: 25px;
}

.home-page .our_news .news article {
    width: 100%;
    height: 376px;
    position: relative;
    margin-bottom: 142px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.home-page .our_news .news article a:first-of-type {
    width: 100%;
    height: 100%;
    position: absolute;
}

.home-page .our_news .news article img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.home-page .our_news .news article .more-info {
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 9;
    position: relative;
    font-size: inherit;
    font-family: inherit;
    color: white;
    padding: 0.5em 1em;
    outline: none;
    border: none;
}

.home-page .our_news .news article .more-info::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.5;
    transform-origin: center top;
    transform: scaleY(0);
    transition: transform 0.25s ease-in-out;
}

.home-page .our_news .news article .more-info:hover::before {
    transform-origin: center bottom;
    transform: scaleY(1);
}

.home-page .our_news .news article .more-info p {
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    color: var(--main-white-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_news .news article .more-info:hover p {
    opacity: 1;
}

.home-page .our_news .news article .more-info p:hover {
    color: var(--main-black-color);
}

.home-page .our_news .news article .more-info p span {
    color: var(--main-green-color);
}

.home-page .our_news .news article .details {
    width: 80%;
    min-height: 142px;
    padding: 20px;
    background-color: var(--main-white-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: -71px;
    left: 10%;
    z-index: 99;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_news .news article .details:hover {
    box-shadow: 0 0 8px 0 #bcb7b7;
}

.home-page .our_news .news article .details h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--main-black-color);
    margin-bottom: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .our_news .news article .details h4:hover {
    color: var(--main-green-color);
}

.home-page .our_news .news article .details small {
    display: flex;
    align-items: center;
    color: rgba(140, 141, 143, 0.5);
    font-weight: 600;
    font-size: 13px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .our_news .news article .details small:hover {
    color: rgba(65, 66, 67, 0.5);
}

.home-page .our_news .see-more {
    width: 100%;
    text-align: center;
}

.home-page .our_news .see-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 199px;
    height: 55px;
    background: var(--main-green-color);
    font-weight: 600;
    font-size: 16px;
    color: var(--main-white-color);
    margin: 0 auto;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_news .see-more a:hover {
    background: transparent;
    color: var(--main-green-color);
    border: 1px solid var(--main-green-color);
}

/*  our_office */

.home-page .our_office {
    width: 100%;
    margin-bottom: 72px;
}

.home-page .our_office .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .our_office .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .our_office .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .our_office .title h3:hover {
    color: var(--main-green-color);
}

.home-page .our_office .office {
    width: 100%;
    background-color: var(--light-gray-color);
    display: flex;
    justify-content: center;
}

.home-page .our_office .office img {
    width: 900px;
}

/* our_projects */

.home-page .our_projects {
    width: 100%;
    padding: 0 120px;
    margin-bottom: 72px;
}

.home-page .our_projects .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .our_projects .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .our_projects .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .our_projects .title h3:hover {
    color: var(--main-green-color);
}

.home-page .our_projects .projects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 45px;
}

.home-page .our_projects .projects .card {
    width: calc(50% - 15px);
    height: 205px;
    padding: 20px;
    display: flex;
    background-color: var(--light-gray-color);
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_projects .projects .card:hover {
    box-shadow: 0 0 3px 1px #bab6b6;
}

.home-page .our_projects .projects .card a:first-of-type {
    width: 100%;
    height: 100%;
    display: flex;
}

.home-page .our_projects .projects .card .card-image {
    min-width: 200px;
    max-width: 200px;
    height: 100%;
    margin-inline-end: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.home-page .our_projects .projects .card .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.home-page .our_projects .projects .card .card-image img {
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.home-page .our_projects .projects .card:hover .card-image img {
    transform: scale(1.05);
}

.home-page .our_projects .projects .card .card-body {
    width: 100%;

}

.home-page .our_projects .projects .card .card-body h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--main-black-color);
    margin-bottom: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_projects .projects .card .card-body h4:hover {
    color: var(--main-green-color);
}

.home-page .our_projects .projects .card .card-body small {
    display: flex;
    align-items: center;
    color: rgba(140, 141, 143, 0.5);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.home-page .our_projects .projects .card .card-body p {
    font-weight: 600;
    font-size: 13px;
    color: #8C8D8F;
    line-break: anywhere;
}

.home-page .our_projects .projects .card .card-body p span {
    color: var(--main-green-color);
}

.home-page .our_projects .see-more {
    width: 100%;
    text-align: center;
}

.home-page .our_projects .see-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 199px;
    height: 55px;
    background: var(--main-green-color);
    font-weight: 600;
    font-size: 16px;
    color: var(--main-white-color);
    margin: 0 auto;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .our_projects .see-more a:hover {
    background: var(--main-white-color);
    color: var(--main-green-color);
    border: 1px solid var(--main-green-color);
}


.home-page .online_reader {
    width: 100%;
    height: 473px;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, .3),
            rgba(0, 0, 0, 50)), url('../images/online-reader.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 70px;
    display: flex;
}

.home-page .online_reader .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-page .online_reader .content h2,
.home-page .qurane_app .content h2 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-white-color);
    margin-bottom: 35px;
}

.home-page .online_reader .content p,
.home-page .qurane_app .content p {
    font-weight: 600;
    font-size: 20px;
    color: var(--main-gray-color);
    margin-bottom: 60px;
}

.home-page .online_reader .content a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 199px;
    height: 55px;
    background: var(--main-green-color);
    font-weight: 600;
    font-size: 16px;
    color: var(--main-white-color);
    margin: 0 auto;
    transition: 0.3s;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.home-page .online_reader .content a:hover {
    background-color: transparent;
    border: 1px solid var(--main-green-color);
    color: var(--main-green-color);
}

.home-page .qurane_app {
    width: 100%;
    height: 473px;
    background-image: url('../images/qurani_bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 70px;
    display: flex;
    cursor: pointer;
}

.home-page .qurane_app .content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}

.home-page .qurane_app .content .links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

html[dir="ltr"] .home-page .qurane_app .content {
    margin-left: auto;
}

.home-page .qurane_app .content a {
    text-decoration: none;
}

.home-page .qurane_app .content a img {
    width: 200px;
    height: 60px;
}

.home-page .qurane_app .content h2 {
    font-size: 45px;
    color: var(--main-black-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .qurane_app .content h2:hover {
    color: var(--main-green-color);
}

.home-page .qurane_app .content p {
    color: var(--main-black-color);
}

.home-page .our_memberships {
    width: 100%;
    margin-bottom: 90px;
    padding: 0 120px;
}

.home-page .our_memberships .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .our_memberships .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .our_memberships .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .our_memberships .title h3:hover {
    color: var(--main-green-color);
}

.home-page .our_memberships .memberships-slider {
    width: 100%;
    position: relative;
}

.home-page .our_memberships .memberships-slider button {
    width: 40px;
    height: 40px;
    background-color: rgba(218, 37, 28, 0.14);
    border-radius: 8px;
    color: var(--main-red-color);
    border: none;
    cursor: pointer;
}

.home-page .our_memberships .memberships-slider button#prev {
    position: absolute;
    right: 0;
    z-index: 9;
}

.home-page .our_memberships .memberships-slider button#next {
    position: absolute;
    left: 0;
    z-index: 9;
}

.home-page .our_memberships .memberships-slider .images {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.home-page .our_memberships .memberships-slider .images .slick-list {
    width: 100%;
}

.home-page .our_memberships .memberships-slider .slick-track {
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.home-page .our_memberships .memberships-slider .images img {
    width: 140px;
    height: 140px;
    margin-inline-end: 40px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    border-radius: 50%;
}

.home-page .our_memberships .memberships-slider .images .slick-center img {
    width: 160px;
    height: 160px !important;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.home-page .activities_photos {
    width: 100%;
    padding: 0 120px;
    margin-bottom: 80px;
}

.home-page .activities_photos .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .activities_photos .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .activities_photos .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.home-page .activities_photos .title h3:hover {
    color: var(--main-green-color);
}

.home-page .activities_photos .activities-photos-slider {
    width: 100%;
}

.home-page .activities_photos .activities-photos-slider .item {
    height: 400px;
    margin-inline-end: 16px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.home-page .activities_photos .activities-photos-slider .item img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.home-page .activities_photos .activities-photos-slider .owl-theme .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.home-page .activities_photos .activities-photos-slider .owl-theme .owl-nav .owl-prev,
.home-page .activities_photos .activities-photos-slider .owl-theme .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    background-color: transparent;
    padding: 0 5px;
    color: var(--main-green-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-green-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .activities_photos .activities-photos-slider .owl-theme .owl-nav .owl-prev:hover,
.home-page .activities_photos .activities-photos-slider .owl-theme .owl-nav .owl-next:hover {
    color: var(--main-white-color);
    background-color: var(--main-green-color);
}

.home-page .activities_videos {
    width: 100%;
    padding: 0 120px;
    margin-bottom: 80px;
}

.home-page .activities_videos .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.home-page .activities_videos .title small {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-green-color);
}

.home-page .activities_videos .title h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--main-black-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-page .activities_videos .title h3:hover {
    color: var(--main-green-color);
}

.home-page .activities_videos .activities-videos-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* grid-template-columns: repeat(4, 1fr); */
    /* grid-template-rows: auto; */
    gap: 33px;
}

.home-page .activities_videos .activities-videos-container .item {
    display: block;
}

.home-page .activities_videos .activities-videos-container .item .item-video {
    width: 400px;
    height: 250px;
    margin-bottom: 8px;
}

.home-page .activities_videos .activities-videos-container .item .item-video iframe {
    width: 100%;
    height: 100%;
}

.home-page .activities_videos .activities-videos-container .item .item-data {
    display: block;
}

.home-page .activities_videos .activities-videos-container .item .item-data h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-dark-color);
    margin-bottom: 4px;
}

.home-page .activities_videos .activities-videos-container .item .item-data .item-footer {
    width: 100%;
    display: flex;
    align-items: center;
}

.home-page .activities_videos .activities-videos-container .item .item-data .item-footer p,
.home-page .activities_videos .activities-videos-container .item .item-data .item-footer span {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--main-paragraphs-color);
}

.home-page .activities_videos .activities-videos-container .item .item-data .item-footer span {
    font-size: 6px;
    margin: 0 4px;
}

/* @media only screen and (min-width: 1600px) {
    .home-page .activities_videos .activities-videos-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: auto;
        gap: 33px;
    }
} */

@media only screen and (max-width: 1350px) {
    .home-page .our_projects .projects {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
        margin-bottom: 45px;
    }

    .home-page .our_projects .projects .card {
        width: 100%;
        height: 205px;
    }
}

/* @media only screen and (max-width: 1200px) {
    .home-page .activities_videos .activities-videos-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 33px;
    }
} */

@media only screen and (max-width: 820px) {

    .home-page .home_banner .owl-carousel.owl-theme .owl-nav {
        top: 60%;
    }

    .home-page .home_banner .custom-paginator-container {
        top: 60%;
    }

    .home-page .safwa_events .comming-soon {
        padding: 30px;
    }

    .home-page .our_office {
        padding: 0 !important;
    }

    .home-page .our_office .office img {
        width: 90%;
    }

    .home-page .qurane_app {
        background-size: 100% 100%;
    }

    .home-page .online_reader .content h2 {
        font-size: .5 1rem;
        text-align: center;
    }

    .home-page .qurane_app .content {
        padding: 0;
    }

    .home-page .online_reader .content p {
        font-size: 16px;
        text-align: center;
    }

    .home-page .qurane_app .content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .home-page .qurane_app .content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .home-page .qurane_app .content a img {
        width: 150px;
        height: 50px;
    }

    .home-page .our_memberships {
        padding: 0 60px;
    }

    .home-page .our_memberships .memberships-slider .slick-track {
        padding: 0 20px;
    }

    .home-page .our_projects {
        padding: 0 60px;
    }

    .home-page .our_news {
        padding: 0 60px;
    }

    .home-page .our_news .news {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-gap: 25px;
    }

    .home-page .activities_photos {
        padding: 0 60px;
    }

    .home-page .activities_photos .activities-photos-slider .item {
        height: 350px;
    }

    .home-page .activities_videos {
        padding: 0 60px;
    }

    /* .home-page .activities_videos .activities-videos-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 33px;
    } */
}

@media only screen and (max-width: 600px) {

    .home-page>section {
        padding: 0 30px !important;
    }

    .home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .item {
        padding-top: 30px;
        padding-inline-start: 30px;
    }

    .home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content {
        width: 100%;
        padding-inline-end: 30px;
    }

    .home-page .home_banner .owl-carousel.owl-theme .owl-stage-outer .owl-stage .owl-item .content h2 {
        font-size: 25px;
    }

    .home-page .home_banner .owl-carousel.owl -theme .owl-stage-outer .owl-stage .owl-item .content p {
        font-size: 16px;
    }

    .home-page .home_banner .owl-carousel.owl-theme .owl-nav {
        padding-inline-start: 30px;
        top: 80%;
    }

    .home-page .home_banner .custom-paginator-container {
        margin-inline-start: 60px;
        top: 80%;
    }

    .home-page .safwa_events .comming-soon {
        flex-direction: column;
    }

    .home-page .safwa_events .comming-soon>div {
        margin-bottom: 20px;
    }

    .home-page .qurane_app {
        /* background-size: 280% 100%; */
        background-image: none;
        background-color: var(--light-gray-color);
    }

    .home-page .qurane_app .content {
        width: 100%;
    }

    .home-page .qurane_app .content .links {
        flex-wrap: wrap;
    }

    .home-page .home_banner .social-links ul::before {
        content: "";
        width: 0;
    }

    .home-page .home_banner .social-links ul::after {
        content: "";
        width: 0;
    }

    .home-page .our_projects .projects .card {
        width: 100%;
        height: auto;
    }

    .home-page .our_projects .projects .card a:first-of-type {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .home-page .our_projects .projects .card .card-image {
        min-width: 100%;
        max-width: 100%;
        height: 250px;
        margin-inline-end: 0;
        margin-bottom: 10px;
    }

    .home-page .our_news .news {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        grid-gap: 25px;
    }

    .home-page .our_news .news article .details {
        height: auto;
    }

    .home-page .activities_photos {
        padding: 0 30px;
    }

    .home-page .activities_videos {
        padding: 0 30px;
    }

}

@media only screen and (max-width: 480px) {

    /* .home-page .activities_videos .activities-videos-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 0;
    } */

    .home-page .activities_videos .activities-videos-container .item {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 43px;
    }

    .home-page .activities_videos .activities-videos-container .item .item-video {
        width: 100%;
    }

}
