footer {
    background-color: var(--mc6);
    box-shadow: 0px -130px 100px -140px #0000001A;
}

.footer {
    padding: 2.5rem 0 0;
}

.footer__Inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    margin-top: 2.5rem;
}

.footer__Item {
    max-width: 300px;
}

footer p {
    font-size: var(--fz-xs);
    font-weight: var(--fw-300);
    line-height: 19px;
    text-align: justify;
    color: var(--tc1);
}

.footer__Socials {
    margin: 2.25rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 15.5rem;
}

.footer__Socials a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 50px;
}

.footer__Socials .WbIcon {
    --icon: 1.5rem;
}

.footer__Icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer__Icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: var(--transition);
}

.footer__Icon img:last-child {
    opacity: 0;
    pointer-events: none;
}

@media (min-width:992px) {
    .footer__Socials a:hover .footer__Icon img:last-child {
        opacity: 1;
        pointer-events: all;
    }
    
    .footer__Socials a:hover .footer__Icon img:first-child {
        opacity: 0;
        pointer-events: none;
    }    
}

.footer__Socials a span:last-child {
    font-size: var(--fz-xs);
    line-height: 14px;
    transition: var(--transition);
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}

.footer__Socials a .WbIcon,
.footer__Socials a:focus .WbIcon,
.footer__Socials a:visited .WbIcon {
    --icon-color: #BECEC9;
}

.footer__Socials a:hover .WbIcon {
    --icon-color: var(--mc1);
}

.footer__Socials a span:last-child,
.footer__Socials a:focus span:last-child,
.footer__Socials a:visited span:last-child {
    color: #BECEC9;
}

.footer__Socials a:hover span:last-child {
    color: var(--mc1);
}

