#rotate-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto;
  fill: #18181a;
}

.block-orientation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left 0;
  background-color: white;
  z-index: 5000;
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width : 1023px) and (orientation : landscape){

  .block-orientation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left 0;
    background-color: white;
    z-index: 5000;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }


}

/*----------  ENTIRE SITE STYLES  ----------*/

.sr .slide { visibility: hidden; }

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
     margin-left: auto;
    margin-right: auto;
}

::selection {
  color:#CCC;
}

::-moz-selection {
  color:#CCC;
}

body,td,th { 
  margin: 0; 
  padding: 0;
  overflow-x: hidden;
  cursor: default;
  font-family: 'PostGrotesk', arial, sans-serif; 
  font-size: 16px;
  color: #18181a;
}
    @media (max-width : 480px) {
      body,td,th { 
        font-size: 11px;
      }
    }

    @media (min-width : 481px and max-width : 1024px) {
      body,td,th { 
        font-size: 12px;
      }
    }

p {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.text p {
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

a:link {
  color: #18181a;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: #18181a;
}

a:hover {
  text-decoration: none;
  color: #b9a479;
}

a:active {
  text-decoration: none;
  color: #333333;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

h1 {
  font-family: 'PostGrotesk', arial, sans-serif; 
  font-size: 2em;
  line-height: 1.4em;
  font-weight: normal;
  padding-bottom: .5em;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

    @media (max-width : 960px) {
      h1 {
        font-size: 1.75em;
      }
    }

.intro {
  padding-bottom: 5vh;
}

ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 40px;
}
    @media (max-width : 320px) {
      ul {
        -webkit-padding-start: 20px;
      }
    }

li {
  padding-bottom: 0.5em;
}

strong {
  display: inline-block;
  font-weight: normal;
}

strong:after {
  content: '';
  display: block;
  background: #18181a;
  height: 2px;
  width: 100%;
  position: relative;
  bottom: .05em;
  left: 0;
  opacity: 1;  
}

.reveal {
  opacity: 0;
}

.fadeSlideUp {
  animation: fadeSlideUp ease 1s forwards;
  -webkit-animation: fadeSlideUp ease 1s forwards;
  -moz-animation: fadeSlideUp ease 1s forwards;
  -o-animation: fadeSlideUp ease 1s forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.9;
  }
}
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
      transform:translateY(-100%);
  }
  100% {
    opacity: 0.9;
      transform:translateY(0);
  }
}
@keyframes navSlide {
  0% {
        opacity: 0;
      transform:translateY(-50%);
  }
  100% {
    opacity: 1;
      transform:translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
      transform:translateY(100%);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
      transform:translateY(0);
  }
}

/*----------  HEADER/NAV STYLES  ----------*/

#header {
  max-width: 1540px;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 99999988;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width : 480px) {
  #header {
    max-width: 1540px;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
    z-index: 99999988;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
  }
}

#header-blog {
  max-width: 1540px;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding-top: 30px;
  padding-left: 35px;
  padding-right: 35px;
  z-index: 99999988;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
}

.logo-container {
  float: left;
  cursor: pointer;
}

/* a.logo-container {
  color: #18181a;
  text-decoration: none;
} */

.logo {
  font-size: 2.5em;
  line-height: 0.8em;
  letter-spacing: 0;
  float: left;
  width: auto;
  position: relative;
  z-index: 1000;
}

.logo-left {
  float: left;

}

.logo .left {
  font-size: inherit;
  float:left; 
  font-family: 'PostGrotesk', arial, sans-serif; 
}

.logo .right {
  font-size: inherit;
  float:left; 
  height:auto;
  padding-top:0.5em; 
  padding-left:0.2em;
}

.logo .middle {
  font-size: inherit;
  float:left; 
  height:auto;
  opacity: 1;
}  

.middle {
  animation: show .3s ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transform-origin: center bottom;
}

@keyframes show {
  100% {
    display: block;
    opacity: 1;
  }
  50% {
    opacity: 0;
    font-size: inherit;
  }
  0% {
    display: none;
    font-size: 0;
    opacity: 0;
  }
}

