@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic&display=swap');

/* ------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}
html, body {
    height: 100%;
    background-color: rgb(186, 227, 255);
    font-family: 'Noto Kufi Arabic', sans-serif;
    overflow-x: hidden;

    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: rgb(186, 227, 255);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(0, 153, 255);    /* color of the scroll thumb */
    border-radius: 10px;       /* roundness of the scroll thumb */
    border: 3px solid rgb(186, 227, 255);  /* creates padding around scroll thumb */
}

/* ------------------------------------------- */
.preloader {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.preloader img{
    position: absolute;
    width: 35%;
    transform: translateY(-15%);
}
.preloaderStart {
    opacity: 1;
    transition: all 1.3s ease-out;
}
.preloaderStart img {
    transform: translateY(0);
    transition: all 1.3s ease-out;
}
.preloaderEnd {
    opacity: 0;
    transition: all 0.5s ease-out;
}
.preloaderEnd img {
    transform: translateY(5%);
    transition: all 0.5s ease-out;
}

/* --------------------------------------- */
.page {
    display: none;
}
/* --------------------------------------- */
#menu {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 5px 3px 3px rgba(77, 77, 77, 0.3);
    display: flex;
    width: 80%;
    background-color: rgb(186, 227, 255);
    position: fixed;
    z-index: 1;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
#menuItems {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#menuItems a {
    color: rgb(0, 1, 82);
    text-decoration: none;
}
#menuLogo {
    width: 17%;
    display: flex;
    justify-content: end;
    align-self: center;
}
#menuLogo img {
    width: 70px;
    height: 31px;
}
.oneMenuItem {
    font-weight: bold;
    font-size: 16px;
}
#menuScreen {
    display: none;
}

/* ---------------------------------------------- */
#slideShow {
    position: relative;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    filter: blur(0) brightness(100%);
    transition: all 0.5s;
}
#slideShowImage {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}
#slideShowText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2vw;
    text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.9);
    color: yellow;
    font-weight: bold;
    /* border-radius: 5px;
    background-color: rgba(77, 77, 77, 0.8);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
    padding: 9px 20px; */
    max-width: 80%;
    text-align: center;

    opacity: 0;
    transition: all 0.5s ease-out;
}
#slideShowText > span {
    text-align: center;
    border-radius: 5px;
    padding: 2px 4px;
    background-color: rgba(0, 0, 22, 0.95);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
    line-height: 2.2;
}

.slideShowTransitionStart {
    filter: blur(25px) brightness(250%) !important;
    transition: all 0.5s !important;
}
.slideShowTextTransitionStart {
    opacity: 1 !important;
    top: 70% !important;
    transition: all 0.5s ease-out !important;
}

/* ----------------  experiences ------------------- */
#experiences {
    position: relative;
    width: 100vw;
    padding: 5%;
    background-image: url('/img/sec-01/bg-01.jpg');
    background-size: cover;
    background-position: top left;
}
#allExperiences {
    width: 80%;
    /* border: thin red solid; */
    padding: 2%;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#allExperiences div {
    position: relative;
    text-align: center;
    /* border: red thin solid; */
    width: 15vw;
    padding: 3%;
    margin: 3%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.3vw;
    background-color: rgba(0, 0, 22, 0.95);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
    text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.9);
    color: yellow;
    font-weight: bold;
    border-radius: 5px;
}
#allExperiences div a {
    text-decoration: none;
    color: yellow;
}

.exDivIcon {
    position: absolute !important;
    top: 55%;
    left: -12%;
    padding: 0;
    background-image: url("/img/sec-01/icon-01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 9vw !important;
    height: 6vw !important;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(0, 0, 0, 0) !important;
    opacity: 0.60;
}
/* ----------------  services ------------------- */
#services {
    position: relative;
    width: 100vw;
    padding: 5%;
    background-image: url('/img/sec-01/bg-01.jpg');
    background-size: cover;
    background-position: top left;
}
#allServices {
    width: 80%;
    /* border: thin red solid; */
    padding: 2%;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#allServices div {
    position: relative;
    text-align: center;
    /* border: red thin solid; */
    width: 15vw;
    padding: 3%;
    margin: 3%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.3vw;
    background-color: rgba(0, 0, 22, 0.95);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
    text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.9);
    color: yellow;
    font-weight: bold;
    border-radius: 5px;
}

/* ------------- */
    .sectionTitle {
        margin: 3vw 28vw 0 0vw;
        width: 35vw;
        font-size: 2vw;
        background-color: rgba(0, 0, 22, 0.95);
        box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
        text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.9);
        color: yellow;
        font-weight: bold;
        text-align: center;
        border-radius: 5px;
    }
/* ------------ */
.upperScreen {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 75px;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%); */
}
.lowerScreen {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 75px;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%); */
}

/* ----------------------------------- */

@media only screen and (max-width: 600px) {
    .preloader img{
        position: absolute;
        width: 55%;
        transform: translateY(-5%);
    }

    #menuItems {
        display: none;
        position: absolute;
        top: 75px;
        right: 0;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 5px 3px 3px rgba(77, 77, 77, 0.3);
        width: 40%;
        background-color: rgb(186, 227, 255);

    }
    .oneMenuItem {
        padding: 5px;
    }
    #menuScreen {
        display: none;
        position: absolute;
        top: -5vh; left: -8.3vw;
        width: 100vw; height: 100vh;
        background-color: rgba(0, 127, 255, 0.3);
    }

    #slideShowText {
        font-size: 4.5vw;
    }
    #menuLogo {
        width: 80%;
    }
    #menuLogo img {
        width: 100px;
        height: 44px;
    }
    #sidebarMenuIcon {
        width: 20%;
        display: flex !important;
        justify-content: start;
        align-self: center;
    }

    .sectionTitle {
        font-size: 4.5vw;
        margin-right: 24vw;
        margin-top: 24vw;
    }

    /* ------------------- */
    #allExperiences div {
        width: 30vw;
        height: 12vh;
        font-size: 3vw;
    }
    .exDivIcon {
        left: -10%;
        width: 15vw !important;
        height: 15vw !important;
    }
    #allServices div {
        width: 30vw;
        height: 12vh;
        font-size: 3vw;
    }
    
}