*{
    margin: 0;
    padding: 0;
    font-family: 'Anonymous Pro', monospace;
    scroll-behavior: smooth;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
}
body {
    background: rgb(7, 9, 48);  
    overflow-x: hidden;
}
nav{
    height: 80px;
    width: 100%;
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid rgba(0, 255, 255, 0.668);
}
.logo{
    height: 55px;
    width: 180px;
}
.fa-bars-staggered{
    color: #7882b9;
    font-size: 22px;
    cursor: pointer;
    display: none;
}
.fa-bars-staggered:hover{
    color: #374071;
}
nav>div>a{
    text-decoration: none;
    color: #7882b9;  /* light logo color*/
    margin: 0 20px;
    cursor: pointer;
}
nav>div>a:hover{
    color: #374071;    /* dark logo color*/
}
iframe{
    width: 100%;
    height: calc(100vh - 110px);
}

/* 711 */
@media(max-width:846px){
    nav>div{
        display: none;

    }
    .logo{
        margin-left: 30px;
        height: 47px;
        width: 140px;
    }
    nav{
        justify-content: space-between;
    }
    .fa-bars-staggered{
        display: block;
        margin: 0 50px;
        font-size: 24px;
    }
}
.ham_menu{
    height: 99vh;
    width: 280px;
    background-color: aliceblue;
    position: absolute;
    z-index: 100;
    margin-top: -79px;
    display: none;
    box-shadow: 60px 0px 200px rgb(0, 0, 0); 
    animation: navianime 1s ease-out ;
}
.res_links{
    height: 330px;
    width: 95%;
    margin-left: 5%;
    display: grid;
    margin-top: 20px;
}
.res_links>a{
    border: 1px solid #7882b9;
    height: 30px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    width: 90%;
    border-radius: 4px;
    cursor: pointer;
}
.res_links>a:hover{
    border: 2px solid lightblue;
}
.close_section{
    height: 40px;
    width: 100%; 
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(5, 4, 53, 0.115);
}
.fa-xmark{
    float: right;
    margin-left: 80%;
    font-size: 23px;
    cursor: pointer;
}
.fa-xmark:hover{
    color: rgb(4, 11, 67);
}
@keyframes navianime{
    from{
        opacity: 0;
        transform: translate(-100%,-0%) scale(1);
        }
        to{
        opacity: 1;
        transform: translate(-0%,-0%) scale(1);
        }
} 

.fc{
    color: aliceblue;
    font-size: 13px;
}
footer{
    border-top: 1px solid rgba(0, 255, 255, 0.442);
    margin-top: -5px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.fa-phone{
    display: flex;
    color: cyan;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px rgb(76, 228, 245); 
    background-color: rgba(173, 216, 230, 0.393);
    border-radius: 50px;
    position: fixed;  
    bottom: 70px;      
    right: 20px;      
    width: 50px;      
    height: 50px;     
    cursor: pointer;   
    z-index: 1000;     
}