.hide {
  opacity: 0;
  animation: remove .3s ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transform-origin: center bottom;
}

@keyframes remove {
  0% {
    display: block;
    font-size: inherit;
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    display: none;
    font-size: 0;
    opacity: 0;
  }
}

.navigation {
  display: block;
  display: flex;
  width: 50%;
  padding-right: 50px;
  line-height: 4em;
  font-size: 1.2em;
  height: auto;
  float: right;
}
    @media (max-width : 1200px) {
      .navigation {
        display: none;
      }
    }

.navigation-min {
  display: block;
  position: absolute;
  right: 35px;
  width: 26px;
  margin-right: 14px;
  line-height: 4em;
  height: 4em;
  z-index: 999;
  visibility: hidden;
}
    @media (max-width : 1200px) {
      .navigation-min {
        display: none;
      }
    }

.navigation-mobile {
  display: none;
  position: absolute;
  right: 35px;
  width: 26px;
  margin-right: 0px;
  line-height: 3em;
  height: auto;
  z-index: 999;
  cursor: pointer;
  transform: scale(1);
  -ms-transform-origin: top; 
  -webkit-transform-origin: top;
  transform-origin: top;
}

    @media (max-width : 1200px) {
      .navigation-mobile {
        display: block;
        transform: scale(1);
      }
    }

    @media (max-width : 480px) {
      .navigation-mobile {
        display: block;
        position: absolute;
        right: 35px;
        width: 26px;
        margin-right: 0px;
        line-height: 3em;
        height: auto;
        z-index: 999;
        float: right;
        cursor: pointer;
        transform: scale(.71);
        -ms-transform-origin: top; 
        -webkit-transform-origin: top;
        transform-origin: top;
      }
    }

.navigation-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  z-index: 50;
}

    @media (max-width : 1200px) {
      .navigation-overlay {
        display: none;
      }
    }    

.navigation-overlay .nav {
  text-align: center;
  clear: both;
  width: 100%;
  line-height: 2.5em;
  font-size: 1.75em;
}

.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.animated.navigation-min {
   animation-duration: .3s;
  -webkit-animation-duration: .3s;
  -moz-animation-duration: .3s;
  -o-animation-duration: .3s;
}

header#header.animated{
   animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;  
  -o-animation-duration: 3s;
   animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
}

header#header-blog.animated{
   animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;  
  -o-animation-duration: 3s;
   animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
}

.navigation-min:hover {
  cursor: pointer;
}

.slideInDown, .slideOutUp, .slideInRight, .slideOutRight, .flipInX, .flipOutX, .fadeOutUp, .fadeInDown {
  visibility: visible;
}

.nav {
  width: auto;
  height: auto;
  float: left;
  margin-left: 0;
  text-align: left;
  cursor: pointer; cursor: hand;
} 

rect {
  fill: #18181a;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; 
}

svg {
  overflow: visible;
  width: 20px;
  height: 50px; 
}

.boom .top {
  -webkit-transform: translateX(26px) translateY(4px) rotate(45deg);
  -moz-transform: translateX(26px) translateY(4px) rotate(45deg);
  -ms-transform: translateX(26px) translateY(4px) rotate(45deg);
  -o-transform: translateX(26px) translateY(4px) rotate(45deg);
  transform: translateX(26px) translateY(4px) rotate(45deg); 
}

.boom .bottom {
  -webkit-transform: translateX(-23px) translateY(17px) rotate(-45deg);
  -moz-transform: translateX(-23px) translateY(17px) rotate(-45deg);
  -ms-transform: translateX(-23px) translateY(17px) rotate(-45deg);
  -o-transform: translateX(-23px) translateY(17px) rotate(-45deg);
  transform: translateX(-23px) translateY(17px) rotate(-45deg); 
}

/*----------  BACK TO TOP STYLES  ----------*/

