.banner-home {
    height: 70vh;
    background-size: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.banner-home h1 {
    font-weight: 400;
}

.banner-home > .relative{
    transform: translateY(-60px);
}


.banner-home form {
    display: flex;
    border-radius: 100px;
    flex: 1 1 100%;
    justify-content: space-around;
}

.banner-home form .item {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 20px;
    border-radius: 50px;
    
    position: relative;
    cursor: pointer;
}

.banner-home form .item.open{
    --tw-shadow: 0 25px 50px -12px #00000040;
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    border-radius: 9999px;
    box-shadow: 0 0 #0000,0 0 #0000,var(--tw-shadow);
}

.banner-home form .item:first-child {}

.banner-home form .item:last-child {
    width: 110px;
}

.banner-home form .item:after {
    display: block;
    height: 60%;
    width: 1px;
    position: absolute;
    background-color: #E5E7EB;
    right: 0;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.remove-bar:after{
    display: none !important;
}

.banner-home form .item:last-child:after,
.banner-home form .item:nth-last-child(2):after {
    display: none;
}

.banner-home form .item .btn-search {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-home form .item .icon {
    grid-row-start: 1;
    grid-row-end: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 50px; */

}

.banner-home form .item input {
    border: 0;
    padding: 0;
    width: 150px;
}

.banner-home form .item input:focus{
    box-shadow: none;
}

.banner-home form .item span.bajada {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
}

.banner-home>*:first-child {
    margin-top: -60px;
}

/*Mobile*/
@media screen and (max-width:900px){
    .banner-home {
        height: auto;
        position: relative;
    }

    .banner-home .tabs{
        display: none;
    }
}