.footer__InfoItem {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer__Call,
.contactUs__Call {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.25rem;
}

.footer__InfoItem,
.footer__Call a {
    font-size: 14px;
    font-weight: var(--fw-300);
    line-height: 22px;
    color: var(--mc1);
}

.contactUs__Call a {
    font-size: var(--fz-md);
}

.contactUs__Right {
    font-size: 1rem;
}

.footer__Call a,
.contactUs__Call a {
    direction: ltr;
}

.footer__TextBold,
.contactUs__TextBold {
    font-weight: var(--fw-700);
    margin: 0 2px;
}

.footer__Maps {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-inline-start: calc(50px + 1.5rem);
}

.footer__Title {
    font-size: var(--fz-sm);
    font-weight: var(--fw-700);
    line-height: 22px;
    color: var(--tc1);
    margin-bottom: 1rem;
}

.footer__Nav a {
    font-size: var(--fz-sm);
    font-weight: var(--fw-300);
    line-height: 22px;
    color: var(--tc1);
    margin-bottom: 1rem;
    display: block;
}
.footer__Nav a:hover {
    color:#012419;
    font-weight: bold;
}

.footer__Nav a:last-child {
    margin-bottom: 0;
}

.copyright {
    display: flex;
    justify-content: center;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid #E3E3E3;
    font-size: var(--fz-xs);
    font-weight: var(--fw-300);
    line-height: 19px;
    color: #BABABA;
    margin-top: 1.5rem;
}

.copyright a {
    margin-inline-start: 3px;
}

.WbContainer__MainSection_Blank2 {
    margin-bottom: 2.5rem !important;
}

@media (max-width:991px) {

    .footer {
        padding: 2.5rem 0 1rem;
    }    

    .footer__Inner {
        flex-direction: column;
        justify-content: start;
        gap: 3.5rem;
        margin-top: 2rem;
    }

    .footer>img {
        display: block;
        margin: 0 auto 0;
    }

    .footer__Item:has(p) {
        max-width: 100%;
    }

    footer p {
        text-align: right;
    }

    .footer__Socials a .WbIcon,
    .footer__Socials a:focus .WbIcon,
    .footer__Socials a:visited .WbIcon {
        --icon-color: var(--mc1);
    }

    .footer__Socials a span:last-child,
    .footer__Socials a:focus span:last-child,
    .footer__Socials a:visited span:last-child {
        color: var(--mc1);
    }

    .footer__Socials a .footer__Icon img:last-child {
        opacity: 1;
        pointer-events: all;
    }
    
    .footer__Socials a .footer__Icon img:first-child {
        opacity: 0;
        pointer-events: none;
    }
    
    .footer__Nav {
        display: none;
    }

    .footer__Enamad {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer__Title {
        width: 100%;
        text-align: center;
    }

    /* *bottom stcky start */
    .control__Panel_Wrapper {
        width: 100%;
        z-index: 9999;
    }

    .bottom__Pannel {
        z-index: 99;
        position: fixed;
        bottom: 0;
        width: 100%;
        transition-property: z-index;
        transition-delay: 0.5s;
        background: var(--white);
        box-shadow: 0px 0px 20px 0px #00000008;
        padding: 1rem 0 0.75rem;
    }

    .control__Panel_Wrapper .bottom__Button {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 6px;
        transition: var(--transition);
        justify-content: space-between;
    }

    .control__Panel_Wrapper .button__Title {
        font-size: 12px;
        line-height: 19px;
        color: var(--mc1);
    }

    .control__Panel_Wrapper .bottom__Button.active .button__Title {
        color: var(--mc3);
    }

    .phone__Categories {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
       /* height: calc(100vh - 4rem);*/
        height: calc(100dvh - 5rem);
        background-color: var(--white);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1rem 1rem 0;
        opacity: 0;
        pointer-events: none;
        z-index: 9999;
    }

    .phone__Categories.open {
        opacity: 1;
        pointer-events: all;
    }

    .phone__Categories_Inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phone__Categories_Inner > .WbIcon {
        --icon: 1.5rem;
        --icon-color: var(--tc2);
    }

    .phone__Categories__Title {
        margin: 1.5rem 0;
        font-size: 24px;
        font-weight: var(--fw-300);
        line-height: 37px;
        color: var(--mc1);
    }

    .phone__Categories__Title span {
        font-weight: var(--fw-600);
    }

    .phone__Categories > img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .phone__Categories_Append {
        align-self: start;
    }

    /* .searchBoxContainer .search-icon {
        left: 12px;
        background: var(--tc3);
    } */

    .bottom__Menu {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        overflow-y: scroll;
        background-color: var(--white);
        z-index: 21;
    }

    .bottom__Menu.active {
        opacity: 1;
        visibility: visible;
        transform: translate(0);
    }

    .append__Bottom_Menu .header__Logo {
        padding: 1.5rem 2.5rem;
        border: none;
    }

    .append__Bottom_Menu .Header__Category_Nav .SCat-Main {
        margin-top: -0.75rem;
    }

    .append__Bottom_Menu .Header__Category_Nav .SCat-Main li>.header__Category_Item {
        --color-accent: var(--mc2-fade-1);
        color: var(--color-accent);
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
        font-weight: var(--fw-400);
    }

    .append__Bottom_Menu .Header__Category_Nav .SCat-Main li.SCat-have-sub-menu>.header__Category_Item::after {
        content: '';
        display: block;
        min-width: 12px;
        width: 12px;
        height: 12px;
        min-height: 12px;
        mask-repeat: no-repeat;
        mask-size: cover;
        mask-position: center;
        mask-image: url(/Portals/0/Images/chevDown.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: cover;
        -webkit-mask-position: center;
        -webkit-mask-image: url(/Portals/0/Images/chevDown.svg);
        background-color: var(--mc2);
        margin-right: auto;
        transition: var(--transition);
        transform: rotate(180deg);
    }

    .append__Bottom_Menu .Header__Category_Nav .SCat-Main li.SCat-have-sub-menu>.header__Category_Item.active::after {
        transform: rotate(0deg);
    }

    .append__Bottom_Menu .Header__Category_Nav .SCat-Main li.SCat-have-sub-menu>.SCat-sub-menu .header__Category_Item>.header__Categroy_Title {
        font-weight: var(--fw-700);
        display: list-item;
        list-style-position: inside;
        list-style-type: disc;
        --accent-color: var(--mc2-fade-3);
        color: var(--accent-color);
    }

    /* !bottom stcky end */

}


/* home */

.wbSliderNav__Btns > *:before {
    font-size: 20px !important;
}

.wbSliderNav__NextvBtn:before {
    rotate: 180deg;
}



/* home about us */
.homeAboutUs__Content {
    padding: .25rem 5.5rem 0 4rem;
}

.homeAboutUs__Content h3 {
    font-size: var(--fz-xl);
    font-weight: var(--fw-300);
    line-height: 48px;
    color: var(--tc1);
}

.homeAboutUs__Content h3 span {
    font-weight: var(--fw-700);
}

.homeAboutUs__Content p {
    margin: 1.5rem 0;
    font-size: var(--fz-sm);
    line-height: 22px;
    color: var(--tc1);
    text-align: justify;
    font-weight: var(--fw-300);
}

.homeAboutUs__Links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width:991px) {

    .homeAboutUs {
        padding-top: 4rem;
        position: relative;
    }

    .homeAboutUs__Content {
        padding: 0;
    }

    .homeAboutUs .col-lg-7 {
        position: static !important;
    }
    
    .homeAboutUs__Content h3 {
        line-height: 36px;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 4px;
        align-items: baseline;
    }
        
    .homeAboutUs__Content p {
        font-size: 14px;
        text-align: right;
    }
    
}



/* home customers */
.homeCustomers__Item {
    display: flex !important;
    box-shadow: 0px 0px 30px -10px #0000001A;
    background-color: var(--white);
    margin: 0 1rem;
    border-radius: 15px;
    transition: var(--transition);
    transform: scale(.8);
    filter: blur(2px);
    /* width: 80vw !important; */
}

/* .homeCustomers__Item.slick-center {
    transform: scale(1);
    filter: blur(0);
} */

@media (min-width:992px) {
    .homeCustomers__Item.slick-center {
        transform: scale(1);
        filter: blur(0);
    }    
}


.homeCustomers__Image {
    width: 185px;
    min-width: 185px;
    height: 247px;
    position: relative;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    display: block;
}

.homeCustomers__Image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 67, 47, 0) 50.2%, #02432F 100%);
    opacity: 0;
    transition: var(--transition);
}

