/* font 300, bold */

html,
body{
    margin: 0;
    padding: 0;
    font-family:  realist,   sans-serif;
    font-weight: 400;
    color: #1a1919;
    height: 100%;
}
html{
    height: 100%;
}
body{
    min-height: 100%;
    position: relative;
}

#content{
    height: 100%;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

img{
    vertical-align: top;
}
img.svg{
    visibility: hidden;
}

.img{
    position: relative;
    overflow: hidden;
}
.img img{
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
img.w{
    opacity: 1;
    width: 100% !important;
    height: auto !important;
}
img.h{
    opacity: 1;
    width: auto !important;
    height: 100% !important;
    max-width: unset !important;
}

input{
    background: #efefef;
    line-height: 40px;
    padding: 0 15px;
    width: 100%;
    border: none;
    margin-bottom: 20px;
}
textarea{
    background: #efefef;
    line-height: 22px;
    padding: 10px 15px;
    border: none;
    margin-bottom: 20px;
    height: 150px;
    min-height: 150px;
    resize: vertical;
}


a,
a:active,
a:visited,
a:focus{
    outline: 0;
    color: #a4b5b8;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}
a:hover{
    color: #a4b5b8;
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
}


header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 48px 0;
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}

body.scrolled header{
    padding: 15px 0;
    background: rgba(26,25,25, 0.5);
}

body.admin-bar header{
    top: 32px;
}

header .container{
    max-width: unset;
}

header nav{
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    box-sizing: border-box;
    background: rgb(26,25,25);
    background: -moz-linear-gradient(90deg,    rgba(26,25,25,1) 0%, rgba(26,25,25,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(26,25,25,1) 0%, rgba(26,25,25,0) 100%);
    background: linear-gradient(90deg,         rgba(26,25,25,1) 0%, rgba(26,25,25,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a1919",endColorstr="#1a1919",GradientType=1);
    -webkit-transition: all 0.5s ease-out;
       -moz-transition: all 0.5s ease-out;
         -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
}

body.mobile-menu{
    overflow: hidden;
}

body.mobile-menu header nav{
    left: 0;
    opacity: 1;
}

header nav .container{
    padding: 140px 125px;
}

header nav .menu{
    padding-bottom: 70px;
}

header nav .menu a{
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
    padding: 10px 0;
}
header nav a,
header nav a:visited,
header nav a:focus,
header nav a:active{
    color: #a4b5b8;
}
header nav a:hover{
    color: #fff;
    -webkit-filter: none;
            filter: none;
}

header nav a.email{
    position: relative;
    padding-left: 45px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
header nav a.email img,
header nav a.email svg{
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}
header nav a.email path{
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}
header nav a.email:hover path{
    fill: #fff;
}

header .social{
    position: relative;
    float: right;
    margin-left: 20px;
    z-index: 1;
}
header .social path{
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}
header .social:hover{
    -webkit-filter: none;
            filter: none;
}
header .social:hover path{
    fill: #fff;
}

.custom-logo-link{
    position: relative;
    z-index: 1;
}
.custom-logo-link:hover{
    -webkit-filter: none;
            filter: none;
}

.burger{
    position: relative;
    float: left;
    height: 24px;
    width: 32px;
    margin: 3px 0;
    padding-right: 20px;
    margin-right: 20px;
    border-right: solid 1px #fff;
    cursor: pointer;
    box-sizing: content-box;
    z-index: 1;
}
.burger span{
    display: block;
    position: absolute;
    height: 3px;
    width: 32px;
    left: 0;
    top: 0;
    background: #a4b5b8;
    -webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
         -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}
.burger span:nth-child(1){
    width: 24px;
}
.burger span:nth-child(2){
    top: 10px;
    width: 32px;
}
.burger span:nth-child(3){
    top: 20px;
    width: 16px;
}
.burger:hover span{
    background: #fff;
}

body.mobile-menu .burger span:nth-child(1){
    top: 11px;
    width: 32px;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
body.mobile-menu .burger span:nth-child(2){
    opacity: 0;
}
body.mobile-menu .burger span:nth-child(3){
    top: 11px;
    width: 32px;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

section#header{
    position: relative;
    overflow: hidden;
    height: calc(100% - 180px);
    background: rgb(26,25,25);
}

body.admin-bar section#header{
    height: calc(100% - 32px - 180px);
}


section#header .img{
    height: 100%;
}

section#header .title{
    position: absolute;
    color: #fff;
    left: 50%;
    top: 50%;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
section#header .title span{
    display: block;
}
section#header .title h1{
    margin: 0;
}
section#header .title p{
    margin: 5px 0 10px;
    font-size: 18px;
    font-weight: 300;
}

section#header .arrow{
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 2;
    cursor: pointer;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}
