#brn-stores {
    grid-template-columns: repeat(2,calc(50% - 18px));
    display: grid;
    gap: 35px;
    margin-bottom: 50px;
}
a.red-button {
    width: 150px;
    height: 50px;
    margin: 50px 0 0 110px;
    padding: 12px 15px 12px 15px;
    border-radius: 8px;
    background-color: #e2081e;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.44;
    letter-spacing: 1.29px;
	color: #ffffff;
    display: block;
    text-align: center;
}
.store-title {
    font-family: "ibm-plex-sans-hebrew", Sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.44px;
    text-align: right;
	color:#000000;
}
.store-info {
    width: calc(70% - 38px);
}
.store-card {
    display: flex;
    justify-content: space-between;
    border-radius: 13px;
    box-shadow: 0 1px 17px 9px rgb(0 0 0 / 10%);
    background-color: #ffffff;
    padding: 29px;
    column-gap: 38px;
}
.store-logo {
    flex-grow: 1;
    width: 30%;
    min-width: 30%;
}
.address-icon {
    background-image: url(/wp-content/uploads/2021/03/gps.svg);
    width: 15px;
    height: 15px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.address {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.36px;
    margin-top: 10px;
}

input[type="text"][name='city_search'] {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.64px;
    text-align: right;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    width: 568px;
    max-width: 100%;
    background-position: right 9px center;
    background-repeat: no-repeat;
    background-size: 19px;
    background-image: url(/wp-content/uploads/2021/03/search-icon.svg);
    padding: 15px 35px;
	margin-bottom:50px;
}

h2 {
    font-family: "ibm-plex-sans-hebrew", Sans-serif;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.78px;
    color: #000000;
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {

    .store-card {
        flex-flow: column;
    }
    
    .store-card > div{
        width:  100%;
    }

}

@media only screen and (max-width: 580px) {
    
    #brn-stores {
        grid-template-columns: repeat(2,calc(50% - 8px));
        gap: 16px;
    }
    
    .store-card {
        padding: 10px;
    }
    
    a.red-button {
        padding: 12px 0;
        width: 100%;
    }
}