.homeCustomers__Item.slick-center .homeCustomers__Image::before {
    opacity: 1;
}

.homeCustomers__Image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeCustomers__Video {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    translate: -50% 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fz-md);
    font-weight: var(--fw-600);
    line-height: 24px;
    color: var(--white);
    z-index: 2;
    width: max-content;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.homeCustomers__Item.slick-center .homeCustomers__Video {
    opacity: 1;
    pointer-events: all;
}

.homeCustomers__Video:hover {
    color: var(--white);
}

.homeCustomers__Video img {
    width: 1.5rem;
}

.homeCustomers__Content {
    width: 70%;
    padding: 1.5rem;
    border-radius: 15px 0 0 15px;
    height: 100%;
}

.homeCustomers__Title {
    font-size: var(--fz-lg);
    font-weight: var(--fw-700);
    line-height: 36px;
    color: var(--tc1);
    margin-bottom: 4px;
}

.homeCustomers__Position {
    font-size: var(--fz-md);
    font-weight: var(--fw-300);
    line-height: 24px;
    color: var(--tc1);
    margin-bottom: 1.5rem;
}

.homeCustomers__Content p {
    font-size: var(--fz-sm);
    font-weight: var(--fw-300);
    line-height: 20px;
    color: var(--tc1);
    text-align: justify;
    max-height: 110px;
    overflow: auto;
    position: relative;
}

.homeCustomers__Content p {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.homeCustomers__Content p::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.homeCustomers .slick-arrow.slick-prev {
    right: 19.75rem !important;
}

.homeCustomers .slick-arrow.slick-next {
    left: 19.75rem !important;
}


@media (min-width:1592px) {
    .homeCustomers .slick-arrow.slick-prev {
        right: 25.75rem !important;
    }
    
    .homeCustomers .slick-arrow.slick-next {
        left: 25.75rem !important;
    }
}


@media (max-width:991px) {
    .homeCustomers__Item {
        margin: 52px 1rem 0;
        transform: scaleY(1);
        filter: blur(0px);
        flex-direction: column;
        box-shadow: 0px 0px 20px 0px #00000008;
        padding-top: 5.25rem;
    }

    .homeCustomers__Image {
        width: 104px;
        height: 104px;
        min-width: 104px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
        position: absolute;
        top: 0;
        left: 50%;
        translate: -50% -50%;
        border: 3px solid var(--white);
    }

    .homeCustomers__Image>img,
    .homeCustomers__Image::before {
        border-radius: 50%;
    }

    .homeCustomers__Image::before {
        display: none;
    }

    .homeCustomers__Image>img {
        object-position: top;
    }

    .homeCustomers__Video {
        bottom: -2rem;
        gap: 2px;
        font-size: 14px;
        font-weight: var(--fw-400);
        line-height: 21px;
        color: var(--mc1);
        opacity: 1;
        pointer-events: all;
    }    

    .homeCustomers__Video img {
        filter: brightness(0) saturate(100%) invert(17%) sepia(10%) saturate(6242%) hue-rotate(125deg) brightness(105%) contrast(98%);
    }

    .homeCustomers__Content {
        width: 100%;
        padding: 1rem;
        border-radius: 0;
        height: auto;
    }

    .homeCustomers__Title {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .homeCustomers__Position {
        font-size: 14px;
        line-height: 21px;
        text-align: center;
    }

    .homeCustomers__Content p {
        font-size: 14px;
        text-align: right;
    }
}
