* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
}

p {
    margin: 0;
}

a,
a:visited,
a:focus {
    color: #ffffff;
    text-decoration: none;
}

.banner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;

    flex-direction: row;

    justify-content: space-between;

    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    color: white;
    background-color: #04464c;
    padding: 0 5%;
    height: 155px;
}

.banner .logo,
.banner .imagen {
    width: 250px;
    max-width: 250px;
}

.banner .imagen {
    text-align: right;
}

.banner .contacto {
    text-align: center;
}

.banner .contacto p {
    margin-bottom: 4px;
}

.only-ie {
    display: table-cell;
    vertical-align: middle;
    width: 50%
}