body.first-scroll section#header .arrow{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.25s ease-out, visibility 0s linear 0.25s;
       -moz-transition: opacity 0.25s ease-out, visibility 0s linear 0.25s;
         -o-transition: opacity 0.25s ease-out, visibility 0s linear 0.25s;
            transition: opacity 0.25s ease-out, visibility 0s linear 0.25s;
}
section#header .arrow span{
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-right: solid 5px #a4b5b8;
    border-bottom: solid 5px #a4b5b8;
    -webkit-transform: translateX(-50%) rotate(45deg);
       -moz-transform: translateX(-50%) rotate(45deg);
         -o-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    -webkit-animation: scroll-arrow-1 3s ease-in infinite;
       -moz-animation: scroll-arrow-1 3s ease-in infinite;
         -o-animation: scroll-arrow-1 3s ease-in infinite;
            animation: scroll-arrow-1 3s ease-in infinite;
}
section#header .arrow span:nth-child(1){
    bottom: 30px;
    -webkit-animation-name: scroll-arrow-1;
       -moz-animation-name: scroll-arrow-1;
         -o-animation-name: scroll-arrow-1;
            animation-name: scroll-arrow-1;
}
section#header .arrow span:nth-child(2){
    bottom: 15px;
    -webkit-animation-name: scroll-arrow-2;
       -moz-animation-name: scroll-arrow-2;
         -o-animation-name: scroll-arrow-2;
            animation-name: scroll-arrow-2;
}
section#header .arrow span:nth-child(3){
    -webkit-animation-name: scroll-arrow-3;
       -moz-animation-name: scroll-arrow-3;
         -o-animation-name: scroll-arrow-3;
            animation-name: scroll-arrow-3;
}

