a {
    text-decoration: none;
}
li {
    list-style: none;
}
#imgLogoHeader{
    
}
/* NAVBAR STYLING STARTS */
.navbar {
    z-index: 9;
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0,0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
}
.nav-links a {
    color: #fff;
    -webkit-transition: color 1s; /* For Safari 3.0 to 6.0 */
    transition: color 1s; /* For modern browsers */
}
.nav-links a:hover {
    color: gray;
    text-decoration: underline;
}
.nav-links{
    margin-bottom: 0px !important;
}

/* LOGO */
.logo {
    font-size: 32px;
}
/* NAVBAR MENU */
.menu {
    display: flex;
/*    gap: 1em;*/
    font-size: 18px;
}
.menu li:hover {
    border-radius: 5px;
    transition: 0.3s ease;
}
.menu li {
    padding: 5px 14px;
}
/* DROPDOWN MENU */
.services {
    position: relative; 
    cursor: pointer;
}
.dropdown {
    background-color: rgba(0, 0, 0,1);
    padding: 2px 2px 2px 2px;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    /*top: 35px;*/
}
.dropdown li + li {
    /*margin-top: 10px;*/
}
.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}
.dropdown li:hover {
    background-color: transparent;
}
.services:hover .dropdown {
    display: block;
}

/*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
} 
/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
    cursor: pointer;
}
/* APPLYING MEDIA QUERIES */
@media (max-width: 600px) {
    .menu {
        top: 80px !important;
    }
    .navbar {
        height: 80px;
    }
    #imgLogoHeader{
        height: 30px !important;
    }
}
@media (max-width: 1230px) {
    #hiddeLiMed{
        display: none;
    }
} 
@media (max-width: 995px) {
    .menu { 
        display: none;
        position: absolute;
        background-color: rgba(0, 0, 0,1);
        right: 0;
        top: 115px;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }
    .menu li:hover {
        display: inline-block;
    }
    .menu li + li {
        /*margin-top: 12px;*/
    }
    /*    input[type=checkbox]:checked ~ .menu{
            display: block;
            background-color: rgba(0, 0, 0,1);
        }
        input[type=checkbox]:not(:checked) ~ .menu{
            background-color: rgba(0, 0, 0,0.5);
        }*/
    
    .dbloq{
        display: block;
    }
    .opaT5{
        background-color: rgba(0, 0, 0,0.5);    
    }
    .opaT1{
        background-color: rgba(0, 0, 0,1);  
    }
    
    .hamburger {
        display: block;
    }
    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }
    .dropdown li:hover {
    }
    #hiddeLi{
        display: none;
    }
}
.h75{
    height: 75px;
}
.fullBlack{
    background: black;
}