html
{
    font-size: 10px;
    background-color: #f9fafb;
}

body
{
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-style: normal;
    color: #1d1d1d;
    background: transparent;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6
{
    font-family: 'Lexend', sans-serif;
    font-weight: normal;
    color: #000;;
}

h1
{
    font-size: 4.4rem;
    font-weight: 800;
}

h2
{
    font-size: 3.9rem;
    font-weight: 600;
}

h3
{
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 10px;
}

h4
{
    font-size: 2.9rem;
}

h5
{
    font-size: 2.4rem;
}

h6
{
    font-size: 1.9rem;
    color: #ccc;
    margin: 0;
}

p
{
    font-size: 1.8rem;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
    text-decoration: none;
}


@media (max-width:600px)
{
    html
    {
        font-size: 8px;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 7px;
    }
}

#zone {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0;
  -webkit-filter: url("#filter-1");
  filter: url("#filter-1");
  background: transparent;
  pointer-events: none;
  z-index: 15;
}

.zone {
    position: absolute;
}

#dot {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    position: fixed;
    
    left: 50%;
    z-index: 20;
    transform: translateX(-10px);
    text-align: center;
    transition: all ease-in-out 0.28s;
    pointer-events: all;
    user-select: none;
}

#bar {
    width: 20px;
    height: 100px;
    position: fixed;
    top: 0px;
    left: 50%;
    background-color: #f9fafb;
    z-index: 30;
    pointer-events: none;
    transform: translate(1px, -40px);
    transition: top ease-in-out 0.4s, left 0.4s;
    animation-delay: 400ms;
}

#smalldot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000000;
    position: fixed;
    left: 50%;
    transform: translate(-4px, 7px);
    pointer-events: none;
    transition: all ease-in-out 0.30s;
    z-index: 35;
}


#dot:hover {
    background: #ffffff;
    cursor: grab;
    left: 50.6%;
    scale: 1.6;
}


@media (max-width:1200px) {
    #dot, #smalldot, #bar { 
        left: 110%;
        transition: left 0.4s, opacity 0.4s;
        opacity: 0;
    }
}

.preloader
{
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #f9fafb;
}

.preloader.hide-preloader
{
    height: 0;
    -webkit-transition: .7s ease .3s;
         -o-transition: .7s ease .3s;
            transition: .7s ease .3s;
}

.preloader.hide-preloader .loader
{
    opacity: 0;
    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
}

.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke: #ccc;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: square;
}

@-webkit-keyframes 
rotate {  100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}

@keyframes 
rotate {  100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}

@-webkit-keyframes 
dash {  0% {
 stroke-dasharray: 1, 200;
 stroke-dashoffset: 0;
}
 50% {
 stroke-dasharray: 89, 200;
 stroke-dashoffset: -35;
}
 100% {
 stroke-dasharray: 89, 200;
 stroke-dashoffset: -124;
}
}

@keyframes 
dash {  0% {
 stroke-dasharray: 1, 200;
 stroke-dashoffset: 0;
}
 50% {
 stroke-dasharray: 89, 200;
 stroke-dashoffset: -35;
}
 100% {
 stroke-dasharray: 89, 200;
 stroke-dashoffset: -124;
}
}

/******** SLIDER ********/

.slides {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10;
  pointer-events: none;
  /* 
  -webkit-transition: background 1s cubic-bezier(0.99, 1, 0.92, 1);
          transition: background 1s cubic-bezier(0.99, 1, 0.92, 1);
  */
}

.slides:hover {
    cursor: pointer;
}


.is-sliding .slides {
  -webkit-transition: background 0.3s cubic-bezier(0.99, 1, 0.92, 1);
          transition: background 0.3s cubic-bezier(0.99, 1, 0.92, 1);
}

.slide {
  z-index: -1;
  padding: 0;
  position: absolute;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  pointer-events: all;
  transition: all  cubic-bezier(0.99, 1, 0.92, 1) 0.3s;
  /*
    -webkit-transition: z-index 1s ease;
          transition: z-index 1s ease;
    */
}
@media (min-width:1200px) {
    .box > .slide {
        width: 60%;
        height: 70vh;
        top: 15vh;
        left: 3vw;
    }
}


