/* ----------------------------------------------------------------------*/
/* Imports
/* ----------------------------------------------------------------------*/

@import 'https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css';


/* ----------------------------------------------------------------------*/
/* Layout
/* ----------------------------------------------------------------------*/

html {
    box-sizing: border-box;
    position: relative;
    min-height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: black;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.heading-container {
    position: absolute;
    top: 60px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.brands-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.5);
}
.brands-container a {
    color: #ffffff;
    width:100%;
}
.brands-container a:nth-child(2) {
    margin:30px 0;
}
.heroSection {
    overflow: hidden;
}
.heroImg {
    text-align: center;
}
.heroImg:before {
    display: block;
    position: relative;
    background-image: linear-gradient(-180deg, rgba(0,0,0,0.85), transparent);
    margin-bottom: -300px;
    height: 300px;
    width: 100%;
    content:"";
}
.heroImg:after {
    display: block;
    position: relative;
    background-image: linear-gradient(180deg, transparent 0, #000);
    margin-top: -150px;
    height: 150px;
    width: 100%;
    content:"";
}
.heroImg img {
    width: auto;
    min-height: 208px;
    max-height: 208px;
    margin-left:auto;
    margin-right: auto;
    opacity:0.6;
}
main {
    display: block;
    max-width: 290px;
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
a {
    color: #FBAC3D;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a.job-title:hover {
    text-decoration: none;
}
hr {
    margin: 40px auto;
    border:0;
    max-width: 870px;
    height: 1px;
    text-align: center;
    background-color: rgba(255,255,255,0.2);
}
h1{
    position: absolute;
    top: 320px;
    left:0;
    right:0;
    font-size: 36px;
    margin: 30px 0;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    font-family: "HelveticaNeueBlack", "HelveticaNeue-Black", "Helvetica Neue Black", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Arial Black", sans-serif;

}
main h2{
    line-height: 30px;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 0;
    margin:0;
    font-weight: 400;
}
main .career,
main .career p {
    font-size: 13px;
    line-height: 1.5;
}

main h4 {
    color: #ffffff;
    margin:40px 0 6px;
    font-size: 16px;
    line-height: 1.5;
}
main p {
    color: #808080;
    line-height: 1.8;
    font-size: 16px;
}
main p.small {
    margin:7px 0 0;
    color: rgba(255,255,255,0.5);
    margin-top: 0;
}
main section {
    padding:0 10px;
    box-sizing: border-box;
}
main .career ul {
    margin:0;
    padding:0;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
}
main .career ul li {
    margin: 0 25px;
}
.join-team {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 60px;

}
.career-list{
    text-align:center;
}
.career-list a.externalJobLink {
    display:inline-block;
    margin:0 auto;
    border: 1px solid #FBAC3D;
    border-radius:8px;
    width: 182px;
    height: 46px;
    line-height: 2.6;
    transition:background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-size: 18px;
}
.career-list a.externalJobLink:hover{
    background-color:#FBAC3D;
    color:#000000;
    text-decoration:none;
}
.title-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.job-description {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.3s ease-in-out;
}
.job-description.displayed {
    max-height: 2000px;
}


@media (min-width: 400px) {
    .heroImg img {
        min-width: 760px;
        max-width: 760px;
        min-height: 506px;
        max-height: 506px;
    }
    main,
    .heading-container {
        max-width: 400px;
        width: 400px;
    }
    main section {
        padding:0 20px;
    }
    h1 {
        font-size: 48px;
        top: 500px;
    }
    .join-team {

        padding-top: 20px;
    }
}
@media (min-width: 600px) {
    .heroImg img {
        min-width: 916px;
        max-width: 916px;
        min-height: 610px;
        max-height: 610px;
    }
    main,
    .heading-container {
        max-width: 600px;
        width: 600px;
    }
    h1 {
        font-size: 84px;
        top: 280px;
    }
    main h2 {
        font-size: 28px;
    }
    main section {
        padding:0 40px;
    }
    main p {
        font-size: 18px;
    }
    main .career,
    main .career p {
        font-size: 16px;
        line-height: 1.5;
    }
    .brands-container {
        flex-direction: row;
    }
    .brands-container a:nth-child(2) {
        margin:0 60px;
    }
}
@media (min-width: 900px) {
    .heroImg img {
        max-width: 1200px;
        min-height: 828px;
        max-height: 828px;
    }
    main,
    .heading-container {
        max-width: 740px;
        width: 740px;
    }
    h1 {
        top: 360px;
    }
}
@media (min-width: 1200px) {
    .heroImg img {
        margin-top: -350px;
        max-width: 1920px;
        min-height: 1278px;
        max-height: 9000px;
    }
}


footer {
    margin-top: 120px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.footer-links {
    padding-top: 22px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.footer-links a {
    margin:0 20px;
}

[id='contact-link'] {
    display: block;
    margin-top: 22px;
    color: white;
    font-size: 13px;
    line-height: 18px;
    text-decoration: none;
}

[id='legal'] {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    line-height: 18px;
}

@keyframes slideIn {
    0% {
        opacity:0;
       max-height: 0;
    }
    100% {
        opacity:1;
        max-height: auto;
    }
}
@keyframes slideOut {
    0% {
        opacity:1;
        max-height: auto;
    }
    100% {
        opacity:0;
        max-height: 0;
    }
}

