body, html {
  background-color: #ECEAEB;
  background-image: url("../images/bg.jpg");
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  line-height: 1.5em; }

a {
  color: black;
  text-decoration: underline; }
  a img {
    transition: 0.5s ease; }
  a img:hover {
    transition: 0.5s ease;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-filter: saturate(150%);
    -moz-filter: saturate(150%);
    filter: saturate(150%); }

a:hover {
  text-decoration: none; }

#portfolio, #topnav, #floatnav ul, .project, .breadcrumb {
  min-width: 310px;
  padding: 0;
  margin: 0 auto; }
  @media screen and (min-width: 1200px) {
    #portfolio, #topnav, #floatnav ul, .project, .breadcrumb {
      max-width: 80%; } }
  @media screen and (max-width: 1200px) {
    #portfolio, #topnav, #floatnav ul, .project, .breadcrumb {
      width: 100%; } }
  @media screen and (min-width: 1400px) {
    #portfolio, #topnav, #floatnav ul, .project, .breadcrumb {
      max-width: 1200px; } }

#portfolio {
  position: relative;
  z-index: 1; }
  #portfolio .desc {
    /* 	font: bold 1.2em $display-face;
    	color:#fff;
    	padding-left:0.5em;
    	padding-top:0.1em;
    	width:100%;
    	position:absolute;
    	left:0;
    	top:0;
    	z-index:10; */
    display: none;
    visibility: hidden; }

#nav {
  width: 100%;
  display: block;
  font: bold "Courgette", sans-serif; }
  #nav ul {
    margin: 0 auto;
    list-style-type: none;
    font-size: 1em;
    text-align: center; }
  #nav a {
    color: #888;
    text-decoration: none;
    filter: opacity(0.7);
    position: relative;
    line-height: 120px;
    transition: all 0.25s ease-in-out;
    text-decoration: none; }
  #nav a:hover, #nav a.current {
    filter: opacity(1);
    color: #000;
    font-weight: 700; }
  #nav a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s; }
  #nav a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }

#topnav {
  height: 120px;
  padding: 2em 0px; }
  #topnav li {
    display: block;
    float: left;
    width: 20%; }
  #topnav a {
    font-size: 1.4em; }
  #topnav .logo-lg {
    filter: opacity(0.7);
    height: 120px;
    max-width: 120px;
    background-image: url("/images/mw_logo_120x120.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-animation: transform;
    -moz-animation: transform;
    animation: transform;
    transition: all 0.25s ease-in-out; }
  #topnav .logo-lg:hover {
    filter: opacity(0.9);
    /*  	transform: rotate(180deg);
    	-webkit-transform: rotate(180deg); */ }

#floatnav {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 60px;
  background-color: #F5F5F5;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #ddd;
  z-index: 4; }
  #floatnav li {
    width: 15%;
    float: left;
    font-size: 1em; }
    #floatnav li a {
      line-height: 60px; }
  #floatnav .logo-sm {
    text-align: left;
    width: 40%; }
    #floatnav .logo-sm a {
      display: block;
      overflow: hidden;
      text-align: left;
      line-height: 60px;
      filter: opacity(0.7);
      height: 60px;
      width: 60px;
      background-image: url("/images/mw_logo_120x120.png");
      background-position: left;
      background-repeat: no-repeat;
      background-size: 40px;
      background-position: 10px 10px; }
    #floatnav .logo-sm a:hover {
      filter: opacity(0.9); }

@media screen and (min-width: 769 px) {
  .logo-lg {
    visibility: visible;
    display: block; } }
@media screen and (max-width: 768px) {
  #topnav {
    padding: 1em 0px;
    height: 60px; }

  .logo-lg {
    width: 60px;
    max-height: 60px;
    line-height: 60px; }

  #topnav li {
    font-size: 2.75vw;
    width: 20%; }
    #topnav li a {
      line-height: 60px; }

  #floatnav {
    visibility: hidden;
    display: none; } }
.breadcrumb {
  background: none;
  font-size: 9pt;
  color: #444;
  font-family: "Roboto", sans-serif; }
  .breadcrumb .directional-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px; }
    .breadcrumb .directional-nav .back {
      display: flex;
      justify-content: flex-start;
      width: 25%;
      margin-left: 10px; }
    .breadcrumb .directional-nav .forward {
      display: flex;
      justify-content: flex-end;
      width: 25%;
      margin-right: 10px; }
    .breadcrumb .directional-nav .center {
      display: flex;
      justify-content: center; }

