/* Table of Contents
––––––––––––––––––––––––––––––––––––––––––––––
- General Content
- Typography
- Header & Navigation
- Images & Media
- Footer
- Media Queries
–––––––––––––––––––––––––––––––––––––––––––––– */


/* General Content
–––––––––––––––––––––––––––––––––––––––––––––– */
.main{
    padding-top:3%;
    padding-bottom:7%;
}

.row{padding: 1% 0; 1%}


.masonry { /* Masonry container */
  column-count: 4;
  column-gap: 2em;
}

.item { /* Masonry bricks or child elements */
  background-color: #fff;
  display: inline-block;
  margin: 0 0 2em;
  width: 100%;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
    font-family: 'Futura Bk BT';
    src: url('FuturaBT-Book.eot');
    src: url('FuturaBT-Book.eot?#iefix') format('embedded-opentype'),
        url('FuturaBT-Book.woff2') format('woff2'),
        url('FuturaBT-Book.woff') format('woff'),
        url('FuturaBT-Book.ttf') format('truetype'),
        url('FuturaBT-Book.svg#FuturaBT-Book') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Lt BT';
    src: url('FuturaBT-Light.eot');
    src: url('FuturaBT-Light.eot?#iefix') format('embedded-opentype'),
        url('FuturaBT-Light.woff2') format('woff2'),
        url('FuturaBT-Light.woff') format('woff'),
        url('FuturaBT-Light.ttf') format('truetype'),
        url('FuturaBT-Light.svg#FuturaBT-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('FuturaBT-Medium.eot');
    src: url('FuturaBT-Medium.eot?#iefix') format('embedded-opentype'),
        url('FuturaBT-Medium.woff2') format('woff2'),
        url('FuturaBT-Medium.woff') format('woff'),
        url('FuturaBT-Medium.ttf') format('truetype'),
        url('FuturaBT-Medium.svg#FuturaBT-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('ProximaNova-Regular.eot');
    src: url('ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
        url('ProximaNova-Regular.woff2') format('woff2'),
        url('ProximaNova-Regular.woff') format('woff'),
        url('ProximaNova-Regular.ttf') format('truetype'),
        url('ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}



p{
	font-family: 'Proxima Nova Rg', sans-serif;
	font-size: 1.2em;
    line-height: 22px;
	color: #8d8d8d;
}

a:link {
  text-decoration: none;
  color: #8d8d8d;
  cursor:pointer;
}
a:hover {
  text-decoration: underline;
}



h1{
	font-family: 'Futura Md BT', sans-serif;
	font-size: 3.5em;
    color: #000000;
}


h2{
	font-family: 'Proxima Nova Rg', sans-serif;
	font-size: 1.5em;
    color: #000000;
}

h3{
	font-family: 'Futura Md BT', sans-serif;
	font-size: 1.8em;
    color: #8d8d8d;
}

.right-aligned {
    text-align: right;
}

/* Header & Navigation
–––––––––––––––––––––––––––––––––––––––––––––– */

* {
    box-sizing: border-box;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.logo a{
    display: block;
	text-align: left;
    line-height: 28px;
    font-family: 'Futura Md BT';
	font-size: 1.5em;
	color: #3c3c3c;
	text-decoration: none;
    text-transform: uppercase;
	padding: 25px 0px;
}

.logo a:hover{
	color: #999999;
}

.navbar-links {
    height: 100%;
    padding: 10px 0px 0px 0px;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #999999;
    padding: 0px 0px 0px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Proxima Nova Rg', sans-serif;
    font-size: 1.1em;
}

.navbar-links li a:hover {
    color: #000000;
}

.toggle-button {
    position: absolute;
    top: 30px;
    right: 10px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
}

.toggle-button .bar {
    height: 2.5px;
    width: 100%;
    background-color: #3c3c3c;
    border-radius: 0px;
}


@media (max-width: 720px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: right;
    }

    .navbar-links ul li a {
        padding: 5px 0rem 15px;
    }

    .navbar-links.active {
        display: flex;
    }
}




/* Images & Media
–––––––––––––––––––––––––––––––––––––––––––––– */
img{max-width: 100%;}

.portfolio img:hover{opacity:0.8;}
.portfolio img a:{cursor:pointer;}

.portfolio video:hover{opacity:0.8;}
.portfolio video a:{cursor:pointer;}


.hero{padding: 1% 0 1% 0}

.secondary-image{padding: 1% 0 1% 0}

.secondary-image a{cursor:pointer;}


/* For devices larger than 400px */
@media (min-width: 320px) {
    .portfolio img{margin-bottom: 6%;}
    .portfolio video{margin-bottom: 6%;}
}
/* For devices larger than 720px */
@media (min-width: 720px) {
    .portfolio img{margin-bottom: 0%;}
    .portfolio video{margin-bottom: 0%;}
}


.video-fluid {
  width: 100%;
  height: auto;
}


.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}


/* Footer
–––––––––––––––––––––––––––––––––––––––––––––– */

p.copyright{
	text-align: center;
	color: #666;
	font-size: 1em;
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––– */

@media (max-width: 720px) {
    .row {padding: 0% 0;}
}


/* MASONARY GRID */

/* Box-sizing reset: //w3bits.com/?p=3225 */
html {
  box-sizing: border-box;
}

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


/* The Masonry Brick */
.item {
  background: #fff;
  padding: 0em;
  margin: 1em 0 1em;
}

/* Masonry on large screens - 4 COLUMNS*/
@media only screen and (min-width: 1024px) {
  .masonry {
    column-count: 4;
  }
}

/* Masonry on large screens - 3 COlUMNS*/
@media only screen and (min-width: 1024px) {
  .masonry-3 {
    column-count: 3;
  }
}

/* Masonry on medium-sized screens */
@media only screen and (max-width: 1023px) and (min-width: 720px) {
  .masonry {
    column-count: 3;
  }
}

/* Masonry on small screens */
@media only screen and (max-width: 720px) {
  .masonry {
    column-count: 2;
    column-gap: 2em;
  }
}