@-webkit-keyframes scroll-arrow-1{
    0%   { opacity: 0; }
    25%  { opacity: 1;  }
    50%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-moz-keyframes scroll-arrow-1{
    0%   { opacity: 0; }
    25%  { opacity: 1;  }
    50%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-ms-keyframes scroll-arrow-1{
    0%   { opacity: 0; }
    25%  { opacity: 1;  }
    50%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-o-keyframes scroll-arrow-1{
    0%   { opacity: 0; }
    25%  { opacity: 1;  }
    50%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@keyframes scroll-arrow-1{
    0%   { opacity: 0; }
    25%  { opacity: 1;  }
    50%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}

@-webkit-keyframes scroll-arrow-2{
    0%   { opacity: 0; }
    25%  { opacity: 0; }
    50%  { opacity: 1;  }
    75%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-moz-keyframes scroll-arrow-2{
    0%   { opacity: 0; }
    25%  { opacity: 0; }
    50%  { opacity: 1;  }
    75%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-ms-keyframes scroll-arrow-2{
    0%   { opacity: 0; }
    25%  { opacity: 0; }
    50%  { opacity: 1;  }
    75%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@-o-keyframes scroll-arrow-2{
    0%   { opacity: 0; }
    25%  { opacity: 0; }
    50%  { opacity: 1;  }
    75%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}
@keyframes scroll-arrow-2{
    0%   { opacity: 0; }
    25%  { opacity: 0; }
    50%  { opacity: 1;  }
    75%  { opacity: 0; border-color: #a4b5b8; }
    100% { opacity: 0; }
}

@-webkit-keyframes scroll-arrow-3{
    0%   { opacity: 0; }
    50%  { opacity: 0; }
    75%  { opacity: 1;  }
    100% { opacity: 0; border-color: #a4b5b8; }
}
@-moz-keyframes scroll-arrow-3{
    0%   { opacity: 0; }
    50%  { opacity: 0; }
    75%  { opacity: 1;  }
    100% { opacity: 0; border-color: #a4b5b8; }
}
@-ms-keyframes scroll-arrow-3{
    0%   { opacity: 0; }
    50%  { opacity: 0; }
    75%  { opacity: 1;  }
    100% { opacity: 0; border-color: #a4b5b8; }
}
@-o-keyframes scroll-arrow-3{
    0%   { opacity: 0; }
    50%  { opacity: 0; }
    75%  { opacity: 1;  }
    100% { opacity: 0; border-color: #a4b5b8; }
}
@keyframes scroll-arrow-3{
    0%   { opacity: 0; }
    50%  { opacity: 0; }
    75%  { opacity: 1;  }
    100% { opacity: 0; border-color: #a4b5b8; }
}



.container{
    max-width: 1200px;
    padding:  0 55px;
    margin: 0 auto;
    box-sizing: border-box;
}
.container:after{
    content: '';
    clear: both;
}

.headline-text{
    position: relative;
    height: 180px;
    line-height: 180px;
    text-align: center;
}
section#header h1,
.headline-text h2{
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
    font-size: 48px;
    line-height: 58px;
    font-weight: 300;
}
section#header h1 strong,
.headline-text h2 strong{
    font-weight: 700;
    display: inline-block;
}

.headline span{
    position: relative;
    display: inline-block;
    text-align: left;
    line-height: 20px;
    vertical-align: middle;
}
.headline h2+p{
    margin-top: -10px;
}

.clear{
    clear: both;
}

.btn{
    display: inline-block;
    padding: 0 25px;
    line-height: 58px;
    background: #1a1919;
    font-size: 24px;
    font-weight: bold;
    text-transform: unset;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all ease-out 0.1s;
       -moz-transition: all ease-out 0.1s;
         -o-transition: all ease-out 0.1s;
            transition: all ease-out 0.1s;
}
.btn,
.btn:active,
.btn:visited,
.btn:focus{
    color: #fff;
    text-decoration: none;
}
.btn:hover{
    color: #fff;
    text-decoration: none;
    background: #a4b5b8;
}

section{
    overflow: hidden;
}

section#main{
    padding: 30px 0;
}

section#main a,
section#main a:active,
section#main a:visited,
section#main a:focus{
    color: #1a1919;
    font-weight: bold;
}
section#main a:hover{
    color: #000;
    text-decoration: underline;
}

footer{
    position: relative;
    background: #1a1919;
    padding: 0 0 80px;
}
footer:after{
    content: '';
    display: block;
    clear: both;
}
footer .container{
    padding-top: 95px;
}
footer nav{
    float: left;
}
footer .menu li{
    line-height: 43px;
    display: inline-block;
}
footer .menu#menu-navigation-1 li:after{
    content: '.';
    color: #fff;
    line-height: 43px;
    font-size: 60px;
}
footer .menu#menu-navigation-1 li a{
    font-size: 36px;
    font-weight: 900;
}
footer .menu li a:hover{
    color: #fff;
    -webkit-filter: none;
            filter: none;
}

footer .menu#menu-footer-menu{
    display: inline-block;
}

footer .menu#menu-footer-menu li:after{
    content: ' | ';
    color: #a4b5b8;
}
footer .menu#menu-footer-menu li:last-child:after{
    display: none;
}

footer .contact,
footer .copyrights{
    color: #fff;
    font-size: 12px;
}
footer .contact a:hover
footer .copyrights a:hover{
    color: #fff;
    -webkit-filter: none;
            filter: none;
}
footer .logo{
    float: right;
}
footer .logo:hover{
    -webkit-filter: none;
            filter: none;
}
footer .cta{
    background: #fff;
}

.cta{
    padding: 25px 0;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    font-weight: 300;
}
.cta a{
    font-weight: 900;
    display: inline-block;
}
.cta .footnote{
    font-size: 24px;
    line-height: normal;
}
.cta span{
    display: inline-block;
    text-align: left;
}


.user-dialog{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
}
.user-dialog .box{
    position: absolute;
    right: -7px;
    bottom: 70px;
    box-shadow: 0px 0 2px 1px rgba(0,0,0,0.1);
}
.user-dialog .box .arrow{
    position: absolute;
    top: 100%;
    right: 18px;
    overflow: hidden;
    width: 30px;
    height: 20px;
    overflow: hidden;
}
.user-dialog .box .arrow:after{
    content: '';
    position: absolute;
    right: 5px;
    bottom: 150%;
    width: 20px;
    height: 20px;
    background: #fff;
    box-shadow: 0px 0 2px 1px rgba(0,0,0,0.1);
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
.user-dialog .box .arrow.show:after{
    bottom: 60%;
    -webkit-transition: all 0.25s ease-out 0.1s;
       -moz-transition: all 0.25s ease-out 0.1s;
         -o-transition: all 0.25s ease-out 0.1s;
            transition: all 0.25s ease-out 0.1s;
}

.user-dialog .trigger{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0 2px 1px rgba(0,0,0,0.07);
    -webkit-transition: all 0.1s ease-out 0.25s;
       -moz-transition: all 0.1s ease-out 0.25s;
         -o-transition: all 0.1s ease-out 0.25s;
            transition: all 0.1s ease-out 0.25s;
}
.user-dialog .trigger .door{
    position: absolute;
    width: 80%;
    left: 58%;
    top: 53%;
    -webkit-transition: all 0.25s ease-out 0.25s;
       -moz-transition: all 0.25s ease-out 0.25s;
         -o-transition: all 0.25s ease-out 0.25s;
            transition: all 0.25s ease-out 0.25s;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.user-dialog.show .trigger .door{
    opacity: 0;
    -webkit-transition: none;
       -moz-transition: none;
         -o-transition: none;
            transition: none;
}

.user-dialog .trigger .close{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
       -moz-transform: translate(-50%, -50%) rotate(90deg);
         -o-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
}
.user-dialog.show .trigger{
    background: #fff;
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}

.user-dialog.show .trigger .close{
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
       -moz-transform: translate(-50%, -50%) rotate(0deg);
         -o-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
}
.user-dialog .trigger .close:before,
.user-dialog .trigger .close:after{
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    left: 50%;
    top: 50%;
    background: #000;
}
.user-dialog .trigger .close:before{
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -moz-transform: translate(-50%, -50%) rotate(-45deg);
         -o-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}
.user-dialog .trigger .close:after{
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
         -o-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
}
.user-dialog .messages{
    background: #fff;
    width: 0;
    opacity: 0;
    overflow: hidden;
}
.user-dialog.show .messages{
    opacity: 1;
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
/*
.user-dialog.check .messages{
    width: calc(100vw - 25px);
    -webkit-transition: none;
       -moz-transition: none;
         -o-transition: none;
            transition: none;
}*/

.user-dialog .message{
    overflow: hidden;
    width: calc(100vw - 50px);
    height: 0;
}
.user-dialog .message:after{
    content: '';
    clear: both;
}
.user-dialog .message.show{
    width: auto;
    height: auto;
}

.user-dialog .text,
.user-dialog .option{
    display: inline-block;
    vertical-align: top;
    padding: 24px 25px;
    font-size: 20px;
    font-weight: bold;
    line-height: 22px;
}
.user-dialog .text{
    opacity: 0;
    float: left;
}

.user-dialog .options{
    float: right;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}
.user-dialog .options.show{
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}
.user-dialog .option{
    cursor: pointer;
    border-left: solid 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
.user-dialog .option:hover{
    background: rgba(0,0,0,0.1);
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}

.user-dialog .input{
    overflow: hidden;
    height: 0;
    width: 0;
    background: #fff;
    -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
       -moz-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
         -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
            transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}
.user-dialog .input:after{
    content: '';
    clear: both;
}
.user-dialog .input.show{
    width: 100%;
    height: 70px;
    border-top: solid 1px rgba(0,0,0,0.1);
    -webkit-transition: height 0.25s ease-out;
       -moz-transition: height 0.25s ease-out;
         -o-transition: height 0.25s ease-out;
            transition: height 0.25s ease-out;
}

.user-dialog.check .text{
    width: auto;
}

.user-dialog input{
    float: left;
    padding: 25px;
    background: #fff;
    outline: none;
    margin: 0;
    height: 70px;
}
.user-dialog .input .submit{
    float: right;
    opacity: 0;
    -webkit-transition: none;
       -moz-transition: none;
         -o-transition: none;
            transition: none;
}

.user-dialog .input.show input,
.user-dialog .input.show .submit{
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}


.user-dialog .message.show .text{
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}

/*------*/

.loading-anim{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 58px;
    height: 58px;
    left: 50%;
    top: 50%;
    z-index: -100;
    -webkit-transform: scale(0.8) translate(-70%, -50%);
       -moz-transform: scale(0.8) translate(-70%, -50%);
         -o-transform: scale(0.8) translate(-70%, -50%);
            transform: scale(0.8) translate(-70%, -50%);
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}

.loading > *,
.error > *,
.done > *{
    visibility: hidden;
}

.tip{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.tip p{
    margin: 0;
}

.error .tip,
.done .tip{
    visibility: visible;
    opacity: 1;
    font-size: 20px;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}

.error .tip{
    color: #ec5c42;
}

.loading > .loading-anim{
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
.circularG{
    position:absolute;
    background-color: #a4b5b8;
    width:14px;
    height:14px;
    transform:scale(0);
    border-radius:9px;
        -o-border-radius:9px;
        -ms-border-radius:9px;
        -webkit-border-radius:9px;
        -moz-border-radius:9px;
    animation-name:bounce_circularG;
        -o-animation-name:bounce_circularG;
        -ms-animation-name:bounce_circularG;
        -webkit-animation-name:bounce_circularG;
        -moz-animation-name:bounce_circularG;
    animation-duration:1.1s;
        -o-animation-duration:1.1s;
        -ms-animation-duration:1.1s;
        -webkit-animation-duration:1.1s;
        -moz-animation-duration:1.1s;
    animation-iteration-count:infinite;
        -o-animation-iteration-count:infinite;
        -ms-animation-iteration-count:infinite;
        -webkit-animation-iteration-count:infinite;
        -moz-animation-iteration-count:infinite;
    animation-direction:normal;
        -o-animation-direction:normal;
        -ms-animation-direction:normal;
        -webkit-animation-direction:normal;
        -moz-animation-direction:normal;
}

#circularG_1{
    left:0;
    top:23px;
    animation-delay:0.41s;
        -o-animation-delay:0.41s;
        -ms-animation-delay:0.41s;
        -webkit-animation-delay:0.41s;
        -moz-animation-delay:0.41s;
}

#circularG_2{
    left:6px;
    top:6px;
    animation-delay:0.55s;
        -o-animation-delay:0.55s;
        -ms-animation-delay:0.55s;
        -webkit-animation-delay:0.55s;
        -moz-animation-delay:0.55s;
}

#circularG_3{
    top:0;
    left:23px;
    animation-delay:0.69s;
        -o-animation-delay:0.69s;
        -ms-animation-delay:0.69s;
        -webkit-animation-delay:0.69s;
        -moz-animation-delay:0.69s;
}

#circularG_4{
    right:6px;
    top:6px;
    animation-delay:0.83s;
        -o-animation-delay:0.83s;
        -ms-animation-delay:0.83s;
        -webkit-animation-delay:0.83s;
        -moz-animation-delay:0.83s;
}

#circularG_5{
    right:0;
    top:23px;
    animation-delay:0.97s;
        -o-animation-delay:0.97s;
        -ms-animation-delay:0.97s;
        -webkit-animation-delay:0.97s;
        -moz-animation-delay:0.97s;
}

#circularG_6{
    right:6px;
    bottom:6px;
    animation-delay:1.1s;
        -o-animation-delay:1.1s;
        -ms-animation-delay:1.1s;
        -webkit-animation-delay:1.1s;
        -moz-animation-delay:1.1s;
}

#circularG_7{
    left:23px;
    bottom:0;
    animation-delay:1.24s;
        -o-animation-delay:1.24s;
        -ms-animation-delay:1.24s;
        -webkit-animation-delay:1.24s;
        -moz-animation-delay:1.24s;
}

#circularG_8{
    left:6px;
    bottom:6px;
    animation-delay:1.38s;
        -o-animation-delay:1.38s;
        -ms-animation-delay:1.38s;
        -webkit-animation-delay:1.38s;
        -moz-animation-delay:1.38s;
}

@keyframes bounce_circularG{
    0% { transform:scale(1); }
    100%{ transform:scale(.3); }
}

@-o-keyframes bounce_circularG{
    0% { -o-transform:scale(1); }
    100%{ -o-transform:scale(.3); }
}

@-ms-keyframes bounce_circularG{
    0% { -ms-transform:scale(1); }
    100%{ -ms-transform:scale(.3); }
}

@-webkit-keyframes bounce_circularG{
    0% { -webkit-transform:scale(1); }
    100%{ -webkit-transform:scale(.3); }
}

@-moz-keyframes bounce_circularG{
    0% { -moz-transform:scale(1); }
    100%{ -moz-transform:scale(.3); }
}

.invalid,
.invalid::placeholder,
.invalid label{
    color: #c92306 !important;
    border-color: #c92306 !important;
}


.plyr--video > .plyr__control--overlaid{
    background: #fff;
    color: #a4b5b8;
    border: solid 4px #a4b5b8;
}
.plyr--video > .plyr__control--overlaid,
.plyr--video > .plyr__control.plyr__tab-focus{
    box-shadow: 0px 0 0 5px rgba(255, 255, 255, 1), 0px 0 5px 5px rgba(0, 0, 0, 1);
}

body .plyr--video .plyr__control.plyr__tab-focus,
body .plyr--video .plyr__control:hover,
body .plyr--video .plyr__control[aria-expanded=true]{
    background: #a4b5b8;
    color: #fff;
}

body .plyr--full-ui input[type=range]{
    color: #a4b5b8;
}

body .plyr__video-wrapper{
    height: 100%;
    padding-bottom: 0 !important;
}

body .plyr__poster{
    background-size: cover;
}

body .plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{
    padding-bottom: 0;
    height: 1000%;
    top: 50%;
    transform: translateY(-50%) !important;
}


/* responsiveness -------------------------------------------- */



@media (max-width: 1100px){
    section#header{
        height: calc(100% - 170px);
    }
    body.admin-bar section#header{
        height: calc(100% - 32px - 170px);
    }
    .headline-text{
        height: 170px;
        line-height: 170px;
    }
    section#header h1,
    .headline-text h2{
        font-size: 44px;
        line-height: normal;
    }
    .cta{
        font-size: 44px;
        line-height: normal;
    }
    .cta .footnote{
        font-size: 22px;
    }
    footer .menu#menu-navigation-1 li a{
        font-size: 35px;
    }
}

