html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body {
    background-image: url(background.png);
}

.container {
    margin-top: 50px;
}

.logo {
    margin-left: 12px;
}

.content {
    max-width: 734px;
    padding: 60px;
    padding-left: 0;
    color: #043252;
}

.content h1 {
    font-size: 67px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 21px;
    line-height: 67px;
}

.content b {
    font-weight: 600;
}

.content p {
    font-size: 22px;
    font-weight: 100;
    margin-bottom: 5px;
}

.content .btn-contact {
    border: 3px solid #043252;
    color: #043252;
    border-radius: 25px;
    padding: 7px 26px;
    font-weight: 700;
    font-size: 21px;
    margin-top: 12px;
}

.content .btn-contact:hover {
    border-color: #043252;
    color: #222;
}

footer ul {
    padding: 0;
}

footer .contact-info {
    font-size: 17px;
    font-weight: 100;
    color: #043252;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.separator {
    border-left: 1px solid #333;
    height: 14px;
    margin: 0 10px;
}

header .logo img {
    width: 275px;
}

.content ul {
    padding: 0;
    padding-left: 19px;
    margin: 0;
}

ion-icon {
    font-size: 36px;
    color: #1a6119;
    position: absolute;
    margin-top: -2px;
}

@media (max-width: 992px) {
    .container {
        margin: 0;
        max-width: 100%;
    }

    footer {
        text-align: center;
        margin-top: 15px;
    }

    .logo {
        margin-left: 0;
        text-align: center;
    }

    .content {
        padding: 0;
        max-width: 100%;
    }

    .content h1 {
        font-size: 49px;
        text-align: center;
        line-height: 50px;
    }

    .content p {
        text-align: justify;
        margin-bottom: 12px;    
    }

    .content .btn-contact {
        display: block;
    }

    footer .contact-info {
        margin: 0 auto;
        display: block;
    }
}