@import
url('https://fonts.googleapis.com/css?family=Raleway:300,400,700,900');

@font-face {
    font-family: 'Bellota-LightItalic';
    src: url(../fonts/Bellota-LightItalic.otf);
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 60rem) {
    .Dspacer {
        display: none;
    }
}

.container {
    width: 95%;
    max-width: 70em;
    margin: 0 auto;
}

.clearfix::after,
section::after,
footer::after {
    content: '';
    display: block;
    clear: both;
}

/* Column system
=====================*/

[class^=col-] {
    float: left;
    padding: 0 .5em;
    width: 100%;
}

.col-3 img {
    margin: 0 auto;
}


@media (min-width: 40rem) {
    [class^=col-] {
        float: left;
        padding: 0 .5em;
        width: 100%;
    }    

    [class^=col-]:first-child {
        padding-left: 0;
    }
    
    [class^=col-]:last-child {
        padding-left: 0;
    }

    .col-3 {
        width: 50%;
        display: grid;
        place-content: center;
        padding: 0;
    }
    
    .col-3 img {
        margin: 0 auto;
    }

    .col-1 {
        width: 25%;
        display: grid;
        place-content: center;
        padding: 0;
    }
}




/* Typography
======================*/


h1 {
    font-weight: 300;
    font-size: 1.7rem;
    margin-top: 0;
}

p {
    margin: 0;
    line-height: 1.5;
}

p:last-of-type {
    margin-bottom: 0;
}

.title {
    font-size: 2.1rem;
    margin-bottom: 1.5em;
    font-weight: 900;
    margin-top: 0;
}

@media(max-width: 40rem) {
    .title {
        font-size: 1.8em;
    }
}

@media(max-width: 32rem) {
    .title {
        font-size: 1.5em;
    }
}

@media(max-width: 20rem) {
    .title {
        font-size: 1.3em;
    }
}

.title span {
    font-weight: 300;
    display: block;
    font-size: .85em;
}

.unstyled-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (min-width: 60rem) {

    p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .title {
        font-size: 2.5rem;
        color: #fff;
    }
}




/* buttons
==================*/

.button {
    display: inline-block;
    font-size: 1.15rem;
    text-decoration: none;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    border-radius: 1rem;
    padding: .5em 1.75em;
}

.button-accent {
    color: #3AAFA9;
    background-color: #333333;
}

.button-accent:hover,
.button-accent:focus {
    background-color: #333333a6;
    border-color: #333333;
}

@media (min-width: 60rem) {
    .button {
        font-size: 1.5rem;
    }
}



/* Header 
======================*/

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 1em;    
}

@media(max-width: 18rem) {
    header {
        margin: 1em 0;
    }
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    display: inline-block;
    margin: 1em;
}

nav a {
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    padding: .5em;
    color: #e2e2e2;
}

nav a:hover,
nav a:focus {
    color: #3AAFA9;
}

@media (max-width: 25rem) {
    nav a {
        font-size: .9rem;
        display: contents;
    }
}

@media (min-width: 60rem) {
    .logo {
        float: left;
    }

    nav {
        float: right;
    }

    nav a {
        font-size: 1.1rem;
    }
}




/* home-hero
=======================*/

.home-hero {
    background-image: url(../images/backgrounds/adventure.jpg);
    background-size: cover;
    background-position: center;
    padding: 10em 0;
    color: #FFF;
}

@media (min-width: 60rem) {
    .home-hero {
        height: 100vh;
        padding-top: 30vh;
    }
}


/* home-about 
==========================*/

.home-about-textbox {
    background-color: #333333;
    padding: 4em;
    width: 100vw;
    outline: 3px solid #3AAFA9;
    outline-offset: -3em;
    color: #FFF;
    position: relative;
    border-radius: 0;
}

@media(max-width: 25rem) {
    .home-about-textbox {
        padding: 4em 3em;
        outline-offset: -1.5em;
    }
}

.home-about-textbox h1 {
    color: #3AAFA9;
    position: absolute;
    top: .5em;
    left: 50%;
    transform: translate(-50%);
    background: #333333;
    padding: .5em .5em;
    white-space: nowrap;
}

@media (min-width: 25rem) {
    h1 {
        font-size: 2rem;
    }

    .home-about-textbox h1 {
        top: .6em;
        padding: 0 .325em;
    }
}

