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

body {
    font-family: 'Muli';
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.left {
    flex: 50%;
    height: 100vh;
    background-color: #fff;
    overflow-y: scroll;
}

.left::-webkit-scrollbar,
.right::-webkit-scrollbar {
    display: none;
}

.left,
.right {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

header {
    width: 100%;
    height: auto;
}

.header img {
    width: 250px;
    height: auto;
    margin: 20px 40px;
}

.left__content {
    width: 100%;
    height: auto;
    padding: 20px 40px;
}

.left__content h1,
.left__content h2 {
    color: #034774;
    padding-bottom: 20px;
}

.input {
    margin-bottom: 20px;
}

input[type="button"] {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #034774;
    padding: 1rem 5rem;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="button"]:hover {
    color: #000;
    background-color: #e9eaeb;
    cursor: pointer;
}

.right {
    flex: 50%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #034774;
    background-image: url('../images/kendall-bkg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px;
}

.right__content {
    width: 100%;
    height: auto;
    color: #fff;
    background-color: rgba(3, 71, 116, .8);
    padding: 20px;
}

.right__content h1,
.right__content h2 {
    text-transform: uppercase;
    padding-bottom: 15px;
}

.right p {
    font-size: 1.25em;
    padding-bottom: 10px;
}

.right a {
    color: #fff;
}

.right a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 980px) {

    .left,
    .right {
        flex: 100%;
    }

    .left {
        height: auto;
    }

    .right {
        height: auto;
        overflow: scroll;
        padding: 20px;
    }
}