.backtotop {
  max-width: 1440px;
  width: 100%;
  height: 100px;
  position: relative;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding-bottom: 50px;
  padding-left: 35px;
  padding-right: 35px;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width : 1200px) {
    .backtotop {
      max-width: 1440px;
      width: 100%;
      height: 130px;
      position: relative;
      bottom: 0px;
      left: 0px;
      right: 0px;
      padding-bottom: 80px;
      padding-left: 35px;
      padding-right: 35px;
      text-align: center;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: moz-none;
      -ms-user-select: none;
      user-select: none;
    }
  }  

.arrow {
  width: 50px;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition-delay: 2s;
  -moz-transition-delay: 2s;
  -ms-transition-delay: 2s;
  transition-delay: 2s;
}

    @media (max-width : 480px) {
      .arrow {
          transform: scale(.71) translateX(0%);
          -moz-transform: scale(.71) translateX(0%);
          -webkit-transform: scale(.71) translateX(0%);
          -ms-transform: scale(.71) translateX(0%);

          -webkit-transition-delay: 0s;
          -moz-transition-delay: 0s;
          -ms-transition-delay: 0s;
          transition-delay: 0s;
      }
    }

.arrow #arrow {
  position: absolute;
  margin: 0 auto;  
  margin-left: 0; 
  fill: none;
  stroke: #18181a; 
  stroke-width: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;

  -ms-transform-origin: center;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.arrow:hover #arrow {
  width: 25px;
  margin: 0 auto;
  margin-left: -2.5px;
  stroke: #b9a479;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 

  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;

  -ms-transform-origin: center;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.arrow #circle {
  stroke: #18181a;
  stroke-width: 3; 
  fill: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; 

  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;  
}

.arrow:hover #circle {
  stroke: white;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 

  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s; 
}

/*----------  DOWN TO ENTER STYLES  ----------*/

.downwards {
    transform: rotate(180deg) translateX(0%);
    -moz-transform: rotate(180deg) translateX(0%);
    -webkit-transform: rotate(180deg) translateX(0%);
    -ms-transform: rotate(180deg) translateX(0%);
    -ms-transform-origin: center;
    -webkit-transform-origin: center;
    transform-origin: center;

    position: absolute;
    bottom: 80px;
    left: calc(50% - 10px);
    width: auto;

    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s; 
}

    @media (max-width : 480px) {
      .downwards {
          transform: scale(.71) rotate(180deg) translateX(0%);
          -moz-transform: scale(.71) rotate(180deg) translateX(0%);
          -webkit-transform: scale(.71) rotate(180deg) translateX(0%);
          -ms-transform: scale(.71) rotate(180deg) translateX(0%);
      }
    }



.downwards.animated{
   animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
   animation-delay: 5s;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  -o-animation-delay: 5s;

}

/*----------  FOOTER STYLES  ----------*/

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 200px;
  z-index: -2;
  background-color: #b9a479;
}

.contactfooter {
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom: 35px;
  line-height: 1.6em;
  font-size: 1.2em;
  float: left;
}

@media (min-width : 480px) {

  .contactfooter {
    width: 100%;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 55px;
    line-height: 1.6em;
    font-size: 1.2em;
    float: left;
  }
}

@media (min-width : 1200px) {

  .contactfooter {
    width: 100%;
    margin: 0 auto;
    padding-top: 55px;
    padding-bottom: 55px;
    line-height: 1.6em;
    font-size: 1.2em;
    float: left;
  }
}

.contactfooter .col1, .col2, .col3, .col4 {
  float: left;
  width: 33.3%;
  padding-bottom: 0px;
}

.contactfooter .col3 .heading {
  display: block;
}

    @media (max-width : 1200px) {
      .contactfooter .col1, .col2, .col3, .col4 {
        width: 100%;
        text-align: left;
        padding-top: 30px;
        padding-bottom: 0px;
      }
      .contactfooter .col3 .heading {
        display: none;
      }      
    }

    @media (max-width : 480px) {
      .contactfooter .col1, .col2, .col3, .col4 {
        width: 100%;
        text-align: left;
        padding-top: 30px;
        padding-bottom: 0px;
      }
      .contactfooter .col3 .heading {
        display: none;
      }      
    }

