/* computer navigation start*/





.pcnavigation {
    z-index: 2;
    font-family: "Hiragino Mincho", serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 98%;
    height: 40px;
    position: fixed;
    margin-left: 1%;
    border-radius: 0px 30px 0px;
    margin-block: 8px;
    background: linear-gradient(90deg, #bef2f7, #477074);
    box-shadow: 1px 4px 20px 0px #477074;


}



.pcnavlink {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.817);
    cursor: pointer;
    width: calc(100% / 7);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    height: 100%;
    border: none;
    background-color: transparent;
    transition: color 0.3s, font-size 0.3s;

}

.pcnavlink:hover,
.pcnavlink:focus {
    text-decoration: underline;
    color: white;
    border: transparent;
    font-size: 1.2em;

}

.navfrstlink {
    border-radius: 0px 30px 0px;
    background-color: #477074;
}

.navlstlink {
    border-radius: 0px 30px 0px;
}

#homelinks>a {
    color: #014990;
}

/* computer navigation end*/






@media (max-width: 767px) {


    .pcnavigation {
        flex-direction: column;
        border-radius: 0;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        background-color: #ffffff;
        transition: all 0.5s ease;
        transform: scale(0.01);
        margin: 0;


    }

    .pcnavigation>a {
        width: 100%;
        border-bottom: 1px solid black;
    }

    #mobilemenuicon {
        z-index: 10;
        cursor: pointer;
        margin: 10px;
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #21575a;
        position: absolute;
        top: 0px;
        right: 0px;
        width: 50px;
        height: 50px;
    }

    #homelinks {
        display: none;
    }

    #mobilemenuicon>div {
        width: 60%;
        height: 5px;
        background-color: white;
        margin: 2px 0;

    }

}