.threeP-header {
    position: absolute;
    top: 0;
    width: 100%;
}

.search-bar {
    border: 1px solid white;
    border-radius: 30px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-bar img {
    padding: 6px 10px;
    width: 15%;
}

.header-details {
    display: flex;
    justify-content: space-between;
    padding: 0px 70px;
    align-items: center;
    backdrop-filter: blur(4px);
    /* background-color: #ffffff20; */
    background-color: #0f0f0f40;
}

.project-logo {
    display: block;
}

.header-details .logo {
    align-items: center;
    padding: 5px 0px;
}

.header-details .menu-list ul {
    padding: 0px;
}

.header-details .menu-list ul li {
    display: inline-block;
    color: #fff;
    margin: 0px 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Branch', sans-serif;
}

.header-details .menu-list ul li a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.header-details .menu-list ul li a:hover {
    font-weight: 700;
}

.mobile-menu-list ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.header-details .menu-list ul li:hover {
    font-weight: 700;
}

.mobile-menu-list li {
    list-style-type: none;
    line-height: 1.9;
    font-family: 'Branch', sans-serif;
}

.mobile-menu {
    display: none;
}

.mobile-logo {
    width: 75px;
    display: block;
}

.mobile-search-bar {
    display: none;
}

.menu-list {
    padding: 4px 0px;
}

@media screen and (max-width:767.98px) {
    .mobile-menu {
        display: block;
        backdrop-filter: blur(4px);
        padding: 6px 22px;
        background-color: #0f0f0f40;
        ;
    }

    .header-details {
        display: none;
    }

    .mobile-menu-list {
        background-color: #ffffff40;
        padding: 10px;
        display: none;
    }

    .search-bar {
        display: none;
    }

    .mobile-menu-list .arrow-down-mobile {
        display: inline-block;
        width: 10px;
        height: 10px;
        border: solid #fff;
        border-width: 2px 2px 0 0;
        transform: rotate(135deg);
        transform: rotate(135deg);
        transform-origin: center;
        transition: transform 0.3s ease;
        margin-left: 5px;
        position: relative;
        top: 8px;
    }

    .dropdown-menu-mobile>li>a {
        color: #fff !important;
    }

    .slick-dots li button:before {
        font-size: 8px;
        line-height: 28px;
    }

    .slick-dots li.slick-active button:before {
        color: #2F2F2F;
    }

    .dropdown-menu-mobile {
        width: 100% !important;
    }

    .footer-desktop {
        display: none;
    }
}

@media screen and (min-width:768px) and (max-width:991.98px) {
    .project-logo {
        height: 22px !important;
    }

    .header-details .menu-list ul li {
        font-size: 14px;
    }
}

.nav-item {
    position: relative;
    margin-right: 20px;
    color: #fff;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 18px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    background-color: #0f0f0f40;
    width: 180px;
    padding: 15px !important;
}

.dropdown-menu-mobile {
    backdrop-filter: blur(4px);
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    /* background-color: #ffffffe0; */
    width: 180px;
    padding: 15px !important;
}

.dropdown-menu li {

    margin-bottom: 5px !important;
}

.dropdown-menu li a {
    font-size: 16px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-family: 'Branch', sans-serif;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.arrow-down {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(135deg);
    transform: rotate(135deg);
    transform-origin: center;
    transition: transform 0.3s ease;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.nav-item:hover .arrow-down {
    transform: rotate(315deg);
    transition: transform 0.3s ease;
    top: 0px;
}