.slide.is-active {
  z-index: 11;
  /*
    -webkit-transition: z-index 1s ease;
          transition: z-index 1s ease;
    */
}

.slide__content {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
@media (max-width:1200px)
{
    .box .slide__content {
    max-width: 640px;   
    }
}

.is-going {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.99, 1, 0.92, 1);
}

.slide__figure {
  z-index: 7;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}

.slide__img {
  position: relative;
  display: block;
  background-size: cover;
  background-position: 50%;
  height: 100%;
  width: 100%;
  opacity: 0;
  scale: 1;
  -webkit-transition: opacity 0.3s linear;
          transition: opacity 0.3s linear;
}

@media (max-width:580px)
{
    .slide__img.zoom {
        scale: 2.1;
    }

    .slide__img.up {
        transform: translateY(-2%);
    }

    .slide__img.plus {
        scale: 1.5;
    }
}

.is-next .slide__img {
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
          transition: opacity 0.3s linear;
}

.is-active .slide__img {
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
          transition: opacity 0.3s linear, scale 0.3s linear;
}

.slider-nav{
  width:50%;
  height: 30px;
  position: absolute;
  z-index: 100;
  text-align:center;
  bottom:0;
  left:0;
}

@media (min-width:1200px)
{
    .box .slider-nav {
    width:65%;
    bottom:15%;
    }
}

.slider-nav span{
  display: inline-block;
  margin:3px;
  width:4px;
  height:4px;
  background: white;
  overflow: hidden;
  border-radius:50%;
  opacity: .6;
}

.slider-nav span.active{
  background: #fff;
  opacity: 1;
}

@media (max-width:1200px)
{
    
    .slides {
        height: 50vh;
        width: 100%;
        position: relative;
     }
     .slides.box {

        margin: 0 auto;
        margin-bottom: 30px;
        background-color: #fff;
     }

    .page .slide {
        right: 0;

     }

    .slide {
        width: 100%;
        height: 50vh;
    }
    .slider-nav{
        width:100%;
    }
}

#logo 
{
    position: fixed;
    top: 12px;
    left: -40px;
    scale: 0.7;
    transition: all ease-in-out 0.2s;
    z-index: 20;
}

#close 
{
    position: fixed;
    top: 12px;
    right: 10px;
    scale: 0.7;
    z-index: 20;
}

#close a 
{
 padding: 0px 1em;
}

.content-area
{
    position: relative;
    left: 0;
    width: 100%;
}

.content-area .content-area-inner
{
    position: relative;
    left: 50%; 
    width: 50%;
    padding: 0 20px;
}

@media (min-width:1200px) {
    .content-area .content-area-inner.page
    {
        left: 65%;
        width: 30%;
    }
}

.content-area .content-area-inner section
{
    max-width: 540px;
    margin: 0 auto 18vh auto;
}

.content-area .content-area-inner section:last-child
{
    margin-bottom: 10vh;
}

.content-area .content-area-inner section h3.headline
{
    margin-bottom: 1.2em;
}

@media (max-width:1200px)
{
    .content-area .content-area-inner
    {
        left: 0;
        width: 100%;
        padding: 0 40px;
    }

}

#intro
{
    position: relative;
    height: 100vh;
    margin-bottom: 0;
}

#intro .container-mid
{
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#intro .container-mid img
{
    width: 100%;
}

#intro .container-mid p.subline
{
    font-size: 2.2rem;
    line-height: 1.6em;
    margin-top: 2em;
    margin-bottom: 2.2em;
}

#intro .container-mid a, .btn
{
    font-size: 2rem;
    line-height: 2.8em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0 1.2em;
    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    color: #fff;
    border-radius: 100px;
    background: none;
}

#intro .container-mid a.secondary, .btn.secondary
{
    color: #111;

}


#intro .container-mid a:before, .btn:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 100px;
    background: #111;
}

#intro .container-mid a.secondary:hover, .btn.secondary:hover
{
    color: white;
}

