@charset "UTF-8";
/*colors
gray - #28292a
navy - #0d2635
yellow - #da9f29

Rustica Light
font-family: rustica, sans-serif;
font-weight: 300;
font-style: normal;


Rustica Light Italic
font-family: rustica, sans-serif;
font-weight: 300;
font-style: italic;

Rustica Regular & Italic 
font-family: rustica, sans-serif;
font-weight: 500;
font-style: normal;
font-style: italic;

Rustica Bold & Italic
font-family: rustica, sans-serif;
font-weight: 700;
font-style: normal;
font-style: italic;

Rustica Extra Bold & Italic
font-family: rustica, sans-serif;
font-weight: 800;
font-style: normal;
font-style: italic;
*/

/* General For All –––––––––––––––––––––––––––––––––––––––––––––––––– */
* {box-sizing: border-box; text-decoration: none;}
img {max-width: 100%;}
body{font-size: 100%;
    background-color: #f1eeef;
}


header{
    width: 100vw;
    max-width: 1400px;
    height: 100vh;
    margin: auto;
}
#logo-nav{
    width: 100%;
    height: 100px;
    max-width: 100px;
    transition: all .2s ease-in-out;
}
#logo-nav:hover{
    transform: scale(1.1);
}
.wrapper{
    width: 100%;
    /* display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto; */
}
h1 {
    font-family: rustica, sans-serif;
    font-weight: 700;
    font-size: 4em;
    color: #28292a;
}


#hero {
    width: 100%;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    /* display: flex;
    flex-direction: row; */

}
#hello{
    /* padding-left: 50px; */
    margin: auto;
}
#hello h1{
    padding-bottom: 25px;
}
#hello h4{
    padding: 0px;
}
#work .wrapper .logo{
    display: none;
}
.wrapper .logo{
    display: none;
}
nav {
    width: 40%;
    height: 110px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
    margin-left: 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#work nav{
    position: static;
}

#about nav{
    position: static;
}

nav a {
    font-family: rustica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-style: normal;
    font-size: 1em;
    color: #28292a;
    transition: all .2s ease-in;
    padding: 0 30px 0 30px;
}
nav a:hover {
    font-weight: 700;
}
.mobilenav {display: none;}
.mobilenav ul {
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
}



/*** FOOTER ***/
footer {
    width: 100%;
    max-width: 1400px;
    height: 400px;
    margin-top: 100px;
    padding: 50px 50px 50px 50px;
    /* background-image: url("images/footer-img.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
}

.contact {
    width: 90%;
    max-width: 600px;
    margin: auto;
}
footer .contact {
    text-align: center;
}

.contact ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
}
.contact ul li a{
    font-family: rustica, sans-serif;
    font-weight: 500;
    color: #28292a;
    font-size: 1em;
    padding: 20px;
    text-transform: uppercase;
}
.contact ul li a:hover {
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #da9f28;
    font-size: 1em;
}



/* WORK PAGE */
#work {
    width: 100%;
    height: auto;
    margin-bottom: 150px;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.sorting-buttons{
    width: 50%;
    margin: auto;
    padding-bottom: 15px;
}
button{
    font-size: .8em;
    font-family: rustica, sans-serif;
    padding: 8px 15px 8px 15px;
    border-style: none;
    border-color: none;
    border-radius: 10px;
}

/* button:hover{
    color: #84a53e;
} */

button[data-filter="*"]{
    background-color: #b74526;
}
button[data-filter=".graphics"]{
    background-color: #da9f28;
}
button[data-filter=".int"]{
    background-color: #ce4282;
}
button[data-filter=".ad"]{
    background-color: #80b5af;
}
button[data-filter=".motion"]{
    background-color: #84a53e;
}

button.active{
    background-color: #28292a;
    color: white;
}
/* Add a dark background to the active button
button.button.active {
  background-color: #28292a;
  color: white;
} */


#iso-buttons{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}
/* .grid a{
    display: block;
} */

.grid.work-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
}