@media (min-width: 66rem) {
    h1 {
        font-size: 2.5rem;
    }

    .home-about {
        background-image: url(../images/backgrounds/home-about.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-bottom: 5em;
    }

    .home-about-textbox {
        width: 50%;
        padding: 7em;
        outline-offset: -3.5em;
        margin-left: 8%;
        top: -5em;
        text-align: left;
        border-radius: 15px;
    }

    .home-about-textbox h1 {
        top: .75em;
        left: 5rem;
        transform: translateX(0);
    }

}

/* Status 
==================*/

.status {
    background-color: #3AAFA9;
    height: 30vh;
    min-height: 17em;
}

@media(max-width: 60rem) {
    .status {
        min-height: 15em;
    }
}

.status h1 {
    color: #333333;
    padding-top: 1em;
}

.status h2 {
    color: #333333;
}

.status a,
.status a:hover,
.status a:focus {
    color: #333333;
}



/* Footer 
=================*/

footer {
    font-family: 'Raleway', sans-serif;
    background: #607d8b;
    color: #00dacf;
    text-align: left;
    padding: 3em 0;
}

.comingsoon {
    background-color: #ddd;
    margin: 1em 0;
    padding: 1em;
    color: #333333;
    border-radius: 10px;
}

.comingsoon p {
    float: right;
    padding: 1em;
}


.unstyled-list a {
    font-size: 1.1em;
    text-decoration: none;
    color: #e2e2e2;
    line-height: 1.5em;
}

.foothead {
    font-size: 1.4em;
    text-decoration: underline;
    padding-bottom: .3em;
}

@media (max-width: 66rem) {
    .col-3 {
        width: 100%;
    }

    .col-1 {
        width: 50%;
        padding-top: 0;
    }
    .comingsoon img {
        display: grid;
    }
}

@media(max-width: 40rem) {
    .comingsoon {
        padding: 1em 0 2em 1em;
        height: 6.5em;
    }
    .comingsoon img {
        display: initial;
        float: left;
    }
    .comingsoon p {
        float: left;
    }
}

@media(max-width: 25rem) {
    .comingsoon {
        height: 8.5em;
    }
    .comingsoon p {
        padding-left: 0;
    }
}

@media(max-width: 20rem) {
    .comingsoon {
        height: 9.5em;
    }
}


/* Register Portal
=======================*/



.portal {
    height: 100vh;
    background-image: url(../images/backgrounds/home-about.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
}

.form {
    width: 90%;
    height: 85vh;
    max-width: 40em;
    margin: 0 auto;
    border: 1px transparent;
    border-radius: 0 0 20px 20px;
}

.form a {
    text-decoration: none;
    color: #fff;
}

.form a:hover {
    text-decoration: none;
    color: #fff;
}

.form a:focus{
    text-decoration: none;
    color: #fff;
}

.login_box {
    font-family: 'Bellota-LightItalic', sans-serif;
    background-color: #333333;
    height: 6em;
}

.login_header h1 {
    font-size: 2em;
    margin-bottom: .5em;
}

.login_header a {
    text-decoration: none;
    color: #3AAFA9;
}
.login_header a:hover {
    text-decoration: none;
    color: #3AAFA9;
}
.login_header a:focus {
    text-decoration: none;
    color: #3AAFA9;
}

.headerComment {
    margin-top: 0;
    color: #3AAFA9;
}

.logo img {
    margin: 1em;
}

.logoPortal {
    left: 0;
    right: 0;
    margin: 1em;
}


input[type="text"], input[type="email"], input[type="password"] {
    padding: .6em 1em;
    width: 75%;
    max-width: 20em;
    font-size: 1em;
    text-align: center;
    margin: .7em;
    border: 2px solid #3AAFA9;
    border-radius: 5px;
    background-color: #ffffffa6;
    color: #333333;
}

.bp {
    margin: 1em;
    color: #fff;
}

/* Small phones */

@media (max-width: 25rem) {
    input[type="text"], input[type="email"], input[type="password"] {
        padding: .6em 1em;
        width: 75%;
        max-width: 20em;
        font-size: 1em;
        text-align: center;
        margin: .3em;
    }
}

/* iPhone X */

@media (min-height: 800px) {
    input[type="text"], input[type="email"], input[type="password"] {
        padding: .6em 1em;
        width: 75%;
        max-width: 20em;
        font-size: 1em;
        text-align: center;
        margin: 1em;
    }
}

/* Large phones */

@media (max-width: 20rem) {
    input[type="text"], input[type="email"], input[type="password"] {
        padding: .6em 1em;
        width: 75%;
        max-width: 20em;
        font-size: 1em;
        text-align: center;
        margin: .2em;
    }

    .bp {
        margin: .1em;
    }

    .form {
        width: 90%;
    }
}

/* Small Tablets */

@media (min-width: 40rem) {
    input[type="text"], input[type="email"], input[type="password"] {
        padding: .6em 1em;
        width: 75%;
        max-width: 20em;
        font-size: 1.1em;
        text-align: center;
        margin: .5em;
    }
    .bp {
        font-size: 1.1em;
    }

    .form {
        width: 60%;
    }
    
}

/* Everything else */

@media (min-width: 50rem) {
    input[type="text"], input[type="email"], input[type="password"] {
        padding: .6em 1em;
        width: 75%;
        max-width: 20em;
        font-size: 1.3em;
        text-align: center;
        margin: .4em;
    }
    .bp {
        font-size: 1em;
    }
    .bp p {
        font-size: 1em;
    }
}


input[type="submit"] {
    background-color: #ffffffa6;
    border: 1px solid #ffffffa6;
    border-radius: 5px;
    color: #333333;
    padding: .4em;
    font-size: 1em;
}


input::placeholder {
    color: #333333a6;
}

#first {
    background-color: #333333a6;
    border: 1px transparent;
    border-radius: 15px;
}

#second {
    background-color: #333333a6;
    border: 1px transparent;
    border-radius: 15px;
    display: none;
}

.alract {
    padding-bottom: 1em;
}

@media (min-width: 55rem) {
    .form {
        max-width: 80em;
    }
}