.contactfooter a:hover {
  text-decoration: none;
  color: #FFF;
}

.contactfooter-center {
  margin: 0 auto;
  max-width: 960px;
  width: 80%;
}

/*----------  CONTAINER STYLES  ----------*/

  
#site-wrapper {
  margin-bottom: 200px;
  z-index: 1;
}

    @media (max-width : 1200px) {
      #site-wrapper {
        margin-bottom: 465px;
      }
    }  

    @media (max-width : 480px) {
      #site-wrapper {
        margin-bottom: 320px;
      }
    }

#projectwrapper, #blogwrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: white;
}
  
.responsive-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-color: white;
}
  
.dummy {
  padding-top: 100vh; 
}
  
.img-container { 
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  text-align:center; /* Align center inline elements */
  font: 0/0 a;
}
  
.img-container:before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.img-container img {
  vertical-align: middle;
  display: inline-block;
}

.contact-container {
  width: 80%;
  max-width: calc(800px + 80px);
  height: calc(100vh - 200px);
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: table;
  text-align: center;
}

  @media (min-width : 480px) {
    .contact-container {
      width: 80%;
      max-width: calc(800px + 80px);
      height: calc(100vh - 200px);
      padding-top: 5vh;
      padding-bottom: 5vh;
      display: flex;
      justify-content: center;
      text-align: center;
    }    
  }

  @media (min-width : 1200px) {
    .contact-container {
      width: 80%;
      max-width: calc(800px + 80px);
      height: calc(100vh - 370px);
      padding-top: 5vh;
      padding-bottom: 5vh;
      display: flex;
      justify-content: center;
      text-align: center;
    }
  }  

.text-container { 
  width: 80%;
  max-width: 960px;
  height: 100vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: table;
  text-align: center;
}
    @media (max-width : 480px) {
      .text-container { 
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
      }
    }

.text-container > .text, .text-container > .blog-text {
    display: table-cell;
    vertical-align: middle;
}

.form {
    height: 100%;
    margin: 0 auto;
    font-family: 'PostGrotesk', arial, sans-serif; 
    font-size: 1.3em;
    line-height: 1.45em;    
}

@media (min-width: 481px) {
  .form {
      height: auto;
      margin: 0 auto;
      font-family: 'PostGrotesk', arial, sans-serif; 
      font-size: 1.5em;
      line-height: 1.45em;
      align-self: center; 
  }
}  

.text {
  height: 100%;
  margin: 0 auto;
  font-family: 'PostGrotesk', arial, sans-serif; 
  font-size: 1.3em;
  line-height: 1.45em;
}

@media (min-width: 481px) {
  .text {
    height: 100%;
    margin: 0 auto;
    font-family: 'PostGrotesk', arial, sans-serif; 
    font-size: 1.5em;
    line-height: 1.45em;
  }
}  

@media (min-width : 1600px) {  
  .text {
    height: 100%;
    margin: 0 auto;
    font-family: 'PostGrotesk', arial, sans-serif; 
    font-size: 1.5em;
    line-height: 1.4em;
  }
}


.blog-text {
  height: 100%;
  margin: 0 auto;
  font-family: 'PostGrotesk', arial, sans-serif; 
  line-height: 1.4em;
  font-size: 1.4em;
  text-align: left;
}

.blog-text p {
  padding-top: 1.25em;
}

.title {
  max-width: 800px; 
  font-size: 1.35em;
  line-height: 1.3em;
  color:  #b9a479;
}

.alignleft {
  max-width: 800px;  
  text-align: left;
  padding-bottom: 3em;
}

.aligncenter {
  max-width: 800px;
  text-align: center;
}

.wrap {
  padding-bottom: 1em;
}

.column {
  max-width: 800px;  
}

