#state-search {
    margin: 7rem 0rem 3rem 0rem;
}

ul {
    list-style: none;
}

#state-city {
    margin-bottom: 32px;
}

.state {
    overflow-x: auto;
    display: flex;
    padding: 0px;
    scroll-behavior: smooth;
    margin-top: 24px;
}

.state::-webkit-scrollbar {
    width: 0;
}

.list-items {
    padding: 0px 20px 0px 0;
    min-width: fit-content;
}

.state-btn {
    display: inline-flex;
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #F4F1FF;
    font-size: clamp(0rem, calc(0.77rem + 0.67vw), 1.2rem); /* 18px */
    letter-spacing: -0.1px;
    text-decoration: none;
}

.state-btn:hover:not(.state-active-btn){ 
    background-color: #DCD7FF;
    transition: all 0.3s ease;
}

.state-active-btn {
    justify-content: center;
    color: #fff;
    background: #016CC8;
}

.right-arrow {
    padding: 0;
    background: #fff;
    border: none;
}

.right-arrow i {
    font-size: 38px;
    color:#016CC8;
}

.city {
    display: flex;
    flex-wrap: wrap;
}

.city-btn {
    display: inline-flex;
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #F5AE36;
    background: #FCF4E0;
    color: #F5AE36;
    font-size: clamp(0rem, calc(0.77rem + 0.67vw), 1.2rem);
    font-style: normal;
}

.city-btn:hover { 
    background-color: #F5AE36;
    transition: all 0.3s ease;
    color: #fff;
}

.city-list-items {
    padding: 10px 20px 10px 0;
}