﻿


/*Start Root*/
:root {
    --main-color: #285D9A;
    --main-color2: #1E4D82;
    --main-color3: #FFC50C;
    --main-color4: #C28E00;
}
/*End Root*/


/*Start Global*/
@font-face {
    font-family: 'bein-ar-black';
    src: url('../fonts-ar/bein-ar-black.ttf') format('truetype');
}

@font-face {
    font-family: 'bein-ar-light';
    src: url('../fonts-ar/bein-ar-light.ttf') format('truetype');
}


@font-face {
    font-family: 'FrutigerNextLT-Medium';
    src: url('../fonts-en/FrutigerNextLT-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'FrutigerNextLT-Medium';
    src: url('../fonts-en/FrutigerNextLT-Medium.ttf') format('truetype');
}

body {
    font-family: 'FrutigerNextLT-Medium';
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a, a:visited, a:hover {
    text-decoration: none
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p {
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

.img-reponsive {
    max-width: 100%;
    max-height: 100%
}

.MainColor1 {
    color: var(--main-color)
}

.mtb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mtb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center
}

.SectionTitle {
    position: relative;
    text-align: center;
    font-size: 60px;
}

    .SectionTitle:before {
        content: '';
        background-color: var(--main-color4);
        height: 5px;
        width: 40px;
        position: absolute;
        top: 0px;
        left: 50%;
        -webkit-transform: translate(-50%,-20px);
        -ms-transform: translate(-50%,-20px);
        transform: translate(-50%,-20px);
    }

@media(max-width:645px) {
    .SectionTitle {
        font-size: 40px;
    }
}

.MobileCover {
    background-color: #00000061;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 2;
}


.lnkWhatsapp, .lnkWhatsapp:visited {
    background-color: #25D366;
    box-shadow: 4px 4px 10px #1d1d1d;
    transition: all .5s ease-in-out;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 40px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation-name: whatsapp_animation;
    animation-timing-function: ease-in-out;
    animation-direction: alternate-reverse;
    animation-duration: .9s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

    .lnkWhatsapp:hover {
        transition-duration: .2s;
        animation-play-state: paused;
        width: 70px;
        height: 70px;
        font-size: 45px;
        padding: 12px;
        color: #fff;
    }

@keyframes whatsapp_animation {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(25px);
    }
}
/*End Global*/


/*Start border-pagination */
.b-pagination-outer {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    display: flex;
    margin-bottom: 100px;
}

.border-pagination {
    margin: 0 auto;
    padding: 0;
    text-align: center
}

    .border-pagination li {
        display: inline;
    }

        .border-pagination li a {
            display: block;
            text-decoration: none;
            color: #000;
            padding: 5px 10px;
            border: 1px solid #ddd;
            float: left;
        }

        .border-pagination li a {
            -webkit-transition: background-color 0.4s;
            transition: background-color 0.4s
        }

            .border-pagination li a.active {
                background-color: var(--main-color);
                color: #fff;
            }

            .border-pagination li a:hover:not(.active) {
                background: #ddd;
            }
/*End border-pagination */
/*Start Nav*/
.MainNav {
    background-color: var(--main-color);
    padding: 20px 0px;
    position: relative;
    z-index: 2;
}

    .MainNav.MainNavFixed {
        position: fixed;
        width: 100%;
        top: 0px;
    }

    .MainNav:after {
        content: '';
        background: transparent -o-linear-gradient(left, var(--main-color4) 0%, var(--main-color3) 51%, var(--main-color4) 100%) 0% 0% no-repeat padding-box;
        background: transparent -webkit-gradient(linear, left top, right top, from(var(--main-color4)), color-stop(51%, var(--main-color3)), to(var(--main-color4))) 0% 0% no-repeat padding-box;
        background: transparent linear-gradient(90deg, var(--main-color4) 0%, var(--main-color3) 51%, var(--main-color4) 100%) 0% 0% no-repeat padding-box;
        width: 100%;
        height: 5px;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .MainNav .NavMenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

        .MainNav .NavMenu > li:first-of-type img {
            height: 58px;
        }

        .MainNav .NavMenu > li > a {
            color: #fff;
            display: block;
            width: 100%;
        }

        .MainNav .NavMenu > li > button {
            background-color: transparent;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            width: 100%;
            height: 100%
        }

        .MainNav .NavMenu > li.ButtonMenu {
            display: none
        }

        .MainNav .NavMenu > li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: end;
            padding: 5px;
            -webkit-transition: all .5s ease-in-out;
            -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out
        }

            .MainNav .NavMenu > li:not(:first-of-type) {
                height: 55px;
            }

                .MainNav .NavMenu > li:not(:first-of-type):hover {
                    background-color: #fff;
                }

                    .MainNav .NavMenu > li:not(:first-of-type):hover > a,
                    .MainNav .NavMenu > li:not(:first-of-type):hover > button {
                        color: #000;
                    }


            .MainNav .NavMenu > li > .NavMenuItems {
                position: absolute;
                background-color: #fff;
                top: 81px;
                z-index: 5;
                width: 220px;
                padding: 7px 0px;
                box-shadow: 5px 5px 5px #6a6a6a80;
                -webkit-transform: translateX(-5px);
                -ms-transform: translateX(-5px);
                transform: translateX(-5px);
                display: none;
            }

                .MainNav .NavMenu > li > .NavMenuItems ul li a {
                    display: block;
                    padding: 5px 12px;
                    color: var(--main-color);
                    -webkit-transition: all .5s ease-in-out;
                    -o-transition: all .5s ease-in-out;
                    transition: all .5s ease-in-out
                }

                .MainNav .NavMenu > li > .NavMenuItems ul li:not(:last-of-type) a {
                    border-bottom: 1px solid #d1d1d1;
                }

                .MainNav .NavMenu > li > .NavMenuItems ul li a:hover {
                    padding-left: 10px;
                    background-color: #dbdbdb;
                }

            .MainNav .NavMenu > li:hover .NavMenuItems {
                display: block
            }

@media(max-width:1000px) {
    .MainNav .NavMenu > li.ButtonMenu {
        display: inherit
    }

    .MainNav .NavMenu > li:not(:first-of-type):not(li.ButtonMenu) {
        display: none
    }
}



.MainNav .MobileMenu {
    display: none;
    background-color: var(--main-color2);
    padding: 10px;
}

    .MainNav .MobileMenu > ul {
        text-align: center
    }

        .MainNav .MobileMenu > ul > li {
            margin: 10px 0px;
        }

            .MainNav .MobileMenu > ul > li > .NavMenuItems.open {
                max-height: 900px;
                overflow-y: hidden;
            }

            .MainNav .MobileMenu > ul > li > a {
                color: #fff;
                font-size: 18px;
                display: block;
            }

    .MainNav .MobileMenu .NavMenuItems {
        /*display:none*/
        -webkit-transition: max-height .5s ease-in-out;
        -o-transition: max-height .5s ease-in-out;
        transition: max-height .5s ease-in-out;
        max-height: 0px;
        overflow-y: hidden;
    }

        .MainNav .MobileMenu .NavMenuItems > ul {
            background-color: #0000006e;
            padding: 6px 0px;
            margin: 5px 0px
        }

            .MainNav .MobileMenu .NavMenuItems > ul > li > a {
                color: #fff;
                display: block;
                padding: 8px 0px;
            }

                .MainNav .MobileMenu .NavMenuItems > ul > li > a:hover {
                    color: var(--main-color4)
                }
/*End Nav*/
/*Start Banner*/
.MainBanner .owl-theme .owl-nav.disabled + .owl-dots {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: 25px;
    left: 50%;
}

.MainBanner .owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
}

.MainBanner .owl-theme .owl-dots .owl-dot.active span {
    background-color: #fff
}

.MainBanner img {
    max-height: calc(100vh - 112px) !important;
}

.MainBanner .BannerForm {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    width: 100%
}



    .MainBanner .BannerForm p {
        font-size: 25px;
    }

    .MainBanner .BannerForm a {
        background-color: var(--main-color3);
        display: inline-block;
        width: 184px;
        height: 57px;
        border-radius: 15px;
        border-bottom: 3px solid var(--main-color4);
        color: var(--main-color2);
        font-weight: bold;
        line-height: 3.5;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        margin-top: 30px;
    }

        .MainBanner .BannerForm a:hover {
            border-bottom-width: 5px;
        }

@media(max-width:870px) {
    .MainBanner .BannerForm a {
        margin-top: 0px;
    }


    .MainBanner .BannerForm h1 {
        font-size: 23px;
    }
}

@media(max-width:650px) {


    .MainBanner .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
    }

    .MainBanner .owl-theme .owl-nav.disabled + .owl-dots {
        bottom: 5px;
    }

    .MainBanner .BannerForm a {
        width: 140px;
        height: 50px;
        line-height: 3;
    }
}

@media(max-width:555px) {
    .MainBanner .BannerForm {
        width: 100%
    }

        .MainBanner .BannerForm p {
            line-height: unset;
            font-size: 19px;
        }
}

@media(max-width:450px) {
    .MainBanner .BannerForm {
        top: 10px;
        -webkit-transform: translate(-50%,0px);
        -ms-transform: translate(-50%,0px);
        transform: translate(-50%,0px);
    }

        .MainBanner .BannerForm p {
            line-height: unset;
            font-size: 17px;
        }
}

@media(max-width:345px) {
    .MainBanner .BannerForm h1 {
        font-size: 17px;
    }

    .MainBanner .BannerForm a {
        line-height: 2.5;
        height: 40px;
    }

    .MainBanner .BannerForm p {
        margin: 3px;
    }
}
/*End Banner*/
/*Start Article*/
.Article {
    background: url(../imgs/Photo/Photo/distributionShelf.png);
    color: #fff;
    padding: 50px 0px;
}

    .Article h1 {
        font-size: 70px;
    }

    .Article p {
        font-size: 30px;
        position: relative
    }

        .Article p:after {
            content: '';
            background-color: var(--main-color3);
            height: 5px;
            width: 95px;
            position: absolute;
            bottom: 0px;
            left: 0px;
            -webkit-transform: translateY(25px);
            -ms-transform: translateY(25px);
            transform: translateY(25px);
        }

@media(max-width:745px) {
    .Article h1 {
        font-size: 30px;
    }

    .Article p {
        font-size: 15px;
    }
}

@media(max-width:500px) {
    .Article h1 {
        font-size: 18px;
    }
}
/*End Article*/
/*Start Email Support*/
.EmailSupport {
    background-color: var(--main-color);
    text-align: center;
    padding: 50px 0px;
    color: #fff
}

    .EmailSupport .EmailSupportForm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .EmailSupport input {
        background-color: #346AA8;
        border: none;
        font-size: 25px;
        padding: 8px;
        border-radius: 15px;
        outline: none;
        width: 300px;
        max-width: 100%;
    }

    .EmailSupport button {
        background-color: transparent;
        border: 2px solid #fff;
        width: 230px;
        border-radius: 10px;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        cursor: pointer
    }

    .EmailSupport input, .EmailSupport button {
        display: inline-block;
        color: #fff;
        height: 55px;
        margin: 10px 5px;
    }

    .EmailSupport input {
        border: 1px solid #777;
    }
        .EmailSupport input::placeholder
        {
            color:#d1d1d1
        }

        .EmailSupport button:hover {
            background-color: #fff;
            color: var(--main-color);
        }
/*End Email Support*/
/* Start Services*/
.Services {
    padding: 50px 0px;
    border-bottom: 2px solid var(--main-color);
}

    .Services .ServicesHead {
        text-align: center
    }


        .Services .ServicesHead p {
            color: #727272;
            font-size: 20px;
        }

    .Services .ServicesItem h2 {
        position: relative;
        margin-bottom: 45px;
    }

        .Services .ServicesItem h2:after {
            content: '';
            background-color: var(--main-color4);
            height: 5px;
            width: 50px;
            position: absolute;
            bottom: 0px;
            left: 0px;
            -webkit-transform: translate(0px,20px);
            -ms-transform: translate(0px,20px);
            transform: translate(0px,20px);
        }

    .Services a {
        color: #000;
    }

@media(max-width:645px) {
    .Services .ServicesItem h2 {
        font-size: 20px;
    }
}

@media(max-width:576px) {
    .Services {
        text-align: center
    }

        .Services .ServicesItem h2::after, body.rtl .Services .ServicesItem h2::after {
            left: 50% !important;
            transform: translate(-50%,20px) !important;
            right: unset !important
        }
}


/* End Services*/
/*Start Our Client*/
.OurClient {
    padding: 50px 0px;
    border-top: 5px dashed var(--main-color);
    margin-top: 5px;
}

div.ourClients-carousel.owl-center {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center;
}

.OurClient .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #B7B7B7;
}