@media (max-width: 1000px){
    section#header{
        height: calc(100% - 160px);
    }
    body.admin-bar section#header{
        height: calc(100% - 32px - 160px);
    }
    .headline-text{
        height: 160px;
        line-height: 160px;
    }
    section#header h1,
    .headline-text h2{
        font-size: 40px;
    }
    .cta{
        font-size: 40px;
    }
    .cta .footnote{
        font-size: 21px;
    }
    footer .menu#menu-navigation-1 li a{
        font-size: 34px;
    }
}

@media (max-width: 950px){
    section#header h1,
    .headline-text h2{
        font-size: 34px;
    }
    .container{
        padding: 0 45px;
    }
    header nav .container{
        padding: 130px 115px;
    }
    header nav .menu{
        padding-bottom: 60px;
    }
    header nav .menu a{
        padding: 8px 0;
    }
    .cta{
        font-size: 34px;
    }
    .cta .footnote{
        font-size: 20px;
    }
    footer{
        padding-bottom: 70px;
    }
    footer .containe{
        padding-top: 85px;
    }
    footer .menu#menu-navigation-1 li a{
        font-size: 33px;
    }
}

@media (max-width: 900px){
    section#main {
        padding: 20px 0;
    }
    footer .container{
        text-align: center;
    }
    footer nav{
        float: none;
    }
    footer .logo{
        display: block;
        float: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 850px){
    .container{
        padding: 0 35px;
    }
    header nav .container{
        padding: 120px 105px;
    }
    header nav .menu{
        padding-bottom: 50px;
    }
    header nav .menu a{
        padding: 5px 0;
    }
    .loading-anim{
        -webkit-transform: scale(0.7) translate(-70%, -70%);
           -moz-transform: scale(0.7) translate(-70%, -70%);
             -o-transform: scale(0.7) translate(-70%, -70%);
                transform: scale(0.7) translate(-70%, -70%);
    }
}

