*,
*::after,
*::before {
    box-sizing: border-box;
    position: relative;
    outline: none;
}

html {
    background: #fff;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
    display: block;
    min-width: 320px;
    font-family: 'Montserrat';
    font-weight: 300;
    letter-spacing: 0;
    table-layout: fixed;
    box-sizing: border-box;

    color: #686868;
}

#page-wrapper{
    display: table;
    min-height: 100%;
    height: 100%;
    width: 100%;
    -moz-table-layout: fixed;
    -ms-table-layout: fixed;
    -o-table-layout: fixed;
    table-layout: fixed;
    overflow: hidden;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-indent: 0;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

img {
    display: inline-block;
    outline: none;
}

main {
    display: table-row;
    height: 100%;
}

section {
    z-index: 1;
    padding: 0;
}

section.fluid-section {
    max-width: none;
}

.footer-wrapper {
    z-index: 1;
    padding: 0;
    position: relative;
    background-color: #111111;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
}

.c-yellow{
    color: #FFCD1D;
}

.c-white{
    color: #fff;
}

#page-footer {
    z-index: 1;
}

.border-top,
.border-right,
.border-bottom,
.border-left {
    display: block;
    position: absolute;
    background-color: rgb(230, 230, 230);
    z-index: 9;
    opacity: 0.8;
}

.border-top.opacity,
.border-right.opacity,
.border-bottom.opacity,
.border-left.opacity {
    opacity: 0.2;
}

.border-right {
    top: 0;
    right: -0.5px;
    width: 1px;
    height: 100%;
}

.border-left {
    top: 0;
    left: -0.5px;
    width: 1px;
    height: 100%;
}

.border-top {
    top: -0.5px;
    left: 0;
    width: 100%;
    height: 1px;
}

.border-bottom {
    bottom: -0.5px;
    left: 0;
    width: 100%;
    height: 1px;
}

/*header*/

#page-header {
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: none;
    background: rgba(18, 95, 222, 0);
    -webkit-transition-property: opacity, background-color, transform;
    transition-property: opacity, background-color, transform;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;

}

#page-header.fixed {
    position: fixed;
}

#page-header.scrolled {
    opacity: 0;
}

#page-header.hidden {
    transform: translate3d(0, -100%, 0);
}

#page-header.visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#page-header.black {
    background: rgba(0, 0, 0, 1);
}

#page-header.black-static {
    background: rgba(0, 0, 0, 1);
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

.header-logo{
    display: block;
    width: 100px;
    position: relative;
    height: 100px;
    transition: height 0.2s ease-out;
}

.header-logo--circles{
    display: block;
    position: absolute;
    transform: translateY(-50%) scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.2s ease-out;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
}

.header-logo--title{
    display: block;
    position: absolute;
    transform: translateY(-50%) scale(0.65);
    transition: transform 0.2s ease-out;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
}

#page-header.fixed .header-logo{
    height: 17px;
}

#page-header.fixed .header-logo--title{
    transform: translateY(-50%) scale(1);
}

#page-header.fixed .header-logo--circles{
    transform: translateY(-50%) scale(0);
}

/**/

/* footer */
#page-footer {
    width: 100%;
    z-index: 3;
    opacity: 1;
    display: table-row;
}

.footer-body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-copy {
    padding-top: 28px;
    padding-bottom: 28px;
}

/**/

/* mobile menu */
.mobile-menu-mask {
    display: table;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
}

.mobile-menu-mask:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 120%;
    background-color: #000;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: 50% 0;
    transition: transform 0.4s ease-out;
    -webkit-transform: scaleY(0);
    -webkit-transition: -webkit-transform 0.4s ease-out;
}

.mobile-menu-mask.opened {
    visibility: visible;
}

.mobile-menu-mask.opened:after {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
}

