
nav{
    padding-top: 30px;
    padding-bottom: 20px;
    
    width: 100%;
    
    height: 40px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 5;
    display: flex;
    flex-direction:row-reverse; 
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;

}

nav .logo{
    width: 30%;
    text-align: center;
    padding-left: 50px;
    font-size: 30px;
    font-weight: 700;
}
nav .links{
    width: 70%;
}

nav .links-comp a{
    margin-left: 50px;
    margin-right: 50px;
    float: right;
    
    text-decoration: none;
    color: #fff;
    
    font-size: 25px;
    font-weight: 600;
}

nav .links-mobile{
    height: 70vh;
    top: 0px;
    padding-top: 70px;
    width: 100%;
    overflow: hidden;
    display: none;
    position: absolute;
    flex-direction: column;
    z-index: 4;
    padding-bottom: 200px;
    background-color: rgba(0,0,0,0.8);
}
nav .links-mobile a{
    width: 100%;
    min-height:  80px;
    
    text-align: center;
    padding-top: 30px;
    box-sizing: border-box;
    
    text-decoration: none;
    font-size: 40px;
    color: #fff;
    position: relative;
}
nav .links-mobile a .service-mobile-drop-down{
    list-style: none;
    font-size: 25px;
    display: none;
}
.mobile-links-button{
    display: none;
    
    flex-direction: column;
    justify-content: center;
    align-content: space-between;
    position: relative;
    
    margin-right: 20px;
    z-index: 100;
}
.mobile-links-button{
    display: none;
    
    flex-direction: column;
    justify-content: center;
    align-content: space-between;
    position: relative;
    
    margin-right: 20px;
}

.line-bar{
    width: 30px;
    height: 5px;
    margin-top: 4px;
    border-radius: 20px;
    background-color: #fff;
}
.active-link{
    box-sizing: border-box;
    padding-top: 30px;
    text-align: center;
    background-color: #000;
    margin-top: -30px;
    border-radius: 5px;
    width: 100px;
    height: 90px;
}
@media screen and (max-width: 1000px) {

    nav .links-comp a{
        margin: 0px 20px;
    }
    
}
@media screen and (max-width: 850px) {
    nav .links-comp a{
        margin: 0px 20px;
        font-size: 20px;
    }
    nav .logo{
    font-size: 25px;
    }
}
@media screen and (max-width: 740px) {

    .links-comp{
        display: none;
    }
    .mobile-links-button{
        display: flex;
    }
}

.dropdown{
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
    background-color: aqua;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.services-link{
    position: relative;
  display: inline-block;
}
.services-link:hover .dropdown{
    display: block;
}
nav .logo{
    margin-top: -20px;
    font-size: 30px;
}
nav .logo img{
    width: 120px;
    height: 70px;
    padding: 5px 10px;
    transition: 0.5s;
}
nav .logo img:hover{
    transform: scale(1.1);
}

@media screen and (max-width: 600px) {

    nav .logo{
    margin-top: -10px;

        padding-left: 10px;
    }
    nav .logo img{
        
    
        width: 80px;
        height: 50px;
    }
}
