/* Reset */
@import "reset.css";

/* Google Font: Fira Sans*/
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');


:root {
  --font-family: 'Fira Sans', sans-serif;
  --font-size: 1em;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --section-padding: 30px;
  --background-color: #222830;
  --color: #F8F7EF;
}


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

/**/
*:focus {
    outline: 0 !important;
}

html, body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight-light);
  background: var(--background-color);
  color: var(--color) !important;
  position: relative;
}

body.active {
  overflow: hidden;
}

button {
  border-style: none;
  background: transparent;
  color: var(--color);
  position: relative;
  font-family: var(--font-family);
  padding: 0;
}
input[type="button"] {
   outline: 0;
   border: 0;
}
input[type="button"]::-moz-focus-inner {
  outline: 0;
  border: 0;
}
input[type="button"]:active {
  outline: 0;
  border: 0;
}
/* Helper Rulesets */

a {
  text-decoration: none;
  color: var(--color);
}

.row {
  display: flex;
  flex-wrap: wrap;
}

[class*="col-"] {
  display: block;
  width: 100%;
}

.margin-top-520 { margin-top: 520px; }
.margin-top-420 { margin-top: 420px; }
.margin-top-320 { margin-top: 320px; }
.margin-top-120 { margin-top: 120px; }
.margin-top-100 { margin-top: 100px; }
 .margin-top-80 { margin-top: 80px;  }
 .margin-top-60 { margin-top: 60px;  }
 .margin-top-40 { margin-top: 40px;  }
 .margin-top-20 { margin-top: 20px;  }

.margin-bottom-120 { margin-bottom: 120px; }
.margin-bottom-100 { margin-bottom: 100px; }
 .margin-bottom-80 { margin-bottom: 80px;  }
 .margin-bottom-60 { margin-bottom: 60px;  }
 .margin-bottom-40 { margin-bottom: 40px;  }
 .margin-bottom-20 { margin-bottom: 20px;  }
 .margin-bottom-10 { margin-bottom: 10px;  }

.margin-left-120 { margin-left: 120px; }
.margin-left-100 { margin-left: 100px; }
 .margin-left-80 { margin-left: 80px;  }
 .margin-left-60 { margin-left: 60px;  }
 .margin-left-40 { margin-left: 40px;  }
 .margin-left-20 { margin-left: 20px;  }

.margin-right-120 { margin-right: 120px; }
.margin-right-100 { margin-right: 100px; }
 .margin-right-80 { margin-right: 80px;  }
 .margin-right-60 { margin-right: 60px;  }
 .margin-right-40 { margin-right: 40px;  }
 .margin-right-20 { margin-right: 20px;  }

h1 { font-size: 3.0rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2.0rem; }
h4 { font-size: 1.5rem; }