.mobile-menu-wrapper {
    height: 100%;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.mobile-menu--items {
    display: block;
    margin: auto;
    width: 320px;
    text-align: center;
    position: relative;
    transform: translate3d(0, 20px, 0);
    z-index: 1;
    visibility: hidden;
}

.mobile-menu--items.opened {
    visibility: visible;
    transform: translate3d(0, 0, 0);

    transition: transform 0.4s ease-out;
}

.mobile-menu--item {
    padding: 10px;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}

.opened > .mobile-menu--item {
    opacity: 1;
    transform: translate3d(0, 0, 0);

    transition-property: opacity, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

.mobile-menu--item--title {
    font-style: normal;
    font-weight: 900;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;

    color: #FFFFFF;
}

.footer-logo-wrapper{
    display: block;
    width: 100px;
}

/**/

/* popup */
.popup {
    display: inline-block;
    max-width: 480px;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgb(18, 95, 222);
    opacity: 0;
    vertical-align: middle;

    transition: opacity 0.3s ease-out;
}

.popup-header{
    position: relative;
    padding-top: 40px;
}

.popup--close-button{
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    animation: fly 0.3s ease-in;

    transition: transform 0.3s ease-in-out;
}

.popup--close-button span{
    display: block;
    background-color: rgb(255,255,255);
    position: absolute;
}

.popup--close-button span:first-child{
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.popup--close-button span:last-child{
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
}

.popup--close-button:hover{
    transform: rotate(45deg) scale(0.8);
}

.popup-heading{
    font-style: normal;
    font-weight: bold;
    line-height: 40px;
    font-size: 30px;
    text-align: center;
    letter-spacing: 2px;
    padding-top: 40px;

    color: #FFFFFF;
}

.active .popup{
    opacity: 1;
}


/**/

/* header & footer menus */

.header-menu-wrapper {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.header-menu-trigger {
    display: inline-block;
    width: auto;
    cursor: pointer;
}

.header-menu-trigger--caption {
    font-style: normal;
    font-weight: 900;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;

    color: #FFFFFF;
}

.header-menu-trigger--button {
    width: 25px;
    height: 19px;
    position: relative;
    vertical-align: middle;
    display: inline-block;
}

.header-menu-trigger--button span {
    display: block;
    width: 100%;
    background-color: #ffffff;
    height: 2px;
    left: 0;
    position: relative;
    margin-bottom: 6px;
    transform-origin: 0 50%;

    transition: transform 0.2s ease-out;
}

.header-menu-trigger--button span:last-child {
    margin-bottom: 0;
}

.header-menu-trigger--button.active span:nth-child(1) {
    transform: rotate(40deg);
}

.header-menu-trigger--button.active span:nth-child(2) {
    transform: scaleX(0);
}

.header-menu-trigger--button.active span:nth-child(3) {
    transform: rotate(-40deg);
}

.header-menu {
    display: block;
}

.footer-menu {
    display: block;
}

.footer-menu,
.header-menu {
    width: auto;
    font-size: 0;
    text-align: center;
    margin: 0 30px;
}

.footer-menu--item,
.header-menu--item {
    display: inline-block;
    margin: 0 5px;
    padding: 0 15px;
    vertical-align: middle;
    position: relative;
}

.footer-menu--item:last-child,
.header-menu--item:last-child {
    margin-right: 0;
}

.footer-menu--item:first-child,
.header-menu--item:first-child {
    margin-left: 0;
}


.footer-menu--item:before,
.header-menu--item:before {
    content: "";
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    border: 1px solid #FFCD1D;

    transition: opacity 0.2s, transform 0.2s;
    -webkit-transition: opacity 0.2s, transform 0.2s;
}

.footer-menu--item.active:before,
.footer-menu--item:hover:before,
.header-menu--item:hover:before {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);

    transition: opacity 0.4s 0.2s, transform 0.4s;
    -webkit-transition: opacity 0.4s 0.2s, transform 0.4s;
}

.footer-menu--item.active:before,
.header-menu--item.active:before{
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    opacity: 1;
    transform: translateX(-50%);
    transform-origin: center;
    border-radius: 50%;
    z-index: 1;
    bottom: -5px;
    left: 50%;
    top: auto;
    background-color: #FFCD1D;
    border: none;
    transition: none;
    -webkit-transition: none;
}

.footer-menu--item.active:before{
    top: -10px;
    bottom: auto;
}

/*.footer-menu--item:before,*/
/*.header-menu--item:before {*/
    /*content: "";*/
    /*width: 100%;*/
    /*height: 38px;*/
    /*display: block;*/
    /*position: absolute;*/
    /*opacity: 0;*/
    /*-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;*/
    /*-webkit-transform: skewY(-3deg) skewX(-11deg);*/
    /*transform: skewY(-3deg) skewX(-11deg);*/
    /*transform-origin: center;*/
    /*z-index: 1;*/
    /*top: -6px;*/
    /*left: 0;*/

    /*transition: opacity 0.2s, transform 0.2s;*/
    /*-webkit-transition: opacity 0.2s, transform 0.2s;*/
/*}*/

/*.header-menu--item.active:before,*/
/*.header-menu--item:before {*/
    /*background-color: #ffffff;*/
/*}*/

/*.footer-menu--item:before {*/
    /*background-color: rgb(18, 95, 222);*/
/*}*/

/*.footer-menu--item.active:before,*/
/*.footer-menu--item:hover:before,*/
/*.header-menu--item.active:before,*/
/*.header-menu--item:hover:before {*/
    /*opacity: 1;*/
    /*-webkit-transform: skewY(0) skewX(0);*/
    /*transform: skewY(0) skewX(0);*/
/*}*/

.footer-menu--item--title,
.header-menu--item--title {

    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;

    transition: color 0.4s;
    -webkit-transition: color 0.4s;
}

.header-menu--item--title {
    color: #ffffff;
}

.footer-menu--item--title {
    color: #ffffff;
}

.footer-menu--item.active .footer-menu--item--title,
.footer-menu--item:hover .footer-menu--item--title {
    color: #FFCD1D;
}

.header-menu--item.active .header-menu--item--title,
.header-menu--item:hover .header-menu--item--title {
    color: #FFCD1D;
}

/**/

/*header phones*/
.header-phones {
    position: relative;
    padding-left: 40px;
}

/*.header-phones::after{*/
/*content: "";*/
/*display: block;*/
/*position: absolute;*/
/*width: 3px;*/
/*height: 25px;*/
/*right: 0;*/
/*top: 50%;*/
/*background-color: rgb(18,95,222);*/
/*transform: translateY(-50%) skewY(45deg);*/
/*}*/

.header-phones--trigger {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgb(18, 95, 222);
    border-radius: 50%;
    position: relative;
    cursor: pointer;

    transition-property: background-color;
    transition-duration: 0.4s;
}

#page-header.blue .header-phones--trigger {
    background-color: #ffffff;
}

.header-phones--trigger svg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.header-phones--trigger path {
    fill: rgb(255, 255, 255);

    transition-property: fill;
    transition-duration: 0.4s;
}

#page-header.blue .header-phones--trigger path {
    fill: rgb(18, 95, 222);
}

.header-phones--phone {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
}

.header-phones .dropdown-wrapper {
    left: 75%;
    transform: translate3d(-50%, 0, 0);
}

.dropdown-wrapper {
    height: auto;
    max-height: 0;
    position: absolute;
    overflow: hidden;
    top: 100%;
    margin-top: 26px;
    border: 1px solid transparent;
}

.header-phones--dropdown {
    right: 0;
    padding: 0 20px;
    position: relative;
    background-color: rgb(18, 95, 222);
    transform: translate3d(0, -100%, 0);

    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

.dropdown-wrapper.active {
    max-height: none;
}

.active .header-phones--dropdown {
    transform: translate3d(0, 0, 0);
}

/**/

/* lang selector */
.lang-select {
    display: block;
    margin-left: 30px;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.lang-select::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    background-color: #FFCD1D;
    transform: translateY(-50%);

    transition-property: background-color;
    transition-duration: 0.4s;
}

#page-header.blue .lang-select::after {
    background-color: rgb(255, 255, 255);
}

.lang-select--dropdown {
    right: 0;
    padding: 0 20px;
    position: relative;
    background-color: #FFCD1D;
    transform: translate3d(0, -100%, 0);

    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

.lang-select--lang {
    font-size: 14px;
    font-weight: bold;
    display: table-cell;
    color: #ffffff;
    text-transform: capitalize;
    padding: 1px 15px;
}

.lang-select .dropdown-wrapper {
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    margin-top: 32px;
}

.active .lang-select--dropdown {
    transform: translate3d(0, 0, 0);
}

.mobile-lang-select ul{
    display: block;
}

.mobile-lang-select li {
    display: inline-block;
    vertical-align: middle;
}

.mobile-lang-select--lang {
    font-size: 14px;
    font-weight: bold;
    display: table-cell;
    color: #ffffff;
    text-transform: capitalize;
    padding: 0 15px;
}

.mobile-lang-select--lang.active {
    color: #FFCD1D;
}

/**/

/* breadcrumbs */
.breadcrumbs {
    display: block;
    font-size: 0;
    padding-top: 80px;
    padding-bottom: 75px;
}

.breadcrumbs.padding-top {
    padding-top: 160px;
}

.breadcrumbs li {
    display: inline-block;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 5px;
    vertical-align: middle;
}

.breadcrumbs li:first-child {
    margin-left: 0;
}

.breadcrumbs li:last-child {
    margin-right: 0;
}

.breadcrumbs.light li {
    color: #ffffff;
}

.breadcrumbs.dark li {
    color: #686868;
}

.breadcrumbs.light path {
    fill: #ffffff;
}

.breadcrumbs.dark path {
    fill: #686868;
}

.breadcrumbs li.active {
    color: #FFCD1D;
}

/**/

/*intro block*/
.intro-block:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);

    transition: background-color 2s ease-out;
}

