/* ==============header============== */
.header {
    position: fixed;
    width: 100%;
    height: 80px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    backdrop-filter: blur(10px);
    background-color: #2c0061;
    display: flex;
    align-items: center;
    z-index: 9999;
}
/* ==============social-link-group============== */
.social-link-group {
    width: 150px;
    height: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-right: 55%;
    animation: LoadSocialLinks .5s;
    animation-delay: .75s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes LoadSocialLinks {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 15px;
        opacity: 0;
    }
    100% {
        height: 30px;
        opacity: 1;
    }
}

.social-link-group a {
    text-decoration: none;
    color: #f9906f;
    font-size: 1.2rem;
}

.social-link-group a:hover {
    color: #fff !important;
}
/* ==============social-link-group============== */
/* ==============top-menu============== */
.top-menu {
    position: absolute;
    width: 650px;
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
    padding: 1% 0;
    z-index: 99999;
    animation: loadTopMenu .7s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadTopMenu {
    0% {
        right: -10%;
        opacity: 0;
    }
    100% {
        right: 2%;
        opacity: 1;
    }
}

.home-top-logo {
    width: 50px;
    height: 50px;
}
/* ==============top-menu============== */
.per-date-time {
    position: absolute;
    width: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 10%;
    animation: LoadSocialLinks .5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.header-hijri-cal-full-num,
.time-online {
    color: #fff;
    font-family: 'KalamehLight';
    font-size: 1rem;
}



@media (width <= 800px) {
    .per-date-time {
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* ==============social linkbox============== */
.social-link-box {
    position: fixed;
    width: 10px;
    height: 350px;
    background-color: rgba(0, 0, 0, .5);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 0 0 1rem;
    z-index: 8;
    animation: loadSocialIconBox .7s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadSocialIconBox {
    0% {
        right: -50%;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}

.social-box-btn {
    position: absolute;
    width: 40px;
    height: 200px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 100%;
    cursor: pointer;
}

.social-btn-frame {
    fill: rgba(0, 0, 0, .5);
}

.open-social-menu {
    width: 120px;
}

.social-box-btn-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 4%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 3rem;
}

.mirror {
    transform: scaleX(-1);
}

.social-icons {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 90%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    list-style-type: none;
}

.open-social-icons {
    width: 70px;
}

.social-icon-link {
    width: 60px;
    height: 60px;
    text-decoration: none;
    color: #fff;
    font-size: 3rem;
}

.social-icon-link img {
    width: 100%;
}
/* ==============social linkbox============== */
/* ==============header============== */