@import url('reset.css');
@import url('fonts.css');

body {
    display: flex;
    flex-direction: column;
    font-family: Ubuntu;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    box-sizing: border-box;
    background: linear-gradient(340deg, rgba(220,230,255,1), rgba(220,230,255,0) 70%);
    min-height: 100vh;
}

.body--logos {
    display: inherit;
    flex-direction: inherit;
    align-items: inherit;
    margin-bottom: 20px;
}

.body--logos a {
    display: inherit;
    align-items: inherit;
    justify-content: center;
    background: #FFF;
    border-radius: 10px;
    padding: 10px;
    width: 90%;
    box-sizing: border-box;
    border: 2px solid #dde7fd;
}

.body--logos a:first-child {
    margin-bottom: 20px;
}

.body--logos img {
    max-height: 260px;
    max-width: 90%;
}

.body--contact {
    padding: 0 20px;
}

.body--contact--list li:first-child {
    margin-bottom: 10px;
}

.body--contact--list a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #22a6d5;
    font-weight: 700;
    font-size: 18px;
}

.body--contact--list a:before {
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    opacity: 0.5;
}

.body--contact--phone a:before {
    background: url(../ico/phone.svg);
}

.body--contact--mail a:before {
    background: url(../ico/envelope.svg);
}

@media all and (min-width: 600px) {
    .body--logos {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 60px;
    }

    .body--logos a {
        width: 46%;
        align-self: stretch;
    }

    .body--logos a:first-child {
        margin-bottom: 0;
    }
}