.project-img{
    width: 50vw;
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: transparent;
    text-align: center;
    margin: auto;
    /* float: left; */
}
/* HOVER & OVERLAY */
.project-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    background-color: #28292a;
    z-index: 9999; 
}
.project-overlay .text h2{
      width: 80%;
      color: white;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center;
      text-transform: uppercase; 
}
.project-overlay .text p{
    width: 80%;
    color: white;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.project-overlay:hover {
    opacity: .8; 
}

.work-flex h3{
    color: transparent;
    text-align: center;
}
.work-flex p{
    color: transparent;
    text-align: center;
}


#grid-gore{
    background-image: url("images/gore/laird_movietheater_interactive_mockup.gif"); 
    /* float: left; */
}
#grid-move{
    background-image: url("images/movement/Laird_SideA_mockup.jpg");
    /* float: right; */
}
#grid-grounds{
    background-image: url("images/grounds/coffee_truck_plain.jpg");
    /* float: left; */
}
#grid-cinemap{
    background-image: url("images/cinemap/cinemap-mockup1.jpg");
    /* float: right; */
}
#grid-pizza{
    background-image: url("images/pizza/celebrate.gif");
    /* float: left; */
}
#grid-music{
    background-image: url("images/music/hero.jpg");
    /* float: right; */
}
#grid-monchou{
    background-image: url("images/monchou/monchou-opener.jpg");
    /* float: left; */
}
#grid-whackbat {
    background-image: url("images/whackbat/hotbox.gif");
    /* float: right; */
}
#grid-si {
    background-image: url("images/si/storyart_kayak.jpg");
    /* float: left; */
}
#grid-horizon {
    background-image: url("images/horizon/horizon_hero.jpg");
    /* float: right; */
}
#grid-meyers{
    background-image: url("images/meyers/billboard_mockup.jpg");
}
#grid-nancy{
    background-image: url("images/nancy/final_newspaper.png");
}
.post-grid{
    float: clear;
}

/* PROJECT PAGES */
.project-header{
    height: auto;
    padding-bottom: 50px;
}
.project-info{
    width: 40%;
    height: 100vh;
    padding: 100px 30px 20px 30px;
    float: left;
    position: fixed;
    z-index: 1;
    /* position: -webkit-sticky;
    position: sticky;
    top: 0; */
    /* margin-top: 150px; */
}

button.external-link {
    background-color: #28292b;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    transition: all .3s ease-in;
    opacity: 1;
}
.external-link a {
    color: #f1eeef;
}
button.external-link:hover{
    background-color: #da9f28
}
button.external-link-project {
    background-color: #28292b;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 20px 0px 20px 40%;
    transition: all .3s ease-in;

}

.external-link-project a {
    transition: all .3s ease-in;
    color: #f1eeef;
}
button.external-link-project:hover {
    background-color: #da9f29;
}

.project-info p{
    margin-bottom: 20px;
}

.project-link {
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #28292a;
    transition: all .3s ease-in;
}
.project-link:hover {
    color: #da9f29;
    font-weight: 700;
}

.project-content{
    width: 60%;
    float: right;
    padding: 50px 30px 50px 30px;
    /* margin-top: 50px;
    padding-right: 30px; */
}
.project-content img{
    margin: auto;
    display: block;
    padding: 15px 0 15px 0;
}
.project-subhead{
    text-align: center;
    margin: auto;
    margin-top: 50px;
}
.indiv-img{
    padding: 10px;
}
.disclaimer {
    font-size: .8em;
    text-align: center;
    padding: 20px;
}

.img-flex{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#grounds-flex{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#grounds-1{
    width: 40%;
    height: auto;
    padding: 5px;
}
#grounds-2{
    width: 60%;
    height: auto;
    padding: 5px;
}
iframe {
    width: 90%;
    max-width: 800px;
    height: auto;
}
footer {clear: both;}
h2{
font-family: rustica, sans-serif;
font-weight: 700;
color: #28292a;
font-size: 2em;
}
h3{
font-family: rustica, sans-serif;
font-weight: 500;
color: #28292a;
font-size: 1.2em;
text-transform: uppercase;
line-height: 2;
}
p{
font-family: rustica, sans-serif;
font-weight: 500;
color: #28292a;
font-size: 1em;
line-height: 1.6;
}

p.project{
width: 85%;
}

p i{
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: italic;
}
p b{
    font-family: rustica, sans-serif;
    font-weight: 700;
}
p.tools{
    padding: 20px 0 20px 0;
}
p.tools a {
    color: #28292a;
    transition: all .3s ease-in;
}
p.tools a:hover {color: #da9f28;}
h4{
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #28292a;
    font-size: 1.2em;
    line-height: 1.6;
    padding: 10px 0px 10px 0px;
}
.button-group{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
}
h4 a.next-button {
    font-family: rustica, sans-serif;
    font-weight: 500;
    color: #b74526;
    transition: all .3s ease-in;
    text-transform: uppercase;
    /* float: right; */
    /* margin-right: 30px; */
    /* padding-top: 30px; */
}
h4 a.previous-button {
    font-family: rustica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    /* color: #28292a; */
    color: #b74526;
    transition: all .3s ease-in;
    /* float: left; */
    /* margin-right: 30px; */
    /* padding-top: 30px; */
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #b74526;
  }
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #b74526;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

a.project-link {
    margin-top: 40px;
}

img#horizon-gif{margin: 20px 0px 20px 0px;}
#cinemap-logo{
    width: 50%;
    height: auto;
    margin: auto;
    text-align: center;
    padding-bottom: 40px;
}
/* ABOUT */
header#about{
    height: 200px;
}
#about-wrap{
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: auto; 
}
#about-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
p#about-para{
    width: 100%;
    margin-top: 25px;
}
#about-photo{
    width: 40%;
    max-width: 700px;
    padding: 20px;
    margin: auto;
    margin-top: 50px;
    display: block;
}


