/* root style  */
:root {
    --main-color: #79a148;
    --gray-color: #d9d9d980;
    --white-color: #fff;
    --black-color: #000;
    --bukra-regular: "bukra-regular";
    --bukra-bold: "bukra-bold";
}

/* fonts  */
@font-face {
    font-family: "bukra-regular";
    src: url(../assets/fonts/29ltbukraregular.ttf);
}
@font-face {
    font-family: "bukra-bold";
    src: url(../assets/fonts/29ltbukrabold.ttf);
}

/* tempalte  */
.f {
    display: flex;
}
.ac {
    align-items: center;
}
.jc {
    justify-content: center;
}
.jb {
    justify-content: space-between;
}
.py {
    padding-block: 5em;
    @media (max-width: 1024px) {
        padding-block: 2em;
    }
}
.p_top {
    padding-block-start: 5em;
    @media (max-width: 1024px) {
        padding-block-start: 2em;
    }
}
.p_bottom {
    padding-block-end: 5em;
    @media (max-width: 1024px) {
        padding-block-end: 2em;
    }
}
.row_reversed {
    flex-direction: row-reverse;
}
/* reset element  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    @media (max-width: 1250px) {
        font-size: 15px;
    }
    @media (max-width: 1024px) {
        font-size: 14px;
    }
    @media (max-width: 768px) {
        font-size: 12px;
    }
    @media (max-width: 460px) {
        font-size: 10px;
    }
}
a {
    text-decoration: none;
}
.container {
    padding-inline: 8.55em;
    @media (max-width: 1250px) {
        padding-inline: 4.55em;
    }
    @media (max-width: 1024px) {
        padding-inline: 3.55em;
    }
    @media (max-width: 992px) {
        padding-inline: 2.55em;
    }
    @media (max-width: 768px) {
        padding-inline: 1.55em;
    }
}
p {
    line-height: 100%;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
body {
    font-family: var(--bukra-regular);
}
body:has(.navbar.active) {
        overflow: hidden;
}
input {
    outline: 0;
    background: transparent;
    border: 0;
}
::placeholder {
    font-family: var(--bukra-regular);
}

/* header  */

.header {
    padding-block: 1em;
    background: var(--white-color);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.14);
    height: 10em;
    @media (max-width: 991px) {
        height:100%;
    }
}

.navbar {
    position: relative;
    z-index: 1;
    background: var(--main-color);
    width: fit-content;
    margin: auto;
    padding-block: 1.2em;
    border-radius: 6px;
    transform: translateY(-10px);
    @media screen and (max-width: 1024px) {
        transform: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        border-radius: 0;
        padding: 2em;
        height: 100vh;
        z-index: 10;
        transition: 0.4s;
    }
}
.navbar_bar {
    width: 3em;
    height: 3em;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    background: var(--main-color);
    right: 1em;
    top: calc(10em - .2em);
    font-size: 1.2em;
    color: var(--white-color);
    @media screen and (max-width: 1024px) {
        display: flex;
    }
    /* @media screen and (max-width: 1024px) {
        display: flex;
        top: 10em;
    }
    @media screen and (max-width: 768px) {
        top: 11em;
    }
    @media screen and (max-width: 690px) {
        top: 10em;
    }
    @media screen and (max-width: 460px) {
        top: 8.5em;
    }
    @media screen and (max-width: 380px) {
        top: 8em;
    } */
}
.navbar.active {
    right: 0;
}
.navbar .container {
    height: 100%;
}
.navbar ul {
    gap: 2em;
    @media (max-width: 1024px) {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4em;
        height: 100%;
    }
}
.navbar_close {
    display: none;

    @media (max-width: 1024px) {
        display: flex;
        position: absolute;
        top: 2em;
        left: 2em;
        font-size: 1.2em;
        background: var(--white-color);
        width: 4em;
        height: 4em;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }
}
.navbar a {
    font-size: 1em;
    color: var(--white-color);
    @media (max-width: 1024px) {
        font-size: 1.8em;
    }
}
.navbar a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white-color);
    transition: width 0.3s ease-in-out;
}
.navbar a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--white-color);
    transition: width 0.3s ease-in-out;
}
.navbar a:hover::after {
    width: 100%;
}