#intro .container-mid a.secondary:before
{   
    border: solid 1px #111;
    background: #f9fafb;
}

#intro .container-mid a:after, .btn:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    background: #0048fc;
}

#intro .container-mid a:hover:after, .btn:hover:after
{
    width: 100%;
}

#intro .container-mid a i
{
    font-size: .85em;
    margin-left: .7em;
}

#intro .animation-container
{
    -webkit-transition: .5s ease;
         -o-transition: .5s ease;
            transition: .5s ease;
}

#intro .animation-container.animation-fade
{
    opacity: 0;
}

#intro .animation-container.animation-fade.run-animation
{
    opacity: 1;
}

#intro .animation-container.animation-fade-up
{
    -webkit-transform: translateY(10vh);
        -ms-transform: translateY(10vh);
            transform: translateY(10vh);
    opacity: 0;
}

#intro .animation-container.animation-fade-up.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

#intro .animation-container.animation-fade-down
{
    -webkit-transform: translateY(-10vh);
        -ms-transform: translateY(-10vh);
            transform: translateY(-10vh);
    opacity: 0;
}

#intro .animation-container.animation-fade-down.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-left
{
    -webkit-transform: translateX(10vh);
        -ms-transform: translateX(10vh);
            transform: translateX(10vh);
    opacity: 0;
}

#intro .animation-container.animation-fade-left.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

#intro .animation-container.animation-fade-right
{
    -webkit-transform: translateX(-10vh);
        -ms-transform: translateX(-10vh);
            transform: translateX(-10vh);
    opacity: 0;
}

#intro .animation-container.animation-fade-right.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

@media (max-width:1200px)
{
    #intro
    {
        height: auto;
    }

    .content-area-inner #intro .container-mid
    {
        position: relative;
        top: 0;
        margin-top: 10vh;
        margin-bottom: 15vh;

        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0);
    }

    .page #intro .container-mid { 
        left: 0;
    }
    .content-area-inner.page #intro .container-mid {
        margin-top: 20px;
    }

}


#info p
{
    line-height: 1.5em;
    margin-bottom: 2em;
}

#info p:last-child
{
    margin-bottom: 0;
}

#service .services-list
{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

#service .services-list li
{
    font-size: 2.4rem;
    line-height: 3.4em;
}

#service .services-list li i
{
    font-size: 2rem;
    line-height: 2.6em;
    width: 2.6em;
    height: 2.6em;
    margin-right: 1.2em;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    background: #111;
}

#work .showcase .item
{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 24rem;
    margin: 0;
    margin-bottom: 3vw;
    cursor: pointer;
    border-radius: 2rem;
    background: #ffffff;
    outline: solid 1px #e1e1e1;
    transition: all linear 0.2s;   
}

#work .showcase .item:hover {
    background: #0048fc;    
}

#work .showcase .item:last-child
{
    margin-bottom: 0;
}

.trough 
{
    pointer-events: none;
}

#work .showcase .item .info
{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-transition: .25s ease;
         -o-transition: .25s ease;
            transition: .25s ease;

}

