@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    font-family: 'Noto Kufi Arabic', sans-serif;
}

body {
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow: hidden;
}

a {
    text-decoration: none;
}

.animation_img1,
.animation_img2,
.animation_img3 {
    position: absolute;
    width: 401px;
    height: 401px;
    left: 50%;
    transform: translateX(-50%);
}

.animation_img1 {
    -webkit-animation: MoveCorner 12s infinite alternate;
    animation: MoveCorner 12s infinite alternate;
}

.animation_img2 {

    -webkit-animation: MoveCorner-reverse 12s infinite alternate;
    animation: MoveCorner-reverse 12s infinite alternate;
}

.animation_img3 {
    -webkit-animation: MoveCorner-UpDown2 12s infinite alternate;
    animation: MoveCorner-UpDown2 12s infinite alternate;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
    height: 100vh;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(200px);
    box-shadow: 0px 16px 69px 0px rgba(0, 0, 0, 1);

}

.logo_container {
    width: 121px;
    height: 121px;
    filter: drop-shadow(0px 5px 79px rgba(128, 158, 255, 0.35));
    margin-bottom: 15px;
    position: relative;
    z-index: 500;
}

.logo_container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(0px 5px 79px rgba(128, 158, 255, 0.35));
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    max-width: 343px;
    height: fit-content;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    position: relative;
}

.content span {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #263670;
    text-shadow: 0px 5px 22px rgba(132, 132, 132, 0.13);
    margin-bottom: 15px;
}

.social a {
    padding: 0 15px;
}

.social a img {
    height: 26px;
}

.logo_projects {
    width: 307px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo_projects div {
    border: 0.935691px solid #CCD8FF;
    border-radius: 5.61415px;
}

.logo_projects div:not(:last-child) {
    width: 140px
}

.logo_projects .qarat img {
    width: 100px;
    height: 91px;
}

.logo_projects .kader img {
    width: 100px;
    height: 91px;
}

.logo_projects .qwaeam img {
    width: 291px;
    height: 82px;
}

.our_site {
    box-shadow: 0px 41px 79px rgba(128, 158, 255, 0.35);
    border-radius: 11px;
    background: #FFFFFF;
    width: 90%;
    padding: 7px;
}

.our_site a {
    color: #263670;
    text-shadow: 0px 5px 22px rgba(132, 132, 132, 0.13);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 3px;
    display: block;
}


/* Media Query */

@media (max-width:321px) {
    .logo_projects {
        width: unset;
    }

    .content {
        max-width: 278px;
    }

    body {
        overflow-x: hidden;
        overflow-y: unset;

    }

    .container {
        height: unset;

    }

    .social a {
        padding: 0 7px;
    }
}