.colleft {
  width: 25%;
  padding-left: 5%;
  padding-right: 5%;
  float: left;
  text-align: left;
}
    @media (max-width : 480px) {
      .colleft {
        width: 100%;
        padding-left: 0%;
        text-align: center;
      }
    }

.colright {
  width: 75%;
  /*padding-left: 5%;*/
  padding-right: 5%;
  float: left;
  text-align: left;
}
    @media (max-width : 480px) {
      .colright {
        width: 100%;
        text-align: center;
      }
    }

.list {}    

.list1, .list2, .list3 {
  width: 50%;
  padding-right: 0%;
  float: left;
  text-align: left;
  padding-top: 0em;
}
    @media (max-width : 480px) {     
      .list1, .list2, .list3 {
        width: 100%;
      }
    }


/*----------  BLOG STYLES  ----------*/

  
.blog-container { 
  width: 80%;
  max-width: 960px;
  height: auto;
  padding-top: 20vh;
  padding-bottom: 10vh;
  display: table;
  text-align: center;
}

    @media (max-width : 480px) {
      .blog-container { 
        width: 100%;
        padding-left: 35px;
        padding-right: 35px;
      }
    }

.blog-container > .text {
    display: table-cell;
    vertical-align: middle;
}
.blog-container h1 {
  text-align: left;
}
.blog-container .text {
  text-align: left;
  padding-top: .5em;
}
.blog-container img {
  width: 100%;
}
li.cover-image {
  list-style: none;
  height: auto;
  width: 100%;
}
li.cover-image .animated {
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
}
.blog-container ul {
/*  float: left;*/
  text-align: left;
  /*font-size: 1.5em;*/
  /*line-height: 1.4em;*/
  /*list-style: none;*/
  width: 100%;
  padding: 1em 0 0;
}
nav#pager {
  float: left;
  width: 100%;
  padding-top: 5em;
}
.blog-container li.previous-post {
  float: left;
  width: 50%;
}
.blog-container li.next-post {
  float: right;
  width: 50%;
  text-align: right;
}

article.animated {
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
   animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
}

article.posts {
  /*min-height: 100vh;*/
  padding-bottom: 10vh;
}

.archive-container { 
  width: 80%;
  max-width: 960px;
  height: auto;
  padding-top: 0;
  padding-bottom: 10vh;
  display: table;
  text-align: center;
}

/*----------  BLOG POST STYLES  ----------*/

nav#post-footer {
  padding-top: 1.55em;
  padding-bottom: 1.55em;
  font-size: 1.2em;
  line-height: 1.55em;
  height: auto;
  width: 100%;
  float: left;
  opacity: 0;
}
nav#post-footer.animated {
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
}
.datetime {
  float: left;
/*  width: auto;
  margin-right: .25em; */

  width: 50%;
  text-align: left;
}
.author {
  float: left;
/*  width: auto;  
  margin-right: .25em; */
  clear: none;

  width: 50%;
  text-align: left;
}
.tags {
  float: left;
  width: auto;
  margin-right: .25em;
  position: absolute;
  left: 50%;
  padding-top: 1.55em;
  text-transform: lowercase;
}
.tags ul {
  float: left;
  width: auto;
  font-size: inherit;
  line-height: inherit;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tags ul > li {
  display: inline;
  padding: 0;
  margin: 0;
}
.tags li {
  display: inline-block;
}
.tags li:not(:last-child)::after { 
  content: ","; 
  margin-left: -.25em;
}
.tags li:last-child::after { 
  content: none; 
  margin-left: -.25em;
}

.category {
  float: left;
  width: auto;
  margin-right: .25em
}

/*----------  BLOG (ARCHIVE) STYLES  ----------*/


@media (min-width : 801px) {

  #tags, #categories, #dates, #authors {
    float: left;
    width:  25%;
  }

  header.archive {
    width: auto;
    float: left;
    margin-right: 1em;
  }

  header.archive-year {
    padding-bottom: 2em;
  }

  section#archives {
    display: none;
  }

}

@media (max-width : 800px) {



}