/* search input  */
.search_input {
    width: 20em;
    margin: 2em auto;
    height: 2.5em;
    border-radius: 2em;
    overflow: hidden;
    position: relative;
}
.search_input i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1em;
    opacity: 0.5;
}
.search_input input {
    width: 100%;
    height: 100%;
    background: var(--gray-color);
    padding-inline-start: 4em;
}

/* home hero banner  */
.hero_banner_container {
    background: var(--gray-color);
}
.green .hero_banner_container {
    background: var(--main-color);
}
.green .hero_banner_container * {
    color: var(--white-color);
}

.hero_banner_container .container {
    gap: 5em;
    @media (max-width: 1024px) {
        flex-wrap: wrap;
        gap: 2em;
        padding: 1em;
    }
}
.hero_banner_container_images {
    flex-grow: 1;
    @media (max-width: 1024px) {
        width: 100%;
    }
}
.hero_banner_container_text {
    padding-block: 2em;
    text-align: center;
    flex-direction: column;
    gap: 1em;
    color: var(--main-color);
    width: 60%;
    @media (max-width: 1350px) {
        width: 55%;
    }
    @media (max-width: 1024px) {
        width: 100%;
    }
}
.hero_banner_container_text h2 {
    margin-bottom: 1em;
    position: relative;
    font-family: var(--bukra-bold);
    font-size: 2.5em;
}
.hero_banner_container_text h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    bottom: -0.5em;
    left: 0;
}
.hero_banner_container_text p {
    font-size: 1.2em;
    line-height: 120%;
}
.general_btn {
    background: var(--main-color);
    color: var(--white-color);
    padding: 0.6em 4em;
    border-radius: 6px;
    font-size: 1.2em;
    margin-block: 1em;
    width: fit-content;
    margin: auto;
}
.general_btn.white {
    background: var(--white-color);
    color: var(--main-color);
}
.hero_banner_container_images {
    position: relative;
    @media (max-width: 1024px) {
        display: flex;
    }
}
.hero_banner_container_images_lg {
    width: 18em;
    height: 15em;
    transform: translateY(-40px);
    @media (max-width: 1024px) {
        width: 50%;
        transform: unset;
    }
}
.hero_banner_container_images_lg img {
    object-fit: cover;
}
.hero_banner_container_images_sm {
    position: absolute;
    right: 12em;
    top: 7em;
    width: 12em;
    height: 12em;
    border: 4px solid var(--white-color);
    @media (max-width: 1024px) {
        width: 50%;
        position: static;
        height: 15em;
        border: 0;
    }
}
.hero_banner_container_images_sm img {
    object-fit: cover;
}
.clip_path_top {
    position: absolute;
    width: 10em;
    height: 10em;
    z-index: -1;
    top: -5em;
    right: -5em;
    @media (max-width: 1024px) {
        display: none;
    }
}
.clip_path_bottom {
    position: absolute;
    width: 10em;
    height: 10em;
    z-index: -1;
    bottom: 0em;
    right: 5em;
    @media (max-width: 1024px) {
        display: none;
    }
}
.green .clip_path_top {
    right: 1em;
    top: 1em;
    z-index: 0;
}
.green .clip_path_bottom {
    z-index: 0;
    right: 16em;
    transform: rotate(32deg);
    bottom: 2em;
}
.green .hero_banner_container_images_lg {
    margin-inline-start: auto;
}
.green .hero_banner_container_images_sm {
    margin-inline-start: auto;
    left: 12em;
    right: unset;
}
.green .hero_banner_container_text h2::after {
    background: var(--white-color);
}

