.header-user-profile-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header-username {
    color: white;
    font-size: 18px;
}

.header-user-img {
    width: 55px;
    height: 55px;
    border: 2px solid #1c9e75;
    border-radius: 100%;
    padding: 3px;
}

.header-user-img img {
    width: 100%;
    height: 100%;
}

.fiq-header {
    width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fiq-header-logo {
    width: 210px;
}

.fiq-header-logo img {
    width: 210px;
    height: auto;
}

.fiq-header-nav {
    width: 440px;
}

.fiq-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fiq-nav-list li {
    list-style: none;
}

.fiq-nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.fiq-nav-list li a.active,
.fiq-nav-list li a:hover {
    color: #1c9e75;
}

.fiq-header-btn-wrap {
    display: flex;
    align-items: center;
}

.fiq-header-btn-wrap .login-btn {
    color: white;
    border: 1px solid white;
    border-radius: 6px;
    padding: 13px 30px 13px 30px;
    cursor: pointer;
}

.fiq-header-btn-wrap .login-btn:hover {
    color: #1c9e75;
    border: 1px solid #1c9e75;
}

.fiq-header-btn-wrap .signup-btn {
    color: white;
    background-color: #1c9e75;
    padding: 15px 30px;
    border-radius: 6px;
    margin-left: 20px;
    cursor: pointer;
}

.fiq-header-btn-wrap .signup-btn:hover {
    color: #1c9e75;
    background-color: white;
}

@media (max-width: 500px) {

    .fiq-header {
        width: 100%;
    }

    .fiq-header-logo img {
        width: 120px;
    }

    .header-username {
        font-size: 12px;
    }

    .header-user-img {
        width: 40px;
        height: 40px;
        padding: 2px;
    }

    .header-user-profile-wrap {
        gap: 10px !important;
    }

    .fiq-header-nav {
        display: none;
    }

    .fiq-header-logo {
        width: 120px;
    }

    .fiq-header-btn-wrap .login-btn {

        padding: 10px 20px 10px 20px;
        font-size: 11px;
    }

    .fiq-header-btn-wrap .signup-btn {
        padding: 12px 20px;

        margin-left: 15px;

        font-size: 11px;
    }

    .fiq-hero-header-wrap {
        padding: 25px;
        height: fit-content;
    }

}