.intro-block--background-wrapper {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: no-repeat center/cover;
    transform-origin: 50% 100%;
    transform: scale(1);

    transition: transform 2s ease-out;
}

.intro-block--background-wrapper canvas {
    height: 100%;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

}

.intro-block--content-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.intro-block--content {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    padding: 0 0 100px 0;
}

.intro-block--title,
.about-intro-block--title,
.home-intro-block--title {
    color: #ffffff;
}

.intro-block--footer {
    display: block;
    width: 100%;
    margin-top: 70px;
}

.intro-block--mobile-footer {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.intro-block--scroll-button {
    display: block;
    position: relative;
    cursor: pointer;
}

.intro-block--scroll-button:after{
    content: "";
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #FFCD1D;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scale(1);
    transition: transform 0.6s ease-in-out;
}

.intro-block--scroll-button span{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
}

.intro-block--scroll-button:hover:after{
    transform: translateY(-50%) scale(0.75);
    transition: transform 0.3s ease-in-out;
}
/*.loading .intro-block--background-wrapper {*/
    /*transform: scale(1.1);*/
/*}*/

/*.loading .intro-block:before {*/
    /*background-color: rgba(0, 0, 0, 0.0);*/
/*}*/

/**/

/* rotated captions */
.rotated-caption{
    position: relative;
    display: block;
}

.rotated-caption span{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    background: no-repeat center/contain;
    animation-name: rotated-caption;
    animation-duration: 12s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}

@keyframes rotated-caption {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/**/

/* advantages block */

.advantages--caption {
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 36px;

    color: rgb(18, 95, 222);
}

.advantages--title {
    font-style: normal;
    font-weight: 300;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 4px;
    opacity: 1;

    color: #000000;
}

.advantages--description {
    line-height: 26px;
    font-size: 16px;
    margin-top: 60px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    color: #686868;
}

/**/

/* advantage */

.advantages--collection {

}

.advantages-block--advantage-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.advantages-block--advantage-wrapper:nth-child(2) > .border-left,
.advantages-block--advantage-wrapper:nth-child(2) > .border-right {
    display: none;
}

.advantages-block--advantage--image {
    display: block;
    margin-bottom: 20px;
    height: 90px;
}

.advantages-block--advantage--title {
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 20px;
}

.advantages-block--advantage--description {
    line-height: 26px;
    font-size: 16px;
    color: #686868;
    font-family: 'Open Sans', sans-serif;
}

/**/

/* locations */

.locations-block {
    background-color: #111111;
}

.locations-block--heading {
    position: relative;
    overflow: hidden;
    display: block;
    margin-left: -70px;
    margin-right: -70px;
    padding: 100px 70px;
    margin-bottom: -100px;
}

.locations-block--heading--bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: rgba(255, 205, 29, 1);
}

.locations-block--heading.animated .locations-block--heading--bg {
    transform: translate(-50%, -50%) scale(3);
    transition: transform 1s ease-out;
}

.locations-block--heading--caption {
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 36px;

    color: #FFFFFF;
}

.locations-block--heading--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 4px;
    opacity: 0;

    color: #111111;
}