/* CONTACT PAGE */
header#contact{
    height: 200px;
    /* max-width: 1400px;
    margin: auto; */
}
#contact-content {
    width: 90%;
    max-width: 800px;
    margin: auto;
}
#contact-info ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 50px;
}
#contact-info ul li a{
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #28292a;
    font-size: 1em;
    padding: 0px 60px 0px 0px;
}
#contact-info ul li a:hover {
    font-family: rustica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #da9f28;
    font-size: 1em;
}
p#contact-para{
    margin-top: 25px;
}



/* FLICKITY */
.carousel-cell { 
width: 100%;
height: auto;
/* height: 600px;
max-height: 600px; */
} 
.flickity-slider img {
    min-width: 100px;
    max-height: 600px;
}
.main-carousel {
    margin-bottom: 50px;
}
.slider {
    width: 100%;
    margin-bottom: 50px;
}
.slider#storyboard-slider {
    margin-top: 0px;
}

#gore-grid {
    width: 50%;
    height: auto;
    background-image: url("images/grid/gore.gif");
}




/* Tablet */
@media screen and (max-width: 1000px)
{
body {background-color: ffffff;} 
.mobilenav {display: block;}
nav {display: none;}
#work .wrapper .logo{
    display: block;
    width: 45%;
    max-width: 120px;
    height: auto;
    padding: 10px 0px 0px 20px;
}
.wrapper .logo{
    display: block;
    width: 45%;
    max-width: 120px;
    height: auto;
    padding: 10px 0px 0px 20px;
}
header{
    height: 650px;
    /* padding-top: 70px; */
    max-width: 900px;
}
.project-img {
    height: 30vh;
}
.project-info{
    float: none;
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 20px;
    position: relative;
    z-index: auto;
    margin-top: 50px;
    margin: auto;
}
.project-content{
    float: none;
    width: 95%;
    margin-top: 50px;
    padding-right: 0px;
    margin: auto;
}
h4 a.next-button {
    float: right;
    margin-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact {
    width: 100%;
    text-align: center;
}    


}


/* Mobile */
@media screen and (max-width: 600px)
{

.mobilenav {display: block;}
nav {
    display: none;
    width: 100%;
}
.animated
    {animation-duration: 0s;}

header#work{
    width: 100%;
    height: 100%;
    padding: 0px;
}

#hello{
    margin-top: 50px;
    /* margin-left: 0px; */
    margin-bottom: 50px;
    padding-left: 0px;
}
#hero {
    width: 100%;
    max-width: 375px;
    height: auto;
    margin: 0px;
    padding: 0px;
}
#hero h1 {
    font-size: 3em;
    text-align: center;
    margin: auto;
    width: 100%;
}
#hero h4{
    text-align: center;
    width: 100%;
    margin: auto;
}
.sorting-message {
    display: none;
}
.sorting-buttons{
    display: none;
}
.project-img {
    width: 100vw;
    height: 60vw;
    margin: auto;
}

.contact ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
}
.contact ul li a{
    line-height: 3;
    padding: 0px;
}

p.project{width: 100%;} 

#grid-move { float: none;}
#grid#work-flex {
    float: none;
    display: block;
}
#grid-grounds{
    float: none;
}
element.style{
    position: static;
}
.img-flex{
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}
#grounds-flex{
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}
#grounds-1{
    width: 100%;
    height: auto;
    padding: 0px;
}
#grounds-2{
    width: 100%;
    height: auto;
    padding: 0px;
}

/*********** CONTACT MOBILE ************/
header#contact{
    height: 100px;
}
#contact-content {
    width: 90%;
    min-width: 375px;
    margin: auto;
}
#contact-info ul li a{
    padding-right: 50px;
}

/* ABOUT MOBILE */
header#about {
    height: 100px;
}
#contact-content {
    width: 90%;
    min-width: 375px;
    margin: auto;
}
#about-wrap{
    flex-direction: column-reverse;
    flex-wrap: wrap;
}
header#about{
    height: 200px;
}
p#about-para{
    width: 90%;
    margin-top: 0px;
}
#about-photo{
    width: 100%;
    padding: 10px;
    margin: auto;
    display: block;
}

}
