@font-face {
    font-family: "URW ARABIC";
    src: url(../fonts/URW-DIN-Arabic-Regular.ttf);
}

/* media-icon-list start here */
.media-icons-wrapper {
    background-color: #D1D3D4;
    padding: 10px 25px;
    position: sticky;
    top: 0;
    z-index: 9;
    .container

{
    max-width: 1160px;
}

}

.nav-wrapper {
    position: relative;
}

.media-icons-inner-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    .black-btn

{
    background-color: #70b648;
    &:hover

{
    background-color: #FECC00;
    color: var(--primary-color);
}

}


.header-btns-group {
    justify-content: end;
}

}

.media-icon-list {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.media-icon-link {
    color: var(--primary-color);
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
    &:hover

{
    color: var(--secondry-color);
}

}

/* @media (max-width: 1024px) {
    .media-icons-wrapper {
        padding: 0;
    }

    .media-icons-inner-wrapper {
        gap: 2%;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .media-icon-list {
            max-width: 256px;
            flex-shrink: 0;
            justify-content: center;
        }

        .header-btns-group {
            display: flex;
            padding: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }
    }
 */
}

@media (max-width: 767px) {


    .media-icons-inner-wrapper {
        .media-icon-list

{
    padding-block: 10px;
}

.header-btns-group {
    display: flex;
    padding: 5px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

}
}

/* media-icon-list end here */
/* header start here */
.header {
    padding: 10px 0px 0px 0px;
    .container

{
    max-width: 1260px;
}

}

.the-p-div {
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.header-btns-group {
    text-align: center;
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.white-btn {
    background-color: #f26324;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #ffffff;
    border: none;
    border-radius: 21px 21px 21px 21px;
    padding: 12px 24px;
    line-height: 1;
    /* white-space: nowrap; */
    transition: all ease-in-out 0.5s;
    &:hover

{
    background-color: var(--primary-color);
    color: #fff;
}

}

.black-btn {
    background-color: #081528;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    border: none;
    border-radius: 21px 21px 21px 21px;
    padding: 12px 24px;
    line-height: 1;
    /* white-space: nowrap; */
    color: #fff;
    transition: all ease-in-out 0.5s;
    &:hover

{
    background-color: #FECC00;
    color: var(--primary-color);
}

}

/* header end here */

/* nav bar start here */
.menu-wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #EDEDEE;
    .container

{
    max-width: 1160px;
}

h2:not(:last-child) {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    width: 100%;
    max-width: 196px;
    text-align: center;
    margin-bottom: 16px;
    padding-left: 10px;
    line-height: 0;
}

h2:not(:first-child) {
    padding: 5px 15px;
    display: inline-block;
    background-color: #FECC00;
    border-radius: 5px 5px 5px 5px;
    color: var(--primary-color);
    line-height: 1;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

}

.navbar {
    padding: 0;
    position: relative;
}


.navbar-toggler {
    align-items: center;
    background-color: rgba(0, 0, 0, .05);
    border: 0 solid;
    border-radius: 3px;
    color: #33373d;
    cursor: pointer;
    display: flex;
    font-size: var(--nav-menu-icon-size, 22px);
    justify-content: center;
    padding: .25em;
}

.menu-wrapper:has(.navbar-collapse.collapse.show) {
    backdrop-filter: blur(10px);
}

.navbar-brand-wrapper {
    position: relative;
    width: 195px;
    display: none;
}

.navbar-brand {
    padding: 0;
    z-index: 9;
    img

{
    max-width: 150px;
}

}

.navbar > .container-fluid {
    align-items: end;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    .nav-item

{
    text-align: center;
    padding-inline: 0;
    padding-block: 20px;
    &:last-child

{
    a

{
    border: none;
}

}



.nav-link {
    text-transform: uppercase;
    font-size: clamp(1rem, 0.9545rem + 0.2273vw, 1.125rem);
    font-weight: 500;
    color: var(--primary-color);
    padding: 0 8px;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
    font-family: "Barlow", Sans-serif;
    line-height: 1;
    position: relative;
    border-right: 1px solid var(--primary-color);
    &::before

{
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--secondry-color);
    bottom: -10px;
    left: 0;
    right: 0;
    margin-inline: auto;
    transition: all ease-in-out .5s;
}


&:hover {
    color: var(--secondry-color);
    &::before

{
    width: 100%;
}

}
}

.nav-link.active {
    color: var(--secondry-color);
    &::before

{
    width: 100%;
}

}
}

.nav-item.dropdown {
    .dropdown-menu

{
    background-color: #D1D3D4;
    border-radius: 0;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    top: 47px;
    .dropdown-item

{
    padding-block: 15px;
    font-size: 14px;
    color: var(--primary-color);
    border-bottom: 1px solid #fff;
}

}

.sub-dropdown-menu.dropdown-menu {
    top: 0;
    right: -194px;
}

&:hover {
    .dropdown-menu:not(.sub-dropdown-menu.dropdown-menu)

{
    display: block;
    padding-block: 0;
}

}
}
}

.sub-menu {
    position: relative;
    .sub-dropdown-menu

{
    position: absolute;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    display: none;
    top: 0;
    right: -176px;
    width: 195px;
}

&:hover {
    .sub-dropdown-menu

{
    display: block;
}

}
}

.dropdown-item:hover {
    color: var(--primary-color);
    background-color: #fff;
}


.navbar-toggler {
    padding: 0px 10px;
    border-radius: 3px;
}

.navbar-collapse.mobile {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh !important;
    width: 100%;
    background: #0000006b;
    z-index: 9999;
}

.navbar-collapse.mobile {
    transform: translateX(0%);
    transition: all ease-in-out .5s;
    .nav-header

{
    transition: all ease-in-out .8s;
    background-color: #fff;
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: space-between;
    padding: 15px 10px 28px;
    .navbar-toggler

{
    height: 42px;
    width: 45px;
    color: #fff;
}

}

.navbar-nav {
    transition: all ease-in-out .8s;
    max-width: 350px;
    background-color: #fff;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 30px;
    justify-content: flex-start;
    li

{
    padding: 0;
    a

{
    text-align: left;
    padding-block: 10px;
    color: #000;
}

}
}
}



@media (max-width: 991px) {
    .media-icons-inner-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        p

{
    text-align: center
}

}

.menu-wrapper {
    h2, h2:not(:first-child)

{
    display: none;
}

}

.nav-wrapper {
    height: auto;
    z-index: 9999;
    transform: translateY(0);
    position: relative;
}

.nav-link {
    text-align: center;
}

.navbar-brand-wrapper {
    display: block;
    height: fit-content;
}

.navbar-brand {
    display: none;
    width: 160px;
    position: static;
    img

{
    width: 100%;
}

}

.navbar-brand-wrapper .navbar-brand {
    display: block;
    height: fit-content;
}

.navbar > .container-fluid {
    align-items: center;
}

.navbar-nav {
    background-color: #d1d3d4;
    transform: translateY(0);
    .nav-item

{
    border-right: 0;
    text-align: center;
    padding-inline: 0;
    padding-block: 10px;
    border-bottom: 1px solid #fff;
    .nav-link

{
    border-right: 0;
    text-align: left;
}

}

.nav-item.dropdown {
    /* Disable hover-based dropdown on small screens */
    &:hover

{
    .dropdown-menu

{
    display: none !important;
    padding-block: 0;
}

}
}

.nav-item.dropdown:has(.dropdown-menu.show) {
    .dropdown-menu:not(.sub-dropdown-menu.dropdown-menu)

{
    display: block !important;
    width: 100%;
    margin-top: 12px;
    padding: 0;
}

}

.sub-menu:has(.dropdown-item.dropdown-toggle.show) {
    .sub-dropdown-menu.dropdown-menu

{
    position: static;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    background: #f4f4f4;
    display: none;
    top: 0;
    right: -176px;
    width: 100%;
    padding-left: 15px;
}

}
}



.sub-menu {
    position: relative;
    .sub-dropdown-menu

{
    position: absolute;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    background: #f4f4f4;
    display: none;
    top: 0;
    right: -176px;
    width: 195px;
}

&:hover {
    .sub-dropdown-menu

{
    display: none;
}

}
}

.sub-menu:has(.sub-dropdown-menu.show) {
    .sub-dropdown-menu.dropdown-menu

{
    display: block !important;
}

}
}



/* nav bar end here */

/* banner start here */
.main-banner-wrapper {
    position: relative;
    overflow: hidden;
    .black-btn

{
    background-color: #70b648;
    &:hover

{
    background-color: #FECC00;
    color: var(--primary-color);
}

}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000063;
}

.video-background {
    position: absolute;
    background-color: black;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    iframe

{
    /* Center and cover the wrapper while keeping 16:9 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16 / 9;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

}
}

.image-banner-wrapper {
    position: relative;
    text-align: center;
    img

{
    width: 100%;
}

h2 {
    font-size: clamp(1.5625rem, 1.267rem + 1.4773vw, 2.375rem);
    font-weight: 600;
    color: #FFF;
    background-color: transparent;
    padding: 15px 15px 15px 15px;
    background-image: linear-gradient(180deg, var(--secondry-color) 0%, var(--third-color) 100%);
    border-radius: 9px 9px 9px 9px;
    display: inline-block;
    margin-block: clamp(1.875rem, 1.1932rem + 3.4091vw, 3.75rem);
}

}

.banner-content-wrapper {
    height: 480px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 9;
    h1

{
    font-size: clamp(1.625rem, 1.2159rem + 2.0455vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    color: #fff;
}

h2 {
    font-size: clamp(1.25rem, 0.8409rem + 2.0455vw, 2.375rem);
    text-align: center;
    color: #fff;
}

.white-btn,
.black-btn {
    font-size: 23px;
    font-weight: 600;
    border-radius: 50px;
    min-width: 250px;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

}





/* banner end here */


.P-E-Banner {
    position: relative;
    overflow: hidden;
    height: 120px;
    place-content: center;
    img

{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

h1 {
    color: #fff;
    position: relative;
    font-size: clamp(1.5625rem, 1.2216rem + 1.7045vw, 2.5rem);
    font-weight: 600;
}

}


@media (max-width: 1024px) {




    .image-banner-wrapper {
        .banner-content-wrapper

{
    width: 80%;
    border-radius: 5px;
}

}
}

@media (max-width: 1024px) {
}

@media (max-width: 767px) {
    .warp-up-wrapper iframe {
        width: 100%;
        height: auto;
    }

    .navbar-brand {
        img

{
    max-width: 120px;
}

}





.book-a-stand-btn {
    padding: 9px;
    margin-bottom: 10px;
}

.sub-menu {
    .sub-dropdown-menu

{
    position: static;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    background: #f4f4f4;
    display: none;
    top: 0;
    right: -176px;
    width: 100%;
    padding-left: 15px;
}

}


.header-logo {
    width: 100%;
    max-width: 185px;
}

.inner-footer {
    & h2

{
    &:nth-child(1)

{
    width: 100%;
    max-width: 185px;
    text-align: center;
    border-right: 2px solid var(--secondry-color);
}

}
}
}

@media (max-width: 425px) {
    .header-logo {
        width: 100%;
        max-width: 131px;
    }

    .inner-header {
        gap: 10px;
    }

    .inner-footer {
        gap: 10px;
        h2

{
    line-height: 1;
}

& h2 {
    &:nth-child(1)

{
    width: 100%;
    max-width: 131px;
    text-align: center;
    border-right: 2px solid var(--secondry-color);
}

}
}
}

.green-belt {
    background-color: #70b648;
    padding-block: 10px;
    p

{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: clamp(1.125rem, 1.0341rem + 0.4545vw, 1.375rem);
    font-weight: 700;
}
}
