body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', cursive;
    transition: opacity 1s;
   -webkit-transition: opacity 1s;
   opacity: 0;
}

body.show {
    opacity: 1;
}

img.logo {
  width: 300px;
}

.intro {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top:0;
    left: 0;
    background-color: white;
    z-index: 1;
}

.intro video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

.centered {

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;


    filter: blur(0px);
   opacity: 1;
  transition: all 1s;
  -webkit-transition: all 1s;

}


.centered.hide {
        filter: blur(40px);
   opacity: 0;
}
h1 {
    font-size: 29px;
    line-height: 42px;
    margin: 30px 0 0 0;
    width: 100%;
    text-align: center;
    font-family: 'Comfortaa', cursive;
    font-weight: 100;
}



nav {
    position: fixed;
    z-index: 4;
    width: 100%;
    
    top:0;
    left:0;
    height: 75px;

   filter: blur(40px);
   opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}


nav.show {
    opacity: 1;
    filter: blur(0px);
}
  
  .logo-small {
    width: 129px;
    position: relative;
    display: inline-block;
    margin: 9px 0 0 30px;
  }

.content {
    position: absolute;
    z-index: 2;
    margin: 100vh 0 0 0;
    background-color: white;
    width: 100%;
}


.content::before {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background-image: url('../img/gradient.png');
    background-size: auto 80px;
    position: absolute;
        left: 0;
    top: -80px;
}

#logo {
    filter: blur(40px);
  transition: filter 1s;
  -webkit-transition: filter 1s;
}

#logo.anim {
    filter: blur(0px);
}


#a1, #a2, #a3, #a4, #a5, #a6 {

    filter: blur(40px);
  transition: filter 1s;
  -webkit-transition: filter 1s;

} 



#a1.anim, #a2.anim, #a3.anim, #a4.anim, #a5.anim, #a6.anim {

    filter: blur(0px);
 

} 

.inner {
    width: 90%;
    max-width: 888px;
    margin: 120px auto;
    font-size: 18px;
    line-height: 31px;
    font-weight: 100;
}

.innerLarge {
    width: 90%;
    max-width: 1280px;
    margin: 60px auto;
    font-size: 18px;
    line-height: 31px;
    font-weight: 100;
}



span.symbol {
    display: inline-block;
    width: 25px;
    height: 30px;
    background-image: url('../img/symbol.png');
    background-size: cover;
}

.symbol-holder {
    width: 100%;
    text-align: center;
    padding: 0 0 40px 0;
    position: relative;
    transition: all .5s;
   -webkit-transition: all .5s;
   transition-delay: .5s;
    -webkit-transition-delay: .5s;
   opacity: 0;
}


.symbol-holder.animate {
  opacity: 1;
}


.symbol-holder::after {
    content: '';
    width: 1px;
    height: 0px;
    background-color: #ccc;
    display: inline-block;
    position: absolute;
    left: 50%;
    
    bottom: 40px;
    transition: all 1s;
    -webkit-transition: all 1s;
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
}

.symbol-holder.animate::after {
        height: 100px;
        bottom: -70px;
        transition-delay: 1s;
    -webkit-transition-delay: 1s;
}


p.after-symbol {

    padding-top: 100px;
    font-weight: 100;
       font-size: 18px;
    line-height: 31px;
    margin-bottom: 80px;
    text-align: center;
    transition: all 1s;
    -webkit-transition: all 1s;
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    opacity: 0;
     filter: blur(40px);
}

.expertise-slider {
    opacity: 0;
        transition: all 1s;
    -webkit-transition: all 1s;
    transition-delay: 2s;
    -webkit-transition-delay: 2s;
    margin: 60px 0 120px
}

.expertise-slider.animate {
    opacity: 1;
}

p.after-symbol.animate {

      opacity: 1;
     filter: blur(0px);

}
strong {

     font-weight: 500;
     font-size: 25px;
}


.expertise-item {
    margin: 10px;
    text-align: center;
}