.locations-block--heading.animated .locations-block--heading--title{
    opacity: 1;
    transition: opacity 0.6s ease-out 0.6s;
}

.locations-titles--arrows {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: right;
}

.locations-titles--slide {
    cursor: pointer;
    /*border-bottom: 5px solid #E6E6E6;*/
    z-index: 1;
    position: relative;
}

.locations-titles--pagination {
    background-color: #fff;
    display: block;
    width: 100%;
    position: relative;
    height: 3px;
    margin-bottom: 15px;
}

.locations--titles--progressbar {
    background-color: #FFCD1D;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transform-origin: 0 0;
}

/*.locations-titles--slide:after{*/
/*content: "";*/
/*display: block;*/
/*height: 5px;*/
/*position: absolute;*/
/*left: 0;*/
/*bottom: -5px;*/
/*width: 0;*/
/*background-color: rgb(18,95,222);*/
/*z-index: 2;*/

/*transition: 0.3s ease;*/
/*}*/

.locations-titles--caption {

    font-style: normal;
    line-height: 14px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    transition: 0.3s ease;
    opacity: 0.5;

}

.locations-titles--caption.grey{
    color: #686868;
}

.locations-titles--caption--separator {
    display: inline-block;
    height: 1px;
    vertical-align: middle;
    width: 20px;
    background-color: #ffffff;
    margin: 0 10px;

    transition: 0.3s ease;
}

.locations-titles--caption.grey .locations-titles--caption--separator{
    background-color: #686868;
}

.location-titles--caption--number{
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.locations-titles--caption.grey .location-titles--caption--number{
    border: 1px solid #686868;
}

.locations-titles--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 30px;
    color: #E6E6E6;
    display: block;
    margin-top: 22px;

    transition: 0.3s ease;
}

/*.locations-titles--slide.selected:after{*/
/*width: 100%;*/
/*}*/

.locations-titles--slide.selected .locations-titles--title,
.locations-titles--slide:hover .locations-titles--title {
    color: rgba(255, 205, 29, 1);
}

.locations-titles--slide.selected .locations-titles--caption,
.locations-titles--slide:hover .locations-titles--caption  {
    opacity: 1;
}

.locations-titles--slide:hover .locations-titles--caption--separator {
    width: 40px;
}

.locations-block--body {
    padding-bottom: 120px;
    padding-top: 120px;
    background-color: #111111;
}

.locations-images {
    display: block;
    position: relative;
}

