header .header-bottom .container-fluid {
    width: 100% !important;
}

.header-top {
    height: 35px;
    background: #0A5B35;
}

.header-top .announcement {
    text-align: center;
}

.header-top .announcement p {
    margin-bottom: 0;
    line-height: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: middle;
    font-size: 13px;
}

.header-bottom .desktop-header {
    padding: 16px 40px;
    justify-content: space-between;
    height: 71px;
    align-items: center;
}

.header-bottom .desktop-header .logo {
    height: 24px;
    width: 154px;
}

.header-bottom .desktop-header .navbar .navbar-nav {
    gap: 22px;
}

.header-bottom .desktop-header .navbar .nav-link {
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25px;
    font-size: 13px;
    color: #000;
}

.header-bottom .desktop-header .navbar .nav-link:hover {
    color: #0A5B35;
}

.header-bottom .desktop-header .navbar .nav-item.active .nav-link {
    color: #0A5B35;
}

.header-bottom .header-user-btns {
    gap: 20px;
    height: 39px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bottom .header-user-btns .navbar-nav .dropdown-menu {
    position: absolute !important;
    left: auto;
    right: 0;
}

.header-bottom .header-user-btns .navbar-nav .dropdown-menu li {
    display: flex;
    justify-content: start;
    align-items: center;
}

.header-bottom .header-user-btns .navbar-nav .dropdown-menu li:hover {
    background-color: var(--green-hover);
}

.header-bottom .header-user-btns .user-menu-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.header-bottom .header-user-btns .user-menu-btn svg:first-of-type {
    width: 39px;
    height: 39px;
    padding: 10px !important;
    border-radius: 100px;
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header-bottom .header-user-btns .user-menu-btn:hover svg:first-of-type {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
}

.header-bottom .header-user-btns .user-menu-btn svg:last-of-type {
    width: 20px;
    height: 20px;
}

.header-bottom .header-user-btns .user-menu-btn::after {
    display: none;
}

.header-bottom .header-user-btns .my-account-btn,
.header-bottom .header-user-btns .logout-btn,
.header-bottom .header-user-btns .register-btn {
    width: 100%;
}

.header-bottom .header-user-btns .my-account-btn span,
.header-bottom .header-user-btns .logout-btn span,
.header-bottom .header-user-btns .register-btn span {
    color: var(--text-black);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    justify-content: start;
    display: flex;
}

.header-bottom .header-user-btns .my-account-btn:hover span,
.header-bottom .header-user-btns .logout-btn:hover span,
.header-bottom .header-user-btns .register-btn:hover span {
    color: var(--text-white);
}

.header-bottom .header-user-btns .place-ad-btn {
    padding: 7px 10px;
    border-radius: 20px 20px;
    height: 39px;
    width: 128px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.header-bottom .header-user-btns .place-ad-btn svg {
    width: 12px;
    height: 12px;
    display: flex;
}

.header-bottom .header-user-btns .place-ad-btn span {
    color: var(--text-white);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    justify-content: center;
    display: flex;
}

.header-bottom .header-user-btns .place-ad-btn,
.header-bottom .header-user-btns .place-ad-btn:active,
.header-bottom .header-user-btns .place-ad-btn:hover {
    background-color: var(--btn-color-yellow);
    border-color: var(--btn-color-yellow);
}

.header-bottom .header-user-btns .place-ad-btn:hover {
    background-color: var(--btn-color-yellow-hover);
    border-color: var(--btn-color-yellow-hover);
}

nav.mobile-menu.open,
nav.mobile-menu-filter.open {
    left: 0;
    opacity: 1;
    overflow-y: scroll;
    padding: 20px 0px;
}

nav.mobile-menu,
nav.mobile-menu-filter {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    background-color: #0B5B34;
    color: #FFF;
    display: flex;
    align-items: center;
    flex-direction: column;
}

nav.mobile-menu {
    justify-content: center !important;
}

nav.mobile-menu .close-menu-btn,
nav.mobile-menu-filter .close-menu-btn-filter {
    border: none;
    box-shadow: none;
    outline: none;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50% !important;
    width: 24px;
    height: 24px;
    text-align: center;
    background-color: #DDDDDD;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
}

nav.mobile-menu ul,
nav.mobile-menu-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 280px;
    text-align: center;
    margin-bottom: 15px;
}

nav.mobile-menu-filter ul {
    width: calc(100% - 24px);
}

nav.mobile-menu ul li {
    padding: 5px 15px;
}

nav.mobile-menu ul li.active a {
    color: #caa137;
}

nav.mobile-menu-filter ul li {
    padding: 0px !important;
    margin-bottom: 10px;
}

nav.mobile-menu ul li a,
nav.mobile-menu-filter ul li a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0px;
    font-family: "Inter", sans-serif;
}

nav.mobile-menu-filter ul li a {
    font-size: 14px;
    display: inline-flex;
    width: auto;
}

@media only screen and (max-width: 992px) {
    .header-bottom .desktop-header {
        padding: 16px 10px;
    }

    .header-bottom .container {
        margin: 0;
        max-width: -webkit-fill-available;
    }

    .header-bottom .header-user-btns {
        height: auto;
        gap: 5px;
    }

    .header-bottom .header-user-btns .place-ad-btn,
    .header-bottom .header-user-btns .my-account-btn {
        padding: 7px 13px;
        border-radius: 20px 20px;
        height: 30px;
        width: 100px;
    }

    .header-bottom .header-user-btns .place-ad-btn span,
    .header-bottom .header-user-btns .my-account-btn span {
        line-height: initial;
    }
}

@media screen and (max-width: 800px) {
    .header-bottom .header-user-btns .user-menu-btn {
        gap: 0px;
    }

    .header-bottom .header-user-btns .user-menu-btn svg:first-of-type {
        width: 29px;
        height: 29px;
        padding: 7px !important;
    }

    .header-bottom .header-user-btns .user-menu-btn svg:last-of-type {
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .header-bottom .header-user-btns {
        display: none;
    }
}
