* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page */
.page {
    height: 100%;
}

.page__body {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #000;
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Main */
.main {
    flex-shrink: 0;
}

.main>.container {
    padding: 30px 15px 0;
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Columns */
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}


/* Content Column */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content__wrapper {
    padding: 3rem 1.25rem;
}

/* Logo */
.logo {
    margin-bottom: 3rem;
    text-align: center;
}

.logo__img {
    max-width: 100%;
    height: auto;
}

/* Button Wrapper */
.btn-wrapper {
    background-color: #FFF;
    width: fit-content;
    margin: auto;
}

.btn-wrapper__title {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F47721;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.btn-wrapper__title-img {
    max-width: 100%;
    height: auto;
}

.btn-wrapper__buttons {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

.btn-wrapper__link {
    display: block;
}

.btn-wrapper__button-img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.small {
    font-size: 11px;
}

/* Media Queries */
@media (max-width: 767px) {
    .row {
        flex-direction: column-reverse;
    }
    .banner {
        margin-bottom: 15px;
    }
    .banner img {
        display: block;
        margin: auto;
        width: 100%;
        max-width: 440px;
    }
    .content__wrapper {
        padding: 1rem 0;
    }
}
@media (min-width: 768px) {
    .banner {
        height: 100vh;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .banner {
        height: 100vh;
        display: flex;
    }

    .banner img {
        display: block;
        margin: auto;
        max-height: 90vh;
        width: 99%;
    }

    .banner--desktop {
        display: block;
    }

    .banner--mobile {
        display: none;
    }

    .content__wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .logo__img {
        max-width: 480px;
    }

    .btn-wrapper__title-img {
        max-width: 520px;
    }
}
@media (max-width: 520px) {
    .btn-wrapper__title {
        font-size: 14px;
        font-weight: 500;
    }
}