body {
    text-align: center;
}

#title {
    padding: 30px;
    padding-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #cccccc;
}

#logo {
    width: 120px;
    height: auto;
    margin: 10px;
}

h2 {
	/*font-family: "Volvo Nuvum-SemiLight", Helvetica, Arial, sans-serif;*/
    font-weight: 300;
    letter-spacing: 0.025em;
}

h1 {
	/*font-family: "Volvo Nuvum-Medium", Helvetica, Arial, sans-serif;*/
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: -10px;
}

#navigation {
    margin-bottom: -10px;
}
#navigation a {
    display: inline-block;
    margin: 0px 10px;
    cursor: pointer;
}
#navigation a:hover {
    /*text-decoration: underline;*/
    margin-bottom: -8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #000000;
}
#navigation a.active {
    font-weight: 600;
    margin-bottom: -5px;
    padding-bottom: 5px;
    border-bottom: 4px solid #cccccc;
    pointer-events: none;
}


.copy {
    padding: 30px 60px;
    padding-bottom: 15px;
    text-align: center;
}
.copy h1 {
    font-weight: 600;
}
.copy p {
    font-weight: 300;
    font-size: 12pt;
}

.tile {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 30%;
    min-width: 250px;
    min-height: 100px;
    padding-bottom: 0px;
    background-color: rgb(238,238,238);
    color: black;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    font-weight: 300;
    font-size: 14pt;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    vertical-align: top;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.tile.double {
    width: 46%;
}
.tile.single {
    width: 96%;
}
.tile img {
    position: relative;
    top: 0px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.tile h1 {
    position: relative;
    font-size: 14pt;
    margin-left: 20px;
    margin-right: 60px;
    margin-bottom: 20px;
    padding: 0px;
    margin-bottom: 20px;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.tile h1::after {
    content: "›";
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 30px;
    font-weight: 300;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.tile p {
    position: relative;
    font-size: 12pt;
    margin-left: 20px;
    margin-right: 40px;
    /*margin-top: 40px;*/
}
.tile .arrow {
    position: absolute;
    top: 60%;
    right: 20px;
    font-weight: 300;
    font-size: 30pt;
    display: none;
}
.tile:hover {
    cursor: pointer;
    /*background-color: #dddddd;*/
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}
.tile:hover img {
    transform: scale(1.12);
    top: -10px;
}
.tile:hover h1 {
}
.tile:hover h1::after {
    font-size: 40px;
    top: -15px;
    right: -45px;
}

.button {
    position: relative;
    display: inline-block;
    margin: 10px;
    /*margin-top: 30px;*/
    margin-top: 0px;
    width: 94%;
    padding-bottom: 0px;
    background-color: rgb(238,238,238);
    color: black;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    font-weight: 300;
    font-size: 14pt;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    vertical-align: top;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.button h1 {
    position: relative;
    font-size: 14pt;
    margin-left: 20px;
    margin-right: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.button h1::after {
    content: "›";
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 30px;
    font-weight: 300;
    transition: all .25s;
    transition-timing-function: ease-out;
}
.button:hover {
    cursor: pointer;
    /*background-color: #dddddd;*/
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}
.button:hover h1::after {
    font-size: 40px;
    top: -15px;
    right: -45px;
}

#hero {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

#modal {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    padding: 30px;
    background-color: rgba(255,255,255,0.9);
    display: none;
}
#modal video,
#modal iframe {
    position: absolute;
    left: 0px;
    top: 50px;
    border: none;
    display: none;
}
#modal video {
    background-color: black;
    width: 100%;
    height: auto;
}
#modal iframe {
    background-color: white;
    width: 100%;
    height: 100%;
}
#modal #close_btn {
    position: absolute;
    right: 10px;
    top: 0px;
    font-weight: 300;
    font-size: 14px;
    padding: 10px;
    color: rgb(42, 96, 157);
    transition: all .25s;
    transition-timing-function: ease-out;
}
#modal #close_btn .x {
    font-size: 21px;
    color: rgb(42, 96, 157);
}
#modal #close_btn:hover {
    cursor: pointer;
    transform: scale(1.2);
    color: rgb(0, 0, 0);
}

#hamburger_menu {
    display: none;
    cursor: pointer;
}


a:link, a:visited, a:hover, a:active {
    color: black;
    text-decoration: none;
}

a.disclaimer {
    font-size: 9pt;
    margin: 20px;
    padding: 20px 0px;
}
a.disclaimer:hover, a.disclaimer:active {
    text-decoration: underline;
}


@media (orientation:portrait) {

    body {
        background-size: auto 100%;
        background-position: center top;
    }

} 


@media (max-width:600px) {

    h2 {
        font-size: 16pt;
    }
    #copy {
        padding: 30px 20px 10px;
    }

    .tile, 
    .tile.double, 
    .tile.single, 
    .button {
        width: 90%;
    }
    
    #hamburger_menu {
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
        width: 20px;
        height: auto;
    }
    
    #navigation {
        /*margin-bottom: -10px;*/
        display: none;
    }
    #navigation a {
        margin-top: 2px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom: 2px solid rgba(255,255,255,0);
    }
    #navigation a:hover {
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom: 2px solid #000000;
    }
    #navigation a.active {
        margin-bottom: 2px;
        padding-bottom: 0px;
        border-bottom: 4px solid #cccccc;
        pointer-events: none;
    }

}   