.pre-content {
  width: 100%;
  position: absolute;
 }
  .pre-content .construction {
    height: 1em;
    background: var(--color);
    color: var(--background-color);
    font-size: .75em;
  }
  header {
    display: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .m-header {
    display: none;
    width: 100%;
  }
    .m-header .bar {
      position: relative;
    }
    .m-header .menu-options {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
    }
      .m-header .menu-options .option{
        display: block;
      }
        .m-header .menu-options .option .link{
          display: block;
          padding: 20px;
          font-weight: var(--font-weight-semi-bold);
          font-size: 1.1rem;
        }

  .l-header {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: center;
    align-items: center;
    padding: 25px;
    min-height: 50px;
  }
    .l-header .r-side .menu-options .option .link{
      font-weight: var(--font-weight-semi-bold);
      font-size: .9em;
      position: relative;
    }
      .l-header .r-side .menu-options .option .link::before {
        position: absolute;
        content: '';
        width: 0;
        bottom: 0;
        left: 0;
        height: 2px;
        background: var(--color);
        margin-top: 4px;
        transition: width .2s ease-in-out;
      }
        .l-header .r-side .menu-options .option:hover .link::before {
          width: 100%;
        }
footer {
    transition: all .3s ease-in-out;
}

.page-title {
  font-weight: 900;
  margin: 30px 0;
}

.blog-post-item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.blog-post-detail {
  font-family: 'Roboto', sans-serif;
}

.blog-post-item .item__author {
  font-size: .75rem;
  margin-bottom: 10px;
}

.blog-post-item .item__date {
  position: absolute;
  left: 0;
  font-size: .75rem;
  margin-bottom: 10px;
  background: rgba(255,255,255,.8);
  color: #000000;
  padding: .8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.blog-post-item .item__title {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 900;
}

.blog-post-item .item__caption {
  font-size: 1rem;
  line-height: 15px;
}

.blog-post-item .blog-post-img {
  margin-right: 20px;
  margin-bottom: 20px;
}
.blog-post { 
  max-width: 100%;
}

.blog-post .post-img-container {
  width: 100%;
}

.blog-post .post-img-container .post-img{
 max-width: 100%;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  .page_title { 
    margin: 20px 0 20px 0;
    font-size: 5rem;
    font-weight: 500;
    margin-left: -30px;
  }

  .text_center {
    font-size: 1.35rem;
    font-weight: 200;
    line-height: 28px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }


  .col-xs-12 { flex: 0 0 100.00%; }
  .col-xs-11 { flex: 0 0 91.666%; }
  .col-xs-10 { flex: 0 0 83.333%; }
  .col-xs-9  { flex: 0 0 75.000%; }
  .col-xs-8  { flex: 0 0 66.666%; }
  .col-xs-7  { flex: 0 0 58.333%; }
  .col-xs-6  { flex: 0 0 50.000%; }
  .col-xs-5  { flex: 0 0 41.666%; }
  .col-xs-4  { flex: 0 0 33.333%; }
  .col-xs-3  { flex: 0 0 25.000%; }
  .col-xs-2  { flex: 0 0 16.666%; }
  .col-xs-1  { flex: 0 0  8.333%; }

  section {
    padding: var(--section-padding);
    /* border-bottom: 1px #7a7a7a dashed; */
  }

  header {
    display: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }



  .l-header { display: none; }

  .m-header {
    display: block;
    padding: 10px 20px;
    position: fixed;
    background: var(--background-color);
    z-index: 999;
    transition: all .3s ease-in-out;
    /* border-bottom: 1px #7a7a7a dashed; */
    overflow: hidden;
    height: 50px;
  }
    .m-header .bar .m-header-arrow {
      position: absolute;
      top: calc(50% - 7px);
      left: calc(100% - 10px);
      transform: translate(-50%, calc( 100% - 10px )) rotate(45deg);
      content: ' ';
      border: solid #465061;
      border: solid var(--color);
      border-width: 0 1.5px 1.5px 0;
      display: inline-block;
      padding: 5px;
      cursor: pointer;
      transition: transform .2s ease-in-out;
    }
    .m-header .bar .m-header-arrow.active{
      transform-origin: 30% 85%;
      transform: rotate(225deg);
    }
    .m-header.height{
      height: 50px;
      overflow: hidden;
      transition: all .3s ease-in-out;
    }

    .about {
      font-size: 1.3rem;
    }
    
    .m-header.active{
      height: 50%;
      transition: all .3s ease-in-out;
    }
    footer {
      position: relative;
      background: var(--background-color);
      transition: height .3s ease-in-out;
    }
    footer.active {
      height: 50%;
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: 999;
    }

  .intro {
    font-size: 1.3rem;
    line-height: 26px;
  }

  .skill-description {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
    .accordian {
      width: 100%;
      text-align: left;
      padding: 10px;
      cursor: pointer;
      outline: none;
      transition: .4s;
      position: relative;
      -webkit-animation: fade 5s 1; /* Safari 4+ */
      -moz-animation:    fade 5s 1; /* Fx 5+ */
      -o-animation:      fade 5s 1; /* Opera 12+ */
      animation:         fade 5s 1; /* IE 10+, Fx 29+ */

    }
    .accordian::after{
      width: 100%;
      position: relative;
    }

      .accordian .superscript {
        position: absolute;
        font-size: 1.20rem;
        font-weight: 200;
        top: 12px;
      }

      .accordian .title {
        font-size: 1.58rem;
        font-weight: 600;
        margin-left: 28px;
        margin-right: 30px;
        position: static;
      }
        .accordian .accordian-arrow{
          display: block;
          position: absolute;
          top: calc(50% + 3px);
          right: 0;
          transform: translate(-50%,-50%);
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 6px 6px 0 6px;
          border-color: var(--color) transparent transparent
        }
        .accordian .accordian-arrow.active{
          /* transform: rotate(50deg); */
        }
        .accordian .title .link {
          position: relative;
        }
        .accordian .title .link::after {
          position: absolute;
          content: '';
          width: 0;
          bottom: 0;
          left: 0;
          height: 3px;
          background: var(--color);
          margin-top: 3px;
          transition: width .2s ease-in-out;
        }
        .accordian .title:hover .link::after {
          width: 100%;
        }

    .panel {
      padding: 0 35px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease-out;
      position: relative;
    }

    .panel.active { }
      p {
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 1.1rem;
        line-height: 23px;
      }
    /**/

    .section-title {
      font-size: 2.5em;
      font-weight: var(--font-weight-bold);
    }
    .aside {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-size: 1em;
    }
      .aside img {

      }

      /* FEATURED WORK SECTION */
      #featured-work { }

      .work .work-img img {
        max-width: 100%;
      }


      .work .work-window {
        position: relative;
        min-height: 300px;
      }

      #featured-work .work .work-window .video {
        position: absolute;
        max-width: 100%;
      }

      #featured-work .work .work-desc {
        margin-top: 20px;
      }
      /* FEATURED WORK SECTION */

      /******START OF WORK PAGE *******/
      /* FEATURED WORK SECTION */
      #work {  }

      #work .work { margin-bottom: 30px;  }

      #work .work .work-img img {
        max-width: 100%;
      }


      #work .work .work-window {  
        position: relative;
        min-height: 300px;
      }

      .work .work-window .video {
        position: absolute;
        max-width: 100%;
      }

      .work .work-desc {
        margin-top: 20px;
      }
      
      /* FEATURED WORK SECTION */
      /******END OF WORK PAGE *********/

      /* WORK PAGE */

      #section-img {
        position: relative;
        overflow: hidden;
        max-height: 250px;
      }

      #section-img .img{
        height: 700px;
      }

      #section-img img{
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
      }

      #intro h6{
        margin-top: 40px;
        font-size: 1rem;
      }

      #intro h2{
        font-size: 1.5rem;
      }

      /* ASK */
      #ask {
        padding: 50px;
        max-height: 400px;
      }

      /* .center-squeeze {
        width: calc(100% - 500px);
        margin: 0 auto;
      }

      .center-squeeze .title-text {
        font-size: 2rem;
        font-weight: 900;
      } */

      .center-squeeze .reg-text{
        font-size: .99rem;
        line-height: 22px;
      }
      /* ASK */

      /* WORK */
      #work {

      }

      #work .work-bg {
        display: none;
      }

      #work .work-bg .center-squeeze {
        max-width: calc(100%);
      }

      #work .work-bg .work {
        border: 1px solid #f7f7f7;
        border-radius: 10px;
        overflow: hidden;
        max-height: 600px;
      }

      #work .work-bg .work .frame {
        display: flex;
        padding: 10px;
        align-items: center;
        /* background: #f7f7f7; */
        border-bottom: 1px solid #f7f7f7;
        height: 25px;
      }

      #work .work-bg .work .frame .btn {
        height: 13px;
        width: 13px;
        border-radius: 50%;
        border: 1px solid #f7f7f7;
      }

      #work .work-bg .work .frame .exit-btn {
        background: red;
      }
      #work .work-bg .work .frame .yellow-btn {
        background: #ffca33;
        margin-left: 7px;
      }
      #work .work-bg .work .frame .minimize-btn {
        background:  #93ff33;
        margin-left: 7px;
      }

      #work .work-bg .work .page { }
      /* WORK */

      /* WORK PAGE */

      /* CONTACT PAGE */
      #contact-info {
        margin-top: 50px;
      }
      #contact-photo {
        position: relative;
        margin-top: 30px;
        height: 250px;
        overflow-y: hidden;
      }
      #contact-info h4 {
        margin-top: 7px;
        color: #ccc;
        font-weight: 200;
      }
      #contact-photo .contact-img {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
      }

      .about {
        font-size: 1.3rem;
      }
      /* CONTACT PAGE */

    footer {
      padding: 30px;
      overflow: hidden;
    }
    footer .row .col-xs-12 .self-description {
      font-size: .99em;
      font-weight: var(--font-weight-light);
      line-height: 22px;
    }
    footer .row .col-xs-6 .spot {
      font-size: .8em;
      line-height: 19px;
    }
      footer .row .col-xs-6 .spot .city{
        font-weight: 600;
      }
    footer .closure {
      font-size: .8em;
      line-height: 19px;
      margin: 50px 0 0 0;
    }

    .blog-post-item .item__img {
      max-width: 100%;
      margin-bottom: 10px;
    }

    .blog-post-title {
      font-weight: 800;
      margin-top: 30px;
    }
  
    .blog-post__container {
      margin: 0 auto;
    }
  
    .blog-post__container img{
      max-width: 100%;
    }
  
    .blog-post__container .blog-text__container {
      font-family: 'Roboto', sans-serif;
      max-width: calc(100% - 30px);
      margin: 0 auto;
    }
  
    .blog-post__container .blog-text__container p {
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 28px;
      margin-top: 50px;
    }
  
    .blog-post__author {
      font-family: 'Roboto', sans-serif;
      font-size: .8rem;
      margin-top: 10px;
    }
  
    .blog-post__date {
      font-family: 'Roboto', sans-serif;
      font-size: .8rem;
      margin-top: 10px;
    }
  
    .blog-post__img {
      margin-top: 10px;
    }

    @-webkit-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-moz-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-o-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

  .page_title,
  .section_title { 
    margin: 20px 0 20px 0;
    font-size: 8.5rem;
    font-weight: 500;
    margin-left: -70px;
  } 
  .text_center {
    font-size: 1.35rem;
    font-weight: 200;
    line-height: 28px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }   

  .col-s-12 { flex: 0 0 100.00%; }
  .col-s-11 { flex: 0 0 91.666%; }
  .col-s-10 { flex: 0 0 83.333%; }
  .col-s-9  { flex: 0 0 75.000%; }
  .col-s-8  { flex: 0 0 66.666%; }
  .col-s-7  { flex: 0 0 58.333%; }
  .col-s-6  { flex: 0 0 50.000%; }
  .col-s-5  { flex: 0 0 41.666%; }
  .col-s-4  { flex: 0 0 33.333%; }
  .col-s-3  { flex: 0 0 25.000%; }
  .col-s-2  { flex: 0 0 16.666%; }
  .col-s-1  { flex: 0 0  8.333%; }

  .margin-s-top-520 { margin-top: 520px; }
  .margin-s-top-420 { margin-top: 420px; }
  .margin-s-top-320 { margin-top: 320px; }
  .margin-s-top-120 { margin-top: 120px; }
  .margin-s-top-100 { margin-top: 100px; }
   .margin-s-top-80 { margin-top: 80px;  }
   .margin-s-top-60 { margin-top: 60px;  }
   .margin-s-top-40 { margin-top: 40px;  }
   .margin-s-top-20 { margin-top: 20px;  }

  .margin-s-bottom-120 { margin-bottom: 120px; }
  .margin-s-bottom-100 { margin-bottom: 100px; }
   .margin-s-bottom-80 { margin-bottom: 80px;  }
   .margin-s-bottom-60 { margin-bottom: 60px;  }
   .margin-s-bottom-40 { margin-bottom: 40px;  }
   .margin-s-bottom-20 { margin-bottom: 20px;  }
   .margin-s-bottom-10 { margin-bottom: 10px;  }

  .margin-s-left-120 { margin-left: 120px; }
  .margin-s-left-100 { margin-left: 100px; }
   .margin-s-left-80 { margin-left: 80px;  }
   .margin-s-left-60 { margin-left: 60px;  }
   .margin-s-left-40 { margin-left: 40px;  }
   .margin-s-left-20 { margin-left: 20px;  }

  .margin-s-right-120 { margin-right: 120px; }
  .margin-s-right-100 { margin-right: 100px; }
   .margin-s-right-80 { margin-right: 80px;  }
   .margin-s-right-60 { margin-right: 60px;  }
   .margin-s-right-40 { margin-right: 40px;  }
   .margin-s-right-20 { margin-right: 20px;  }

  /* CONTACT PAGE */
  #contact-photo {
    position: relative;
    padding-bottom: 0px;
    height: 600px;
    overflow-y: hidden;
  }
  #contact-info h4 {
    margin-top: 7px;
    color: #ccc;
    font-weight: 200;
  }
  #contact-photo .contact-img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  /* CONTACT PAGE */


  /* FEATURED WORK SECTION */

  .work .work-img img {
    max-width: 100%;
  }


  #featured-work .work .work-window {
    position: relative;
    min-height: 300px;
  }

  #featured-work .work .work-window .video {
    position: absolute;
    max-width: 100%;
  }

  #featured-work .work .work-desc {
    margin-top: 20px;
  }
  /* FEATURED WORK SECTION */

  #section-img {
    position: relative;
    overflow: hidden;
    max-height: 500px;
  }

  #section-img .img{
    height: 700px;
  }

  #section-img img{
    position: absolute;
    top: -60px;
    left: 0;
    max-width: 100%;
  }

  .blog-post-detail {
    font-family: 'Roboto', sans-serif;
    margin-top: 2rem;
  }
  
  .blog-post-item .item__author {
    font-size: .75rem;
    margin-bottom: 10px;
  }
  
  .blog-post-item .item__date {
    position: absolute;
    left: 0;
    font-size: .75rem;
    margin-bottom: 10px;
    background: rgba(255,255,255,.8);
    color: #000000;
    padding: .8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
  }

  .blog-post-item .item__img {
    max-width: 200px;
    margin-right: 2rem;
  }
  
  .blog-post-item .item__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 900;
  }
  
  .blog-post-item .item__caption {
    font-size: 1rem;
    line-height: 15px;
  }
  
  .blog-post-item .blog-post-img {
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .blog-post-title {
    font-weight: 800;
  }

  .blog-post__container {
    margin: 0 auto;
  }

  .blog-post__container img{
    max-width: 100%;
  }

  .blog-post__container .blog-text__container {
    font-family: 'Roboto', sans-serif;
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }

  .blog-post__container .blog-text__container p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    margin-top: 50px;
  }

  .blog-post__author {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    margin-top: 10px;
  }

  .blog-post__date {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    margin-top: 10px;
  }

  .blog-post__img {
    margin-top: 10px;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  .col-md-12 { flex: 0 0 100.00%; }
  .col-md-11 { flex: 0 0 91.666%; }
  .col-md-10 { flex: 0 0 83.333%; }
  .col-md-9  { flex: 0 0 75.000%; }
  .col-md-8  { flex: 0 0 66.666%; }
  .col-md-7  { flex: 0 0 58.333%; }
  .col-md-6  { flex: 0 0 50.000%; }
  .col-md-5  { flex: 0 0 41.666%; }
  .col-md-4  { flex: 0 0 33.333%; }
  .col-md-3  { flex: 0 0 25.000%; }
  .col-md-2  { flex: 0 0 16.666%; }
  .col-md-1  { flex: 0 0  8.333%; }

  .margin-lg-top-520 { margin-top: 520px; }
  .margin-lg-top-420 { margin-top: 420px; }
  .margin-lg-top-320 { margin-top: 320px; }
  .margin-lg-top-120 { margin-top: 120px; }
  .margin-lg-top-100 { margin-top: 100px; }
   .margin-lg-top-80 { margin-top: 80px;  }
   .margin-lg-top-60 { margin-top: 60px;  }
   .margin-lg-top-40 { margin-top: 40px;  }
   .margin-lg-top-20 { margin-top: 20px;  }

  .margin-lg-bottom-120 { margin-bottom: 120px; }
  .margin-lg-bottom-100 { margin-bottom: 100px; }
   .margin-lg-bottom-80 { margin-bottom: 80px;  }
   .margin-lg-bottom-60 { margin-bottom: 60px;  }
   .margin-lg-bottom-40 { margin-bottom: 40px;  }
   .margin-lg-bottom-20 { margin-bottom: 20px;  }
   .margin-lg-bottom-10 { margin-bottom: 10px;  }

  .margin-lg-left-120 { margin-left: 120px; }
  .margin-lg-left-100 { margin-left: 100px; }
   .margin-lg-left-80 { margin-left: 80px;  }
   .margin-lg-left-60 { margin-left: 60px;  }
   .margin-lg-left-40 { margin-left: 40px;  }
   .margin-lg-left-20 { margin-left: 20px;  }

  .margin-lg-right-120 { margin-right: 120px; }
  .margin-lg-right-100 { margin-right: 100px; }
   .margin-lg-right-80 { margin-right: 80px;  }
   .margin-lg-right-60 { margin-right: 60px;  }
   .margin-lg-right-40 { margin-right: 40px;  }
   .margin-lg-right-20 { margin-right: 20px;  }

  .l-header {
    padding: 20px 75px;
  }
    .l-header .sides {
      flex: 0 0 50%;
    }
      .l-header .r-side {
        display: flex;
        justify-content: flex-end;
      }
        .l-header .r-side .menu-options {
          display: flex;
        }
          .l-header .r-side .menu-options .option{
            margin-right: 45px;
          }
          .l-header .r-side .menu-options .option:last-of-type {
            margin-right: 0;
          }

  section {
    padding: 40px 75px;
    /* border-bottom: 1px #7a7a7a dashed; */
  }
  #contact-info {
    min-height: 70vh;
  }
  #contact-img {
    min-height: 40vh;
    overflow: hidden;
  }

  .float-right {
    float: right;
    align-items: flex-end;
  }

  /**/

  .greeting, .elevator-pitch {
    max-width: 400px;
    font-size: 1.3rem;
    line-height: 28px;
  }


  .accordian {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    outline: none;
    transition: .4s;
    position: relative;
    -webkit-animation: fade 5s 1; /* Safari 4+ */
    -moz-animation:    fade 5s 1; /* Fx 5+ */
    -o-animation:      fade 5s 1; /* Opera 12+ */
    animation:         fade 5s 1; /* IE 10+, Fx 29+ */

  }

    .accordian .superscript {
      position: absolute;
      font-size: 1.20rem;
      font-weight: 200;
      top: 22px;
    }

    .accordian .title {
      font-size: 4rem;
      font-weight: 600;
      margin-left: 28px;
      letter-spacing: 2px;
    }
      .accordian .title .accordian-arrow{
        display: block;
        position: absolute;
        top: calc(50% + 3px);
        right: -30px;
        transform: translate(-50%,-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: var(--color) transparent transparent
      }
      .accordian .title .link {
        position: relative;
      }
      .accordian .title .link::after {
        position: absolute;
        content: '';
        width: 0;
        bottom: 0;
        left: 0;
        height: 3px;
        background: var(--color);
        margin-top: 3px;
        transition: width .2s ease-in-out;
      }
      .accordian .title:hover .link::after {
        width: 100%;
      }

  .panel {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
  }
  .panel.active{
    max-height: 300px;
  }
    p {
      margin-top: 15px;
      margin-bottom: 30px;
      font-size: 1.3rem;
      line-height: 26px;
    }

    .section-title {
      font-size: 5.5rem;
      font-weight: var(--font-weight-bold);
    }

/* INDEX */

/* FEATURED WORK SECTION */
#featured-work { }

.work .work-img img {
  max-width: 100%;
}


.work .work-window {
  position: relative;
  min-height: 300px;
}

.work .work-window .video {
  position: absolute;
  max-width: 100%;
}

.work .work-desc {
  margin-top: 20px;
}
/* FEATURED WORK SECTION */

/* INDEX */



/* FEATURED WORK */
.work { max-width: 100%; margin-bottom: 30px; }
.work .work-img { 
  display: flex;
  justify-content: center;
  position: relative; 
}
.work .work-img video { position: absolute; top: 0; right: 0; max-height: 100%; max-width: 100%; }
.work .work-desc { margin-top: 20px; padding: 25px; }
.work .work-desc h4 { font-weight: 700; font-size: 1.7rem; }
.work img { max-width: 100%; }
/* FEATURED WORK */

/* CONTACT PAGE */
#contact-photo {
  position: relative;
  padding-bottom: 0px;
  height: 600px;
  overflow-y: hidden;
}
#contact-info h4 {
  margin-top: 7px;
  color: #ccc;
  font-weight: 200;
}
#contact-photo .contact-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}
/* CONTACT PAGE */

