html,body {
    padding:0;
    margin:0;
    height:100%;
}

body {
  width: 100%;
  font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
  color: white;
  background-color: #403b41;
}

p {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.5;
}


@font-face {
    font-family: 'fibreregular';
    src: url('../fonts/fibre-font-webfont.woff2') format('woff2'),
         url('../fonts/fibre-font-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}   

.rowtop {
    width:100%;
    height:100%;
    background: url(../fp-bg.png) no-repeat bottom center scroll;
    background-color: #403b41;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.rowbot {
    width:100%;
    height:100%;
}
.row div {
    width:100%;
    height:100%;
    float:left;
}
.overflow-container {
    overflow: hidden;
    display: block;
}
.overflow-inner {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition-delay: 1s;
    display: block;
}
.overflow-container.animate .overflow-inner {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform .8s cubic-bezier(.24,.72,.35,1.01);
    transition: transform .8s cubic-bezier(.24,.72,.35,1.01);
    transition: transform .8s cubic-bezier(.24,.72,.35,1.01),-webkit-transform .8s cubic-bezier(.24,.72,.35,1.01);
    transition-delay: .6s;
}
.headline {
    margin: 0px 0 20px;
    text-transform: uppercase;
    font-family: 'fibreregular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 220px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 160px;
    text-align: center;
    color: #fff;
    padding-top: 10px;
}
.heading {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}
.btn-circle {
  width: 70px;
  height: 0px;
  margin-top: 0px;
  padding: 0px 16px;
  border: 0px solid white;
  border-radius: 100% !important;
  font-size: 60px;
  color: white;
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.btn-circle-up {
  padding: 4px 16px 7px;
}
.btn-circle:hover,
.btn-circle:focus {
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0);
}
.btn-circle i.animated {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.hero-intro-icon {
    margin-bottom: 6em;
}    
.hero-intro {
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
} 
.hero-intro-content {
    z-index: 1;
    width: 100%;
    position: relative;
    padding: 50px 0;
}       
.hero-intro-headline {
    margin-bottom: 3em;
} 
.hero-intro-subheadline {
    margin-bottom: 8em;
}     
.overflow-container.animate .overflow-inner.delay1 {
    transition-delay: .8s;
}
.overflow-container.animate .overflow-inner.delay2 {
    transition-delay: 1s;
}  
.overflow-container.animate .overflow-inner.delay3 {
    transition-delay: 1.2s;
}
.overlay {
    display: none;
}

/* MEDIA */    

@media (min-width: 768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}
@media (min-width: 660px) {
    .ls-a {
        letter-spacing: -28px;
    }
}    
@media (max-width: 812px) {
    .brand-heading {
        font-size: 120px;
        line-height: 90px;
        padding: 20px 0 0;
    }
    .ls-a {
        letter-spacing: -18px;
    }
    .overlay {
        background-color: rgba(64,59,65,0.2);
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 01;
    }
}