.navbar {
    padding: 20px !important;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 33px;
    left: 0px;
    width: 100%;
    height: 82px;
    z-index: 999;
    background: white;
    transition: all 0.2s ease-in-out;
    flex-wrap: nowrap;
    overflow: hidden;
}

.navbar.is-fixed {
    position: fixed;
    top: 0px;
    transition: all 0.2s ease-in-out;
    animation: appear 0.2s ease-in-out 1;
    box-shadow: 0px 2px 22px 0px rgba(0, 96, 156, 0.12);
    background-color: white;
}

@keyframes appear {
    from {
        opacity: 0;
        top: -100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}

.navbar .navbar-collapse {
    position: relative;
    z-index: 999;
    transition: all 0.2s ease-in-out;
}

.navbar .navbar-collapse.show {
    transition: all 0.2s ease-in-out;
}

.navbar .navbar-brand {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px 23px 0px 0px;
    z-index: 1000;
}

.navbar .toggler-wrapper {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
}

.navbar .navbar-brand img {
    height: 31px;
    object-fit: contain;
    margin: 0px;
    transition: all 0.2s ease-in-out;
}

.btn.mobile {
    padding: 17px 16px;
    line-height: 100%;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500px;
}

.navbar .navbar-nav {
    gap: 24px;
}

.navbar .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar .nav-link {
    font-size: 25px;
    text-transform: uppercase;
    color: var(--primary) !important;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    font-weight: 700;
}

.navbar .nav-link.active,
.navbar .nav-link.show {
    color: var(--secondary) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s ease-in-out;
}

.navbar .nav-link:hover {
    color: var(--secondary) !important;
    transition: all 0.2s ease-in-out;
}

.navbar .contact-links {
    list-style: none;
    gap: 8px;
    margin: 0px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content !important;
    width: 100%;
    padding: 0px 20px;
}

.navbar .contact-links li {
    height: 100%;
    width: 100%;
}

.navbar .contact-links .btn {
    background-color: var(--secondary);
    padding: 7px 12px;
    height: 100%;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.navbar .menu-mobile .contact-links {
    display: none;
}

.navbar .menu-mobile.show .contact-links {
    display: flex;
}

.navbar .contact-links .btn img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.navbar .search {
    display: flex;
    width: 100%;
    height: 41px;
    padding: 4px 4px 4px 18px;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--Style, #D7DCE0);
}

.navbar .search button {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: none;
    background-color: var(--primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .search button img {
    height: 19px;
    width: 19px;
    object-fit: contain;
}

.navbar .search input {
    font-size: 15px;
    position: relative;
}

.navbar .search .input-wrapper input:focus {
    outline: 0;
    box-shadow: none;
}

.navbar .search .input-wrapper input::placeholder {
    color: var(--primary);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none !important;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    width: 40px;
}

.navbar-toggler span {
    width: 23px;
    height: 3px;
    border-radius: 20px;
    background-color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler.close img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.navbar .menu-mobile {
    height: 0px;
}

.navbar .menu-mobile ul {
    height: 0px;
    overflow: hidden;
}

.navbar .menu-mobile.show {
    height: calc(100vh - var(--navbar-height-mobile));
    width: 100vw;
    max-width: 100%;
    position: fixed;
    top: var(--navbar-height-mobile);
    left: 0px;
    background-color: white;
    z-index: 998;
    overflow: hidden;
    padding-top: 50px;
}

.navbar.is-fixed .menu-mobile.show {
    height: calc(100vh - var(--navbar-margin-mobile));
    top: var(--navbar-margin-mobile);
}

.navbar .menu-mobile.show ul {
    height: 100%;
    overflow: hidden;
}

.navbar .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
}

.navbar .dropdown-toggle::after {
    content: url('/assets/icons/dropdown-arrow.svg');
    width: 12px;
    height: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 0px;
    position: relative;
    top: 3px;
    transform: rotate(-90deg);
    transition: all 0.2s ease-in-out;
}

.navbar .dropdown-toggle.show::after,
.navbar .dropdown-toggle.active::after {
    content: url('/assets/icons/dropdown-arrow-open.svg');
    transition: all 0.2s ease-in-out;
}

.navbar .dropdown-item {
    padding: 4px 0px;
    text-align: center;
}

.navbar .dropdown-item:active,
.navbar .dropdown-item:focus {
    background-color: transparent;
}

.navbar .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary) !important;
}

.navbar .dropdown-toggle:hover::after {
    content: url('/assets/icons/dropdown-arrow-open.svg');
    transition: all 0.2s ease-in-out;
}

.navbar .contact-links .btn:hover {
    background-color: white;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    transition: all 0.2s ease-in-out;
}

.navbar .contact-links .btn::before {
    content: url('/assets/icons/contact.svg');
    width: 22px;
    height: 23px;
    position: relative;
    object-fit: contain;
}

.navbar .contact-links .btn:hover::before {
    content: url('/assets/icons/contact-red.svg');
}

.navbar .submenu {
    position: absolute;
    height: 100%;
    width: 100%;
    right: -150vw;
    left: auto;
    top: 0px;
    margin: 0px;
    visibility: hidden;
    pointer-events: none;
    background-color: white;
    z-index: 100;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    padding: 34px 20px 30px;
    overflow: hidden;
    border: 0px;
}

.navbar .submenu.show {
    right: 0px;
    left: auto;
    visibility: visible;
    pointer-events: all;
    transition: all 0.4s ease-in-out;
}

.navbar .submenu .container {
    height: 100%;
}

.navbar .submenu .row {
    height: fit-content;
}

.navbar .submenu .back {
    display: flex;
    align-items: center;
    gap: 3;
    cursor: pointer;
}

.navbar .submenu .back::before {
    content: url('/assets/icons/dropdown-arrow.svg');
    transform: rotate(90deg);
    position: relative;
    top: 1px;
}

.navbar .submenu .card-menu {
    border-radius: 14px;
    min-height: 164px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.navbar .submenu .card-menu a {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px 29px 30px;
    color: white;
    text-decoration: none;
}

.navbar .submenu .card-menu .bg-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.navbar .submenu .card-menu .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 41%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 0;
}

.navbar .submenu .card-menu span {
    position: relative;
    z-index: 1;
}

.navbar .submenu .card-menu .cta {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: white;
    transition: all 0.2s ease-in-out;
}

.navbar .submenu .card-menu:hover .cta {
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}

.navbar .submenu .card-menu.big-rent::after {
    content: url('/assets/icons/logo-big-rent.svg');
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 15px;
    right: 15px;
    width: 92px;
    height: 49px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.navbar .submenu .card-menu.big-mat::after {
    content: url('/assets/icons/logo-big-mat.svg');
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 15px;
    right: 15px;
    width: 92px;
    height: 49px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.navbar .menu-mobile .submenu {
    display: none !important;
    align-items: flex-start;
}

.navbar .menu-mobile .submenu .container {
    height: fit-content;
}

.navbar .menu-mobile .submenu .categories-row {
    padding-bottom: 150px;
}

.navbar .menu-mobile.show .submenu {
    display: flex !important;
    overflow: auto;
}

.navbar .menu-mobile.show .submenu::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 360px) {
    .navbar {
        flex-wrap: wrap;
    }

    .btn.mobile {
        display: none;
    }
}


@media screen and (min-width: 1200px) {
    .navbar .navbar-nav {
        gap: 38px;
    }

    .navbar .navbar-brand img {
        height: 32px;
    }

    .navbar .navbar-nav {
        margin-left: 8%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {

    .navbar .navbar-nav {
        gap: 20px;
    }

    .navbar .navbar-brand {
        margin: 0px 0px 0px 0px;
    }

    .navbar .navbar-brand img {
        height: 25px;
    }

    .navbar .nav-link {
        font-size: 15px !important;
    }
}

@media screen and (min-width: 992px) {

    .navbar {
        padding: 0px !important;
        height: 98px;
        overflow: visible;
    }

    .navbar .navbar-collapse {
        position: static;
        padding: 28px 26px !important;
        height: 100%;
        background: white;
        gap: 10px;
    }

    .btn.mobile {
        display: none;
    }

    .navbar-brand {
        position: static !important;
        transform: none !important;
    }

    .navbar .nav-item {
        display: block;
    }

    .navbar .nav-link {
        padding: 0px !important;
        font-size: 16px;
    }

    .navbar .dropdown-toggle::after {
        transform: none;
        top: -1px;
    }
    
    .navbar .dropdown-toggle.show::after {
        transform: rotate(180deg);
        top: 3px;
    }

    .navbar .submenu {
        position: absolute;
        width: 100%;
        min-height: 228px;
        height: fit-content;
        top: -150vh;
        right: 0px;
        margin: 0px;
        visibility: hidden;
        pointer-events: none;
        left: 0px;
        background-color: white;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease-in-out;
        padding: 34px 29px 30px;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
        border-radius: 0px 0px 20px 20px;
        overflow: hidden;
        border: 0px;
        border-top: 1px solid #E8ECF0;
    }

    .navbar .submenu.show {
        top: var(--navbar-margin);
        visibility: visible;
        pointer-events: all;
        transition: all 0.4s ease-in-out;
    }

    .navbar .submenu .container,
    .navbar .submenu .row {
        height: 100%;
    }

    .navbar .menu-mobile {
        display: none !important;
    }

    .navbar .contact-links {
        padding: 0px;
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-end;
        height: 100% !important;
        width: fit-content;
    }

    .navbar .contact-links li {
        width: fit-content;
    }
    
    .navbar .contact-links .btn {
        width: fit-content;
    }
    
    .navbar .search {
        width: 215px;
    }
}