* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: sahelnom;
    font-size: var(--small-font-size);
}

@font-face {
    font-family: ibm;
    src: url(./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf);
}

@font-face {
    font-family: agelast;
    src: url(./fonts/agelast/Agelast_PersonalUse.otf);
}

@font-face {
    font-family: sahelnom;
    src: url(./fonts/sahelnom/ArefRuqaa-Regular.ttf);
}

/* Font Sizes */

:root {

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 0.8vw;

    --tiny-font-size: 0.6vw;

}

@media (min-width:1025px) and (max-width:1434px) {
    
    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 2.3vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    
    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

    }
    
}

@media (min-width:500px) and (max-width:768px) {
        
    :root {

        --enormous-font-size: 10vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

    }
    
}

@media (max-width:500px) {
    
    :root {

        --enormous-font-size: 10vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

.break {
    width: 0px;
    height: 0px;
    flex-basis: 100%;
}

.particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 10;
}

html {
    overflow-x: hidden;
}




/* /////////////////////////////////////////////////////////////////////////////////////////// */



.index-body-arabic {
    direction: rtl;
}

.index-body {
    height: fit-content;
}

.index-body .lang-btn {
    width: auto;
    height: auto;
    position: fixed;
    top: 10%;
    right: 5%;
    z-index: 100;
}

.index-body .lang-btn button {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.index-body .lang-btn button svg {
    width: 1vw;
    height: 1vw;
}

@media (min-width:1025px) and (max-width:1434px) {
    .index-body .lang-btn button svg {
        width: 2vw;
        height: 2vw;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body .lang-btn button svg {
        width: 2vw;
        height: 2vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body .lang-btn button svg {
        width: 3vw;
        height: 3vw;
    }
}

@media (max-width:500px) {
    .index-body .lang-btn button svg {
        width: 4vw;
        height: 4vw;
    }
}

.index-body .lang-btn .lang-drop-list {
    width: 200%;
    height: auto;
    background-color: red;
    position: absolute;
    top: 120%;
    left: -100%;
    background-color: #0c9acb;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all linear 0.5S;
    overflow: hidden;
    direction: rtl;
}

.index-body .lang-btn .lang-drop-list a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px;
    color: white;
    transition: all linear 0.5s;
}

.index-body .lang-btn .lang-drop-list a:hover {
    background-color: white;
    color: #0c9acb;
}

.lang-drop-list-active {
    opacity: 1 !important;
    pointer-events: initial !important;
}

.index-body section {
    height: fit-content;
    position: relative;
}

.index-body section .intro {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 15;
}

.index-body section video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    object-fit: cover;
    display: none;
}

@media (min-width:1025px) {
    .pc-intro-vid {
        display: block !important;
    }
}

@media (max-width:1025px) {
    .mobile-intro-vid {
        display: block !important;
    }
}

.index-body section .intro .intro-dets {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    direction: rtl;
    position: relative;
}

.eng-intro-dets {
    direction: ltr;
}

.index-body section .intro .intro-dets img {
    width: 30%;
    height: fit-content;
    object-fit: cover;
}

.index-body section .intro .intro-dets h1 {
    width: 80%;
    font-size: var(--big-font-size);
    color: white;
    text-align: center;
}

.index-body section .intro .intro-dets p {
    width: 70%;
    color: white;
    font-size: var(--intermediate-font-size);
    text-align: center;
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .intro .intro-dets p {
        width: 80%;
    }
}

@media (max-width:768px) {
    .index-body section .intro .intro-dets p {
        width: 90%;
    }
}

.index-body section .intro .intro-dets a {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    background-color: #0c9acb;
    border-radius: 50px;
    border: none;
    outline: none;
    color: white;
    transition: all linear 0.5s;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
}

.index-body section .intro .intro-dets a:hover {
    background-color: white;
    color: #0c9acb;
}

.index-body section .menus-con {
    width: 100%;
    height: fit-content;
    margin-top: 50px;
    padding: 5%;
}

.index-body section .menus-con h2 {
    width: 100%;
    height: fit-content;
    text-align: center;
    font-size: var(--huge-font-size);
    color: #0c9acb;
}

.index-body section .menus-con .menus-container {
    width: 100%;
    height: fit-content;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
}

@media (max-width:768px) {
    .index-body section .menus-con .menus-container {
        gap: 10px;
    }
}

.index-body section .menus-con .menus-container .menu-item {
    width: 23%;
    height: 15vw;
    position: relative;
    z-index: 13;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.068);
    cursor: pointer;
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .menus-con .menus-container .menu-item {
        width: 47%;
        height: 25vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body section .menus-con .menus-container .menu-item {
        width: 48%;
        height: 25vw;
    }
}

@media (max-width:500px) {
    .index-body section .menus-con .menus-container .menu-item {
        width: 48%;
        height: 30vw;
    }
}

.arabic-menu-item {
    direction: rtl !important;
}

.index-body section .menus-con .menus-container .menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-body section .menus-con .menus-container .menu-item .menu-item-dets {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 5% 10%;
    background-color: white;
    transition: all linear 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-dets-active {
    top: 0% !important;
}

.index-body section .menus-con .menus-container .menu-item .menu-item-dets h3 {
    font-siZe: var(--regular-font-size);
}

.index-body section .menus-con .menus-container .menu-item .menu-item-dets button {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    border-radius: 16px;
    background-color: #0c9acb;
    color: white;
    border: none;
    cursor: pointer;
}

@media (max-width:768px) {
    .index-body section .menus-con .menus-container .menu-item .menu-item-dets button {
        padding: 10px;
    }
}

.menu-item-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-image: url(./pics/menu/menu-background.png);
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: all linear 0.5s;
}

.menu-item-popup svg {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 5%;
    right: 5%;
    color: black;
    cursor: pointer;
}

.menu-item-popup img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.index-body section .offers-con {
    width: 100%;
    height: fit-content;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.index-body section .offers-con .offer-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: start;
    align-items: stretch;
    border-radius: 36px;
    overflow: hidden;
}

@media (min-width:1025px) and (max-width:1434px) {
    .index-body section .offers-con .offer-item {
        width: 100%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body section .offers-con .offer-item {
        width: 100%;
    }
}

@media (max-width:768px) {
    .index-body section .offers-con .offer-item {
        width: 100%;
        height: fit-content;
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

.index-body section .offers-con .offer-item .offer-dets {
    width: 50%;
    background-color: rgb(245, 245, 245);
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width:768px) {
    .index-body section .offers-con .offer-item .offer-dets {
        width: 100%;
    }
}

.index-body section .offers-con .offer-item:nth-child(2) {
    direction: rtl;
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-header {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body section .offers-con .offer-item .offer-dets .offer-item-header {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-header h2 {
    font-size: var(--intermediate-font-size);
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-header span {
    font-size: var(--small-font-size);
    padding: 15px;
    background-color: orangered;
    color: white;
    border-radius: 50px;
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-includes {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-includes h3 {
    width: 100%;
    font-size: var(--big-font-size);
    margin-top: 30px;
}

.index-body section .offers-con .offer-item .offer-dets .offer-item-includes span {
    width: fit-content;
    height: fit-content;
    padding: 15px;
    border: 1px solid #0c9bcb3d;
    border-radius: 50px;
}

.index-body section .offers-con .offer-item .offer-dets a {
    width: fit-content;
    height: fit-content;
    padding: 15px;
    display: block;
    margin-top: 50px;
    background-color: #0c9acb;
    color: white;
    transition: all linear 0.5s;
    border-radius: 50px;
    text-decoration: none;
}

.index-body section .offers-con .offer-item img {
    width: 50%;
    max-height: 700px;
    object-fit: cover;
    filter: brightness(1);
}

@media (min-width:2000px) {
    .index-body section .offers-con .offer-item img {
        width: 40vw;
    }
}

@media (max-width:768px) {
    .index-body section .offers-con .offer-item img {
        width: 100%;
        max-height: 400px;
    }
}

.index-body section .offers-con .offer-item:nth-child(2) {
    margin-top: 50px;
}

.index-body footer {
    width: 100%;
    height: fit-content;
    margin-top: 50px;
    position: relative;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 30px;
    background-color: #000002;
    padding: 5%;
    padding-bottom: 1.5%;
}

.arabic-footer {
    direction: rtl;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body footer {
        gap: 50px;
    }
}

.index-body footer .footer-column {
    width: 20%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body footer .footer-column:nth-child(3) {
        margin-left: 100px;
    }
}

@media (max-width:1025px) {

    .index-body footer .footer-column:nth-child(1) {
        width: 30%;
    }

    .index-body footer .footer-column {
        width: 100%;
    }
}

.index-body footer .footer-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.index-body footer .footer-column h3 {
    font-size: var(--intermediate-font-size);
    color: white;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.164);
}

.index-body footer .footer-column ul {
    margin-top: 20px;
    list-style: none;
}

.index-body footer .footer-column ul li {
    margin-top: 20px;
}

.index-body footer .footer-column ul li a {
    color: white;
    display: flex;
    justify-content: start;
    align-items: center;
    text-underline-offset: 4px;
    gap: 10px;
}

.index-body footer .footer-column ul li a svg {
    width: 30px;
    height: 30px;
    color: white;
    fill: white;
}

.index-body footer .footer-insta-feed-column {
    width: 30%;
}

@media (max-width:1443px) {
    .index-body footer .footer-insta-feed-column {
        width: 100%;
    }
}

.index-body footer .footer-insta-feed-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.index-body footer .footer-insta-feed-container a {
    width: 23%;
    height: auto;
    text-decoration: none;
    color: white;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body footer .footer-insta-feed-container a {
        width: 10%;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body footer .footer-insta-feed-container a {
        width: 15%;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body footer .footer-insta-feed-container a {
        width: 20%;
    }
}

@media (max-width:500px) {
    .index-body footer .footer-insta-feed-container a {
        width: 25%;
    }
}

.index-body footer .footer-insta-feed-container a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-copyrights {
    width: 100%;
    height: fit-content;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.164);
}

.footer-copyrights p {
    color: white;
}







.index-body footer .footer-sec {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.index-body footer .footer-sec h2 {
    width: 100%;
    height: fit-content;
    color: white;
    font-size: var(--big-font-size);
    font-family: agelast;
    margin-bottom: 10px;
}

.index-body footer .footer-sec .map-a {
    width: 20%;
    height: auto;
}

.index-body footer .footer-sec .map-a img {
    width: 100%;
    height: auto;
    margin-left: 0%;
    object-fit: cover;
}

.footer-tel {
    color: white;
    display: block;
    margin-top: 20px;
    font-size: var(--intermediate-font-size);
}

.index-body footer .footer-sec div {
    width: fit-content;
    display: flex;
    gap: 20px;
    gap: 50px;
}

@media (max-width:500px) {
    .index-body footer .footer-sec div {
        gap: 20px;
    }
}

.index-body footer .footer-sec div h2 {
    width: 100%;
    height: fit-content;
}

.index-body footer .footer-sec div a {
    width: fit-content;
    height: fit-content;
    color: white;
}

.index-body footer .footer-sec div a svg {
    width: 5vw;
    height: 5vw;
}

@media (min-width:1025px) and (max-width:1434px) {
    .index-body footer .footer-sec div a svg {
        width: 6vw;
        height: 6vw;
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body footer .footer-sec div a svg {
        width: 7vw;
        height: 7vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    .index-body footer .footer-sec div a svg {
        width: 8vw;
        height: 8vw;
    }
}

@media (max-width:500px) {
    .index-body footer .footer-sec div a svg {
        width: 9vw;
        height: 9vw;
    }
}

.menu-popup-active {
    opacity: 1 !important;
    pointer-events: initial;
}

.whatsapp-pop {
    width: fit-content;
    height: fit-content;
    padding: 3px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 80%;
    right: 5%;
    z-index: 99;
}

.whatsapp-pop img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}





















