.header-main-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1000;
}

.header-logo-container {
    width: auto;
    height: 50px;
}

.header-logo-container .logo {
    height: 100%;
    width: auto;
}

.navbar {
    background: #000000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 50%, rgba(0, 0, 0, 0) 100%);
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    opacity: 0.8;
    color: #fff !important;
}

.navbar-nav .nav-item.active .nav-link {
    font-weight: 600;
    opacity: 1;
}

.navbar-nav .nav-item .dropdown-menu{
    max-height: 500px;
    overflow: auto;
}
.contact-details-container{
    display: flex;
    align-items: center;

}
.contact-details-container .data{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.social-links-main-container{
    position: fixed;
    right: 10px;
    top: 20%;
}

.social-links-main-container .socials-btn-container{
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    backdrop-filter: blur(3px);
    background-color: #ffffff4d;
    padding: 10px 5px;
    border-radius: 50em;
    gap: 5px;
}

.social-links-main-container .socials-btn-container .social-media-btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 0;
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width:1400px) {}

/* Small laptop */
@media screen and (max-width:1200px) {
    .header-logo-container {
        height: 50px;
    }
}

/* Tablet */
@media screen and (max-width:992px) {
    .header-logo-container {
        height: 40px;
    }

    .contact-details-container{
        align-items: start;
        justify-content: center;
        gap: 15px;
        padding: 0 10px;
    }
}

@media screen and (max-width:768px) {
    .header-logo-container {
        height: 40px;
    }
    .navbar {
        background: none;
        backdrop-filter: none;
        background-color: rgba(0, 0, 0, 0.14) !important;
    }

    .social-links-main-container{
        right: 5px;
    }
}

/* Large mobile */
@media screen and (max-width:576px) {
}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/* *************************** */
/*         Media Queries END     */
/* ************************* */
