.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-color: #00000079;
    backdrop-filter: blur(7px);
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    opacity: 0.8;
    color: #fff;
}

.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 {
    margin-left: auto;
    background-color: #000;
    border-radius: 50em 0 50em 50em;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.contact-details-container .data {
    margin-bottom: 0;
    color: #fff;
    margin: 0 20px;
    font-size: 12px;
}

.contact-details-container .social-media-btn {
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    margin: 0 3px;
    cursor: pointer;
}

/* *************************** */
/*         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{
        padding: 5px 20px;
    }
}

@media screen and (max-width:768px) {
    .header-logo-container {
        height: 40px;
    }

    .contact-details-container {
        padding: 3px 10px;
        border-radius: 0 0 20px 20px;
    }

    .contact-details-container .data {
        margin: 0 15px;
        font-size: 14px;
    }

    .contact-details-container .social-media-btn {
        font-size: 14px;
        padding: 0 3px;
        margin: 0 3px;
    }

    .second-header{
        display: none;
    }
}

/* Large mobile */
@media screen and (max-width:576px) {
    .second-header{
        display: none;
    }
}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/* *************************** */
/*         Media Queries END     */
/* ************************* */
