* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    /*align-items: center;*/
    flex: 1 1 auto;
}

.superior{
    display: flex;
    width: 100%;
    background-color: #32a852;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    max-height: 150px;
}
.superior > .supcon{
    display: flex;
    justify-content: center;
        display: flex;
        width: 180px;
}
.superior > .supcon > img{
    display: flex;
    justify-content: center;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.header {
    display: flex;
    justify-content: center;
    background-color: red;
    color: white;
    font-size: 1.1em;
}

.principal {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 65%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 180px;
    margin-bottom: 20px;
}

.logo>img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.banner {
    display: flex;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    max-height: 550px;
}

.banner>img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.contenedor {
    /*background: linear-gradient(#6dc67d 0%, #6dc67d 20%, white 25%, white 75%, #ff6d6d 80%, #ff6d6d 100%);*/
    background: linear-gradient(#b1e8bb 0%, #b1e8bb 5%, white 15%, white 90%, #fe9595 95%, #fe9595 100%);
}

.label {
    font-size: 1.2em;
    color: rgb(0, 0, 0);
    margin-top: 5px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
    width: 100%;
}

.hours {
    font-size: 1.2em;
    color: rgb(104, 104, 104);
}

.space {
    margin-left: 20px;
    font-size: 1.2em;
}

.today {
    color: black;
    font-weight: 800;
}

.schedule {
    font-size: 3em;
}

.privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
    width: 100%;
}

.privacy>span {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 300;
    color: white;
}

/*EDIA QUERIES*/
/*1800 px*/
@media (max-width: 1800px) {
    .principal {
        width: 90%;
    }
    .banner{
        max-height: 500px;
    }
    .banner > img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 1600px) {

}

/* 1200 PX*/
@media (max-width: 1200px) {
    .principal {
        width: 90%;
    }
    .row {
        flex-flow: row;
    }
}

/* 500 px */
@media (max-width: 700px) {
    .principal {
        width: 95%;
    }
    .row {
        flex-flow: column;
        width: 100%;
        padding: 0;
    }
}