.thumb, .thumb-inactive {
  position: relative;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 101%;
  width: 100%;
  -moz-transition: background-size;
  -ms-transition: background-size;
  -o-transition: background-size;
  -webkit-transition: background-size;
  -moz-transition: background-position;
  -ms-transition: background-position;
  -o-transition: background-position;
  -webkit-transition: background-position;
  -webkit-filter: saturate(100%);
  -moz-filter: saturate(100%);
  filter: saturate(100%);
  transition: all 0.2s ease-in-out; }

#portfolio .thumb:hover {
  background-size: 103%;
  -webkit-filter: saturate(150%);
  -moz-filter: saturate(150%);
  filter: saturate(150%); }
  #portfolio .thumb:hover .desc {
    display: flex;
    position: fixed;
    visibility: visible;
    top: 0;
    height: 100%;
    width: 100%;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    font-family: "Courgette", sans-serif;
    font-size: 32px;
    line-height: 48px; }
    #portfolio .thumb:hover .desc p {
      margin: 0 10%; }

.project {
  background-color: rgba(255, 255, 255, 0.75);
  height: 100%;
  padding-bottom: 2em; }
  .project .caption {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 0.75em;
    color: #95989A;
    text-align: center;
    margin: 0 0 3em 0;
    padding-top: 1em; }
  .project h1, .project h2, .project h3, .project h4, .project h5, .project h6 {
    color: #222;
    font-family: "Courgette", sans-serif;
    margin-bottom: 1.25em;
    margin-top: 1.5em; }
  .project h1 {
    font-size: 2em; }
  .project h2 {
    font-size: 1.75em; }
  .project h3 {
    font-size: 1.5em; }
  .project h4 {
    font-size: 1.25em; }
  .project h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 0.875em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5%;
    margin-right: 5%; }
  .project p, .project ul {
    font-family: "Roboto", sans-serif;
    color: #666;
    font-size: 18px;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 150%; }
    .project p ul, .project ul ul {
      margin: 0; }
    .project p li, .project ul li {
      margin-left: -16px; }
      .project p li span, .project ul li span {
        position: relative;
        left: 8px; }
  .project .project-desc {
    font-family: "Roboto", sans-serif;
    font-size: 100%;
    padding: 0.5em 5em 3em 5em;
    text-align: left; }
    @media screen and (max-width: 768px) {
      .project .project-desc {
        font-size: 1em;
        padding: 0em 4em 2em 4em; } }
  .project .project-subsection {
    display: block;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0; }
    .project .project-subsection img {
      margin: 0 2.5%;
      height: auto;
      width: auto; }
  .project .project-threecol {
    margin: 0 5rem 0 5rem;
    display: flex; }
    @media all and (max-width: 800px) {
      .project .project-threecol {
        flex-direction: column; } }
    .project .project-threecol .card {
      flex: 1;
      border-radius: 8px;
      background-color: #E1E1E1;
      padding: 24px 1rem 24px 1rem;
      margin: 1rem; }
      .project .project-threecol .card h1, .project .project-threecol .card h2, .project .project-threecol .card h3, .project .project-threecol .card h4, .project .project-threecol .card h5, .project .project-threecol .card h6 {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1.5em; }
      .project .project-threecol .card p, .project .project-threecol .card ul {
        font-size: 0.875rem; }
  .project .carousel .carousel-noauto img {
    height: auto;
    margin: 0 0.5em; }
  .project .slick-arrow::before {
    color: #444; }
  .project .slick-slide {
    height: auto !important; }
  .project .slick-list {
    height: auto !important; }
  .project .sample {
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow: scroll;
    overflow-x: auto;
    width: 90%; }
    .project .sample.web {
      max-width: 1000px;
      padding-bottom: 50%; }
    .project .sample.mobile {
      max-width: 400px;
      padding-bottom: 50%; }
    .project .sample img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      margin: 0;
      padding: 0;
      width: 100%; }

.tile1 {
  padding-top: 100%; }

.tile2 {
  padding-top: 50%; }

.tile3 {
  padding-top: 33.33%; }

.tile4 {
  padding-top: 66.66%; }