.locations-images--images {
    display: block;
    height: 500px;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.locations-images--mask {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.locations-images--mask span {
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: none;
    border-color: #111111;
    border-style: solid;
}

.locations-images--mask.animated span {
    border-width: 0 !important;
    transform: translate(-50%, -50%) scale(1.2);
    visibility: visible;
    transition: visibility 0s, transform 0.8s ease-out, border-width 0.8s ease-in-out 0.8s;
}
.big-circle-button{
    display: inline-block;
    position: relative;
    padding-left: 75px;
    cursor: pointer;
}

.big-circle-button--circle{

    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #FFCD1D;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;

}

.big-circle-button.white .big-circle-button--circle{
    border: 2px solid #fff;
}

.big-circle-button--circle span{
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;

    transition: transform 0.6s ease-in-out;
}

.big-circle-button--circle span:before{
    content: "";
    display: block;
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background-color: #FFCD1D;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scale(1);

    transition: transform 0.3s ease-out;
}

.big-circle-button.white .big-circle-button--circle span:before{
    background-color: #ffffff;
}

.big-circle-button:hover .big-circle-button--circle span:before{
    transform: translate3d(-50%, -50%, 0) scale(0.5);
}

.big-circle-button--caption{
    white-space: nowrap;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.big-circle-button.white .big-circle-button--caption,
.big-circle-button.black .big-circle-button--caption{
    color: #111111;
}

.small-circle-button{
    display: inline-block;
    position: relative;
}


.small-circle-button--circle{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #FFCD1D;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(1);
    transition: transform 0.8s ease-out;
}

.small-circle-button--circle:before{
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid #FFCD1D;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

.small-circle-button:hover .small-circle-button--circle{
    transform: translateY(-50%) scale(0.75);
    transition: transform 0.4s ease-out;
}

.small-circle-button:hover .small-circle-button--circle:before{
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.4s ease-out 0.4s;
}

.small-circle-button--caption{
    margin-left: 25px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
}

.small-circle-button.black .small-circle-button--caption{
    color: #111111;
}
/*.locations-images--mask span:nth-child(1) {*/
    /*left: 0;*/
/*}*/

/*.locations-images--mask span:nth-child(2) {*/
    /*left: 33%;*/
/*}*/

/*.locations-images--mask span:nth-child(3) {*/
    /*left: 66%;*/
/*}*/

/*.locations-images--mask.animated span:before {*/
    /*content: "";*/
    /*display: block;*/
    /*height: 100%;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*visibility: hidden;*/
    /*transform: translate3d(-100%, 0, 0);*/
    /*background-color: rgba(255, 255, 255, 1);*/
    /*-webkit-animation: shutter 1.6s; !* Safari 4+ *!*/
    /*-o-animation: shutter 1.6s; !* Opera 12+ *!*/
    /*animation: shutter 1.6s; !* IE 10+, Fx 29+ *!*/
/*}*/

/*.locations-images--mask.shutter-left span:before {*/
    /*animation-name: shutter-left;*/
    /*-webkit-animation-name: shutter-left;*/
/*}*/

/*.locations-images--mask.shutter-right span:before {*/
    /*animation-name: shutter-right;*/
    /*-webkit-animation-name: shutter-right;*/
/*}*/

@keyframes circle-shutter {
    0% {
        visibility: visible;
        transform: translateY(-50%) scale(0);
        border-width: 540px;
    }
    50% {
        visibility: visible;
        transform: translateY(-50%) scale(1);
        border-width: 540px;
    }
    100% {
        transform: translateY(-50%) scale(1);
        visibility: hidden;
        border-width: 0;
    }
}

.case-gallery--images {
    height: 550px;
    position: relative;
    z-index: 1;
}

.case-images--image,
.locations-images--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.case-images--image.active,
.locations-images--image.active {
    z-index: 2;
}

.top-article {
    background-color: #111111;
}

.locations-footer {
    position: absolute;
    left: 0;
    width: 100%;
    transform: translate3d(0, -50%, 0);
    z-index: 2;
}

.location-summary {
    padding: 40px 0;
}

.locations-summary--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 30px;
    letter-spacing: 3px;
    color: #111111;
    display: block;
    margin-top: 22px;
    margin-bottom: 30px;
}

.location-summary--footer {
    display: block;
    position: relative;
}

.location-characteristic--caption {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;

    color: #686868;
}

.location-characteristic--value {
    font-style: normal;
    font-weight: 900;
    line-height: 25px;
    font-size: 14px;

    color: #111111;
}

/**/

/* analytics */
.analytics {
    background-color: #111;
    padding-bottom: 100px;
}

.analytics-heading {
    padding-top: 60px;
    padding-bottom: 80px;
}

.analytics-heading--caption {
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    padding-bottom: 40px;

    color: rgb(18, 95, 222);
}

.analytics-heading--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 4px;

    color: #ffffff;
}

.analytics-heading--footer {
    margin-top: 60px;
}

.analytics--items {
    font-size: 0;
}

.analytics--item {
    display: inline-block;
    width: 50%;
    height: 330px;
    padding-top: 60px;
    vertical-align: top;
}

.analytics--item-wrapper {
    text-align: center;
    padding-right: 15px;
    padding-left: 15px;
}

.analytics--item--image {
    text-align: center;
    margin-bottom: 25px;
}

.analytics--item--title {
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    font-size: 25px;
    text-align: center;

    color: #ffffff;
}

.analytics--item--description {
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
    font-size: 16px;
    text-align: center;

    color: #DFDFDF;
}

.analytics--pagination {
    background-color: #E6E6E6;
    display: block;
    width: 100%;
    position: relative;
    height: 3px;
}

.analytics--progressbar {
    background-color: rgba(255, 205, 29, 1);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transform-origin: 0 0;
}

#js-analytics-slider::before {

    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background-color: rgba(255, 205, 29, 1);
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);

}

/**/

/* benefits */
.benefits-section {
    z-index: 2;
    margin-bottom: 80px;
}

.benefits {
    /*margin-left: -70px;*/
    /*margin-right: -70px;*/
    /*padding: 100px 70px;*/
    padding: 100px 0;
    background-image: url('/images/benefits-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.benefits::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);

    transition: opacity 0.3s ease;
}

.benefits:hover::before {
    opacity: 1;
}

.benefits--heading--caption {
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 36px;

    color: #FFFFFF;
}

.benefits--heading--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 4px;

    color: #FFFFFF;
}

.benefits--collection {
    left: 0;
    display: block;
    width: 100%;
    font-size: 0;
}

.benefits--benefit {
    display: inline-block;
    vertical-align: bottom;
    width: 33.33333%;
    position: relative;
}

.benefit-wrapper {
    padding-left: 40px;
    padding-right: 20px;
    cursor: default;
    margin-left: 10px;
}

.benefit-circles{
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0;
    top: 12px;
    background-color: #FFCD1D;
}