#work .showcase .item .info .container-mid
{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 6rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#work .showcase .item .info .container-mid h5
{
    -webkit-transform: translateX(4vh);
        -ms-transform: translateX(4vh);
            transform: translateX(4vh);
    margin: 0;
    opacity: 0;
    color: #fff;
}

#work .showcase .item:hover .info .container-mid h5
{
    -webkit-transition: .2s ease .2s;
         -o-transition: .2s ease .2s;
            transition: .2s ease .2s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

#work .showcase .item .info .container-mid p
{
    position: relative;
    padding-left: 2.7rem;
    -webkit-transform: translateX(4vh);
        -ms-transform: translateX(4vh);
            transform: translateX(4vh);
    letter-spacing: .025em;
    opacity: 0;
    color: #fff;
}

#work .showcase .item:hover .info .container-mid p
{
    -webkit-transition: .2s ease .3s;
         -o-transition: .2s ease .3s;
            transition: .2s ease .3s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

#work .showcase .item .info .container-mid p:before
{
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.1em;
    height: 1px;
    content: '';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #fff;
}

#work .showcase .item .background-image
{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all linear 0.5s;
}

#work .showcase .item:hover .background-image
{
    opacity: 50%;
    mix-blend-mode: multiply;
    
}

::-webkit-scrollbar {
    display: none;
}

/********   Contact   *********/

#contact .contact-list
{
    margin-bottom: 3.4em;
    padding: 0;
    list-style: none;
}

#contact .contact-list li
{
    font-size: 2.4rem;
    line-height: 2.4em;
}

#contact .contact-list li i
{
    line-height: 1.2em;
    width: 1.2em;
    height: 1.2em;
    margin-right: 1em;
    text-align: center;
    border-radius: 100px;
}

#contact #contact-form
{
    position: relative;
}

#contact #contact-form .fhp-input
{
    display: none;
    pointer-events: none;
    opacity: 0;
}

#contact #contact-form input,
#contact #contact-form textarea,
#contact #contact-form button
{
    font-size: 2rem;
    margin-bottom: 3.4vh;
    -webkit-transition: .4s ease;
         -o-transition: .4s ease;
            transition: .4s ease;
    color: #1d1d1d;
    border: solid 1px #e1e1e1;
    border-radius: 34px;
    outline: none !important;
    
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}


#contact #contact-form.success input,
#contact #contact-form.success textarea,
#contact #contact-form.success button
{
    line-height: 0;

    height: 0;
    margin: 0;
    padding: 0;
    
    opacity: 0;
    display: none;
}

#contact #contact-form input::-webkit-input-placeholder,
#contact #contact-form textarea::-webkit-input-placeholder
{
    color: #919191;
}

#contact #contact-form input:-ms-input-placeholder,
#contact #contact-form textarea:-ms-input-placeholder
{
    color: #919191;
}

#contact #contact-form input::placeholder,
#contact #contact-form textarea::placeholder
{
    color: #919191;
}

#contact #contact-form input.error,
#contact #contact-form textarea.error
{
    background: #fafafa;
    border: solid 1px #d4d2d2;
}

#contact #contact-form input
{
    line-height: 3.2em;
    height: 3.2em;
    padding-right: 1.6em;
    padding-left: 1.6em;
}

#contact #contact-form textarea
{
    line-height: 1.7em;
    height: 8em;
    padding-top: .7em;
    padding-right: 1.6em;
    padding-left: 1.6em;
}

#contact #contact-form button
{
    line-height: 2em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #ffffff;
    width: auto;
    height: 2.8em;
    margin-bottom: 0;
    padding: 0 1.2em;
    background: none !important;
}

#contact #contact-form button:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 100px;
    background: #111;
}

#contact #contact-form button:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;

    background: #0048fc;
}

#contact #contact-form button:hover:after
{
    width: 100%;
}

#contact #contact-form .success-message
{
    font-size: 2rem;
    line-height: 0;
    position: relative;
    bottom: 0;
    left: 0;
    height: 0;
    margin-top: 1em;
    padding: 0 2em;
    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    pointer-events: none;
    opacity: 0;
    color: #fff;
    border-radius: 3em;
    background: #0048fc;
}

#contact #contact-form.success .success-message
{
    line-height: 3em;
    height: 3em;
    pointer-events: all;
    opacity: 1;
}

#footer .social-icons
{
    padding: 0;
    list-style: none;
}

#footer .social-icons li
{
    font-size: 2rem;
    line-height: 3em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 3em;
    height: 3em;
    margin: 0;
    margin-right: 1em;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    background: none;
}

#footer .social-icons li:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 100px;
    background: #111;
}

#footer .social-icons li:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;

    content: '';
    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;

    background: #0048fc;
}

#footer .social-icons li:hover:after
{
    width: 100%;
}

#footer .social-icons li a
{
    font-size: inherit;
    display: block;
    color: #fff;
    border: none;
}

#footer 
{
    text-align: center;
}

#footer p
{
    margin-top: 1.6em;
}

#footer p a
{
    color: #000;
    border-bottom: 1px solid #111;
}