.about {
  width: calc(100% - 100px);
  font-size: 1.5rem;
}

  footer {
    padding: 40px 75px;
    overflow: hidden;
  }
  footer .row .col-xs-12 .self-description {
    font-size: 1.3rem;
    font-weight: var(--font-weight-light);
    max-width: 500px;
    line-height: 28px;
  }
  footer .row .col-xs-6 .spot {
    font-size: .8em;
    line-height: 19px;
  }
    footer .row .col-xs-6 .spot .city{
      font-weight: 600;
    }
  footer .spots {
    display: grid;
    justify-content: end;
    grid-template-columns: 170px 170px;
    grid-template-rows: 120px;
    grid-column-gap: 20px;
  }
    footer .spots .spot {
      padding: 10px;
      margin: 0;
    }
      footer .spots .spot .city,
      footer .spots .spot .address,
      footer .spots .spot .specific-city,
      footer .spots .spot .phone-number {
        line-height: 20px;
      }
  footer .closure {
    font-size: .8em;
    line-height: 19px;
    margin: 50px 0 0 0;
  }

    @-webkit-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-moz-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-o-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

    .blog-post-detail {
      font-family: 'Roboto', sans-serif;
      margin-top: 2rem;
    }

    .blog-post-item {
      display: flex;
      flex-wrap: nowrap;
      margin-bottom: 2rem;
    }

    .blog-post-item .item__author {
      font-size: .75rem;
      margin-bottom: 10px;
    }
    
    .blog-post-item .item__date {
      position: absolute;
      left: 0;
      font-size: .75rem;
      margin-bottom: 10px;
      background: rgba(255,255,255,.8);
      color: #000000;
      padding: .8rem;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
    }

    .blog-post-item .item__img {
      max-width: 200px;
      margin-right: 2rem;
      overflow: hidden;
    }
    
    .blog-post-item .item__title {
      font-family: 'Fira Sans', sans-serif;
      font-weight: 900;
    }
    
    .blog-post-item .item__caption {
      font-size: 1rem;
      line-height: 15px;
    }
    
    .blog-post-item .blog-post-img {
      margin-right: 20px;
      margin-bottom: 20px;
    }

    .blog-post-title {
      font-weight: 800;
    }
  
    .blog-post__container {
      margin: 0 auto;
    }
  
    .blog-post__container img{
      max-width: 100%;
    }
  
    .blog-post__container .blog-text__container {
      font-family: 'Roboto', sans-serif;
      max-width: calc(100% - 100px);
      margin: 0 auto;
    }
  
    .blog-post__container .blog-text__container p {
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 28px;
      margin-top: 50px;
    }
  
    .blog-post__author {
      font-family: 'Roboto', sans-serif;
      font-size: .8rem;
      margin-top: 10px;
    }
  
    .blog-post__date {
      font-family: 'Roboto', sans-serif;
      font-size: .8rem;
      margin-top: 10px;
    }
  
    .blog-post__img {
      margin-top: 10px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .col-lg-12 { flex: 0 0 100.00%; }
  .col-lg-11 { flex: 0 0 91.666%; }
  .col-lg-10 { flex: 0 0 83.333%; }
  .col-lg-9  { flex: 0 0 75.000%; }
  .col-lg-8  { flex: 0 0 66.666%; }
  .col-lg-7  { flex: 0 0 58.333%; }
  .col-lg-6  { flex: 0 0 50.000%; }
  .col-lg-5  { flex: 0 0 41.666%; }
  .col-lg-4  { flex: 0 0 33.333%; }
  .col-lg-3  { flex: 0 0 25.000%; }
  .col-lg-2  { flex: 0 0 16.666%; }
  .col-lg-1  { flex: 0 0  8.333%; }

  .margin-lg-top-520 { margin-top: 520px; }
  .margin-lg-top-420 { margin-top: 420px; }
  .margin-lg-top-320 { margin-top: 320px; }
  .margin-lg-top-120 { margin-top: 120px; }
  .margin-lg-top-100 { margin-top: 100px; }
   .margin-lg-top-80 { margin-top: 80px;  }
   .margin-lg-top-60 { margin-top: 60px;  }
   .margin-lg-top-40 { margin-top: 40px;  }
   .margin-lg-top-20 { margin-top: 20px;  }

  .margin-lg-bottom-120 { margin-bottom: 120px; }
  .margin-lg-bottom-100 { margin-bottom: 100px; }
   .margin-lg-bottom-80 { margin-bottom: 80px;  }
   .margin-lg-bottom-60 { margin-bottom: 60px;  }
   .margin-lg-bottom-40 { margin-bottom: 40px;  }
   .margin-lg-bottom-20 { margin-bottom: 20px;  }
   .margin-lg-bottom-10 { margin-bottom: 10px;  }

  .margin-lg-left-120 { margin-left: 120px; }
  .margin-lg-left-100 { margin-left: 100px; }
   .margin-lg-left-80 { margin-left: 80px;  }
   .margin-lg-left-60 { margin-left: 60px;  }
   .margin-lg-left-40 { margin-left: 40px;  }
   .margin-lg-left-20 { margin-left: 20px;  }

  .margin-lg-right-120 { margin-right: 120px; }
  .margin-lg-right-100 { margin-right: 100px; }
   .margin-lg-right-80 { margin-right: 80px;  }
   .margin-lg-right-60 { margin-right: 60px;  }
   .margin-lg-right-40 { margin-right: 40px;  }
   .margin-lg-right-20 { margin-right: 20px;  }

  section {
    padding: 40px 75px;
    /* border-bottom: 1px #7a7a7a dashed; */
  }

  .page-container {
    width: calc(100% - 150px);
    margin: 0 auto;
  }

  .float-right {
    float: right;
    align-items: flex-end;
  }

  /**/

  .greeting, .elevator-pitch {
    max-width: 400px;
    font-size: 1.3rem;
    line-height: 28px;
  }


  .accordian {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    outline: none;
    transition: .4s;
    position: relative;
    -webkit-animation: fade 5s 1; /* Safari 4+ */
    -moz-animation:    fade 5s 1; /* Fx 5+ */
    -o-animation:      fade 5s 1; /* Opera 12+ */
    animation:         fade 5s 1; /* IE 10+, Fx 29+ */

  }

    .accordian .superscript {
      position: absolute;
      font-size: 1.20rem;
      font-weight: 200;
      top: 22px;
    }

    .accordian .title {
      font-size: 4rem;
      font-weight: 600;
      margin-left: 28px;
      letter-spacing: 2px;
      position: relative;
    }
      .accordian .title .link {
        position: relative;
      }
      .accordian .title .link::after {
        position: absolute;
        content: '';
        width: 0;
        bottom: 0;
        left: 0;
        height: 3px;
        background: var(--color);
        margin-top: 3px;
        transition: width .2s ease-in-out;
      }
      .accordian .title:hover .link::after {
        width: 100%;
      }

  .panel {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
  }
    p {
      margin-top: 15px;
      margin-bottom: 30px;
      font-size: 1.3rem;
      line-height: 26px;
    }

    .section-title {
      font-size: 5.5rem;
      font-weight: var(--font-weight-bold);
    }

    /* CONTACT PAGE */
    #contact-photo {
      position: relative;
      padding-bottom: 0px;
      height: 600px;
      overflow-y: hidden;
    }
    #contact-info h4 {
      margin-top: 7px;
      color: #ccc;
      font-weight: 200;
    }
    #contact-photo .contact-img {
      position: absolute;
      top: 0;
      left: 0;
      max-width: 100%;
    }
    /* CONTACT PAGE */

    #work .work-bg .mobile-work {
      display: none;
    }

  footer {
    padding: 40px 75px;
    overflow: hidden;
  }
  footer .row .col-xs-12 .self-description {
    font-size: 1.3rem;
    font-weight: var(--font-weight-light);
    max-width: 500px;
    line-height: 28px;
  }
  footer .row .col-xs-6 .spot {
    font-size: .8em;
    line-height: 19px;
  }
    footer .row .col-xs-6 .spot .city{
      font-weight: 600;
    }
  footer .spots {
    display: grid;
    justify-content: end;
    grid-template-columns: 170px 170px;
    grid-template-rows: 120px;
    grid-column-gap: 20px;
  }
    footer .spots .spot {
      padding: 10px;
      margin: 0;
    }
      footer .spots .spot .city,
      footer .spots .spot .address,
      footer .spots .spot .specific-city,
      footer .spots .spot .phone-number {
        line-height: 20px;
      }
  footer .closure {
    font-size: .8em;
    line-height: 19px;
    margin: 50px 0 0 0;
  }

    @-webkit-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-moz-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @-o-keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fade {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

    .about {
      width: calc(100% - 200px);
      font-size: 1.5rem;
    }

    .blog-post-title {
      font-weight: 800;
    }
  
    .blog-post__container {
      margin: 0 auto;
    }
  
    .blog-post__container img{
      max-width: 100%;
    }
  
    .blog-post__container .blog-text__container {
      font-family: 'Roboto', sans-serif;
      max-width: calc(100% - 150px);
      margin: 0 auto;
    }
  
    .blog-post__container .blog-text__container p {
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 28px;
      margin-top: 50px;
    }

    .blog-post-detail {
      font-family: 'Roboto', sans-serif;
      margin-top: 2rem;
    }
    
    .blog-post-item .item__author {
      font-size: .75rem;
      margin-bottom: 10px;
    }
    
    .blog-post-item .item__date {
      position: absolute;
      left: 0;
      font-size: .75rem;
      margin-bottom: 10px;
      background: rgba(255,255,255,.8);
      color: #000000;
      padding: .8rem;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
    }

    .blog-post-item .item__img {
      max-width: 200px;
      margin-right: 2rem;
    }
    
    .blog-post-item .item__title {
      font-family: 'Fira Sans', sans-serif;
      font-weight: 900;
    }
    
    .blog-post-item .item__caption {
      font-size: 1rem;
      line-height: 15px;
    }
    
    .blog-post-item .blog-post-img {
      margin-right: 20px;
      margin-bottom: 20px;
    }



}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px){

  .col-12 { flex: 0 0 100.00%; }
  .col-11 { flex: 0 0 91.666%; }
  .col-10 { flex: 0 0 83.333%; }
  .col-9  { flex: 0 0 75.000%; }
  .col-8  { flex: 0 0 66.666%; }
  .col-7  { flex: 0 0 58.333%; }
  .col-6  { flex: 0 0 50.000%; }
  .col-5  { flex: 0 0 41.666%; }
  .col-4  { flex: 0 0 33.333%; }
  .col-3  { flex: 0 0 25.000%; }
  .col-2  { flex: 0 0 16.666%; }
  .col-1  { flex: 0 0  8.333%; }

  /* WORK PAGE */

  #section-img {
    position: relative;
    overflow: hidden;
    max-height: 500px;
  }

  #section-img .img{
    height: 700px;
  }

  #section-img img{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  /* WORK PAGE */

  /* ASK */
  #ask {
    padding: 90px;
    max-height: 400px;
  }

  .center-squeeze {
    width: calc(100% - 500px);
    margin: 0 auto;
  }

  .center-squeeze

  .center-squeeze .title-text {
    font-size: 2rem;
    font-weight: 900;
  }

  .center-squeeze .reg-text{
    font-size: 1rem;
    line-height: 27px;
  }
  /* ASK */

  /* WORK */
  #work {

  }

  #work .work-bg {
  }

  #work .work-bg .center-squeeze {
    max-width: calc(100% - 500px);
  }

  #work .work-bg .work {
    border: 1px solid #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
  }

  #work .work-bg .work .frame {
    display: flex;
    padding: 10px;
    align-items: center;
    /* background: #f7f7f7; */
    border-bottom: 1px solid #f7f7f7;
    height: 35px;
  }

  #work .work-bg .work .frame .btn {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 1px solid #f7f7f7;
  }

  #work .work-bg .work .frame .exit-btn {
    background: red;
  }
  #work .work-bg .work .frame .yellow-btn {
    background: #ffca33;
    margin-left: 7px;
  }
  #work .work-bg .work .frame .minimize-btn {
    background:  #93ff33;
    margin-left: 7px;
  }

  #work .work-bg .mobile-work {
    display: none;
  }

  #work .work-bg .work .page { }
  /* WORK */


  /* CONTACT PAGE */
  #contact-photo {
    position: relative;
    padding-bottom: 0px;
    height: 600px;
    overflow-y: hidden;
  }
  #contact-info h4 {
    margin-top: 7px;
    color: #ccc;
    font-weight: 200;
  }
  #contact-photo .contact-img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  /* CONTACT PAGE */

  .about {
    width: calc(100% - 500px);
    font-size: 1.5rem;
  }


  .blog-post-title {
    font-weight: 800;
  }

  .blog-post__container {
    margin: 0 auto;
  }

  .blog-post__container img{
    max-width: 100%;
  }

  .blog-post__container .blog-text__container {
    font-family: 'Roboto', sans-serif;
    max-width: calc(100% - 150px);
    margin: 0 auto;
  }

  .blog-post__container .blog-text__container p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    margin-top: 50px;
  }

  .blog-post__author {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    margin-top: 10px;
  }

  .blog-post__date {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    margin-top: 10px;
  }

  .blog-post__img {
    margin-top: 10px;
  }

}
