* {
    margin: 0;
    padding: 0;
    font-family: 'lato', sans-serif;
}

.header {
    height: 25%;
    padding: 2% 0 5% 0;
    font-size: 22px;
}

.main-title {
    font-size: 22px;
    font-weight: 700;
}

.sub-title {
    font-size: 15px;
    font-weight: normal;
}

.header.ehost {
    background-color: #FCB102;
    color: rgba(0,0,0,0.88);
}
.header.hostclear {
    background-color: #81C242;
    color: rgb(255,255,255);
}
.header.ideahost {
    background-color: #FFD803;
    color: rgba(0,0,0,0.88);
}

.header, .footer {
    text-align: center;
    width: 100%;

}

.content-wrapper {
    color: rgb(33, 33, 33);
    padding: 64px 0 64px 0;
    background-color: white;
    z-index: +1;
    width: 70%;
    margin: -32px auto auto;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
}

.content-left, .content-right {
    width: 49.90vw;
}

.header-text-large {
    font-size: 22px;
    padding: 32px;
}

.divider {
    min-height: 300px;
    height: 90%;
    width: 2px;
    display: inline-block;
    margin: auto;
    background-color: rgb(214, 214, 215);
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
}

.cta-logo {
    width: auto;
    max-height: 34px;
    margin-top: 32px;
}

.cta-sitelio {
    background-color: #00AFA4;
}

.cta-justhost {
    background-color: #EF4E59;
}

.backdrop {
    width: 100%;
    background-image: linear-gradient(to right, #545860, #545860 50%, #3A5BC2 50%, #3A5BC2);
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.link-ehost {
    color: #FCB102;
}
.link-hostclear {
    color: #81C242;
}
.link-ideahost {
    color: #FFD803;
}

.logo-container {
    padding: 8px;
    height: 52px;
    background-color: white;
}

.logo {
    padding-left: 15%;
    width: auto;
    max-width: 90%;
    max-height: 52px;
}

.footer {
    height: 40px;
    color: white;
    font-weight: normal;
    position: absolute;
    padding: 12px 0 20px 0;
    bottom: 0;
    background-color: rgba(12, 18, 37, 0.7);
    font-size: 15px;
}

.footer-link {
    font-weight: 700;
    padding: 16px;
}

@media only screen and (max-width: 767px) {
    .header {
        padding: 2% 0 5% 0;
        font-size: 18px;
    }

    .main-title {
        font-size: 18px;
    }

    .sub-title {
        font-size: 13px;
    }

    .content-wrapper {
        padding: 32px 0 32px 0;
        width: 90%;
        margin: -16px auto auto;
        flex-direction: column;
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    }

    .content-left, .content-right {
        width: 100vw;
    }

    .header-text-large {
        font-size: 18px;
        padding: 16px;
    }

    .divider {
        min-height: 2px;
        height: 2px;
        width: 95%;
        display: inline-block;
        margin: 16px auto 16px auto;
        background-color: rgb(214, 214, 215);
    }

    .footer {
        height: auto;
        color: white;
        position: relative;
        font-weight: normal;
        padding: 12px 0 20px 0;
        margin-top: 16px;
        background-color: rgba(12, 18, 37, 0.7);
        font-size: 15px;
    }

    .footer p {
        padding: 16px;
    }

    .backdrop {
        background-size: cover;
        min-height: 100%;
    }
}