
.branches-name {
    position: absolute;
    bottom: -42px;
    margin-bottom: 0;
    padding: 0;
    width: max-content;
    z-index: 5;
}

.branch-item {
    position: relative;
    cursor: pointer;
    padding-bottom: 8px;
    color: var(--color-white);
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
}

.branch-item::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.branch-item.active {
    color: #fff;
}

.branch-item.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    #second-header {
        min-height: 250px;
    }

    .branches-name {
        gap: 15px !important;
        inset-inline-start: 50%;
        transform: translateX(-50%);
    }

    .bottom-header {
        margin-top: 20px !important;
    }
}

/* search */
.featured-rooms .search img {
    inset-inline-start: 10px;
}

.featured-rooms .search input {
    width: 100%;
    /* max-width: 995px;  */
    height: 40px;
    padding-inline-start: 35px !important;
    border: 1px solid var(--color-gray-200);
}

.search-holder {
    width: 100%;
    flex-wrap: wrap;
}

.featured-rooms .search input::placeholder {
    color: var(--color-blue-gray-700);
}

.featured-rooms .search input:focus {
    outline: none;
    border: 1px solid var(--color-gold-500);
    transition:
    border 0.25s ease,
    color 0.25s ease;
}

.featured-rooms label {
    color: var(--color-blue-gray-700);
    line-height: var(--line-height-sm);
    font-size: var(--font-size-sm);
}

.featured-rooms .rooms-suites {
    position: relative;
    width: 152px;
    padding: 4px;
    text-align: center;
    background-color: rgba(239, 242, 246, 1);
}

.featured-rooms .rooms-suites span {
    width: 75px;
    color: var(--color-blue-gray-500);
    line-height: var(--line-height-base);
    cursor: pointer;
    transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.featured-rooms .rooms-suites .active {
    background-color: var(--color-white);
    padding: 4px 12px;
    color: var(--color-black-88);
    border-radius: 5px;
}

.featured-rooms .filters {
    width: 100px;
    height: 40px;
    line-height: var(--line-height-base);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
}