.benefit-circles span{
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    opacity: 0;
    border: 1px solid #FFCD1D;
    transform: translate(-50%, -50%) scale(1);
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

@keyframes benefit-circle {
    0%{
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    50%{
        opacity: 1;
    }

    100%{
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.benefit-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    left: 8px;
    top: 12px;
    opacity: 1;
    background-color: #FFCD1D;
}

.benefits--benefit--title {
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    font-size: 30px;

    color: #FFFFFF;
}

.benefits--benefit--description {
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
    font-size: 16px;
    display: block;
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    color: #FFFFFF;

    transition: 0.6s ease;
}

.benefits--benefit--description span {
    padding-top: 30px;
    display: block;
    transition: 0.4s ease-out;
}

.benefits--benefit:hover .benefits--benefit--description {
    max-height: 300px;
    transition: max-height 0.6s ease-out;
}

.benefits--benefit:hover .benefits--benefit--description span {
    opacity: 1;
    transform: translate3d(0, 0, 0);

    transition: 0.6s ease-out 0.2s;
}

.benefits--benefit.swiper-slide-active .benefit-circles span,
.benefits--benefit:hover .benefit-circles span{
    animation-name: benefit-circle;
}

.benefits--footer {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    transform: translate3d(0, 50%, 0);
    z-index: 2;
}

.benefits--pagination {
    background-color: #E6E6E6;
    display: block;
    width: 100%;
    position: relative;
    height: 3px;
    margin-top: 60px;
    margin-bottom: 30px;
}

.benefits--progressbar {
    background-color: #FFCD1D;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transform-origin: 0 0;
}

/**/

/* pagination */
ul.pagination {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
    text-indent: 0;
}

ul.pagination li {
    display: inline-block;
    padding: 5px;
    margin: 5px;
}

ul.pagination a,
ul.pagination span {
    font-style: normal;
    font-weight: bold;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 3.23px;

    color: #FFCD1D;
}

ul.pagination li.disabled span,
ul.pagination li.active span {
    color: #000;
}

/**/

/* partners */
.partners {

}

.partners--heading {
    margin-left: -70px;
    margin-right: -70px;
    padding: 100px 70px;
    background-image: url('/images/partners-heading.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.partners--heading--caption {
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 36px;

    color: #FFFFFF;
}

.partners--heading--title {
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 4px;

    color: #FFFFFF;
}

.partners--slider {
    /*background-color: rgb(18, 95, 222);*/
    margin-left: -70px;
    margin-right: -70px;
    padding: 0 70px;
    /*width: 600px;*/
}

.partners--arrows {
    text-align: right;
    padding-top: 40px;
    padding-bottom: 40px;
}

.partners--slide {
    padding-top: 70px;
    padding-bottom: 70px;
    width: 33.3333%;
}

.partners--slide:nth-child(odd) .border-left,
.partners--slide:nth-child(odd) .border-right {
    /*display: none;*/
}

.partners--slide--image {
    display: block;
    height: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.partners--slide--image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
}

.partners--slide--title {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    text-align: center;

    color: #111111;
}

.partners--footer {
    padding-top: 40px;
    /*padding-bottom: 100px;*/
}

/**/

/*partnership page*/
.partnership-section--content {
    width: 100%;
    height: 100%;
    margin-top: 200px
}

.partnership-column--wrapper {
    padding-top: 20px;
}

/**/

/* news */
.news {
    padding-bottom: 100px;
    padding-top: 100px;
}

.news-summary--caption {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;

    color: #686868;
    margin-bottom: 20px;
}

.news-summary--caption--separator {
    display: inline-block;
    height: 1px;
    vertical-align: middle;
    width: 20px;
    background-color: #D8D8D8;
    margin: 0 10px;
}

.news-summary--date {
    font-style: normal;
    font-weight: bold;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;

    color: #828282;
}

.news-summary--title {
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    font-size: 30px;

    color: #000000;
}

.news-summary--description {
    margin-top: 30px;
    color: #686868;
}

.news-summary--footer {
    margin-top: 30px;
}

.news-footer {
    margin-top: 60px;
    text-align: right;
}

/*.details-arrow{*/
/*display: inline-block;*/
/*vertical-align: middle;*/
/*font-size: 0;*/
/*}*/

/*.details-arrow:before{*/
/*display: inline-block;*/
/*content: "";*/
/*vertical-align: middle;*/
/*height: 1px;*/
/*background-color: rgb(18,95,222);*/
/*width: 0;*/
/*margin-right: -3px;*/

/*transition: 0.3s ease;*/
/*}*/

/*.details:hover .details-arrow:before{*/
/*width: 25px;*/
/*}*/

/**/

/* contacts */
.contacts {
    padding-top: 100px;
}

.contacts--contacts-wrapper {

}

.contacts--caption {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #828282;
}

.contacts--phone {
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff;
}

.contacts--mail {
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    font-size: 24px;
    color: #FFCD1D;
}

.contacts--address {
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    font-size: 24px;
    color: #fff;
}

.contacts--schedule {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;

    color: #828282;
}

.contacts--schedule--day {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    color: #fff;
}

.contacts--map {
    position: relative;
    width: 100%;
}

/**/

/*locations map*/

.locations-map{
    background-color: #111;
}

.locations-map--caption {

}

.locations-map--map {
    display: block;
    width: 100%;
    position: relative;
    height: 550px;
}

.location-summary {
    display: block;
    position: relative;
}

.location-summary--image {
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.location-summary--image img {
    display: block;
    transform: translateX(-50%);
    left: 50%;
}

/**/

/*manifesto*/
.manifesto--title {
    font-style: normal;
    font-weight: bold;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 4px;

    color: #000000;
}

/**/

/*team*/
.team-section {
    padding-bottom: 20px;
    padding-top: 40px;
}

.team--caption {
    margin-bottom: 0 !important;
}

.team--person--image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    margin-top: 40px;
}

.team--person--position {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;

    color: #686868;

    margin-bottom: 20px;
}

.team--person--name {
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    font-size: 30px;

    color: #111111;
}

/**/

/* social networks */
.social-networks {
    display: block;
    font-size: 0;
    white-space: nowrap;
    line-height: 1;
}

.social-networks li {
    display: inline-block;
    margin: 0 10px;
}

.social-networks li:last-child {
    margin-right: 0;
}

.social-networks li:first-child {
    margin-left: 0;
}

/**/

/*forms*/
.form-field {
    display: block;
    width: 100%;
    margin-top: 25px;
    position: relative;
}

.form-field:last-child {
    margin-bottom: 0;
}

label.error {
    color: rgb(252, 72, 72);
    font-size: 12px;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    text-align: right;
    width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    display: block;
    width: 100%;
    border: none;
    outline: 0;
    padding: 10px;
    border-bottom: 1px solid #686868;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
}

textarea {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #686868;
    background-color: transparent;
    resize: none;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
}

input.input,
textarea {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 16px;
    position: relative;
    z-index: 2;

    color: #000;
}

.filled .placeholder {
    transform: translate3d(0, -30px, 0);
}

.placeholder {
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;

    color: #111;;
    transition: transform 0.3s ease;
}

form {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.form-locker {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #FFCD1D;
    opacity: 0;
    z-index: 1;
    visibility: hidden;

    transition: opacity 0.2s ease;
}

form.processing .form-locker {
    opacity: 0.75;
    visibility: visible;
}

.order-form {
    display: block;
    position: relative;
    margin-left: -70px;
    margin-right: -70px;
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FFCD1D;
}

.form-header {
    font-style: normal;
    font-weight: bold;
    line-height: 40px;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: block;

    color: #FFFFFF;
}

.form-footer {
    display: block;
    margin-top: 100px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.form-button {
    display: block;
}

form.processing .form-button {
    display: none;
}

.form-progressbar {
    visibility: hidden;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
}

.progress {
    display: block;
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    background-color: #ffffff;
    height: 100%;
    transform-origin: 0% 50%;

    transition: transform 3s ease-out;
    -webkit-transition: transform 3s ease-out;
}

form.processing .form-progressbar {
    visibility: visible;
}

.processing .progress {
    transform: scaleX(1);
    transition: transform 3s ease-out;
    -webkit-transition: transform 3s ease-out;
}

form.processed .form-content {
    display: none;
}

.form-response {
    display: none;

}

.form-response--text {
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    font-size: 30px;
    color: #111;
    display: block;
    max-width: 590px;
    width: 100%;

}

.form-response--button {
    cursor: pointer;
    margin-top: 30px;
}

.form-response--caption {
    font-style: normal;
    font-weight: bold;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #FFFFFF;

    display: inline-block;
}

form.processed .form-response {
    display: block;
}

/**/

/* general */

.section--caption {
    font-style: normal;
    font-weight: 900;
    /*font-size: 18px;*/
    /*line-height: 18px;*/
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.section--caption.blue {
    color: rgb(18, 95, 222);
}

.section--caption.white {
    color: #ffffff;
}

/**/

.location-description--footer {
    margin-top: 30px;
}

.download-link--caption {
    font-style: normal;
    font-weight: 900;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: 2px;
    padding-left: 20px;

    color: #111;
}

.case-page--description-caption {
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    font-size: 30px;
    letter-spacing: 3px;
}

.location-page--video-cover {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
}

.play-video-button {
    z-index: 2;
    border-radius: 50%;
    border: 2px solid #FFCD1D;
    position: absolute;
    width: 120px;
    height: 120px;

    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    cursor: pointer;
}

.play-video-button:before{
    content: "";
    background-color: #FFCD1D;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: transform 0.4s ease-out;
}

.play-video-button:hover:before{
    transform: translate3d(-50%, -50%, 0) scale(0.8);
}

.location-advantage--container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.location-advantage--title {
    font-style: normal;
    font-weight: bold;
    line-height: 40px;
    font-size: 30px;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 30px;

    color: #000000;
}

.location-advantage--image {
    text-align: center;
    margin-bottom: 30px;
}

.location-advantage--image img {
    max-height: 100px;
    display: inline-block;

}

.location-advantage--description {
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
    font-size: 16px;
    text-align: center;

    color: #686868;
}

.location-order--caption {
    padding-bottom: 20px;
}

/*buttons*/

.button {
    display: inline-block;
    height: 70px;
    position: relative;
    cursor: pointer;
    padding: 0 50px;
    text-align: center;
    border: 0;
    outline: none;
}

.button .button--background {
    display: block;
    position: absolute;
    transform: skewY(5deg);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    transition: transform 0.4s;
    -webkit-transition: transform 0.4s;
}

.button .button--background::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: scaleX(0);
    transform-origin: center;
    z-index: 1;
    top: 0;
    left: 0;
}

.button--label {
    font-weight: 900;
    font-size: 15px;
    position: relative;
    z-index: 2;
    letter-spacing: 4px;
    line-height: 70px;
    opacity: 0;
}

.button:hover .button--background {
    transform: skewY(-5deg);
}

.button.filled .button--background::before {
    background-color: #125FDE;
}

.button.stroked .button--background::before {
    border: 2px solid rgb(18, 95, 222);
}

.button.stroked.white .button--background::before {
    border: 2px solid #FFFFFF;
}

.button.stroked.white .button--label {
    color: #ffffff;
}

.button.filled.white .button--background::before {
    background-color: #FFFFFF;
    border: none;
}

.button.filled.white .button--label {
    color: rgb(18, 95, 222);
}

.button.filled .button--label {
    color: #ffffff;
}

.button.stroked .button--label {
    color: rgb(18, 95, 222);
}

.details {
    font-style: normal;
    font-weight: bold;
    line-height: 25px;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.08rem;
    text-transform: uppercase;

    color: #FFCD1D;
}

.details:after{
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #FFCD1D;
    vertical-align: middle;
}

/**/
.page-heading {
    padding-bottom: 60px;
}

.page-caption {
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 30px;

    color: rgb(18, 95, 222);
}

.page-headline {
    font-style: normal;
    font-weight: bold;
    line-height: 80px;
    font-size: 80px;
    letter-spacing: 7px;
    text-align: left;

    color: #000000;
}

.section-headline {

}

/* error page */
.error-section {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/**/

/* arrows */

.download-arrow {
    width: 31px;
    height: 43px;
    display: inline-block;
    position: relative;
}

.download-arrow span {
    display: block;
    position: absolute;
}

.download-arrow.blue span {
    background-color: #125FDF;
}

.download-arrow span:nth-child(1) {
    height: 32px;
    width: 1px;
    left: 15px;
}

.download-arrow span:nth-child(2) {
    width: 13px;
    height: 1px;
    transform: rotate(45deg);
    left: 3px;
    top: 36px;
    transform-origin: 100% 50%;
}

.download-arrow span:nth-child(3) {
    width: 13px;
    height: 1px;
    transform: rotate(-45deg);
    right: 3px;
    top: 36px;
    transform-origin: 0 50%;
}

.download-arrow span:nth-child(4) {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.download-arrow span:nth-child(5) {
    width: 1px;
    height: 20px;
    bottom: 0;
    left: 0;
}

.download-arrow span:nth-child(6) {
    width: 1px;
    height: 20px;
    bottom: 0;
    right: 0;
}

.details-arrow,
.long-arrow--left {
    display: inline-block;
    width: 64px;
    height: 19px;
    position: relative;
    cursor: pointer;
    margin-left: 10px;
    vertical-align: middle;
}

.long-arrow--left.disabled {
    cursor: default;
    opacity: 0.5;
}

.details-arrow span,
.long-arrow--left span {
    height: 1px;
    position: absolute;
    transition: 0.3s ease;
}

.long-arrow--left.disabled span {
    background-color: #E6E6E6;;
}

.details-arrow.white span,
.long-arrow--left.white span {
    background-color: #FFFFFF;
}

.long-arrow--left.white.disabled span {
    opacity: 0.2;
}

.details-arrow span,
.long-arrow--left span {
    background-color: rgb(255,255,255);
}

.details-arrow:not(.disabled):hover span,
.long-arrow--left:not(.disabled):hover span {
    /*background-color: rgb(0,0,0);*/
}

.details-arrow.white:not(.disabled):hover span,
.long-arrow--left.white:not(.disabled):hover span {
    background-color: rgb(255, 255, 255);
}

.details-arrow span:nth-child(1),
.long-arrow--left span:nth-child(1) {
    width: 60px;
    top: 50%;
    right: 6px;
    transform-origin: 100% 50%;
}

.details-arrow span:nth-child(2),
.long-arrow--left span:nth-child(2) {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    transform-origin: 0 50%;
    border-radius: 50%;
}

.details:hover .details-arrow span:nth-child(1) {
    width: 30px;
}

.details:hover .details-arrow span:nth-child(2) {
    transform: translateY(-50%) scale(1);
}

.long-arrow--left:not(.disabled):hover span:nth-child(1) {
    width: 30px;
}

.long-arrow--left:not(.disabled):hover span:nth-child(2) {
    transform: translateY(-50%) scale(1);
}


.long-arrow--right {
    display: inline-block;
    width: 64px;
    height: 19px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    vertical-align: middle;
}

.long-arrow--right.disabled {
    cursor: default;
}

.long-arrow--right span {
    position: absolute;
    transition: 0.3s ease;
    background-color: #fff;
}

.long-arrow--right.disabled span {
    opacity: 0.2
}

.long-arrow--right.white span {
    background-color: rgb(255, 255, 255);
}

.long-arrow--right:not(.disabled):hover span {
    background-color: rgb(255, 255, 255);
}

.long-arrow--right.white:hover span {
    background-color: rgb(255, 255, 255);
}

.long-arrow--right span:nth-child(1) {
    width: 60px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    left: 6px;
    transform-origin: 0 50%;
}

.long-arrow--right span:nth-child(2) {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    transform-origin: 0 50%;
    border-radius: 50%;
}

.long-arrow--right:not(.disabled):hover span:nth-child(1) {
    width: 30px;
}

.long-arrow--right:not(.disabled):hover span:nth-child(2) {
    transform: translateY(-50%) scale(1);
}

.form-response--button:hover .long-arrow--right span:nth-child(1) {
    width: 30px;
}

.form-response--button:hover .long-arrow--right span:nth-child(2) {
    transform: translateY(-50%) scale(1);
}


/* */

/* google maps hack */
#js-case-map div,
#js-locations-map div {
    border-radius: 0 !important;
}

#js-location-video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;

    transition: opacity 0.4s ease-out;
}

#js-location-video-frame.active {
    z-index: 3;
    opacity: 1;
}

/*helpers*/
.v-middle {
    vertical-align: middle;
    align-items: center;
}

.h-center {
    text-align: center;
}

.h-right {
    text-align: right;
}

.table {
    display: table;
    width: 100%;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}

.b-tb {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

.b-lr {
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
}

.b-l {

}

/**/

.xs-visible {
    display: none;
    visibility: hidden;
}

.js-intro-video {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.js-intro-video > video {
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate3d(-50%,-50%,0);
}
