@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
body {
    font-family: 'Open Sans', sans-serif;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.background-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.row:first-child {
    justify-content: center;
    align-items: center;
    height: 100%;
}

.background-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    /* height: 70vh; */
    margin-top: 10vh;
    padding: 40px;
    height: auto;
    text-align: center;
}

.background-wrapper .logo {
    text-align: center;
    padding-top: 40px;
}

img.cover {
    width: auto;
    object-fit: cover;
}

img.magazine {
    padding-top: 30px;
}

.button-trans {
    background-color: #9bc327;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

.button-trans:hover {
    background-color: #50680c;
}

a.button-trans {
    color: #ffffff !important;
    text-decoration: none;
}

.text {
    font-style: italic;
    display: inline-block;
    padding-top: 8px;
}

.address {
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 992px) {
    .background-wrapper .logo {
        width: 300px;
        margin: 0 auto;
    }
    img.cover {
        width: 100%;
        object-fit: cover;
    }
    .button-trans {
        margin-top: 30px;
    }
    img.magazine {
        width: 130px !important;
    }
}

@media only screen and (max-width: 768px) {
    .background-wrapper .logo {
        padding-top: 0px;
    }
    .button-trans {
        margin-top: 30px;
    }
    .address {
        padding-top: 30px;
        padding-bottom: 20px;
        font-size: 16px;
    }
    img.magazine {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .background-wrapper .logo {
        width: auto;
    }
}