.OurClient .owl-theme .owl-dots .owl-dot.active span {
    background: var(--main-color);
    width: 20px;
    height: 20px;
}

.OurClient .owl-theme .owl-dots {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

/*End Our Client*/
/*Start Details*/
.DetailsHead {
    background-color: var(--main-color4);
    padding: 10px 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column
}

    .DetailsHead > * {
        text-align: initial;
    }

.Details {
    margin: 20px 0px;
    text-align: initial;
}

section.Details *:not(.MainColor1) {
    font-family: 'FrutigerNextLT-Medium' !important;
    font-size: unset !important;
}

.Details ul {
    list-style: unset;
    margin-top: 60px;
}

    .Details ul li {
        font-size: 23px;
        margin: 20px 0px;
    }

.Details img {
    max-width: 330px;
}


@media (max-width: 330px) {
    .Details img {
        max-width: 100%;
    }
}
/*End Details*/
/*Start Galary*/
.galary {
    margin: 100px 0px;
}
/*End Galary*/
/*Start ContactUs*/
.ContactUs {
    font-size: 20px;
    margin: 50px 0px;
}

.ContactForm {
    margin: 50px 0px;
}

    .ContactForm .form-group {
        border-bottom: 2px solid var(--main-color);
        font-size: 20px;
        margin: 18px 0px;
    }

        .ContactForm .form-group i {
            margin: 0px 5px;
        }

    .ContactForm textarea {
        display: block;
        width: 100%;
        border: 2px solid var(--main-color);
        border-bottom-color: transparent;
        outline: none;
        height: 100%;
        margin-top: 10px;
    }

    .ContactForm input {
        border: none;
        outline: none;
        padding: 10px 0px;
    }

    .ContactForm button[type=submit] {
        -webkit-transition: opacity .5s ease-in-out;
        -o-transition: opacity .5s ease-in-out;
        transition: opacity .5s ease-in-out;
        background-color: var(--main-color);
        color: #fff;
        display: block;
        margin: 0px auto;
        width: 190px;
        height: 40px;
        outline: none;
        border: none;
        cursor: pointer;
        border-radius: 3px;
    }

    .ContactForm button:hover {
        opacity: .7
    }

    .ContactForm .form-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .ContactForm .form-group input {
            flex-grow: 1;
            padding: 5px
        }

        .ContactForm .form-group label.error {
            color: rgb(255, 0, 0);
            font-size: 14px;
            display: block;
            position: absolute;
            transform: translateY(35px);
            margin: 0px 5px
        }



    .ContactForm .alert button {
        position: absolute;
        right: 10px;
        top: 10px;
        background-color: transparent;
        color: #000;
        border: none;
        cursor: pointer;
        font-size: 20px;
    }
/*End ContactUs*/
/*Start EventsActivities*/
.EventsBanner {
    background: url(../imgs/Photo/Photo/events.png)
}

.EventsActivities {
    margin: 80px 0px;
}

    .EventsActivities .EventsItem {
        border: 2px solid var(--main-color);
        border-top-right-radius: 40px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        overflow: hidden;
        min-height: 300px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 55px 0px;
    }

        .EventsActivities .EventsItem > div {
            background-color: var(--main-color3);
            border-bottom: 2px solid var(--main-color4);
            border-radius: 12px;
            font-size: 18px;
            padding: 10px 2px;
            width: 100%;
            text-align: center
        }
/*End EventsActivities*/


.MainFooterLinks {
    background-color: var(--main-color);
    padding: 50px 0px;
}

.MainFooter .MainFooterLinks ul li {
    margin: 15px 0px;
    color: #fff
}

    .MainFooter .MainFooterLinks ul li:first-of-type a {
        font-weight: bold;
        font-size: 21px;
        color: #eee;
    }

    .MainFooter .MainFooterLinks a {
        display: inline-block;
        color: #fff;
        font-size: 18px;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

    .MainFooter .MainFooterLinks a:hover {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px)
    }

.MainFooter .MainFooterLinks ul li.SocialLinks {
    display: flex;
    justify-content: center
}

    .MainFooter .MainFooterLinks ul li.SocialLinks a {
        width: 35px;
        height: 35px;
        text-align: center;
        padding: 7px;
        border-radius: 50%;
        margin: 0px 10px;
    }

        .MainFooter .MainFooterLinks ul li.SocialLinks a:hover {
            background-color: var(--main-color2)
        }

.MainFooter .MainFooterInfo {
    background-color: var(--main-color2);
    padding: 30px 0px;
}



    .MainFooter .MainFooterInfo p,
    .MainFooter .MainFooterInfo p b {
        color: #fff
    }

    .MainFooter .MainFooterInfo .container .row div > * {
        margin: 5px 0px;
        font-size: 18px;
    }

@media(max-width:767px) {
    .MainFooter ul {
        text-align: center
    }

    .MainFooterInfo {
        text-align: center;
    }
}
/*End Footer*/


/*Start RTL*/
body.rtl {
    direction: rtl;
    font-family: 'bein-ar-light';
}

    body.rtl section.Details *:not(.MainColor1) {
        font-family: 'bein-ar-light' !important;
        font-size: unset !important;
    }

    body.rtl .Services .ServicesItem h2:after {
        right: 0px;
        left: unset
    }

    body.rtl .Article p:after {
        right: 0px;
        left: unset
    }

    body.rtl .MainNav .NavMenu > li > .NavMenuItems {
        -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
        transform: translateX(5px);
    }

    body.rtl .ContactForm .alert button {
        right: unset;
        left: 10px;
    }
/*End RTL*/
.MainBanner .BannerForm h1 ,
.MainBanner .BannerForm h1 {
  font-size: 55px;
  text-shadow: 2px 2px 0 var(--main-color);
  font-weight: bold;
 }
.MainBanner .BannerForm p {
     font-size: 25px;
     text-shadow: 2px 2px 0 var(--main-color);
     font-weight: bold;
 }