.expertise-item img {
    display: block;
    position: relative;
    width: 80%;
    height: auto;
     transition: all 1s;
    -webkit-transition: all 1s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.expertise-item img:hover {
    filter: grayscale(0%);

    opacity: 1;
}

.smallBottom {
    padding-bottom: 0;
    margin-bottom: 0;
}



.work-grid {

    display: block;
    width: 100%;
    max-width: 1440px;
    margin: 80px auto;
     transition: all 1s;
    -webkit-transition: all 1s;
        transition-delay: 1s;
    -webkit-transition-delay: 1s;
     
  
}

.work-grid.shown {
    opacity: 1;
}


.flip-box {
    background-color: transparent;
    width: 31%;
    height: 350px;
    perspective: 1000px;
    border-radius: 0px;
    display: inline-block;
    margin: 1%;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background-color: #fff;
    color: black;
    border-radius: 0px;
    text-align: center;
}

.flip-box-back {
    background-color: #f5f1ed;
    color: white;
    transform: rotateY(
180deg);
    border-radius: 0px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}




.flip-box .centered-text {
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 95%;
}


.map-pin {
    width: 150px;
}

.flip-box .client-logo {

      width: 100%;
      max-width: 250px;

}


.flip-box .flip-box-back .centered-text {
    top: auto;
    bottom: 0px;
    left: 0;
    width: calc( 100% - 14px);
    transform: none;
    background: white;
    padding: 7px;
}

.flip-box-back span {
   
    color: black;
 
    font-size: 14px;
    line-height: 24px;
}



.statement {
    display: block;
    width: 100%;
       padding: 1px 0 1px 0;

}


.photo-holder {

  
    width: 100%;
    display: block;
    margin: 60px 0 0 0;
    text-align: center;

         transition: all 1s;
    -webkit-transition: all 1s;
        transition-delay: 1s;
    -webkit-transition-delay: 1s;

    opacity: 0;

}

 

.photo-holder .image {
    display:  inline-block;
    text-align: center;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background-image: url('../img/pp.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 0 20px 0;
}

.photo-holder .name {

    font-size: 17px;
    line-height: 26px;
    width: 100%;
    text-align: center;
    margin: 0 0 5px 0;

}

.photo-holder .title {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.quote-holder {

    width: 100%;
    display: block;
    margin: 50px 0 0 0;
    text-align: center;
 font-size: 15px;
    line-height: 25px;
    text-align: justify;


         transition: all 1s;
    -webkit-transition: all 1s;
        transition-delay: .5s;
    -webkit-transition-delay: .5s;

    opacity: 0;


}


.quote-symbol {

    display: block;
    width: 100%;
    margin: 10px 0;
    text-align: center;

}

.quote-symbol img {
    width: 50px;
    display: inline-block;
}


.quote-holder.animate, .photo-holder.animate {
    opacity: 1;
}


.contact .inner {
    margin-top: 20px;
}


.icons-holder
{
   display: block;
   width: 100%;
   text-align: center;
   padding: 70px 0 0 0;
}

.icons-holder a {
    opacity: 0.6;
             transition: all .5s;
    -webkit-transition: all .5s;
}

.icons-holder a:hover {
    opacity: 1
}

.icons-holder img {
    display: inline-block; width: 40px;
    margin: 0 10px;
}



.maps  {
    display: block;
    width: 100%;
    text-align: center;

                 transition: all 1s;
    -webkit-transition: all 1s;
    opacity: 0;
            transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
}

.maps.animate {
    opacity: 1;
}


.maps span {
    display: block;
    padding: 0 0 30px 0;
    font-size: 14px;
}

.map1, .map2 {
        display: inline-block;
    float: left;
    width: 33%;
    height: auto;
    padding: 0 0 40px 0;
}


footer {
     display: block;
     width: 100%;
     text-align: center;
     padding: 30px 0;
     font-size: 13px;
     line-height: 23px;
}



@media only screen and (max-width: 900px) {


    .map1, .map2 {
        display: block;
        width: 100%;
        float: none;
        border-bottom: 3px solid white;
    }


img.logo {
    width: 200px;
}

  .centered {
    width: 90%;
  }


  p.after-symbol, .quote-holder {
    font-size: 15px;
    line-height: 27px;
  }   

  strong {
    font-weight: 500;
    font-size: 20px;
      }



      .flip-box {
        
        display: block;
        margin: 0 auto 30px;
        width: 90%;\

      }


      .content {
        width: 100%;
        overflow: hidden;
      }


      .statement .inner {
        margin-top: 15px;
      }

      .intro {
        background-color: white;
      }

     .intro video {
        position: absolute;
    left: -90%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}


    
}