section.hero {
    position: relative;
    min-height: 500px;
	background-color: #2e1d42;
}

section.hero div.description {
    z-index: 1;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding-left: 4%;
    padding-right: 4%;
    text-align: center;
}

section.hero div.description h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    line-height: 1.2em;
    font-weight: 700;
    font-size: 2.2em;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(60, 0, 110, 0.2);
}

section.hero div.description p {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 0.4em;
    max-width: 800px;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(60, 0, 110, 0.2);
}

section.hero div.description a {
    line-height: 1.2em;
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(60, 0, 110, 0.2);
}

section.hero div.description a:hover {
    text-decoration: underline;
}

section.hero div.description a.selected {
    border-bottom: 2px solid #ffffff;
}

section.hero div.background {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;

    background: rgb(188,0,255);
    background: -moz-linear-gradient(130deg, rgba(188,0,255,1) 0%, rgba(255,177,0,1) 100%);
    background: -webkit-linear-gradient(130deg, rgba(188,0,255,1) 0%, rgba(255,177,0,1) 100%);
    background: linear-gradient(130deg, rgba(188,0,255,1) 0%, rgba(255,177,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bc00ff",endColorstr="#ffb100",GradientType=1);
}

section.hero div.background img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 600px;
    opacity: 0.4;
}

section.hero div.background video.video_loop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width:100%;
    opacity: 0.4;
    transition: 200ms;
    transition-timing-function: ease-in-out;
}





@media only screen and (min-width: 768px) {

    section.hero {
        height: 600px;
    }

    section.hero div.description h1 {
        font-size: 3.5em;
    }

    section.hero div.description h2 {
        font-size: 2.5em;
    }
}