#tb-bake450 {
  background-image: url("/images/thumb_bake450_brand.png"); }

#tb-procore {
  background-image: url("/images/thumb_procore.png"); }

#tb-nomrex {
  background-image: url("/images/thumb_nomrex.png"); }

#tb-nomrexapp {
  background-image: url("/images/thumb_nomrexapp.png"); }

#tb-ppp {
  background-image: url("/images/thumb_ppp.png"); }

#tb-bk1 {
  background-image: url("/images/thumb_bk1_lg.png"); }

#tb-bk1app {
  background-image: url("/images/thumb_bk1app.png"); }

#tb-bk2 {
  background-image: url("/images/thumb_bk2_lg.png"); }

#tb-bk2app {
  background-image: url("/images/thumb_bk2app.png"); }

#tb-bpapp {
  background-image: url("/images/thumb_bpapp.png"); }

#tb-memolane {
  background-image: url("/images/thumb_memolane.png"); }

#tb-portfolio {
  background-image: url("/images/thumb_portfolio.png"); }

#tb-recent-projects {
  background-image: url("/images/thumb_recent_projects.png"); }

#tb-bnet-redesign {
  background-image: url("/images/thumb_bnet_redesign.png"); }

#tb-bnet-pdgs {
  background-image: url("/images/thumb_bnet_pdgs.png"); }

#tb-shop-discovery {
  background-image: url("/images/thumb_shop_discovery.png"); }

#tb-sales-promos {
  background-image: url("/images/thumb_sales_promos.png"); }

#tb-bnet-personas {
  background-image: url("/images/thumb-bnet-personas.png"); }

#tb-bnet-ui-library {
  background-image: url("/images/thumb_bnet_ui_library.png"); }

.hero {
  display: block;
  width: 100%;
  background-size: 100%; }
  .hero.procore {
    background-image: url("/procore/images/procore_hero.png");
    padding-bottom: 50%; }
  .hero.bake450 {
    background-image: url("/bake/images/bake450_hero.png");
    padding-bottom: 50%; }
  .hero.nomrex {
    background-image: url("/nomrex/images/nomrex_hero.png");
    padding-bottom: 70%; }
  .hero.bk {
    background-image: url("/bk/images/bk_hero.png");
    padding-bottom: 70%; }
  .hero.bk2 {
    background-image: url("/bk2/images/bk2_hero.png");
    padding-bottom: 77.5%; }
  .hero.ppp {
    background-image: url("/ppp/images/ppp_hero.png");
    padding-bottom: 77.5%; }
  .hero.memolane {
    background-image: url("/memolane/images/memolane_hero.png");
    padding-bottom: 70%; }
  .hero.bnet-redesign {
    background-image: url("/recent-projects/bnet-redesign/images/bnet-redesign-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-pdgs {
    background-image: url("/recent-projects/bnet-pdgs/images/bnet-pdgs-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-ui-library {
    background-image: url("/recent-projects/bnet-ui-library/images/bnet-shop-ui-library-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-sales-promos {
    background-image: url("/recent-projects/bnet-sales-promos/images/bnet-shop-sales-promos-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-shop-discovery {
    background-image: url("/recent-projects/bnet-shop-discovery/images/bnet-shop-discovery-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-ui-library {
    background-image: url("/recent-projects/bnet-ui-library/images/bnet-shop-ui-library-hero.png");
    padding-bottom: 70%; }
  .hero.bnet-personas {
    background-image: url("/recent-projects/bnet-personas/images/bnet-personas-hero.png");
    padding-bottom: 70%; }

/*=== Trigger  ===*/
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animate-half {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animate-quarter {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s; }

.two {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.three {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.four {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s; }

/*=== Animations start here  ===*/
/*=== FADE IN  ===*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

/*=== ROTATE ===*/
@-webkit-keyframes rotateIn {
  from {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rotateIn {
  from {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

/*=== ROTATE IN DOWN ===*/
@-webkit-keyframes rotateInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) rotate(360deg);
    transform: translate3d(0, -100%, 0) rotate(360deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rotateInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) rotate(360deg);
    transform: translate3d(0, -100%, 0) rotate(360deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rotateInDown {
  -webkit-animation-name: rotateInDown;
  animation-name: rotateInDown; }

/*=== FADE IN DOWN ===*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }
