/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*MY CODE*/

* {
    text-decoration: none;
}

p{
    color: #111;
}

header {
    background-color: #ffffff;
    width: 100%;
    Height: 100px;
}

header .header-brand {
    font-family: arial;
    font-size: 24px;
    font-weight: 900;
    color: #111;
    text-transform:uppercase;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}



header nav ul {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

header nav ul li {
    display: inline-block;
    list-style: none;
    float: left;
    padding: 0 16px;
}

header nav ul li a {
    font-family: catamaran;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
}

header .header-UL {
    font-family: catamaran;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

header .header-cases {
    display: none;
}


@media only screen and (min-width: 1000px) {
    header .header-brand{       
        margin: 31px 0;
        text-align: left;
        line-height: 38px;
        padding: 0px 20px 0px 40px;
        border-right: 3px solid #111;
        float: left;
    }    

    header nav ul {
        margin: 20px 0px 0px 20px;
        float: left;
    }
    
    header nav ul li a {
        line-height: 60px;
    }

    header .header-cases {
        display: block;
        font-family: catamaran;
        font-size: 16px;
        font-weight: 500;
        color: #111;
        text-transform: uppercase;
        line-height: 38px;
        border: 1px solid #111;
        float: right;
        margin-right: 40px;
        margin-top: 30px;
        padding: 0 20px;
    }

    .resume {
        height: 1200px;
    }

}

video {
    width: 100%;
    volume: 50%;
}

.videowrapper{
    position: absolute;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0px;
}

.videowrapper iframe{
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
}

.button1 {
    border-radius: 2px;
}

.button1 a {
    padding: 15px 25px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    background-color: #000000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #ffffff; 
    text-decoration: none;
    font-weight: bold;
    display: inline-block;  
}

.resume {
    width: 100%;
}



/*INDEX*/
.index-banner{
    width: 100%;
    height: calc(100vh - 175px);
    background-image:  linear-gradient(to right, rgba(255, 254, 254, 0.2) , rgba(0, 0, 0, 0.3)), url('pics/snow\ background.jpeg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: table;
}

.vertical-center{
    display: table-cell;
    vertical-align: middle;
}

.index-banner h2{
    font-size: Catamaran;
    font-size: 60px;
    font-weight: 900;
    line-height: 70px;
    color: #ffffff;
    text-align: center;
    text-shadow: 3px 3px 8px #111;
}

.index-banner h1{
    font-size: Cormorant Garamond;
    font-size: 30px;
    font-weight: 100px;
    font-style: italic;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 5px #111;
}

.index-links div{
    margin: 10px 10px 5px 10px;
    width: calc(100% - 20px);
    height: 80px;
    background-color: #f2f2f2;
}

.index-links div h3{
    font-size: catamaran;
    font-size: 30px;
    font-weight: 700px;
    line-height: 82px;
    color: #111;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (min-width: 1000px) {
    .wrapper {
        width: 1000px;
        margin: 0 auto;
    }

    .index-banner {
        width: 100%;
        height: 450px;
    }

    .index-banner h1 {
        display:block;
        width: 560px;
        margin: 0 auto;
    }

    .index-links {
        overflow: hidden;
    }

    .index-links div {
        margin: 20px 10px 0;
        height: 230px;
        background-color: #f2f2f2;
        Float: Left;
    }

    .index-boxlink-square {
        width: calc(25% - 20px) !important;
    }

    .index-boxlink-rectangle {
        width: calc(50% - 20px) !important;
    }

    .index-links div h3 {
        line-height: 230px;
    }   
}




/*footer*/
footer {
    width: calc(100% - 80px);
    padding: 40px 40px;
    margin-top: 20px;
    background: #111;
    overflow: hidden;
}

footer ul {
    width: fit-content;
    float: left;
    padding-left: 20px;
}

footer ul li{
    display: block;
    list-style: none;
}

footer ul li a {
    font-family: Catamaran;    
    font-size: 24px;
    color: #ffffff;
    line-height: 40px;
}

.footer-links-cases{
    display: none;
}

.footer-sm {
    width: 100px;
    height: 100px;
    float: right;
}

.footer-sm img {
    width: 60px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 1000px) {
    .footer-links-cases{
        display: block;
    }

    footer ul {
        width: fit-content;
        float: left;
        padding-left: 20px;
        padding-right: 30px;
    }

    footer ul li p {
        font-family: Catamaran;    
        font-size: 24px;
        color: #ffffff;
        line-height: 40px;
        text-transform: uppercase;
    }
}