:root {
    --main-color: #27aaad;
    --sub-color: #f6941d;
}

body, html {
    padding: 0;
    margin: 0;
}

body {
    background-image: url("images/background/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Raleway", sans-serif;
    height: 100vh;
    background-position: -80px 0;

}

.hero {
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}
.hero__content {
    padding: 0 10px;
}

.hero__logo {
    width: 100%;
    max-width: 600px;
}
.hero__header {
    font-weight: 500;
    font-size: 28px;
    margin: 16px 0 32px;
}

.link-text {
    color: inherit;
}

.link-text:hover {
    color: var(--sub-color);
}

.signup__wrapper {
    background: var(--main-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 300px;
}

.signup__message {
    margin: 0 0 8px 0;
}

.signup__input {
    border-radius: 5px !important;

}
.signup__submit {
    border-radius: 5px !important;
    background: var(--sub-color) !important;
}

.footer {
    position: fixed;
    right: 50%;
    bottom: 16px;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.footer__link {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
.footer__link:hover {
    color: var(--main-color);
}



/* Privacy Policy */
.close-policy {
    position: absolute;
    right: 16px;
    top: 16px;
    font-weight: 900;
    font-size: 30px;
    border: 2px solid;
    border-radius: 200px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer !important;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
.close-policy:hover {
    color: #888;
}

.privacy-policy {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: auto;
}
.privacy-policy .wrapper {
    background: #fefefe;
    padding: 16px;
}
.privacy-policy .inner-wrapper {
    max-width: 1200px;
    margin: auto;
}


@media only screen and (min-width: 900px) {
    body {
        background-position: center;
    }

    .hero {
        float: right;
        width: 50%;
        padding-right: 16px;
        text-align: left;
        background: transparent;
    }

    .hero__content {
        margin-top: -20%;
    }

    .hero__header {
        font-size: 38px;
        margin: 16px 0 32px;
    }

    .signup__message {
        font-size: 18px;
    }


    .footer {
        right: 30px;
        bottom: 16px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}