﻿* {
    box-sizing: border-box;
}

body {
    overflow: hidden;
    margin: 0;
}

#logo {
    width: 100%;
    background-color: white;
}

.bg-fade {
    width: 100%;
    height: 100%;
    background-color: grey;
    opacity: 0.3;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg {
    background: url('/Areas/HelpDocs/Images/neurons.png');
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

#wrapper {
    z-index: 1;
    text-align: center;
    transform: translateX(-50%);
    position: absolute;
    top: 17%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}
#cardWrapper {
    display: flex;
    justify-content: center;
}

h2,
#wrapper > h1
{
    color: white;
}

#wrapper > h1 {
    font-family: 'Lato', sans-serif;
}


h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 70px;
    font-size: 18px;
}

.card h2 {
    font-size: 2em;
    font-weight:bold;
    margin-block-end: 1em;
    margin-block-start: 0.6em;
}
.card.standard h2 {
    color: #2cb23c;
}

.card.recruitment h2 {
    color: #e13078;
}

.card {
    float: left;
    background-color: white;
    max-width: 390px;
    box-shadow: 0 0 1px 1px grey;
    border-radius: 5px;
    height: 420px;
    padding: 20px;
    position: relative;
}

.card.standard {
    margin-right: 80px;
}

@media (max-width: 800px) {
    .card.standard {
        margin-right: 30px;
    }
}

.card.recruitment {

}

.card h2 {
    font-family: 'Lato', sans-serif;
}

.card p {
    font-family: Helvetica, Arial, sans-serif;
    margin-top: 10px;
}

.card i {
    width: 65px;
    display: block;
    height: 65px;
    margin: 40px auto;
}

div.logo{
    margin-bottom:15px;
}
    .card.recruitment div.logo {
        background: url('/Areas/HelpDocs/Images/recruitment.svg') no-repeat;
        max-width: 329px;
        height: 135px;
        margin: 0px auto;
    }

    .card.standard div.logo {
        background: url('/Areas/HelpDocs/Images/project.svg') no-repeat;
        max-width: 237px;
        height: 135px;
        margin: 0px auto;
    }

.button-wrapper {
    margin: 0px auto;
    display: table;
    bottom: 20px;
    position: absolute;
    left: calc(50% - 55px);
    width: 55px;
}

.button-wrapper a {
    display: block;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
}

.button-wrapper a,
.button-wrapper a:hover,
.button-wrapper a:active,
.button-wrapper a:focus,
.button-wrapper a:visited {
    color: white;
    text-decoration: none;
}

.recruitment a {
    background-color: #35BCDA;
}

.recruitment a:hover  {
    background-color: #aee4f0
}

.recruitment a:active {
    background-color: #2a96ae;
}


.standard a {
    background-color: #1853A0;
}

.standard a:hover {
    background-color: #5d87bd;
}

.standard a:active {
    background-color: #113a70;
}

.host-warning {
    background-color: white;
    padding: 1em;
    border-radius: 12px;
    line-height: 1.7em;
    font-family: 'Lato', sans-serif;
    display: table;
    width: 780px;
    margin: 0 auto;
    color: red;
}