@media (max-width: 800px){
    section#header{
        height: calc(100% - 150px);
    }
    body.admin-bar section#header{
        height: calc(100% - 32px - 150px);
    }
    .headline-text{
        height: 150px;
        line-height: 150px;
    }
    section#header h1,
    .headline-text h2{
        font-size: 32px;
    }
    .container {
        padding: 0px 25px;
    }
    header nav .container{
        padding: 110px 0 110px 95px;
    }
    header nav .menu{
        padding-bottom: 40px;
    }
    .cta{
        font-size: 32px;
    }
    .cta .footnote{
        font-size: 19px;
    }
    footer{
        padding-bottom: 60px;
    }
    footer .containe{
        padding-top: 75px;
    }
    footer .menu#menu-navigation-1 li a{
        font-size: 32px;
    }
}


@media (max-width: 782px){
    section#header{
        height: calc(100% - 140px);
    }
    body.admin-bar section#header{
        height: calc(100% - 46px - 140px);
    }
    .headline-text{
        height: 140px;
        line-height: 140px;
    }
}


@media (max-width: 700px){
    section#header{
        height: calc(100% - 140px);
    }
    body.admin-bar section#header{
        height: calc(100% - 32px - 140px);
    }
    section#header h1,
    .headline-text h2{
        font-size: 30px;
    }
    .cta{
        font-size: 30px;
    }
    section#main {
        padding: 10px 0;
    }
    footer .menu#menu-navigation-1 li a{
        font-size: 30px;
    }
    .loading-anim{
        -webkit-transform: scale(0.65) translate(-80%, -80%);
           -moz-transform: scale(0.65) translate(-80%, -80%);
             -o-transform: scale(0.65) translate(-80%, -80%);
                transform: scale(0.65) translate(-80%, -80%);
    }
}


