*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* Header CSS */
body {
    /*background-color: rgba(137,112,124,0.7);
    background-color: rgb(171, 154, 162);*/
	background-color: rgb(165, 165, 165);
  }
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    min-height: 8vh;
    width: 100%;
    background-color: rgba(38,31,34,0.85);
    font-family: 'Poppins', sans-serif;
    /*box-shadow: 0px 8px 50px 20px rgba(137,112,124);*/
}
.header {
    padding-top: 30px;
    color: #444;
    font-size: 20px;
    margin:auto;
    line-height: 50px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 50px;
}
.nav-links li{
    list-style: none;
}
.nav-links .active {
    color: rgb(220,220,220);
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 40%;
    padding-right: 25px;
}
.nav-links a{
    /*color: rgb(171, 154, 162);*/
    color: rgb(165, 165, 165);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
}
.nav-links a:hover {
    color: rgb(220,220,220);
  }
.burger{
    display: none;
    cursor: pointer;
    padding-right: 25px;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color:rgb(120, 120, 120);
    /*background-color:rgb(171, 154, 162);*/
    margin: 5px;
    transition: all 0.3s ease;
}
/* Media Screen Cutoffs */
@media screen and (max-width:1024px){
    .nav-links{
        width: 50%;
    }
}
@media screen and (max-width:768px){
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        /*background-color:#a7a7a7;*/
        /*background-color:rgb(171, 154, 162);*/
        background-color:rgb(165, 165, 165);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
    .nav-links a{
        color: rgb(220, 220, 220);
        font-size: 18px;
    }
    .nav-links a:hover {
        color: rgb(255,255,255);
      }
}
/* Mobile Animation */
.nav-active{
    transition: transform 0.6s ease-in;
    transform: translateX(0%);
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px);
}
.fa-linkedin {
    background: white;
    color: rgb(25,25,25);
}
.links a:hover {
    /*color: #ffb423;*/
    color: rgb(220, 220, 220);
  }
.logo img{
    position:absolute;
    margin-top: -25px;
    height: 30px;
    width: 30px;
}
/*.logo img:hover{
    filter: brightness(100);
}*/
.logo{
    padding-left: 50px;
}
.logo a{
    color: rgb(190, 190, 190);
    letter-spacing: 5px;
    font-size: 20 px;
    text-decoration: none;
}
.logo a h4{
    margin-left:50px;
}
.logo a:hover {
    /*color: #ffb423;*/
    color: rgb(220,220,220);
}
/* Footer */
.footer {
    display: flex;
    padding: 50px;
    padding-top: 60px;
    /*background-color: #a7a7a7;*/
    /*background-color: rgb(171, 154, 162);*/
    background-color: rgb(165, 165, 165);
    width: 100%;
    min-height: 100%;
    justify-content: center;
}
.footer p{
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}
.fa {
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    /*background-color: #a7a7a7;
    background-color: rgb(171, 154, 162);*/
    background-color: rgb(165, 165, 165);
    color: black;
}
.links {
    position:absolute;
    margin-left:80%;
}
.links.burg{
    opacity: 0;
    transition: transform 0.6s ease-in;
}
@media screen and (max-width:850px){
    .links {
        margin-left:0;
        padding-top: 40px;
        }
    .footer {
        padding: 40px;
        margin-bottom: 20px;
    }
    .logo a h4{
        margin-left:70px;
    }

    }
a:link {
    text-decoration: none;
  }
@media screen and (max-width:380px){
    .logo a h4{
        display: none;
    }
    /*
    .logo a h4{
        font-size: 14px;
        text-align: center;
        margin-left: 40px;
    }*/
    .logo img{
        margin-top: -15px;
    }
    .logo{
        padding-left: 40px;
    }
}