/* --------------- */
.competition-section {
    text-align: center;
}
.competition-section .container {
    @media (max-width: 1024px) {
        flex-wrap: wrap;
    }
}

.competition-section h2 {
    font-size: 2em;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 0.5em;
    border-bottom: 3px solid var(--main-color);
    display: inline-block;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 8em;
    flex-wrap: wrap;
    width: 100%;
    @media (max-width: 1024px) {
        gap: 2em;
    }
}

.step {
    text-align: center;
    width: calc((100% - 16em) / 3);
    @media (max-width: 1024px) {
        width: 100%;
    }
}
.step_container {
    align-items: center;
    gap: 0.5em;
}
.number {
    font-size: 6em;
    font-weight: bold;
    color: var(--main-color);
}

.step p {
    font-size: 1em;
    color: var(--main-color);
}

.progress {
    width: 100%;
    height: 1em;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.progress-bar {
    display: block;
    height: 100%;
    background: var(--main-color);
    width: 50%;
    border-radius: 1em;
}

.visitor-counter {
    margin-top: 5em;
    position: relative;
}

.counter {
    display: flex;
    font-size: 1.5em;
    font-weight: bold;
    background: black;
    flex-direction: row-reverse;
    color: var(--white-color);
    padding: 0.2em;
    border-radius: 6px;
    position: absolute;
    left: 2em;
    top: 50%;
    transform: translateY(-50%);
}

.counter span {
    display: inline-block;
    width: 1em;
    fill: linear-gradient(0deg, #060606 2.04%, #080808 77.23%, #363636 96.03%);
    padding: 0.4em 0.2em;
    color: var(--white-color);
    text-align: center;
    line-height: 30px;
    border-radius: 6px;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.2);
}

.bar {
    flex: 1;
    background: #6b8e23;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-inline-start: 3em;
    padding-block: 0.4em;
    font-size: 1.2em;
    color: var(--white-color);
    font-weight: bold;
}
.competition_images_container {
    gap: 1em;
    justify-content: center;
    margin-top: 3em;
    /*flex-wrap: wrap;*/
}
.competition_image {
    width: calc((85% - 1em) / 2);
    height: 25em;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    @media (max-width: 1024px) {
        width: 100%;
    }
    @media (max-width: 574px) {
        height: 20em;
    }
}
.competition_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.competition_image_badge {
    position: absolute;
    background: var(--main-color);
    padding: 0.7em 1em;
    color: var(--white-color);
    border-radius: 10px 0 0 10px;
    bottom: 20%;
    right: 0;
}
.competition_image_badge span {
    font-size: 1.2em;
    font-weight: bold;
}

.reward {
}
.reward h2 {
    color: var(--main-color);
    font-size: 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto 2em;
    padding-bottom: 0.3em;
    border-bottom: 3px solid var(--main-color);
    font-family: var(--bukra-bold);
}
.reward_content {
    text-align: center;
    font-size: 1.2em;
    color: var(--main-color);
    padding-block: 3em;
    padding-inline: 2em;
    width: 70%;
    margin: 0 auto;
    position: relative;
    @media screen and (max-width: 1024px) {
        width: 100%;
        padding-inline: 0em;
    }
}
.reward_content::before {
    content: "";
    display: block;
    width: 85%;
    height: 5px;
    background: var(--main-color);
    position: absolute;
    top: 0;
    right: 0;
    @media screen and (max-width: 1024px) {
        width: 80%;
    }
}
.reward_content::after {
    content: "";
    display: block;
    width: 90%;
    height: 5px;
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
    @media screen and (max-width: 1024px) {
        width: 80%;
    }
}

.reward_content p {
    line-height: 125%;
    font-size: 1.2em;
}
.reward_content img {
    width: 8em;
    height: 8em;
    position: absolute;
    left: -2em;
    top: -4em;
    line-height: 0;
    @media screen and (max-width: 1024px) {
        left: -1em;
    }
}
.qout2 {
    right: -2em;
    bottom: -5em;
    left: unset !important;
    top: unset !important;
    @media screen and (max-width: 1024px) {
        right: 1.5em;
    }
}

.goals {
    display: block;
}
.goals .container {
    gap: 1em;
    width: 60%;
    margin: auto;
    flex-wrap: wrap;
    @media screen and (max-width: 1024px) {
        width: 100%;
        padding-top: 3em;
    }
}
.goals .goals_item {
    width: calc((100% - 1em) / 2);
}
.goals .goals_item h2 {
    color: var(--main-color);
    font-size: 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto 1em;
    padding-bottom: 0.3em;
    border-bottom: 3px solid var(--main-color);
    font-family: var(--bukra-bold);
}
.goals_item_card {
    background: var(--main-color);
    padding: 2em;
    color: var(--white-color);
    border-radius: 6px;
    text-align: center;
}
.goals_item_card p {
    font-size: 1em;
    line-height: 130%;
}
.goals_item_card_last {
    background: var(--white-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    height: 20em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
.goals_item:last-of-type .goals_item_card_last {
    padding: 0;
    overflow: hidden;
}
.goals_item_card_last img {
    object-fit: cover;
}
.courses {
}
.courses h2 {
    color: var(--main-color);
    font-size: 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto 2em;
    padding-bottom: 0.3em;
    border-bottom: 3px solid var(--main-color);
    font-family: var(--bukra-bold);
}
.courses_swiper {
    height: 18em;
    overflow: hidden;
    border-radius: 16px;
    width: 60%;
    margin: auto;
    @media screen and (max-width: 1024px) {
        width: 100%;
    }
}
.courses_swiper img {
    object-fit: cover;
}
.swiper-pagination {
    width: 40%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 2em;
    position: static;
    @media screen and (max-width: 1024px) {
        width: 100%;
    }
}
.swiper-pagination-bullet {
    width: 4em;
    height: 5px;
    border-radius: 1em;
    background: transparent;
    border: 1px solid var(--main-color);
    opacity: 1;
    outline: 0;
}
.swiper-pagination-bullet-active {
    background: var(--main-color);
}
.courses_swiper_pdf {
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 40%;
    margin: auto;
    margin-top: 2em;
    padding: 2em 0;
}
.courses_swiper_pdf_item {
    width: 6em;
    height: 2.5em;
    background: var(--main-color);
    border-radius: 10px;
    position: relative;
}
.courses_swiper_pdf_item img {
    object-fit: contain;
    transform: scale(1.6) translateY(10px);
}
footer {
    background: var(--main-color);
    color: var(--white-color);
    padding: 1em 0;
    border-radius: 16px 16px 0 0;
}
footer .container {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2em;
    @media screen and (max-width: 460px) {
        justify-content: center;
    }
}
.footer_icons {
    gap: 1em;
    flex-direction: row-reverse;
}
.footer_icons a {
    font-size: 1.5em;
    color: var(--white-color);
    height: fit-content;
    line-height: 0;
}
.footer_icons a img {
    object-fit: cover;
}
/* .main_relative {
    position: fixed;
    left: 0;
    right: 0;
} */
.general_banner {
    position: relative;
    height: 100vh;
}
.general_banner img {
    object-fit: cover;
}
.general_banner .container {
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 2.5em;
    background: rgba(0, 0, 0, 0.5); */
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.general_banner .search_input {
    background: var(--white-color);
    flex-shrink: 0;
}

.general_banner_form {
    /* height: 40vh; */
    background: var(--main-color);
    padding: 2em;
    border-radius: 10px;
}
.general_banner_form h3 {
    color: var(--white-color);
    font-size: 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto 1em;
    padding-bottom: 0.3em;
    font-family: var(--bukra-bold);
}
.general_banner h2 {
    color: var(--white-color);
    font-size: 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}
.general_banner form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    flex-wrap: wrap;
    width: 100%;
    @media screen and (max-width: 1024px) {
        grid-template-columns: 1fr;
    }
}
.general_banner form input {
    height: 3.5em;
    border-radius: 10px;
    background: var(--white-color);
    padding-inline-start: 2em;
}
.general_banner form button {
    width: 100%;
    height: 3.5em;
    border-radius: 10px;
    background: #0d8079;
    color: var(--white-color);
    border: 1px solid var(--main-color);
    grid-column: span 2;
    font-family: var(--bukra-bold);
    cursor: pointer;
    @media screen and (max-width: 1024px) {
        grid-column: unset;
    }
}
.contact-us {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/banner1.jpg);
    background-size: cover;
}
.register_form {
    width: 60%;
    margin: auto;
    @media screen and (max-width: 1024px) {
        width: 100%;
    }
}

/* title page */

.head {
    display: flex;
    justify-content: center;
}

h1 {
    width: fit-content;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: #79a148;
    position: relative;
}

.line {
    background-color: #79a148;
    height: 3px;
    width: 277px;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translate(50%, 50%);
    margin-top: 0.5rem;
}
.single_press_file {
}
.single_press_file_card:not(:last-child) {
    margin-bottom: 4em;
}
.single_press_file_card_header {
    background: var(--main-color);
    padding-inline: 2em;
    color: var(--white-color);
    border-radius: 6px;
    padding-block: 0.6em;
    margin-bottom: 1em;
}
.single_press_file_card_image {
    height: 40em;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.single_press_file_card_image img {
    object-fit: cover;
}
.single_press_file_card_image_overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    padding-block: 6em;
    padding-inline: 3em;
    display: flex;
    flex-wrap: wrap;
}
.single_press_file_card_image_overlay_message {
    color: var(--white-color);
    height: 80%;
}
.single_press_file_card_image_overlay_message.green {
    color: var(--main-color);
    margin-top: 2em;
    font-size: 1em;
}
.single_press_file_card_text {
    margin-top: 2em;
    line-height: 200% !important;
}
.single_press_file_card_image_overlay_message h4 {
    margin-bottom: 0.5em;
    font-size: 2.5em;
    font-weight: 700;
    font-family: var(--bukra-bold);
    width: fit-content;
    border-bottom: 2px solid var(--white-color);
}
.single_press_file_card_image_overlay_message span {
    display: block;
    font-size: 1.3em;
}
.single_press_file_card_image_overlay_message p {
    font-size: 1.5em;
    line-height: 130%;
}
.single_press_file_card_image_overlay_pagination {
    position: absolute;
    bottom: 2em !important;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.single_press_file_card_image_overlay_pagination .swiper-pagination-bullet {
    display: block;
    width: 15px;
    height: 10px;
    border: 2px solid var(--white-color);
    border-radius: 20px;
    background: white;
}
.single_press_file_card_image_overlay_pagination .swiper-pagination-bullet-active {
    background: transparent;
}
.sanabel_award_achievements .container {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.sanabel_award_achievements .card_item {
    width: calc((100% - 4em) / 4);
    height: 30em;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    @media screen and (max-width: 1024px) {
        width: calc((100% - 2em) / 2);
    }
    @media screen and (max-width: 460px) {
        height: 40em;
        width: 100%;
    }
}
.sanabel_award_achievements .card_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_item_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 2em;
}
.card_item_overlay_badge {
    position: absolute;
    top: 2em;
    text-align: center;
    width: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    padding-block: 0.5em;
}
.card_item_overlay_text h2 {
    font-size: 2em;
    font-weight: 700;
    font-family: var(--bukra-bold);
    width: fit-content;
    border-bottom: 3px solid var(--white-color);
    margin: 0 auto 1em;
}
.card_item_overlay_text p {
    font-size: 1em;
    line-height: 180%;
}
.card_item_overlay_text span {
    display: block;
    margin-top: 0.5em;
    font-size: 1.2em;
}
.card_item_overlay_text a {
    display: block;
    margin-top: 2em;
    color: var(--main-color);
    background: var(--white-color);
    padding-block: 0.5em;
    border-radius: 6px;
    padding-inline: 2em;
    border: 0;
    font-family: var(--bukra-bold);
    cursor: pointer;
}
.single_blog_sanabel_award_achievements {
    padding-top: 0;
}
.single_blog_sanabel_award_achievements h2 {
    margin-bottom: 2em;
    color: var(--main-color);
}
.single_blog_sanabel_award_achievements .card_item {
    height: 20em;
    border-radius: 6px;
}
.single_blog_sanabel_award_achievements .sanabel_award_achievements {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.training_program_card_image .single_press_file_card_image_overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--white-color);
    padding: 5em;
    background: rgba(0, 0, 0, 0.7);
}
.training_program_card_image .single_press_file_card_image_overlay h2 {
    height: fit-content;
    margin-bottom: 2em;
    font-size: 3em;
    font-weight: 700;
    font-family: var(--bukra-bold);
    width: fit-content;
    border-bottom: 3px solid var(--white-color);
}
.training_program_card_image .single_press_file_card_image_overlay p {
    width: 50%;
    margin: 0 auto;
    line-height: 200%;
}
.training_program_card_image .single_press_file_card_image_overlay a {
    display: block;
    margin-top: 2em;
    color: var(--main-color);
    background: var(--white-color);
    padding-block: 0.5em;
    border-radius: 6px;
    padding-inline: 2em;
    border: 0;
    font-family: var(--bukra-bold);
    cursor: pointer;
    text-decoration: none;
}

.gallery {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 2em;
    margin: auto;
    padding-inline: 5em;
    border-radius: 8px;
    height: 100vh;
    @media screen and (max-width: 1024px) {
        padding-inline: 1em;
        grid-template-columns: 1fr;
        height: fit-content;
    }
}
.swiper-container {
    width: 100%;
    height: 100vh;
    border-radius: 6px;
    overflow: hidden;
}
.main-slider {
    height: 100%;
}
.main-slider .swiper-slide {
    position: relative;
    text-align: center;
}
.main-slider img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.slide-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}
.thumbs-slider {
    overflow-x: auto;
    height: 100%;
    @media screen and (max-width: 1024px) {
        overflow-y: auto;
    }
}
.thumbs-slider::-webkit-scrollbar {
    display: none;
}
.thumbs-slider .swiper-wrapper {
    @media screen and (max-width: 1024px) {
        height: 50px;
    }
}
.thumbs-slider .swiper-slide {
    cursor: pointer;
    filter: grayscale(1);
}
.thumbs-slider .swiper-slide-thumb-active {
    filter: grayscale(0);
}
.thumbs-slider img {
    width: 100%;
    /* height: 80px; */
    object-fit: cover;
    border-radius: 6px;
}
.gallery .single_press_file_card_image_overlay_message {
    text-align: start;
}

 .owl-next, .owl-prev {
    position: absolute;
    top: 50%;
    width:40px;
    height:40px;
    background:#6b8e23 !important;
    color:#fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius:50% !important;
    @media (max-width: 574px) {
        width:20px;
        height:20px;
    }
}
:lang(ar) {
     .owl-next i, .owl-prev i {
         transform: scaleX(-1);
    }
}


.owl-next {
    inset-inline-end: 0;
}

 .owl-prev {
    inset-inline-start: 0;
}

.home-slider {
    height: 100vh; 
    position: relative;
    @media (max-width: 991px) {
        height:100%;
    }
}
.home-slider img {
    object-fit: cover;
}
.home-slider:before {
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #1a48796b, #1b9dcf52 60%);
}