@media (max-width: 650px){
    section#header{
        height: calc(100% - 130px);
    }
    body.admin-bar section#header{
        height: calc(100% - 46px - 130px);
    }
    .headline-text {
        height: 130px;
        line-height: 130px;
    }
    .cta {
        font-size: 27px;
    }
    .cta .footnote {
        font-size: 17px;
    }
}


@media (max-width: 600px){
    #wpadminbar{
        top: -46px;
    }
    body.admin-bar.scrolled header{
        top: 0;
    }
}

@media (max-width: 500px){
    section#header{
        height: calc(100% - 120px);
    }
    body.admin-bar section#header{
        height: calc(100% - 46px - 120px);
    }
    .headline-text {
        height: 120px;
        line-height: 120px;
    }
    section#header h1,
    .headline-text h2{
        font-size: 28px;
    }
    .cta {
        font-size: 24px;
    }
    .cta .footnote {
        font-size: 16px;
        padding-top: 5px;
    }
    footer{
        padding-bottom: 50px;
    }
    footer .containe{
        padding-top: 65px;
    }
    footer .menu#menu-navigation-1 li a {
        font-size: 26px;
    }
}


@media (max-width: 450px){
    section#header{
        height: calc(100% - 100px);
    }
    body.admin-bar section#header{
        height: calc(100% - 46px - 100px);
    }
    .headline-text {
        height: 100px;
        line-height: 100px;
    }
    section#header h1,
    .headline-text h2{
        font-size: 26px;
    }
    header nav .container {
        padding: 90px 30px;
    }
    header nav .menu{
        padding-bottom: 30px;
    }
    section#main {
        padding: 0;
    }
    section#main h2,
    section#main h3,
    section#main p{
        margin:  15px 0;
    }
    footer .menu#menu-navigation-1{
        padding-bottom: 22px;
    }
    footer .menu#menu-navigation-1 li{
        display: block;
        line-height: normal;
    }
    footer .menu#menu-navigation-1 li:after{
        font-size: 50px;
        line-height: 26px;
    }
    footer .menu#menu-navigation-1 li a {
        font-size: 24px;
    }
        .user-dialog .options{
        float: none;
        width: 100%;
    }
    .user-dialog .text,
    .user-dialog .option,
    .user-dialog input{
        font-size: 18px;
        line-height: 20px;
        padding:  20px;
    }
    .user-dialog input,
    .user-dialog .input.show{
        height: 60px;
    }
    .user-dialog{
        right: 8px;
        bottom: 8px;
    }
    .user-dialog:not(.show){
        visibility: hidden;
        opacity: 0;
    }
    body.scrolled .user-dialog{
        visibility: visible;
        opacity: 1;
        -webkit-transition: all 0.25s ease-out;
           -moz-transition: all 0.25s ease-out;
             -o-transition: all 0.25s ease-out;
                transition: all 0.25s ease-out;
    }
    .user-dialog .trigger{
        width: 30px;
        height: 30px;
        border-width: 15px;
    }
    .user-dialog .box{
        right: 0;
        bottom: 42px;
    }
    .user-dialog .options .option:first-child{
        border-left: none;
    }
    .user-dialog .options .option{
        width: 50%;
        text-align: center;
        border-top: solid 1px rgba(0,0,0,0.1);
    }
    .user-dialog .box .arrow{
        right: 0px;
        height: 11px;
    }
    .user-dialog .box .arrow.show:after{
        bottom: 70%;
    }
}


@media (max-width: 400px){
    section#works .cta .footnote {
        font-size: 14px;
    }
}