/**
 * Swiper 4.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 1, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform,-webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height,-webkit-transform;
    transition-property: height,-webkit-transform;
    transition-property: transform,height;
    transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top,.2s -webkit-transform;
    transition: .2s top,.2s -webkit-transform;
    -webkit-transition: .2s transform,.2s top;
    transition: .2s transform,.2s top;
    -webkit-transition: .2s transform,.2s top,.2s -webkit-transform;
    transition: .2s transform,.2s top,.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s left,.2s -webkit-transform;
    transition: .2s left,.2s -webkit-transform;
    -webkit-transition: .2s transform,.2s left;
    transition: .2s transform,.2s left;
    -webkit-transition: .2s transform,.2s left,.2s -webkit-transform;
    transition: .2s transform,.2s left,.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right,.2s -webkit-transform;
    transition: .2s right,.2s -webkit-transform;
    -webkit-transition: .2s transform,.2s right;
    transition: .2s transform,.2s right;
    -webkit-transition: .2s transform,.2s right,.2s -webkit-transform;
    transition: .2s transform,.2s right,.2s -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code, kbd, samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button, input, optgroup, select, textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button, select {
    /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"], [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    overflow-x: hidden;
    color: white;
    line-height: 1;
    font-weight: 300;
    background: #020c17;
}

@media screen and (max-height: 699px) {
    body {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    outline: 0;
    text-decoration: none;
    position: relative;
    word-wrap: break-word;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.container .wrapper {
    width: 63em;
    margin: auto;
}

@media screen and (max-width: 1120px) {
    .container .wrapper {
        width: 90%;
    }
}

#wrapper {
    overflow: hidden;
    opacity: 0;
}

#views-container {
    min-height: 100vh;
}

.page-view {
    opacity: 0;
    min-height: 100vh;
}

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

.middle {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.hide {
    width: 0px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 36px;
    font-size: 4.66em;
}

h2 {
    font-size: 30px;
    font-size: 3.933em;
}

h3 {
    font-size: 24px;
    font-size: 3.2em;
}

h4 {
    font-size: 18px;
    font-size: 2.46em;
}

h5 {
    font-size: 12px;
    font-size: 1.733em;
}

h6 {
    font-size: 6px;
    font-size: 1em;
}

p {
    margin: 0;
    margin-top: 1em;
}

p:first-of-type {
    margin-top: 0;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

a {
    color: #00aeef;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

a:hover {
    color: #f89822;
}

svg {
    width: 100%;
    height: 100%;
    display: block;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.grid-items {
    width: 70em;
    margin: auto;
    margin-top: 3em;
    margin-bottom: 3em;
}

@media screen and (max-width: 1120px) {
    .grid-items {
        width: 90%;
    }
}

.grid-items .grid-box-single {
    float: left;
    margin-bottom: 5%;
    width: 33.333%;
    padding: 0 5%;
}

@media screen and (max-width: 1120px) {
    .grid-items .grid-box-single {
        padding: 0 3.5%;
    }
}

@media screen and (max-width: 767px) {
    .grid-items .grid-box-single {
        width: 50%;
        padding: 0 5%;
    }
}

@media screen and (max-width: 567px) {
    .grid-items .grid-box-single {
        width: 100%;
    }
}

.stars-container {
    margin-left: -0.25em;
}

@media screen and (max-width: 767px) {
    .stars-container {
        display: inline-block;
    }
}

.stars-container .stars-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 7.5em;
}

.stars-container .stars-wrapper .single-star {
    width: 1.5em;
    min-width: 1.5em;
    max-width: 1.5em;
    padding: 0 0.25em;
}

.stars-container .stars-wrapper.faded {
    opacity: 0.175;
}

.stars-container .stars-wrapper.faded .single-star svg path {
    fill: white;
}

.stars-container .stars-wrapper.full {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.stars-container .stars-wrapper.full .single-star svg path {
    fill: #f89822;
}

.custom-input-fields .submit-wrap {
    clear: both;
    display: block;
    border-top: 2em solid transparent;
    text-align: right;
}

.custom-input-fields .submit-wrap .ajax-loader {
    display: none;
}

.custom-input-fields .submit-wrap .wpcf7-submit {
    display: inline-block;
    clear: both;
    background: transparent;
    color: white;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75em;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 0.25em;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.custom-input-fields .submit-wrap .wpcf7-submit:hover {
    color: #009BDA;
}

.custom-input-fields .submit-wrap:before {
    content: '';
    background: #009BDA;
    position: absolute;
    bottom: -0.5em;
    right: 0;
    width: 3em;
    height: 1px;
}

.custom-input-fields .submit-wrap:after {
    content: '';
    background-image: url("/wp-content/themes/dumas/images/contact/paper-plane.png");
    width: 0.75em;
    height: 0.75em;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
}

.custom-input-fields .wpcf7-response-output {

    text-align: center;
}

.custom-input-fields .wpcf7-form-control-wrap {
    display: block;
    float: left;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 174, 239, 0.25);
}

.custom-input-fields .wpcf7-form-control-wrap.your-name {
    width: 28.33%;
    margin-right: 7.5%;
}

@media screen and (max-width: 567px) {
    .custom-input-fields .wpcf7-form-control-wrap.your-name {
        width: 100%;
        margin-right: 0;
    }
}

.custom-input-fields .wpcf7-form-control-wrap.your-phone {
    width: 28.33%;
    margin-right: 7.5%;
}

@media screen and (max-width: 567px) {
    .custom-input-fields .wpcf7-form-control-wrap.your-phone {
        width: 100%;
        margin-right: 0;
        margin-top: 2.5em;
    }
}

.custom-input-fields .wpcf7-form-control-wrap.your-email {
    width: 28.33%;
}

@media screen and (max-width: 567px) {
    .custom-input-fields .wpcf7-form-control-wrap.your-email {
        width: 100%;
        margin-top: 2.5em;
    }
}

.custom-input-fields .wpcf7-form-control-wrap.your-subject {
    width: 50%;
    clear: both;
    margin-top: 4em;
}

@media screen and (max-width: 567px) {
    .custom-input-fields .wpcf7-form-control-wrap.your-subject {
        width: 100%;
        margin-top: 2.5em;
    }
}

.custom-input-fields .wpcf7-form-control-wrap.your-message {
    clear: both;
    width: 100%;
    margin-top: 4em;
}

@media screen and (max-width: 567px) {
    .custom-input-fields .wpcf7-form-control-wrap.your-message {
        margin-top: 2.5em;
    }
}

.custom-input-fields .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    font-size: 0.65em;
    font-weight: 300;
    padding-top: 0.25em;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"], .custom-input-fields .wpcf7-form-control-wrap input[type="tel"], .custom-input-fields .wpcf7-form-control-wrap input[type="email"], .custom-input-fields .wpcf7-form-control-wrap select, .custom-input-fields .wpcf7-form-control-wrap textarea {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75em;
    height: 2em;
    width: 100%;
    display: block;
    padding: 0;
    line-height: 1;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]::-webkit-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]::-webkit-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]::-webkit-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap select::-webkit-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]::-moz-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]::-moz-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]::-moz-placeholder, .custom-input-fields .wpcf7-form-control-wrap select::-moz-placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea::-moz-placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap select:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]::placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]::placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]::placeholder, .custom-input-fields .wpcf7-form-control-wrap select::placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea::placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap select:-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap input[type="text"]::-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="tel"]::-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap input[type="email"]::-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap select::-ms-input-placeholder, .custom-input-fields .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
    color: #009BDA;
    font-weight: 600;
}

.custom-input-fields .wpcf7-form-control-wrap textarea {
    height: 5em;
    min-width: 100%;
    max-width: 100%;
    max-height: 10em;
    min-height: 5em;
}

.custom-input-fields .wpcf7-form-control-wrap select {
    cursor: pointer;
    color: #00aeef;
}

.custom-input-fields .wpcf7-form-control-wrap select.active {
    color: white;
}

.custom-input-fields .wpcf7-form-control-wrap select option {
    color: white;
    background: #020c17;
}

#footer {
    background: #202326;
    padding-top: 3.9em;
    padding-bottom: 1.25em;
}

@media screen and (max-width: 767px) {
    #footer {
        padding-top: 2em;
    }
}

#footer .footer-container {
    width: 90%;
    margin: auto;
}

#footer .footer-container .logo-container {
    display: block;
    width: 13.5%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    #footer .footer-container .logo-container {
        width: 35%;
    }
}

#footer .footer-container .logo-container svg {
    width: 100%;
    opacity: 0.3;
    display: block;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#footer .footer-container .logo-container svg path {
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#footer .footer-container .logo-container svg path:nth-child(1), #footer .footer-container .logo-container svg path:nth-child(2), #footer .footer-container .logo-container svg path:nth-child(3), #footer .footer-container .logo-container svg path:nth-child(4), #footer .footer-container .logo-container svg path:nth-child(5) {
    fill: white;
}

#footer .footer-container .logo-container svg path:nth-child(6), #footer .footer-container .logo-container svg path:nth-child(7) {
    fill: white;
}

#footer .footer-container .logo-container svg path:nth-child(8), #footer .footer-container .logo-container svg path:nth-child(9), #footer .footer-container .logo-container svg path:nth-child(10) {
    fill: transparent;
}

#footer .footer-container .logo-container svg path:nth-child(11), #footer .footer-container .logo-container svg path:nth-child(12) {
    fill: transparent;
}

#footer .footer-container .logo-container:hover svg {
    opacity: 1;
}

#footer .footer-container .logo-container:hover svg path:nth-child(1), #footer .footer-container .logo-container:hover svg path:nth-child(2), #footer .footer-container .logo-container:hover svg path:nth-child(3), #footer .footer-container .logo-container:hover svg path:nth-child(4), #footer .footer-container .logo-container:hover svg path:nth-child(5) {
    fill: #00aeef;
}

#footer .footer-container .logo-container:hover svg path:nth-child(6), #footer .footer-container .logo-container:hover svg path:nth-child(7) {
    fill: #00aeef;
}

#footer .footer-container .mid-container {
    margin-top: 4.6em;
}

@media screen and (max-width: 767px) {
    #footer .footer-container .mid-container {
        margin-top: 1em;
    }
}

#footer .footer-container .mid-container .links-container {
    float: left;
    width: 33.33%;
}

@media screen and (max-width: 767px) {
    #footer .footer-container .mid-container .links-container {
        float: none;
        width: 100%;
        text-align: center;
    }
}

#footer .footer-container .mid-container .links-container .single-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 7.5%;
}

@media screen and (max-width: 767px) {
    #footer .footer-container .mid-container .links-container .single-link {
        margin-right: 2.5%;
    }
}

#footer .footer-container .mid-container .links-container .single-link .text {
    font-size: 0.75em;
    text-transform: uppercase;
}

#footer .footer-container .mid-container .links-container .single-link:last-child {
    margin-right: 0;
}

#footer .footer-container .mid-container .links-container .single-link:hover {
    color: #00aeef;
}

#footer .footer-container .mid-container .social-container {
    float: left;
    width: 33.33%;
    text-align: center;
    margin-right: 8.33%;
}

@media screen and (max-width: 767px) {
    #footer .footer-container .mid-container .social-container {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-top: 2em;
    }
}

#footer .footer-container .mid-container .social-container .single-social {
    vertical-align: middle;
    height: 1em;
    width: 1em;
    display: inline-block;
    margin-right: 10%;
}

#footer .footer-container .mid-container .social-container .single-social:last-child {
    margin-right: 0;
}

#footer .footer-container .mid-container .social-container .single-social svg path, #footer .footer-container .mid-container .social-container .single-social svg polygon, #footer .footer-container .mid-container .social-container .single-social svg circle {
    fill: white;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#footer .footer-container .mid-container .social-container .single-social:hover svg path, #footer .footer-container .mid-container .social-container .single-social:hover svg polygon, #footer .footer-container .mid-container .social-container .single-social:hover svg circle {
    fill: #00aeef;
}

#footer .footer-container .mid-container .input-container {
    float: left;
    width: 25%;
}

#footer .footer-container .mid-container .input-container input[type="text"] {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-weight: 300;
    font-size: 0.75em;
    color: white;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 174, 239, 0.25);
    width: 100%;
    padding-bottom: 1.63em;
}

#footer .footer-container .mid-container .input-container input[type="text"]::-webkit-input-placeholder {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#footer .footer-container .mid-container .input-container input[type="text"]::-moz-placeholder {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#footer .footer-container .mid-container .input-container input[type="text"]:-ms-input-placeholder {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#footer .footer-container .mid-container .input-container input[type="text"]:-moz-placeholder {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
    #footer .footer-container .mid-container .input-container {
        float: none;
        width: 100%;
        margin-top: 2em;
    }
}

#footer .footer-container .mid-container .input-container input {
    padding-right: 2.5em;
}

#footer .footer-container .mid-container .input-container svg {
    cursor: pointer;
    position: absolute;
    top: 0.4em;
    right: 0;
    width: 1.4em;
    height: auto;
}

#footer .footer-container .mid-container .input-container svg path {
    fill: #f89822;
}

#footer .footer-container .bottom-container {
    text-transform: uppercase;
    text-align: center;
    margin-top: 2.5em;
}

#footer .footer-container .bottom-container .copyright-container .text {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.3);
}

#footer .footer-container .bottom-container .terms-container {
    margin-top: 0.5em;
}

#footer .footer-container .bottom-container .terms-container a {
    font-size: 0.7em;
    color: white;
}

#footer .footer-container .bottom-container .terms-container a:hover {
    color: #00aeef;
}

#footer .footer-container .bottom-container .terms-container span {
    font-size: 0.7em;
}

#header-bar {
    height: 5em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
}

#header-bar .background-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    background: #020c17;
}

@media screen and (max-width: 767px) {
    #header-bar {
        height: 3em;
    }
}

#header-bar.scroll .background-bar {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

#logo {
    position: fixed;
    -webkit-transform: translateY(4em);
    -ms-transform: translateY(4em);
    transform: translateY(4em);
    left: 5%;
    top: 0;
    width: 11em;
    margin-top: -0.35em;
    z-index: 999;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

@media screen and (max-width: 767px) {
    #logo {
        -webkit-transform: translateY(2em);
        -ms-transform: translateY(2em);
        transform: translateY(2em);
        width: 8.5em;
        margin-top: -0.15em;
    }
}

#logo.scroll {
    -webkit-transform: translateY(2em);
    -ms-transform: translateY(2em);
    transform: translateY(2em);
}

@media screen and (max-width: 767px) {
    #logo.scroll {
        -webkit-transform: translateY(1em);
        -ms-transform: translateY(1em);
        transform: translateY(1em);
    }
}

#logo svg path {
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#logo:hover svg path:nth-child(-n+5) {
    fill: #009BDA;
}

#menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 40em;
    height: 100%;
    z-index: 998;
}

@media screen and (max-width: 1120px) {
    #menu {
        width: 37em;
    }
}

@media screen and (max-width: 767px) {
    #menu {
        width: 100%;
    }
}

#menu .menu-background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#menu .menu-background-container .menu-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#menu .menu-background-container .menu-background-wrapper .menu-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}

#menu .menu-items-line {
    height: 100%;
    width: 6.15%;
    position: absolute;
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.26);
    top: 0;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}

@media screen and (max-width: 767px) {
    #menu .menu-items-line {
        width: -webkit-calc(5% + 0.75em);
        width: calc(5% + 0.75em);
    }
}

#menu .menu-items-container {
    height: 100%;
    padding-left: 6.15%;
    padding-right: 6.15%;
    overflow-y: auto;
}

@media screen and (max-width: 767px) {
    #menu .menu-items-container {
        padding-left: -webkit-calc(5% + 0.75em);
        padding-left: calc(5% + 0.75em);
    }
}

#menu .menu-items-container .menu-items-wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#menu .menu-items-container .menu-items-wrapper .menu-items {
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 3em 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

@media screen and (max-width: 767px) {
    #menu .menu-items-container .menu-items-wrapper .menu-items {
        padding: 5em 0 1em;
    }
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link {
    padding-left: 7.04%;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    display: block;
    color: rgba(255, 255, 255, 0.4);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font-weight: 200;
}

@media screen and (max-width: 767px) {
    #menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link {
        padding-left: -webkit-calc(5.55% + 0.75em);
        padding-left: calc(5.55% + 0.75em);
        padding-top: 0.75em;
        padding-bottom: 0.75em;
    }
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
    width: 5.5%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link .text {
    font-size: 1em;
    text-transform: uppercase;
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link:hover {
    color: white;
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link.active {
    color: #009BDA;
    font-weight: 600;
    cursor: default;
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link.active:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

#header-icons {
    position: fixed;
    z-index: 999;
    -webkit-transform: translateY(3em);
    -ms-transform: translateY(3em);
    transform: translateY(3em);
    right: 5%;
    top: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

@media screen and (max-width: 767px) {
    #header-icons {
        -webkit-transform: translateY(1em);
        -ms-transform: translateY(1em);
        transform: translateY(1em);
    }
}

#header-icons.scroll {
    -webkit-transform: translateY(1em);
    -ms-transform: translateY(1em);
    transform: translateY(1em);
}

@media screen and (max-width: 767px) {
    #header-icons.scroll {
        -webkit-transform: translateY(0em);
        -ms-transform: translateY(0em);
        transform: translateY(0em);
    }
}

#header-icons .single-header-icon {
    width: 1em;
    height: 1em;
    cursor: pointer;
    -webkit-box-sizing: initial;
    box-sizing: initial;
    padding: 1em;
    display: inline-block;
    vertical-align: top;
    margin-right: 0.75em;
}

@media screen and (max-width: 767px) {
    #header-icons .single-header-icon {
        padding: 1em 0.5em;
        margin-right: 0.45em;
    }
}

#header-icons .single-header-icon .text {
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#header-icons .single-header-icon svg path {
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#header-icons .single-header-icon#menu-button {
    margin-right: -1em;
}

@media screen and (max-width: 767px) {
    #header-icons .single-header-icon#menu-button {
        margin-right: -0.5em;
    }
}

#header-icons .single-header-icon#menu-button .menu-button-icons {
    width: 100%;
    height: 100%;
}

#header-icons .single-header-icon#menu-button .menu-button-icons .single-menu-button-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#header-icons .single-header-icon#menu-button .menu-button-icons .single-menu-button-icon.hamburger svg path {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

#header-icons .single-header-icon#menu-button .menu-button-icons .single-menu-button-icon.close svg path {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

#header-icons .single-header-icon#menu-button.active .menu-button-icons .single-menu-button-icon.hamburger svg path {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

#header-icons .single-header-icon#menu-button.active .menu-button-icons .single-menu-button-icon.close svg path {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

#header-icons .single-header-icon#language-select-button {
    width: auto;
    display: none;
}

#header-icons .single-header-icon#language-select-button .language-select-button-icons {
    width: 100%;
    height: 100%;
}

#header-icons .single-header-icon#language-select-button .language-select-button-icons span {
    display: inline-block;
    vertical-align: middle;
}

#header-icons .single-header-icon#language-select-button .language-select-button-icons span.language-text {
    margin-right: 0.5em;
    font-size: 0.82em;
}

#header-icons .single-header-icon#language-select-button .language-select-button-icons span.down-icon {
    width: 0.75em;
    height: 100%;
}

#header-icons .single-header-icon:hover .text {
    color: #009BDA;
}

#header-icons .single-header-icon:hover svg path {
    fill: #009BDA;
}

.grid-box {
    width: 100%;
    display: block;
    -webkit-perspective: 55em;
    perspective: 55em;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
}

.grid-box * {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.grid-box .dummy {
    padding-top: 65%;
}

.grid-box .grid-box-container-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.grid-box .grid-box-container-wrapper .grid-box-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 7.5% 100%, 0 90%, 0 15%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 7.5% 100%, 0 90%, 0 15%);
    -webkit-mask-image: linear-gradient(-20deg, rgba(255, 255, 255, 0) 0, #000 45%, #000 100%, rgba(255, 255, 255, 0) 100%);
    mask-image: linear-gradient(-20deg, rgba(255, 255, 255, 0) 0, #000 45%, #000 100%, rgba(255, 255, 255, 0) 100%);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-wrapper-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 155, 218, 0.55)), to(transparent));
    background: linear-gradient(to right, rgba(0, 155, 218, 0.55), transparent);
    -webkit-clip-path: polygon(10% 0, 100% 0, 50% 50%, 7% 100%, 0 90%, 0 15%);
    clip-path: polygon(10% 0, 100% 0, 50% 50%, 7% 100%, 0 90%, 0 15%);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-inner {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    position: absolute;
    background: #020c17;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 7.5% 100%, 0 90%, 0 15%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 7.5% 100%, 0 90%, 0 15%);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-inner .grid-box-image {
    width: 100%;
    height: 100%;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-inner .grid-box-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-inner .grid-box-image .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 23, 0.7);
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-box .grid-box-container-wrapper .grid-box-container .rectangle {
    width: 36.6%;
    height: 11.5%;
    background: #009BDA;
    position: absolute;
    top: 8%;
    right: -8%;
    opacity: 0.1;
    -webkit-transform: translateZ(1.5em);
    transform: translateZ(1.5em);
}

.grid-box .grid-box-container-wrapper .grid-box-container .top-vert-line {
    position: absolute;
    top: -5%;
    right: 4%;
    height: 15%;
    width: 1px;
    background: #B6B9DA;
    -webkit-transform: translateZ(0.5em);
    transform: translateZ(0.5em);
}

.grid-box .grid-box-container-wrapper .grid-box-container .top-small-square {
    position: absolute;
    top: -5%;
    right: 2%;
    background: #B6B9DA;
    width: 0.85%;
    padding-top: 0.85%;
    -webkit-transform: translateZ(1em);
    transform: translateZ(1em);
}

.grid-box .grid-box-container-wrapper .grid-box-container .bottom-small-line {
    bottom: 0;
    right: 0;
    width: 4%;
    height: 1px;
    background: #B6B9DA;
    position: absolute;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) translateZ(0.5em) translateX(-0.1%);
    transform: translateY(-50%) translateZ(0.5em) translateX(-0.1%);
    padding: 0 15%;
    opacity: 0.7;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title .text {
    font-size: 1.1em;
    color: white;
    font-weight: bold;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title .text.long-title {
    font-size: 0.9em;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title .date {
    margin-top: 0.75em;
    font-weight: 300;
    color: white;
    font-size: 0.8em;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title .date .slash {
    color: #00aeef;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(150%) translateZ(0.5em);
    transform: translateY(-50%) translateX(150%) translateZ(0.5em);
    opacity: 0;
    right: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title:before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    height: 1px;
    width: 140%;
    background: #009BDA;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title span {
    display: inline-block;
    vertical-align: bottom;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title span.text {
    font-weight: 600;
    color: white;
    font-size: 0.725em;
    margin-right: 0.5em;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title span.icon {
    width: 1em;
    height: 1em;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title span.icon svg path {
    fill: #f89822;
}

.grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-image .dimmer {
    background: rgba(2, 12, 23, 0.3);
}

.grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
    -webkit-transform: translateY(-50%) translateX(75%) translateZ(0.5em);
    transform: translateY(-50%) translateX(75%) translateZ(0.5em);
    opacity: 1;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

@media screen and (max-width: 767px) {
    .grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
        -webkit-transform: translateY(-50%) translateX(10%) translateZ(0.5em);
        transform: translateY(-50%) translateX(10%) translateZ(0.5em);
    }
}

.grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-link-title:before {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-title {
    opacity: 0.99;
    -webkit-transform: translateX(-25%) translateY(-50%) translateZ(0.5em);
    transform: translateX(-25%) translateY(-50%) translateZ(0.5em);
}

@media screen and (max-width: 767px) {
    .grid-box:hover .grid-box-container-wrapper .grid-box-container .grid-box-title {
        -webkit-transform: translateX(-20%) translateY(-50%) translateZ(0.5em);
        transform: translateX(-20%) translateY(-50%) translateZ(0.5em);
    }
}

.pagination-container {
    border-bottom: 1px solid #009BDA;
    z-index: 99;
    white-space: nowrap;
}

.pagination-container .arrow {
    width: 1em;
    display: inline-block;
    vertical-align: bottom;
    cursor: pointer;
    width: 1.14em;
    z-index: 5;
    padding-top: 1em;
    padding-bottom: 0.7em;
    -webkit-box-sizing: initial;
    box-sizing: initial;
}

.pagination-container .arrow svg {
    height: auto;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-container .arrow svg path {
    fill: #f89822;
}

.pagination-container .arrow.left-arrow {
    padding-right: 1em;
}

.pagination-container .arrow.left-arrow svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.pagination-container .arrow.left-arrow:hover svg {
    -webkit-transform: rotateY(180deg) translateX(35%);
    transform: rotateY(180deg) translateX(35%);
}

.pagination-container .arrow.right-arrow {
    padding-left: 1em;
}

.pagination-container .arrow.right-arrow svg {
    -webkit-transform: rotateY(0.1deg);
    transform: rotateY(0.1deg);
}

.pagination-container .arrow.right-arrow:hover svg {
    -webkit-transform: translateX(35%);
    -ms-transform: translateX(35%);
    transform: translateX(35%);
}

.pagination-container .arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.pagination-container .arrow.swiper-button-disabled.left-arrow svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.pagination-container .arrow.swiper-button-disabled.right-arrow svg {
    -webkit-transform: rotateY(0.1deg);
    transform: rotateY(0.1deg);
}

.pagination-container .pagination-wrapper {
    display: inline-block;
    vertical-align: bottom;
    padding-bottom: 0.7em;
}

.pagination-container .pagination-wrapper .pagination {
    position: initial;
    text-align: initial;
    -webkit-transition: initial;
    transition: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    z-index: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    height: 2em;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.pagination-container .pagination-wrapper .pagination .pagination-bullet {
    width: 1px;
    height: 100%;
    display: block;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: initial;
    opacity: 1;
    padding: 0em 0.9em;
    background: transparent;
}

.pagination-container .pagination-wrapper .pagination .pagination-bullet:before {
    content: '';
    height: 100%;
    background: white;
    width: 1px;
    position: absolute;
    top: 0;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-container .pagination-wrapper .pagination .pagination-bullet:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    bottom: 0;
    margin-left: -2px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid white;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-container .pagination-wrapper .pagination .pagination-bullet.swiper-pagination-bullet-active:before, .pagination-container .pagination-wrapper .pagination .pagination-bullet.active:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.pagination-container .pagination-wrapper .pagination .pagination-bullet.swiper-pagination-bullet-active:after, .pagination-container .pagination-wrapper .pagination .pagination-bullet.active:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.go-down-container {
    z-index: 100;
    position: absolute;
    bottom: -1.93em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10em;
    text-align: center;
    color: white;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 100;
}

.go-down-container .title .text {
    font-weight: 300;
    font-size: 0.75em;
    letter-spacing: 0.05em;
}

.go-down-container .line-container {
    height: 3.86em;
    width: 100%;
    margin-top: 2em;
}

.go-down-container .line-container .line {
    height: 100%;
    width: 1px;
    background: #009BDA;
    margin: auto;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.go-down-container:hover {
    color: #009BDA;
}

.go-down-container:hover .line-container .line {
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.video-module {
    width: 48em;
    margin: auto;
    -webkit-perspective: 55em;
    perspective: 55em;
}

.video-module * {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@media screen and (max-width: 1120px) {
    .video-module {
        width: 68.5%;
    }
}

@media screen and (max-width: 767px) {
    .video-module {
        width: 80%;
    }
}

.video-module .video-container {
    width: 100%;
}

.video-module .video-container .dummy {
    padding-top: 56.25%;
}

.video-module .video-container .video-wrapper-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: #020c17;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file video {
    width: 100%;
    height: 100%;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file .close-video {
    visibility: hidden;
    width: 1.25em;
    position: absolute;
    top: 0em;
    right: 0em;
    padding: 0.5em;
    -webkit-box-sizing: initial;
    box-sizing: initial;
    cursor: pointer;
    -webkit-transform: translateZ(0.1em);
    transform: translateZ(0.1em);
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file .close-video svg {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file .close-video svg path {
    fill: white;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file .close-video:hover svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-file .close-video:hover svg path {
    fill: #f89822;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
}

.video-module .video-container .video-wrapper-3 .video-wrapper-2 .video-wrapper-1 .video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-module .video-container .video-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.video-module .video-container .video-elements .numbers {
    position: absolute;
    top: 18%;
    left: 101.35%;
    width: auto;
    height: 12.5%;
}

.video-module .video-container .video-elements .border-dots {
    position: absolute;
    width: auto;
    height: 15%;
}

.video-module .video-container .video-elements .border-dots.top-left-corner {
    top: 1%;
    right: 101.5%;
}

.video-module .video-container .video-elements .border-dots.top-right-corner {
    top: 1%;
    left: 101.5%;
}

.video-module .video-container .video-elements .border-dots.bottom-left-corner {
    bottom: 1%;
    right: 101.5%;
}

.video-module .video-container .video-elements .border-dots.bottom-right-corner {
    bottom: 1%;
    left: 101.5%;
}

.video-module .video-container .video-elements .corner {
    position: absolute;
    width: 3.8%;
}

.video-module .video-container .video-elements .corner.top-left-corner {
    top: -0.15em;
    left: -0.15em;
}

.video-module .video-container .video-elements .corner.top-right-corner {
    top: -0.15em;
    right: -0.15em;
}

.video-module .video-container .video-elements .corner.bottom-left-corner {
    bottom: -0.15em;
    left: -0.15em;
}

.video-module .video-container .video-elements .corner.bottom-right-corner {
    bottom: -0.15em;
    right: -0.15em;
}

.video-module .video-container .video-elements .dots-line {
    position: absolute;
}

.video-module .video-container .video-elements .dots-line.top-dots-line {
    top: 6%;
    left: 50%;
    height: 27.5%;
    width: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.video-module .video-container .video-elements .dots-line.bottom-dots-line {
    bottom: 6%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 27.5%;
    width: auto;
}

.video-module .video-container .video-elements .dots-line.left-dots-line {
    width: 38%;
    height: auto;
    top: 50%;
    left: 4.22%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.video-module .video-container .video-elements .dots-line.right-dots-line {
    width: 38%;
    height: auto;
    top: 50%;
    right: 4.22%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.video-module .video-container .video-elements .circles {
    position: absolute;
    top: 38%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 4.68em;
}

.video-module .video-container .video-elements .big-circle {
    position: absolute;
    bottom: 37%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0.45em;
}

.video-module .video-container .video-elements .title {
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateZ(1.25em) translateY(0.25em);
    transform: translateX(-50%) translateZ(1.25em) translateY(0.25em);
}

.video-module .video-container .video-elements .title .text {
    font-size: 0.32em;
    color: #a8cdf7;
    text-transform: uppercase;
    font-weight: 600;
}

@-webkit-keyframes bars-direction {
    0% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    25% {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    50% {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    75% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    100% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }
}

@keyframes bars-direction {
    0% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    25% {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    50% {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    75% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    100% {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.video-module .video-container .video-elements .right-bars {
    left: 105%;
    top: 2.5%;
    height: 95%;
    width: 1em;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-animation: 3s bars-direction infinite step-end;
    animation: 3s bars-direction infinite step-end;
    -webkit-transform: translateZ(0.5em);
    transform: translateZ(0.5em);
}

@-webkit-keyframes top-video-bar {
    0% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    25% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    50% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    75% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        height: 10%;
    }
}

@keyframes top-video-bar {
    0% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    25% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    50% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    75% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        height: 10%;
    }
}

@-webkit-keyframes bottom-video-bar {
    0% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    25% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    50% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    75% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        height: 10%;
    }
}

@keyframes bottom-video-bar {
    0% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    25% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    50% {
        height: 10%;
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    75% {
        height: 50%;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        height: 10%;
    }
}

.video-module .video-container .video-elements .right-bars .bar {
    height: 50%;
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    margin-left: 1px;
    background: #00aeef;
    height: 10%;
}

.video-module .video-container .video-elements .right-bars .bar.top {
    margin-bottom: 1px;
    opacity: 0.2;
    -webkit-animation-name: top-video-bar;
    animation-name: top-video-bar;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: step-end;
    animation-timing-function: step-end;
}

.video-module .video-container .video-elements .right-bars .bar.bottom {
    opacity: 0.35;
    -webkit-animation-name: bottom-video-bar;
    animation-name: bottom-video-bar;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: step-end;
    animation-timing-function: step-end;
}

.video-module .video-container .video-elements .right-bars:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: -1em;
    background: white;
    opacity: 0.2;
    top: 0;
}

.video-module .video-container .play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(3em);
    transform: translate(-50%, -50%) translateZ(3em);
    width: 10%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-module .video-container .play-button-container .dummy {
    padding-top: 100%;
}

.video-module .video-container .play-button-container .play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-module .video-container .play-button-container .play-button .cirlce {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #8cd2f4;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 0.35;
}

@-webkit-keyframes three-sixty {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes three-sixty {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.video-module .video-container .play-button-container .play-button .spinner {
    opacity: 0.15;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border-top: 0.5em solid #8cd2f4;
    border-left: 0.5em solid #8cd2f4;
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    -webkit-animation-name: three-sixty;
    animation-name: three-sixty;
    -webkit-animation-duration: 1.75s;
    animation-duration: 1.75s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.video-module .video-container .play-button-container .play-button .icon {
    position: absolute;
    width: 35%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
}

.video-module .video-container .play-button-container .play-button .icon svg path {
    fill: #f89822;
}

.video-module .video-container .play-button-container:hover {
    -webkit-transform: translate(-50%, -50%) translateZ(5em);
    transform: translate(-50%, -50%) translateZ(5em);
}

.video-module .video-container .play-button-container:hover .play-button .spinner {
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
}

.video-module .video-container .video-text {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-47.5%) translateX(-35%) translateZ(2em);
    transform: translateY(-47.5%) translateX(-35%) translateZ(2em);
    width: 45%;
}

@media screen and (max-width: 767px) {
    .video-module .video-container .video-text {
        width: 45%;
        -webkit-transform: translateY(-47.5%) translateX(-14%) translateZ(2em);
        transform: translateY(-47.5%) translateX(-14%) translateZ(2em);
    }
}

.video-module .video-container .video-text .title-container {
    overflow: hidden;
}

.video-module .video-container .video-text .title-container .title {
    overflow: hidden;
}

.video-module .video-container .video-text .title-container .title .text {
    overflow: hidden;
}

.video-module .video-container .video-text .excerpt-container {
    overflow: hidden;
}

.video-module .video-container .video-text .excerpt-container .excerpt {
    overflow: hidden;
}

.video-module .video-container .video-text .excerpt-container .excerpt .text {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .video-module .video-container .video-text .excerpt {
        display: none;
    }
}

.video-module .timeline {
    margin-top: 1em;
    width: 100%;
    height: 0.2em;
    background: #53596E;
}

.video-module .timeline .progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #4f92f6;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.video-module .video-bottom {
    width: 100%;
    height: 1em;
    margin-top: 2em;
}

.video-module .video-bottom .corner {
    position: absolute;
    height: 100%;
    width: auto;
}

.video-module .video-bottom .corner.left {
    left: 0;
}

.video-module .video-bottom .corner.right {
    right: 0;
}

.video-module .video-bottom .border {
    width: -webkit-calc(100% - 3em);
    width: calc(100% - 3em);
    height: 1px;
    background: white;
    opacity: 0.2;
    margin-left: 1.5em;
    position: absolute;
    bottom: 0;
}

.video-module .video-bottom .title {
    position: absolute;
    right: 1.6em;
    bottom: 0.15em;
}

.video-module .video-bottom .title .text {
    font-size: 0.32em;
    color: #a8cdf7;
    text-transform: uppercase;
    font-weight: 600;
}

.video-module .video-bottom .chevron {
    position: absolute;
    width: 0.3em;
    bottom: 40%;
    right: 0.4em;
}

.video-module .video-bottom .timeline-small {
    width: -webkit-calc(100% - 3.5em);
    width: calc(100% - 3.5em);
    height: 1px;
    background: #53596E;
    margin-left: 1.5em;
    position: absolute;
    bottom: -0.25em;
}

.video-module .video-bottom .timeline-small .progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #4f92f6;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.arrow-title {
    display: inline-block;
    clear: both;
    color: white;
    padding-bottom: 0.5em;
}

.arrow-title:after {
    content: '';
    width: 100%;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #009BDA;
    position: absolute;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(0.65);
    -ms-transform: scaleX(0.65);
    transform: scaleX(0.65);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.arrow-title span {
    display: inline-block;
    vertical-align: top;
}

.arrow-title span.text {
    font-size: 0.75em;
    font-weight: 600;
    margin-right: 0.82em;
}

.arrow-title span.icon {
    width: 1.14em;
    height: auto;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.arrow-title span.icon svg path {
    fill: #f89822;
}

.arrow-title:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.arrow-title:hover span.icon {
    -webkit-transform: translateX(40%);
    -ms-transform: translateX(40%);
    transform: translateX(40%);
}



.glitch-title.start, .glitch-text.start {

    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.glitch-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glitch-image-container .single-glitch-image {
    position: absolute;

    background-repeat: no-repeat;
    background-position: center center;

    background-size: cover;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

}

.glitch-image-container .single-glitch-image:nth-child(n+2) {
    opacity: 0;
}

.glitch-image-container.start .single-glitch-image:nth-child(n+2) {

    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.glitch-image-container.start .single-glitch-image:nth-child(2) {

}

.glitch-image-container.start .single-glitch-image:nth-child(3) {

}

.glitch-image-container.start .single-glitch-image:nth-child(4) {

}

.glitch-image-container.start .single-glitch-image:nth-child(5) {

}

@-webkit-keyframes glitch-anim-1 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    9.09% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }

    18.18% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }

    27.27% {
        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }

    36.36% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    45.45% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    54.54% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    63.63% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    72.72% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    81.82% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@keyframes glitch-anim-1 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    9.09% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }

    18.18% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }

    27.27% {
        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }

    36.36% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    45.45% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    54.54% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    63.63% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    72.72% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    81.82% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@-webkit-keyframes glitch-anim-2 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    }

    13.64% {
        -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    }

    22.73% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    }

    31.82% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    40.91% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
        clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    }

    50% {
        -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }

    59.09% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    68.18% {
        -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
        clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    }

    77.27% {
        -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
        clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    }

    86.36% {
        -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
        clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
        clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    }

    13.64% {
        -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    }

    22.73% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    }

    31.82% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    40.91% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
        clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    }

    50% {
        -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }

    59.09% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    68.18% {
        -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
        clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    }

    77.27% {
        -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
        clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    }

    86.36% {
        -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
        clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
        clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@-webkit-keyframes glitch-anim-3 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
        clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    }

    6.82% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
        clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    }

    9.09% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
        clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    }

    11.36% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    13.64% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
        clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    }

    22.73% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
        clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    }

    25% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
        clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    }

    31.82% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
        clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    }

    36.36% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    40.91% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
        clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    }

    47.73% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
        clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    }

    50% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
        clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    }

    59.09% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
        clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    }

    63.64% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
        clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    }

    65.91% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
        clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    }

    68.18% {
        -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
        clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    }

    72.73% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    81.82% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
        clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
        clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@keyframes glitch-anim-3 {
    0% {
        opacity: 1;

        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
        clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    }

    6.82% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
        clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    }

    9.09% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
        clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    }

    11.36% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    13.64% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
        clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    }

    22.73% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
        clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    }

    25% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
        clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    }

    31.82% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
        clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    }

    36.36% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    40.91% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
        clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    }

    47.73% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
        clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    }

    50% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
        clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    }

    59.09% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
        clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    }

    63.64% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
        clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    }

    65.91% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
        clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    }

    68.18% {
        -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
        clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    }

    72.73% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    81.82% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
        clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    }

    90.91% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
        clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    }

    99.54% {
        opacity: 1;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@-webkit-keyframes glitch-anim-text {
    0% {

        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    20% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    40% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    50% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    60% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    70% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    80% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    90% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    99% {

    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes glitch-anim-text {
    0% {

        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    20% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    40% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    50% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    60% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    70% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    80% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    90% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    99% {

    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@-webkit-keyframes glitch-anim-flash {
    0%, 90.91% {
        opacity: 0.2;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes glitch-anim-flash {
    0%, 90.91% {
        opacity: 0.2;

    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideshow-module .slideshow-module-main .dummy {
    padding-top: 50%;
}

.slideshow-module .slideshow-module-main .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.image-slide .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 7%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .dummy {
    padding-top: 100%;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .play-button .cirlce {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #8cd2f4;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 0.35;
}

@keyframes three-sixty {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .play-button .spinner {
    opacity: 0.15;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border-top: 0.5em solid #8cd2f4;
    border-left: 0.5em solid #8cd2f4;
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    -webkit-animation-name: three-sixty;
    animation-name: three-sixty;
    -webkit-animation-duration: 1.75s;
    animation-duration: 1.75s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .play-button .icon {
    position: absolute;
    width: 35%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container .play-button .icon svg path {
    fill: #f89822;
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.slideshow-module .slideshow-module-main .swiper-container .swiper-wrapper .swiper-slide.video-slide .play-button-container:hover .play-button .spinner {
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
}

.slideshow-module .slideshow-module-secondary {
    width: 80%;
    margin: auto;
    padding: 7.5em 10%;
    background: -webkit-gradient(linear, left top, right top, from(#1a1e21), to(rgba(26, 30, 33, 0.5)));
    background: linear-gradient(to right, #1a1e21, rgba(26, 30, 33, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.26);
    margin-top: -3.45em;
    z-index: 1;
    -webkit-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slideshow-module .slideshow-module-secondary.active {
    margin-top: 2em;
}

@media screen and (max-width: 1120px) {
    .slideshow-module .slideshow-module-secondary {
        width: 90%;
        margin-top: -2em;
    }
}

@media screen and (max-width: 767px) {
    .slideshow-module .slideshow-module-secondary {
        margin-top: -1.5em;
    }
}

@media screen and (max-width: 567px) {
    .slideshow-module .slideshow-module-secondary {
        margin-top: -0.75em;
    }
}

.slideshow-module .slideshow-module-secondary .swiper-container .swiper-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.slideshow-module .slideshow-module-secondary .swiper-container .swiper-wrapper .swiper-slide .text-content {
    color: white;
}

.slideshow-module .slideshow-module-secondary .swiper-container .swiper-wrapper .swiper-slide .text-content .text {
    line-height: 1.5;
    font-size: 0.85em;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .numbers {
    position: absolute;
    top: 0;
    left: 101.35%;
    width: 0.7%;
    margin-top: 12%;
    height: auto;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .border-dots {
    position: absolute;
    width: 0.35%;
    height: auto;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .border-dots.top-left-corner {
    top: 1%;
    right: 101.5%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .border-dots.top-right-corner {
    top: 1%;
    left: 101.5%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .border-dots.bottom-left-corner {
    bottom: 1%;
    right: 101.5%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .border-dots.bottom-right-corner {
    bottom: 1%;
    left: 101.5%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .corner {
    position: absolute;
    width: 4.25%;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .corner.top-left-corner {
    top: -0.15em;
    left: -0.15em;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .corner.top-right-corner {
    top: -0.15em;
    right: -0.15em;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .corner.bottom-left-corner {
    bottom: -0.15em;
    left: -0.15em;
}

.slideshow-module .slideshow-module-secondary .slideshow-module-secondary-elements .corner.bottom-right-corner {
    bottom: -0.15em;
    right: -0.15em;
}

.slideshow-module .slideshow-module-secondary .pagination-container {
    position: absolute;
    left: 50%;
    top: 0.65em;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slideshow-module .slideshow-module-secondary .pagination-container .pagination-wrapper .pagination .pagination-bullet:before {
    background: #00aeef;
    height: 200%;
    top: -100%;
}

.slideshow-module .slideshow-module-secondary .pagination-container .pagination-wrapper .pagination .pagination-bullet:after {
    border: 1px solid #00aeef;
}

.carousel-container.container {
    z-index: 5;
}

.carousel-container.container .wrapper .carousel.swiper-container {
    overflow: initial;
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper {
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
    width: 24.5%;
    margin-right: 8.5%;
}

@media screen and (max-width: 1120px) {
    .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        width: 40%;
    }
}

@media screen and (max-width: 567px) {
    .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        width: 70%;
        margin-right: 15%;
    }
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide:last-child {
    margin-right: 0;
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-scrollbar {
    background: transparent;
    margin-top: 2em;
    display: block;
    position: relative;
    height: auto;
    -webkit-border-radius: initial;
    border-radius: initial;
    overflow: hidden;
}

@media screen and (max-width: 567px) {
    .carousel-container.container .wrapper .carousel.swiper-container .swiper-scrollbar {
        overflow: initial;
    }
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
    height: 2em;
    cursor: pointer;
    background: transparent;
    -webkit-border-radius: initial;
    border-radius: initial;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-scrollbar .swiper-scrollbar-drag:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 3px;
    width: 150%;
    background: #00aeef;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, #00aeef), color-stop(80%, #00aeef), color-stop(80%, transparent));
    background: linear-gradient(to right, transparent, #00aeef 20%, #00aeef 80%, transparent);
    -webkit-transform: translateX(-50%) translateY(-2px);
    -ms-transform: translateX(-50%) translateY(-2px);
    transform: translateX(-50%) translateY(-2px);
    min-width: 7.5em;
}

.carousel-container.container .wrapper .carousel.swiper-container .swiper-scrollbar .swiper-scrollbar-drag:after {
    content: '';
    background-image: url("../images/icons/scroll-arrows.svg");
    background-size: 75% 75%;
    background-repeat: no-repeat;
    background-position: center center;
    height: 22px;
    width: 22px;
    background-color: #00aeef;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: block;
    position: absolute;
}

.testimonials-container {
    padding: 8.5em 0;
}

@media screen and (max-width: 767px) {
    .testimonials-container {
        padding: 2.5em 0;
    }
}

.testimonials-container .radial-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top left, #061e2b, #020c17 100%);
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper {
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial {
        display: block;
    }
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container {
    width: 17.25%;
    margin-right: 6.75%;
}

@media screen and (max-width: 767px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container {
        width: 35%;
        margin: auto;
    }
}

@media screen and (max-width: 567px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container {
        width: 55%;
    }
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .dummy {
    padding-top: 100%;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    transform: translateX(-1px);
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(100% 25%, 94% 31%, 94% 44%, 100% 50%, 100% 85%, 85% 100%, 10% 100%, 0 90%, 0 0, 100% 0);
    clip-path: polygon(100% 25%, 94% 31%, 94% 44%, 100% 50%, 100% 85%, 85% 100%, 10% 100%, 0 90%, 0 0, 100% 0);
    -webkit-transform: translateX(1px);
    -ms-transform: translateX(1px);
    transform: translateX(1px);
    background: #020c17;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper .background .gradient {
    width: 100%;
    height: 100%;
    background: #8cd2f4;
    background: -webkit-gradient(linear, left top, left bottom, from(#8cd2f4), color-stop(#8cd2f4), color-stop(90%, transparent));
    background: linear-gradient(#8cd2f4, #8cd2f4, transparent 90%);
    opacity: 0.75;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper .person-image-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(100% 25%, 94% 31%, 94% 44%, 100% 50%, 100% 85%, 85% 100%, 10% 100%, 0 90%, 0 0, 100% 0);
    clip-path: polygon(100% 25%, 94% 31%, 94% 44%, 100% 50%, 100% 85%, 85% 100%, 10% 100%, 0 90%, 0 0, 100% 0);
    background: #020c17;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper .person-image-container .person-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .image-container .image-wrapper .left-bar {
    width: 3px;
    height: 40%;
    background: #8cd2f4;
    position: absolute;
    left: 1px;
    bottom: 10%;
    opacity: 0.5;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container {
    width: 26.75%;
}

@media screen and (max-width: 767px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container {
        width: 100%;
        text-align: center;
        margin-top: 1.5em;
    }
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container .title .text {
    font-size: 1.1em;
    font-weight: 600;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container .sub-title {
    margin-top: 0.5em;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container .sub-title .text {
    font-size: 0.75em;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .titles-container .pagination-container {
    margin-top: 1em;
    display: inline-block;
    clear: both;
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .excerpt-container {
    width: 49.25%;
}

@media screen and (max-width: 767px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .excerpt-container {
        width: 100%;
        text-align: center;
        margin-top: 1.5em;
    }
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .excerpt-container .content {
    margin-top: 1.72em;
}

@media screen and (max-width: 767px) {
    .testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .excerpt-container .content {
        margin-top: 0.75em;
    }
}

.testimonials-container .swiper-container.testimonials-slider .swiper-wrapper .swiper-slide .container .wrapper .single-testimonial .excerpt-container .content .text {
    font-size: 0.75em;
    line-height: 1.75;
    opacity: 0.8;
}

.custom-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.custom-background .custom-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.custom-background .custom-background-image .dimmer {
    opacity: 0.9;
}

.custom-background .custom-background-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.custom-background .custom-background-video .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-background .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.75;
}

.events-container .single-event {
    float: left;
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: white;
    min-height: 25em;
}

@media screen and (max-width: 567px) {
    .events-container .single-event {
        width: 100%;
    }
}

.events-container .single-event .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.events-container .single-event .background .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-container .single-event .background .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.events-container .single-event .event-content {
    padding: 5em 5%;
    text-align: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
}

.events-container .single-event .event-content .title {
    margin-top: 5em;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.events-container .single-event .event-content .title .text {
    font-weight: 600;
    font-size: 1.05em;
}

.events-container .single-event .event-content .sub-title {
    margin-top: 0.82em;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.events-container .single-event .event-content .sub-title .text {
    font-size: 0.82em;
}

.events-container .single-event .event-content .details {
    margin-top: 2.63em;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.events-container .single-event .event-content .details .text {
    font-size: 0.82em;
}

.events-container .single-event .event-content .details .text span.slash {
    color: #009BDA;
}

.events-container .single-event .event-content .arrow {
    width: 1.2em;
    margin: auto;
    margin-top: 2.27em;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.events-container .single-event .event-content .arrow svg path {
    fill: #f89822;
}

.events-container .single-event:hover .background .dimmer {
    opacity: 0;
}

.events-container .single-event:hover .event-content .title {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    opacity: 0;
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.events-container .single-event:hover .event-content .sub-title {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 0;
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.events-container .single-event:hover .event-content .details {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    opacity: 0;
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.events-container .single-event:hover .event-content .arrow {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
    -webkit-transform: translateX(1em);
    -ms-transform: translateX(1em);
    transform: translateX(1em);
}

.button-with-icon {
    display: inline-block;
    color: white;
    padding-bottom: 0.75em;
}

.button-with-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #00aeef;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(0.85);
    -ms-transform: scaleX(0.85);
    transform: scaleX(0.85);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button-with-icon span {
    display: inline-block;
    vertical-align: middle;
}

.button-with-icon span.text {
    font-size: 0.75em;
    font-weight: 600;
    margin-right: 0.75em;
}

.button-with-icon span.icon {
    width: 0.9em;
}

.button-with-icon span.icon svg path {
    fill: #f89822;
}

.button-with-icon:hover {
    color: #00aeef;
}

.button-with-icon:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

@-webkit-keyframes opacity1 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity1 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes opacity2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.input-animation:after, .input-animation:before {
    z-index: 10;
    content: '';
    width: -webkit-calc(100% + 0.25em);
    width: calc(100% + 0.25em);
    height: 0.2em;
    min-height: 4px;
    position: absolute;
    bottom: -0px;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.input-animation:after {
    left: -0.25em;
    background: -webkit-gradient(linear, left top, right top, from(#00aeef), to(transparent));
    background: linear-gradient(to right, #00aeef, transparent);
    opacity: 1;
    -webkit-animation-name: opacity1;
    animation-name: opacity1;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.input-animation:before {
    right: -0.25em;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#00aeef));
    background: linear-gradient(to right, transparent, #00aeef);
    opacity: 0;
    -webkit-animation-name: opacity2;
    animation-name: opacity2;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.top-title {
    position: absolute;
    top: 4em;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 0 17.5em;
    z-index: 901;
}

.top-title .back-button {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    margin-top: -0.125em;
    margin-right: 0.5em;
}

.top-title .back-button svg {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-title .back-button svg path {
    fill: white;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-title .back-button:hover svg {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
}

.top-title .back-button:hover svg path {
    fill: #00aeef;
}

.top-title .text {
    display: inline-block;
    vertical-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.top-title .text.link {
    color: white;
}

.top-title .text.link:hover {
    color: #00aeef;
}

.top-title .sep {
    display: inline-block;
    vertical-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    margin: 0 0.35em 0;
    -webkit-transform: translateY(0.1em);
    -ms-transform: translateY(0.1em);
    transform: translateY(0.1em);
    color: #00aeef;
}

@media screen and (max-width: 767px) {
    .top-title {
        padding: 0 5%;
        top: 5em;
    }
}

.page-view.home .main-section .slideshow-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper .swiper-slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper .swiper-slide .image-container .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper .swiper-slide .video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.page-view.home .main-section .slideshow-backgrounds .swiper-wrapper .swiper-slide .video-container .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-view.home .main-section .slideshow-backgrounds .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 23, 0.35);
    z-index: 1;
}

.page-view.home .main-section .slideshow.swiper-container {
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 40em;
    z-index: 20;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 25%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 1120px) {
    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container {
        width: 90%;
    }
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .main-title {
    -webkit-transform: translateX(5em);
    -ms-transform: translateX(5em);
    transform: translateX(5em);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .main-title .text {
    font-size: 2.05em;
    font-weight: bold;
    text-transform: uppercase;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .excerpt {
    -webkit-transform: translateX(-5em);
    -ms-transform: translateX(-5em);
    transform: translateX(-5em);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    margin-top: 1em;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .excerpt .text {
    font-size: 0.75em;
    line-height: 2;
    color: white;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .arrow-title {
    margin-top: 1.9em;
    -webkit-transform: translateX(5em);
    -ms-transform: translateX(5em);
    transform: translateX(5em);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container:hover {
    color: #009BDA;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container:hover .arrow-title:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container:hover .arrow-title span.icon {
    -webkit-transform: translateX(40%);
    -ms-transform: translateX(40%);
    transform: translateX(40%);
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .slideshow-title-container .main-title {
    -webkit-transform: translateX(0em);
    -ms-transform: translateX(0em);
    transform: translateX(0em);
    opacity: 1;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .slideshow-title-container .excerpt {
    -webkit-transform: translateX(0em);
    -ms-transform: translateX(0em);
    transform: translateX(0em);
    opacity: 1;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .slideshow-title-container .arrow-title {
    -webkit-transform: translateX(0em);
    -ms-transform: translateX(0em);
    transform: translateX(0em);
    opacity: 1;
}

.page-view.home .main-section .slideshow.swiper-container .pagination-container {
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 567px) {
    .page-view.home .main-section .slideshow.swiper-container .pagination-container {
        top: initial;
        bottom: 7em;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.page-view.home .sub-section {
    background: #020c17;
}

.page-view.home .sub-section .sub-section-text .title .text {
    font-size: 2.1em;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section .sub-section-text .title .text {
        font-size: 0.85em;
    }
}

.page-view.home .sub-section .sub-section-text .excerpt {
    margin-top: 1.5em;
}

.page-view.home .sub-section .sub-section-text .excerpt .text {
    font-size: 0.75em;
    line-height: 2;
}

.page-view.home .sub-section.video {
    background: transparent;
    z-index: 30;
    padding-top: 0.75em;
    padding-bottom: 10em;
}

.page-view.home .sub-section.video .gradient {
    position: absolute;
    top: -12.5em;
    left: 0;
    width: 100%;
    height: -webkit-calc(100% + 12.5em);
    height: calc(100% + 12.5em);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(2, 12, 23, 0.5)), color-stop(75%, #020c17));
    background: linear-gradient(transparent, rgba(2, 12, 23, 0.5), #020c17 75%);
    background: red;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #020c17), color-stop(10%, rgba(2, 12, 23, 0.25)), color-stop(90%, #020c17));
    background: linear-gradient(#020c17 10%, rgba(2, 12, 23, 0.25), #020c17 90%);
}

.page-view.home .sub-section.team {
    padding-top: 7.5em;
    padding-bottom: 12.5em;
    background: none;
    z-index: 35;
}

.page-view.home .sub-section.team .bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12.51em;
    background: #020c17;
}

.page-view.home .sub-section.team .top-gradient {
    position: absolute;
    top: -7.5em;
    left: 0;
    width: 100%;
    height: 15em;
    background: red;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, #020c17));
    background: linear-gradient(transparent, #020c17 90%);
}

.page-view.home .sub-section.team .container .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
}

.page-view.home .sub-section.team .container .background .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-view.home .sub-section.team .container .background .gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(2, 12, 23, 0.35) 0%, #020c17 55%);
}

.page-view.home .sub-section.team .container .wrapper .left-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 34.25%;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section.team .container .wrapper .left-container {
        display: block;
        width: 100%;
    }
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper {
    padding-top: 8.5em;
    padding-bottom: 8.5em;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper {
        padding-top: 5em;
        padding-bottom: 2.5em;
    }
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .title-container {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .title-container .title {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .title-container .title .text {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .excerpt-container {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .excerpt-container .excerpt {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .excerpt-container .excerpt .text {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper {
    overflow: hidden;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper .bottom-links {
    overflow: hidden;
    padding-top: 1.25em;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper .bottom-links > * {
    margin-top: 1.25em;
    display: block;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link {
    color: #00aeef;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link:hover {
    color: #f89822;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link .text {
    font-size: 0.75em;
    font-weight: 600;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container.no-overflow {
    overflow: initial;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container.no-overflow .bottom-links-wrapper {
    overflow: initial;
}

.page-view.home .sub-section.team .container .wrapper .left-container .left-wrapper .bottom-links-container.no-overflow .bottom-links-wrapper .bottom-links {
    overflow: initial;
}

.page-view.home .sub-section.team .container .wrapper .right-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    width: 50%;
    padding-top: 2em;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section.team .container .wrapper .right-container {
        position: relative;
        width: 100%;
        padding-top: 100%;
    }
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section.team .container .wrapper .right-container .image-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-container .image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .page-view.home .sub-section.team .container .wrapper .right-container .image-container .image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line {
    position: absolute;
    height: 1px;
    background: #00aeef;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(1) {
    width: 50%;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(2) {
    width: 60%;
    left: 50%;
    height: 1%;
    background: white;
    opacity: 0.4;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(3) {
    opacity: 0.5;
    background: white;
    bottom: 15%;
    left: -10%;
    width: 60%;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(4) {
    opacity: 0.5;
    bottom: 10%;
    height: 2px;
    left: 25%;
    width: 55%;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(5) {
    opacity: 0.6;
    height: 2%;
    bottom: 10%;
    width: 10%;
    margin-bottom: 2px;
    left: 77.5%;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(6) {
    opacity: 0.4;
    bottom: 30%;
    z-index: 0;
    left: 5%;
    width: 60%;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.page-view.home .sub-section.team .container .wrapper .right-container .image-elements .line:nth-child(7) {
    opacity: 0.6;
    left: 50%;
    bottom: 45%;
    height: 2px;
    width: 40%;
    z-index: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.page-view.home .sub-section.projects {
    padding-top: 4em;
    padding-bottom: 4em;
}

.page-view.grid .page-excerpt-container {
    overflow: hidden;
    width: 90%;
    margin: auto;
    padding-top: 12em;
    padding-right: 67.5%;
}

@media screen and (max-width: 1120px) {
    .page-view.grid .page-excerpt-container {
        padding-right: 50%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.grid .page-excerpt-container {
        padding-right: 0;
        padding-top: 8em;
    }
}

.page-view.grid .page-excerpt-container .page-excerpt-wrapper {
    overflow: hidden;
}

.page-view.grid .page-excerpt-container .page-excerpt-wrapper .page-excerpt-content {
    overflow: hidden;
}

.page-view.grid .page-excerpt-container .page-excerpt-wrapper .page-excerpt-content .text {
    overflow: hidden;
    font-weight: 600;
    font-size: 1.27em;
    line-height: 1.32;
}

.page-view.planet canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: -webkit-grab !important;
    cursor: grab !important;
}

.page-view.planet canvas.dragging {
    cursor: -webkit-grabbing !important;
    cursor: grabbing !important;
}

.page-view.planet canvas.cursor-pointer {
    cursor: pointer !important;
}

.page-view.planet .projection {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: auto;
    height: auto;
    max-height: initial;
    min-height: initial;
    max-width: initial;
    min-width: initial;
    z-index: 999;
}

.page-view.planet .popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 17.36em;
    visibility: hidden;
    opacity: 0;
}

.page-view.planet .popup-container .popup-wrapper {
    opacity: 0.85;
}

.page-view.planet .popup-container .popup-wrapper .close-container {
    width: 2em;
    height: 2em;
    left: 100%;
    top: -1.5%;
    position: absolute;
    padding: 2.5%;
    cursor: pointer;
}

.page-view.planet .popup-container .popup-wrapper .close-container .close {
    width: 100%;
    height: 100%;
    border: 1px solid #009BDA;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    padding: 20%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.page-view.planet .popup-container .popup-wrapper .close-container .close svg {
    width: 100%;
    height: 100%;
}

.page-view.planet .popup-container .popup-wrapper .close-container .close svg path {
    fill: #009BDA;
}

.page-view.planet .popup-container .popup-wrapper .close-container:hover .close {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.page-view.planet .popup-container .popup-wrapper .arrow-title-wrapper {
    position: absolute;
    bottom: 5%;
    right: -15%;
    z-index: 5;
    font-size: 0.8em;
}

.page-view.planet .popup-container .popup-wrapper .popup-bg {
    position: absolute;
    top: -1px;
    left: 0px;
    bottom: -1px;
    right: 0px;
    background: -webkit-gradient(linear, left top, right top, color-stop(70%, rgba(0, 155, 218, 0.4)), color-stop(70%, transparent));
    background: linear-gradient(to right, rgba(0, 155, 218, 0.4) 70%, transparent);
    -webkit-clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    -webkit-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    transform: translateX(-1px);
}

.page-view.planet .popup-container .popup-wrapper .popup-glow {
    position: absolute;
    top: 10%;
    right: -webkit-calc(5% + 1.35px);
    right: calc(5% + 1.35px);
    width: 5%;
    height: 30%;
    -webkit-box-shadow: 0.25em 0px 3em 0em rgba(140, 210, 244, 0.4);
    box-shadow: 0.25em 0px 3em 0em rgba(140, 210, 244, 0.4);
}

.page-view.planet .popup-container .popup-wrapper .popup-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, #8cd2f4), color-stop(80%, transparent));
    background: linear-gradient(transparent 0%, #8cd2f4 20%, transparent 80%);
    opacity: 0.75;
    -webkit-clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    -webkit-transform: translateX(1.35px);
    -ms-transform: translateX(1.35px);
    transform: translateX(1.35px);
}

.page-view.planet .popup-container .popup-wrapper .popup-main {
    -webkit-clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    clip-path: polygon(100% 0, 100% 20%, 95% 25%, 95% 35%, 100% 40%, 100% 100%, 7% 100%, 0 93%, 0 10%, 10% 0);
    background: rgba(0, 0, 0, 0.7);
    background: #020c17;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .image-container {
    background: black;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .image-container .dummy {
    padding-top: 50%;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .image-container .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .image-container .image .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.35;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container {
    padding-top: 8%;
    padding-right: 8%;
    padding-bottom: 8%;
    padding-left: 8%;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .alternative-title .text {
    font-size: 0.82em;
    font-weight: 600;
    line-height: 1.25;
    line-height: 1.25;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .main-title {
    margin-top: 1.5em;
    padding-right: 20%;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .main-title .text {
    font-size: 0.82em;
    line-height: 1.25;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .details {
    margin-top: 1.05em;
    padding-right: 20%;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .details .text {
    font-size: 0.65em;
    line-height: 1.25;
}

.page-view.planet .popup-container .popup-wrapper .popup-main .content-container .details .text span.sep {
    margin: 0 0.25em;
    color: #00aeef;
}

.page-view.planet .popup-container .popup-wrapper .left-big-bar {
    position: absolute;
    width: 2px;
    height: 32.5%;
    background: #B6B9DA;
    position: absolute;
    top: 10%;
    left: -2px;
}

.page-view.planet .popup-container .popup-wrapper .left-small-bar {
    position: absolute;
    width: 4px;
    height: 4%;
    background: #B6B9DA;
    position: absolute;
    top: 9%;
    left: -4px;
    opacity: 0.75;
}

.page-view.planet .spinner {
    width: 70px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-view.planet .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #009BDA;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.page-view.planet .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.page-view.planet .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.page-view.bio .faded-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    display: none;
}

@media screen and (max-width: 767px) {
    .page-view.bio .faded-mobile-bg {
        display: block;
    }
}

.page-view.bio .faded-mobile-bg .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.25;
}

.page-view.bio .bio-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.page-view.bio .bio-bg .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-position: center right;
}

@media screen and (max-width: 767px) {
    .page-view.bio .bio-bg {
        position: relative;
        padding-top: 100%;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #4c4c4c;
    }

    .page-view.bio .bio-bg .image {
        background-position: right top;
        background-size: 200% auto;
    }
}

.page-view.bio .content-dimmer {
    background: #020c17;
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#020c17), to(transparent));
    background: linear-gradient(to right, #020c17, transparent);
    display: none;
}

@media screen and (max-width: 1120px) {
    .page-view.bio .content-dimmer {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .page-view.bio .content-dimmer {
        display: none;
    }
}

.page-view.bio .content-container {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35.63%;
    margin-left: 12.55%;
}

@media screen and (max-width: 767px) {
    .page-view.bio .content-container {
        min-height: initial;
        width: 90%;
        margin: auto;
    }
}

.page-view.bio .content-container .content-wrapper {
    padding: 8em 0 4em;
}

@media screen and (max-width: 767px) {
    .page-view.bio .content-container .content-wrapper {
        padding: 4em 0;
    }
}

.page-view.bio .content-container .content-wrapper .titles-container {
    -webkit-perspective: 55em;
    perspective: 55em;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper {
    padding-right: -webkit-calc(10% + 6em);
    padding-right: calc(10% + 6em);
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .breadcrumbs {
    text-transform: uppercase;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .breadcrumbs .text > * {
    font-size: 0.75em;
    font-weight: normal;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .breadcrumbs .text .single-bread {
    color: white;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .breadcrumbs .text .single-bread:hover {
    color: #f89822;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .title {
    margin-top: 0.77em;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .title .text {
    font-size: 1.77em;
    font-weight: bold;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .sub-title {
    margin-top: 0.35em;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .sub-title .text {
    font-weight: 300;
    font-size: 1.15em;
}

.page-view.bio .content-container .content-wrapper .titles-container .titles-wrapper .contact-link {
    position: absolute;
    bottom: 0;
    right: 10%;
}

.page-view.bio .content-container .content-wrapper .bio-content {
    margin-top: 2.82em;
    -webkit-perspective: 55em;
    perspective: 55em;
    -webkit-perspective-origin: 50% 0%;
    perspective-origin: 50% 0%;
}

.page-view.bio .content-container .content-wrapper .bio-content .text-container {
    overflow: hidden;
}

.page-view.bio .content-container .content-wrapper .bio-content .text-container .text-wrapper {
    overflow: hidden;
}

.page-view.bio .content-container .content-wrapper .bio-content .text-container .text-wrapper .text {
    overflow: hidden;
    font-size: 0.75em;
    line-height: 2.125;
}

.page-view.projectdetail .content-container {
    width: 100%;
}

.page-view.projectdetail .content-container .content-wrapper {
    margin-left: 18.75%;
    width: 62.5%;
}

@media screen and (max-width: 1120px) {
    .page-view.projectdetail .content-container .content-wrapper {
        width: 76.25%;
        margin-left: 5%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .content-container .content-wrapper {
        width: 90%;
        margin: auto;
    }
}

.page-view.projectdetail .top-title-container .title-background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-view.projectdetail .top-title-container .title-background-container .title-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-view.projectdetail .top-title-container .title-background-container .title-background .title-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-view.projectdetail .top-title-container .title-background-container .title-background .title-bg-image .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.35;
}

.page-view.projectdetail .top-title-container .title-container {
    padding-top: 15em;
    padding-bottom: 3em;
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .top-title-container .title-container {
        padding-top: 10em;
    }
}

.page-view.projectdetail .top-title-container .title-container .title-wrapper .title-text {
    padding-right: 25%;
}

@media screen and (max-width: 1120px) {
    .page-view.projectdetail .top-title-container .title-container .title-wrapper .title-text {
        padding-right: 0;
    }
}

.page-view.projectdetail .top-title-container .title-container .title-wrapper .title-text .text {
    font-size: 2.73em;
    line-height: 1.23;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .top-title-container .title-container .title-wrapper .title-text .text {
        font-size: 1.5em;
    }
}

.page-view.projectdetail .body-container {
    color: black;
    padding-top: 5em;
    background: white;
}

@media screen and (max-width: 567px) {
    .page-view.projectdetail .body-container {
        padding-top: 2.5em;
    }
}

.page-view.projectdetail .body-container .body-wrapper {
    float: left;
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .body-container .body-wrapper {
        float: initial;
    }
}

.page-view.projectdetail .body-container .body-wrapper .main-content {
    padding-bottom: 5em;
}

.page-view.projectdetail .body-container .body-wrapper .main-content.has-slideshow-module {
    padding-bottom: 45%;
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .body-container .body-wrapper .main-content.has-slideshow-module {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .body-container .body-wrapper .main-content {
        padding-bottom: 0;
    }
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side {
    width: 21.75%;
    margin-right: 10%;
    float: left;
}

@media screen and (max-width: 567px) {
    .page-view.projectdetail .body-container .body-wrapper .main-content .content-side {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .main-title .text {
    font-size: 0.82em;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .details {
    margin-top: 1.73em;
    line-height: 1.75;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .details > * {
    font-size: 0.75em;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .details .commodity {
    font-style: italic;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .details .location {
    font-weight: bold;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact {
    margin-top: 1.73em;
    line-height: 1.75;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact > * {
    font-size: 0.75em;
    display: block;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact > a {
    color: black;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact > a:hover {
    color: #00aeef;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact .email {
    font-weight: bold;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-side .contact .phone {
    font-weight: bold;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-body {
    width: 68.25%;
    float: left;
}

@media screen and (max-width: 567px) {
    .page-view.projectdetail .body-container .body-wrapper .main-content .content-body {
        float: none;
        width: 100%;
        margin-top: 2em;
    }
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-body .body-text .text {
    font-size: 0.75em;
    line-height: 1.75;
    letter-spacing: 0.06em;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-body .body-text .text p {
    margin-top: 2em;
}

.page-view.projectdetail .body-container .body-wrapper .main-content .content-body .body-text .text p:first-child {
    margin-top: 0;
}

.page-view.projectdetail .body-container .body-sidebar {
    float: left;
    width: 18.75%;
    padding-right: 6%;
    padding-left: 2.5%;
}

@media screen and (max-width: 1120px) {
    .page-view.projectdetail .body-container .body-sidebar {
        padding-right: 2.5%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .body-container .body-sidebar {
        float: initial;
        width: 90%;
        margin: auto;
        padding: 0;
        margin-top: 2em;
        padding-bottom: 35%;
    }
}

.page-view.projectdetail .body-container .body-sidebar .sidebar {
    width: 100%;
    padding-bottom: 1.25em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-title {
    text-align: center;
    padding-bottom: 0.25em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-title .text {
    text-transform: uppercase;
    font-size: 0.8em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item {
    margin-top: 1.25em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item {
        width: 47.5%;
        float: left;
    }

    .page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item:nth-child(2n+1) {
        margin-right: 5%;
        clear: both;
    }
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container {
    width: 100%;
    display: block;
    color: white;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container:hover {
    color: #f89822;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .dummy {
    padding-top: 100%;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.35;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link {
    text-align: center;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link:after {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -0.5em;
    height: 1px;
    content: '';
    background: #00aeef;
    -webkit-transform: scaleX(0.8);
    -ms-transform: scaleX(0.8);
    transform: scaleX(0.8);
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link span {
    display: inline-block;
    vertical-align: middle;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link span.text {
    font-weight: 600;
    font-size: 0.75em;
    margin-right: 1em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link span.arrow {
    width: 1.25em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .item-image-link-container .item-image-link .link span.arrow svg path {
    fill: #f89822;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .title {
    margin-top: 0.91em;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .title .text {
    font-size: 0.8em;
    display: block;
    color: black;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .title .text:hover {
    color: #00aeef;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .details {
    margin-top: 0.91em;
    margin-bottom: 0.91em;
    line-height: 1.5;
}

.page-view.projectdetail .body-container .body-sidebar .sidebar .sidebar-items .single-sidebar-item .details > div {
    font-size: 0.7em;
    color: rgba(0, 0, 0, 0.6);
}

.page-view.projectdetail .slideshow-module-container .slideshow-module {
    width: 62.5%;
    margin: -22.5% auto 0;
    padding-bottom: 3em;
}

@media screen and (max-width: 1120px) {
    .page-view.projectdetail .slideshow-module-container .slideshow-module {
        margin: -22.5% 0 0 5%;
        width: 76.25%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.projectdetail .slideshow-module-container .slideshow-module {
        margin: -30% auto 0;
        width: 90%;
    }
}

.page-view.projectdetail .related-projects {
    padding-top: 11em;
    padding-bottom: 2.5em;
}

.page-view.projectdetail .related-projects .go-down-container {
    bottom: initial;
    top: 2em;
}

.page-view.servicedetail .content-container {
    margin: auto;
    width: 60%;
}

@media screen and (max-width: 1120px) {
    .page-view.servicedetail .content-container {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .content-container {
        width: 90%;
    }
}

.page-view.servicedetail .top-title-container .title-background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-view.servicedetail .top-title-container .title-background-container .title-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-view.servicedetail .top-title-container .title-background-container .title-background .title-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-view.servicedetail .top-title-container .title-background-container .title-background .title-bg-image .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020c17;
    opacity: 0.35;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper {
    text-align: center;
    padding-top: 9em;
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .top-title-container .title-container .links-wrapper {
        padding-top: 7.5em;
    }
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link {
    display: inline-block;
    margin: 0.75em 0.75em 0;
    color: rgba(255, 255, 255, 0.6);
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link span {
    font-size: 0.75em;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link span.left-bracket {
    margin-right: 0.5em;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link span.text:after {
    content: '';
    position: absolute;
    bottom: -0.5em;
    left: 0;
    height: 1px;
    width: 100%;
    background: #00aeef;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link span.right-bracket {
    margin-left: 0.5em;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link:hover {
    color: white;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link:hover span.text:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link.active {
    color: white;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link.active span.text {
    font-weight: 500;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link.active:hover {
    cursor: default;
}

.page-view.servicedetail .top-title-container .title-container .links-wrapper .single-link.active:hover span.text:after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper {
    padding: 4.14em 0;
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .top-title-container .title-container .title-wrapper {
        padding: 2em 0;
    }
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper.padding {
    padding: 15em 0 3em;
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .top-title-container .title-container .title-wrapper.padding {
        padding: 10em 0 3em;
    }
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .title-text .text {
    font-size: 2.73em;
    line-height: 1.23;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .top-title-container .title-container .title-wrapper .title-text .text {
        font-size: 1.5em;
    }
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .event-details {
    margin-top: 2em;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .event-details > div {
    margin-top: 0.75em;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .event-details > div:first-of-type {
    margin-top: 0;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .event-details .client .text {
    font-size: 1.25em;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .event-details .location-date .text span.sep {
    color: #00aeef;
    margin: 0 0.25em;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .date {
    margin-top: 2em;
}

.page-view.servicedetail .top-title-container .title-container .title-wrapper .slash {
    color: #00aeef;
}

.page-view.servicedetail .body-container {
    background: white;
    color: black;
}

.page-view.servicedetail .body-container.has-slideshow-module {
    padding-bottom: 10%;
}

.page-view.servicedetail .body-container .body-wrapper {
    padding: 5em 0;
}

.page-view.servicedetail .body-container .body-wrapper.jobvite {
    padding: 1em 0;
}

.page-view.servicedetail .body-container .body-wrapper .content {
    width: 75%;
    margin-left: 25%;
}

.page-view.servicedetail .body-container .body-wrapper .content.no-margin {
    margin-left: 0;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .body-container .body-wrapper .content {
        margin: 0;
        width: 100%;
    }
}

@media screen and (max-width: 567px) {
    .page-view.servicedetail .body-container .body-wrapper .content {
        float: none;
        width: 100%;
        margin-top: 1em;
    }
}

.page-view.servicedetail .body-container .body-wrapper .content .text img {
    height: auto !important;
}

.page-view.servicedetail .body-container .body-wrapper .content .text p {
    margin-top: 0;
    margin-bottom: 1.5em;
}

.page-view.servicedetail .body-container .body-wrapper .content .text p:last-of-type {
    margin-bottom: 0;
}

.page-view.servicedetail .body-container .body-wrapper .content .text p, .page-view.servicedetail .body-container .body-wrapper .content .text h1, .page-view.servicedetail .body-container .body-wrapper .content .text h2, .page-view.servicedetail .body-container .body-wrapper .content .text h3, .page-view.servicedetail .body-container .body-wrapper .content .text h4, .page-view.servicedetail .body-container .body-wrapper .content .text h5, .page-view.servicedetail .body-container .body-wrapper .content .text h6 {
    font-size: 0.75em;
}

.page-view.servicedetail .body-container .body-wrapper .content .text p {
    line-height: 1.75;
}

.page-view.servicedetail .body-container .body-wrapper .content .text h1, .page-view.servicedetail .body-container .body-wrapper .content .text h2, .page-view.servicedetail .body-container .body-wrapper .content .text h3, .page-view.servicedetail .body-container .body-wrapper .content .text h4, .page-view.servicedetail .body-container .body-wrapper .content .text h5, .page-view.servicedetail .body-container .body-wrapper .content .text h6 {
    font-weight: bold;
    display: inline-block;
    padding-bottom: 0.75em;
    position: absolute;
    right: 100%;
    width: 26.666%;
    margin-right: 6.666%;
}

.page-view.servicedetail .body-container .body-wrapper .content .text h1:after, .page-view.servicedetail .body-container .body-wrapper .content .text h2:after, .page-view.servicedetail .body-container .body-wrapper .content .text h3:after, .page-view.servicedetail .body-container .body-wrapper .content .text h4:after, .page-view.servicedetail .body-container .body-wrapper .content .text h5:after, .page-view.servicedetail .body-container .body-wrapper .content .text h6:after {
    width: 50%;
    height: 1px;
    background: #00aeef;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
}

@media screen and (max-width: 767px) {
    .page-view.servicedetail .body-container .body-wrapper .content .text h1, .page-view.servicedetail .body-container .body-wrapper .content .text h2, .page-view.servicedetail .body-container .body-wrapper .content .text h3, .page-view.servicedetail .body-container .body-wrapper .content .text h4, .page-view.servicedetail .body-container .body-wrapper .content .text h5, .page-view.servicedetail .body-container .body-wrapper .content .text h6 {
        width: auto;
        position: relative;
        margin: 0;
        right: initial;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
        margin-bottom: 2em;
    }

    .page-view.servicedetail .body-container .body-wrapper .content .text h1:after, .page-view.servicedetail .body-container .body-wrapper .content .text h2:after, .page-view.servicedetail .body-container .body-wrapper .content .text h3:after, .page-view.servicedetail .body-container .body-wrapper .content .text h4:after, .page-view.servicedetail .body-container .body-wrapper .content .text h5:after, .page-view.servicedetail .body-container .body-wrapper .content .text h6:after {
        width: 100%;
    }
}

.page-view.servicedetail .slideshow-module-container .slideshow-module {
    margin-top: -15%;
    padding-bottom: 3em;
}

.page-view.servicedetail .projects {
    padding-top: 4em;
    padding-bottom: 2.5em;
    padding-top: 11em;
    padding-bottom: 2.5em;
}

.page-view.servicedetail .projects .go-down-container {
    bottom: initial;
    top: 2em;
}

.page-view.servicedetail .next-service {
    display: block;
    color: white;
}

.page-view.servicedetail .next-service .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page-view.servicedetail .next-service .bg .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-view.servicedetail .next-service .bg .dimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.page-view.servicedetail .next-service .title-container {
    text-align: center;
    padding: 7.5em 0 9em;
}

.page-view.servicedetail .next-service .title-container .type .text {
    font-size: 1.1em;
}

.page-view.servicedetail .next-service .title-container .title {
    margin-top: 1.64em;
}

.page-view.servicedetail .next-service .title-container .title .text {
    font-size: 2em;
    font-weight: 600;
}

.page-view.servicedetail .next-service .title-container .arrow {
    margin: auto;
    width: 1.18em;
    margin-top: 1.86em;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-view.servicedetail .next-service .title-container .arrow svg path {
    fill: #f89822;
}

.page-view.servicedetail .next-service:hover {
    color: #00aeef;
}

.page-view.servicedetail .next-service:hover .bg .dimmer {
    opacity: 0.35;
}

.page-view.servicedetail .next-service:hover .title-container .arrow {
    -webkit-transform: translateX(75%);
    -ms-transform: translateX(75%);
    transform: translateX(75%);
}

.page-view.filter .filter-container {
    padding-top: 10em;
    padding-bottom: 2em;
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1120px) {
    .page-view.filter .filter-container {
        display: block;
        padding-top: 8em;
    }
}

.page-view.filter .filter-container .content-container {
    width: 25%;
    max-width: 25%;
    min-width: 25%;
}

@media screen and (max-width: 1120px) {
    .page-view.filter .filter-container .content-container {
        width: 100%;
        max-width: initial;
        min-width: initial;
    }
}

.page-view.filter .filter-container .content-container .title-container {
    overflow: hidden;
}

.page-view.filter .filter-container .content-container .title-container .title-wrapper {
    overflow: hidden;
}

.page-view.filter .filter-container .content-container .title-container .title-wrapper .text {
    overflow: hidden;
    font-size: 2em;
    line-height: 1.23;
    font-weight: bold;
}

@media screen and (max-width: 567px) {
    .page-view.filter .filter-container .content-container .title-container .title-wrapper .text {
        font-size: 1.5em;
    }
}

.page-view.filter .filter-container .content-container .excerpt-container {
    margin-top: 2em;
    overflow: hidden;
}

@media screen and (max-width: 1120px) {
    .page-view.filter .filter-container .content-container .excerpt-container {
        margin-top: 1em;
    }
}

.page-view.filter .filter-container .content-container .excerpt-container .excerpt-wrapper {
    overflow: hidden;
}

.page-view.filter .filter-container .content-container .excerpt-container .excerpt-wrapper .text {
    overflow: hidden;
    font-size: 0.75em;
    line-height: 1.75;
}

.page-view.filter .filter-container .content-container .buttons-wrapper {
    margin-top: 2em;
}

@media screen and (max-width: 1120px) {
    .page-view.filter .filter-container .content-container .buttons-wrapper {
        margin-top: 1em;
    }
}

.page-view.filter .filter-container .dropdown-container {
    width: 55%;
    max-width: 55%;
    min-width: 55%;
}

@media screen and (max-width: 1120px) {
    .page-view.filter .filter-container .dropdown-container {
        width: 100%;
        max-width: initial;
        min-width: initial;
        margin-top: 3em;
    }
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container {
    float: left;
    width: 33%;
    padding: 0 2%;
    z-index: 10;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container:hover {
    z-index: 15;
}

@media screen and (max-width: 567px) {
    .page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container {
        width: 100%;
        float: none;
        padding: 0;
        margin-top: 2em;
    }
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper {
    width: 100%;
    border-bottom: 1px solid rgba(0, 174, 239, 0.25);
    cursor: pointer;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-select {
    padding-bottom: 0.85em;
    z-index: 15;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-select .text {
    font-weight: 400;
    text-transform: uppercase;
    color: #00aeef;
    font-size: 0.75em;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items {
    width: 100%;
    background: rgba(2, 12, 23, 0.925);
    border: 1px solid rgba(0, 174, 239, 0.3);
    z-index: 10;
    position: absolute;
    top: 100%;
    left: 0;
    cursor: initial;
    padding: 1em;
    display: none;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox {
    margin-top: 0.75em;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox:first-child {
    margin-top: 0;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox input {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox label {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-left: 2em;
    padding-top: 0.17em;
    font-size: 0.7em;
    line-height: 1.5;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox label::before, .page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox label::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.15em;
    height: 1.15em;
    margin-right: 10px;
    background: transparent;
    -webkit-transition-property: border, opacity;
    transition-property: border, opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox label::before {
    border: 1px solid rgba(0, 174, 239, 0.4);
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox label::after {
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 174, 239, 0.6);
    border: 1px solid transparent;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox input:checked ~ label:after {
    opacity: 1;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper .dropdown-items .checkbox:hover label::before {
    border: 1px solid #00aeef;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper:hover {
    z-index: 100;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper:hover .dropdown-items {
    display: block;
}

.page-view.filter .grid-items-none-found {
    text-align: center;
    display: none;
}

.page-view.filter .grid-items-none-found .text {
    color: #009BDA;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 1.15em;
    line-height: 1.5;
}

.page-view.filter .grid-items-mix {
    width: 75%;
    margin: auto;
}

.page-view.filter .grid-items-mix .grid-box-single-mix {
    float: left;
    width: 33.33%;
    padding: 0 5%;
    margin-bottom: 5%;
}

.page-view.contact .contact-container {
    width: 90%;
    margin: auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7.5em 0;
}

@media screen and (max-width: 767px) {
    .page-view.contact .contact-container {
        display: block;
        min-height: auto;
        padding: 10em 0 7.5em;
    }
}

.page-view.contact .contact-container .left-content {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
    margin-right: 22%;
}

@media screen and (max-width: 767px) {
    .page-view.contact .contact-container .left-content {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-right: 0%;
    }
}

.page-view.contact .contact-container .left-content .title-container {
    overflow: hidden;
}

.page-view.contact .contact-container .left-content .title-container .title-wrapper {
    overflow: hidden;
}

.page-view.contact .contact-container .left-content .title-container .title-wrapper .text {
    overflow: hidden;
    font-size: 2.05em;
    font-weight: 600;
}

.page-view.contact .contact-container .left-content .excerpt-container {
    margin-top: 1.73em;
    overflow: hidden;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper {
    overflow: hidden;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text {
    overflow: hidden;
    font-size: 0.75em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location {
    margin-top: 3em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-title {
    margin-bottom: 1.5em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-title .text {
    font-size: 1.15em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item {
    margin-top: 1em;
    display: block;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item:first-child {
    margin-top: 0;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item .icon {
    width: 1em;
    float: left;
    margin-top: 0.05em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item .icon svg path {
    fill: #009BDA;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item .content {
    float: left;
    width: -webkit-calc(100% - 1em);
    width: calc(100% - 1em);
    padding-left: 0.9em;
}

.page-view.contact .contact-container .left-content .excerpt-container .excerpt-wrapper .text .single-location .group-item-list-item .content .text {
    font-size: 0.9em;
    line-height: 1.25;
}

.page-view.contact .contact-container .right-form {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
}

@media screen and (max-width: 767px) {
    .page-view.contact .contact-container .right-form {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-top: 3em;
    }
}

.page-view.contact .locations-container {
    background: white;
    color: black;
}

.page-view.contact .locations-container .locations-header {
    padding: 3.5em 0;
    text-align: center;
}

.page-view.contact .locations-container .locations-header .title .text {
    font-size: 1.1em;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper {
    margin-top: 3.9em;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button {
    display: inline-block;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button:first-child {
    margin-right: 3.1em;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button .button-with-icon {
    color: rgba(36, 42, 46, 0.6);
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button .button-with-icon:hover {
    color: #00aeef;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button.active .button-with-icon {
    color: #00aeef;
    cursor: default;
}

.page-view.contact .locations-container .locations-header .buttons-wrapper .single-locations-button.active .button-with-icon:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.page-view.contact .locations-container .locations-json {
    width: 0px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.page-view.contact .locations-container .location-types .list-container {
    width: 90%;
    margin: auto;
    padding-top: 1.5em;
    padding-bottom: 5em;
}

.page-view.contact .locations-container .location-types .list-container .list-group {
    margin-top: 5em;
}

.page-view.contact .locations-container .location-types .list-container .list-group:first-child {
    margin-top: 0;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-title {
    text-align: center;
}

@media screen and (max-width: 567px) {
    .page-view.contact .locations-container .location-types .list-container .list-group .group-title {
        text-align: left;
    }
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-title .text {
    font-size: 1.63em;
    font-weight: 600;
    color: #009BDA;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items {
    margin-top: 3.86em;
}

@media screen and (max-width: 567px) {
    .page-view.contact .locations-container .location-types .list-container .list-group .group-items {
        margin-top: 1em;
    }
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item {
    width: 20%;
    float: left;
    margin-right: 6.66%;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item:nth-child(4n+4) {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item {
        width: 45%;
        margin-top: 2em;
    }

    .page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item:nth-child(4n+4) {
        margin-right: 6.66%;
    }

    .page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 567px) {
    .page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item {
        width: 100%;
        margin-right: 0;
    }
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-title .text {
    font-size: 1.1em;
    font-weight: 600;
    color: #009BDA;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items {
    margin-top: 2em;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item {
    margin-top: 0.75em;
    display: block;
    color: black;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item:first-child {
    margin-top: 0;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .icon {
    width: 0.77em;
    float: left;
    margin-top: 0.05em;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .icon svg path {
    fill: #009BDA;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .content {
    float: left;
    width: -webkit-calc(100% - 0.77em);
    width: calc(100% - 0.77em);
    padding-left: 0.9em;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .content .text {
    font-size: 0.75em;
    line-height: 1.25;
}

.page-view.contact .locations-container .location-types .map-container {
    display: none;
    opacity: 0;
}

.page-view.contact .locations-container .location-types .map-container.single-location {
    display: block;
    opacity: 1;
}

.page-view.contact .locations-container .location-types .map-container img {
    max-height: initial;
}

.page-view.contact .locations-container .location-types .map-container .dummy {
    padding-top: 40%;
}

@media screen and (max-width: 767px) {
    .page-view.contact .locations-container .location-types .map-container .dummy {
        padding-top: 60%;
    }
}

@media screen and (max-width: 567px) {
    .page-view.contact .locations-container .location-types .map-container .dummy {
        padding-top: 100%;
    }
}

.page-view.contact .locations-container .location-types .map-container .map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    font-size: 10px;
}

.page-view.contact .locations-container .location-types .map-container .map-wrapper #map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page-view.contact .locations-container .location-types .map-container .map-wrapper #map .gm-style-iw {
    font-family: 'Montserrat', sans-serif;
}

.page-view.contact .locations-container .location-types .map-container .map-wrapper #map .gm-style-iw .info-title {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #009BDA;
}

.page-view.contact .locations-container .location-types .map-container .map-wrapper #map .gm-style-iw .info-address {
    margin-top: 8px;
    font-weight: 400;
    font-size: 12px;
}

.page-view.careers .custom-background {
    z-index: -3;
}

.page-view.careers .background-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/grid.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

@media screen and (max-width: 767px) {
    .page-view.careers .background-grid {
        background-size: cover;
    }
}

.page-view.careers .content-container {
    width: 90%;
    margin: auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7.5em 0;
}

@media screen and (max-width: 767px) {
    .page-view.careers .content-container {
        display: block;
        min-height: auto;
        padding: 10em 0 7.5em;
    }
}

.page-view.careers .content-container .left-content {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
    margin-right: 22%;
}

@media screen and (max-width: 767px) {
    .page-view.careers .content-container .left-content {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-right: 0%;
    }
}

.page-view.careers .content-container .left-content .title-container {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .title-container .title-wrapper {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .title-container .title-wrapper .text {
    overflow: hidden;
    font-size: 2.05em;
    font-weight: 600;
}

.page-view.careers .content-container .left-content .excerpt-container {
    margin-top: 1.73em;
}

.page-view.careers .content-container .left-content .excerpt-container .excerpt-wrapper {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .excerpt-container .excerpt-wrapper .excerpt {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .excerpt-container .excerpt-wrapper .excerpt .text {
    overflow: hidden;
    font-size: 0.75em;
    line-height: 1.75;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper {
    overflow: hidden;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper .bottom-links {
    overflow: hidden;
    padding-top: 1.25em;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper .bottom-links > * {
    margin-top: 1.25em;
    display: block;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link {
    color: white;
    cursor: pointer;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link:hover {
    color: #00aeef;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container .bottom-links-wrapper .bottom-links .regular-link .text {
    font-size: 0.75em;
    font-weight: 600;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container.no-overflow {
    overflow: initial;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container.no-overflow .bottom-links-wrapper {
    overflow: initial;
}

.page-view.careers .content-container .left-content .excerpt-container .bottom-links-container.no-overflow .bottom-links-wrapper .bottom-links {
    overflow: initial;
}

.page-view.careers .stars-template {
    width: 0px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.page-view.careers .stars-template .stars-container {
    display: inline-block;
    clear: both;
}

@media screen and (max-width: 767px) {
    .page-view.careers .stars-template .stars-container {
        display: inline-block;
        clear: both;
    }
}

.page-view.careers .process-form-wrapper .background {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #072d3f), color-stop(25%, #020c17));
    background: linear-gradient(transparent, #072d3f 25%, #020c17);
    position: absolute;
    top: -20em;
    left: 0;
    height: -webkit-calc(100% + 20.1em);
    height: calc(100% + 20.1em);
    width: 100%;
    z-index: -2;
}

.page-view.careers .process-form-wrapper .hiring-process-container {
    width: 54.2em;
    margin: auto;
    padding-top: 5em;
    padding-bottom: 3em;
}

@media screen and (max-width: 1120px) {
    .page-view.careers .process-form-wrapper .hiring-process-container {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.careers .process-form-wrapper .hiring-process-container {
        width: 90%;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid {
    -webkit-perspective: 55em;
    perspective: 55em;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item {
    width: 20.125%;
    float: left;
    margin-right: 6.5%;
    margin-top: 3.25%;
    margin-bottom: 3.25%;
    cursor: pointer;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item:nth-child(4n+4) {
    margin-right: 0;
}

@media screen and (max-width: 567px) {
    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item {
        width: 46.75%;
    }

    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item:nth-child(4n+4) {
        margin-right: 6.5%;
    }

    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item:nth-child(2n+2) {
        margin-right: 0;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .dummy {
    padding-top: 70%;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #2e3f4b;
    display: block;
    padding: 12.5%;
    -webkit-transition-property: border;
    transition-property: border;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    height: 100%;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .number .text {
    font-size: 1.2em;
    font-weight: 600;
}

@media screen and (max-width: 1120px) {
    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .number .text {
        font-size: 1em;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .title {
    margin-top: 1em;
}

@media screen and (max-width: 1120px) {
    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .title {
        margin-top: 0.75em;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .title .text {
    font-size: 1em;
}

@media screen and (max-width: 1120px) {
    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .content .title .text {
        font-size: 0.7em;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .expand-icon {
    position: absolute;
    top: 14%;
    right: 10%;
    width: 0.75em;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .expand-icon svg {
    opacity: 0.75;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item .single-hiring-process .expand-icon svg path {
    fill: #f89822;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item:hover .single-hiring-process {
    border: 1px solid #f89822;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-grid .single-hiring-process-grid-item:hover .single-hiring-process .expand-icon {
    opacity: 1;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay {
    visibility: hidden;
    height: 0px;
    opacity: 0;
    width: 32.5em;
    overflow: initial;
    margin: 2.5em auto 5em;
}

@media screen and (max-width: 567px) {
    .page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay {
        width: 100%;
    }
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper {
    border: 1px solid rgba(248, 152, 34, 0.25);
    overflow: hidden;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide {
    padding: 7.5% 10%;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-title .text {
    font-size: 1.5em;
    font-weight: 600;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-desc {
    margin-top: 2em;
    margin-bottom: 2em;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-desc .text {
    font-size: 0.75em;
    line-height: 1.75;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-tip .tip-title .icon {
    display: inline-block;
    vertical-align: middle;
    width: 0.75em;
    margin-right: 0.25em;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-tip .tip-title .icon svg path {
    fill: #f89822;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-tip .tip-title .text {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.75em;
    text-transform: uppercase;
    color: #f89822;
    letter-spacing: 0.02em;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-tip .tip-desc {
    margin-top: 0.5em;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .swiper-wrapper .swiper-slide .overlay-tip .tip-desc .text {
    font-size: 0.75em;
    line-height: 1.75;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .close {
    position: absolute;
    top: 3%;
    right: 2%;
    width: 3%;
    cursor: pointer;
    z-index: 3;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .close svg {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(0.999);
    -ms-transform: scale(0.999);
    transform: scale(0.999);
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .close svg path {
    fill: #f89822;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .close:hover svg {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow {
    width: 3.5%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow svg {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow svg polygon {
    fill: #f89822;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow.prev {
    left: 1%;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow.prev:hover svg {
    -webkit-transform: translateX(-15%);
    -ms-transform: translateX(-15%);
    transform: translateX(-15%);
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow.next {
    right: 1%;
}

.page-view.careers .process-form-wrapper .hiring-process-container .hiring-process-overlay .arrow.next:hover svg {
    -webkit-transform: translateX(15%);
    -ms-transform: translateX(15%);
    transform: translateX(15%);
}

.page-view.careers .process-form-wrapper .feedback-form-container {
    width: 54.2em;
    margin: auto;
    padding-bottom: 10em;
}

@media screen and (max-width: 1120px) {
    .page-view.careers .process-form-wrapper .feedback-form-container {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .page-view.careers .process-form-wrapper .feedback-form-container {
        width: 90%;
    }
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .corner {
    position: absolute;
    width: 3.5%;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .corner.top-left-corner {
    top: -0.15em;
    left: -0.15em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .corner.top-right-corner {
    top: -0.15em;
    right: -0.15em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .corner.bottom-left-corner {
    bottom: -0.15em;
    left: -0.15em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .corner.bottom-right-corner {
    bottom: -0.15em;
    right: -0.15em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form {
    padding: 10%;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .form-title {
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .form-desc {
    margin-top: 5em;
    margin-bottom: 3em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .form-desc, .page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .range-desc, .page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .range-step-num {
    font-size: 0.75em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .range-desc {
    line-height: 1.5;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .range-step-num {
    line-height: 1.5;
    position: absolute;
    right: 100%;
    top: 0;
    padding-right: 1.25em;
}

@media screen and (max-width: 767px) {
    .page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .range-step-num {
        padding-right: 0.5em;
    }
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .single-form-range-container {
    margin-top: 1.5em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .form-fillable-fields {
    margin-top: 5em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .stars-range-wrapper {
    display: inline-block;
    margin-top: 1em;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .stars-range-wrapper .wpcf7-form-control-wrap {
    display: inline-block;
    float: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .stars-range-wrapper .wpcf7-form-control-wrap:after {
    display: none;
}

.page-view.careers .process-form-wrapper .feedback-form-container .feedback-form-wrapper .feedback-form .stars-range-wrapper .wpcf7-form-control-wrap input {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.menu-items-wrapper {
    min-height: auto !important;
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link {
    color: white;
}

.home a.slideshow-title-container {
    left: 20% !important;
}

.home a.slideshow-title-container svg * {
    fill: #009BDA!Important;
}

.abbreviation {
}

.title-and-abbreviation {
    display: flex;
}

.title-and-abbreviation .text {
    font-size: 20px !important;

}

.title-and-abbreviation .abbreviation {
    display: flex;
    align-items: flex-end;
    position: relative;
    left: 10px;
    color: white;
    font-size: 12px;
    font-weight: 900;
}

.position-title {
    color: white;
    font-weight: 900;
    font-size: 12px;
    padding-top: 15px;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-title {
    top: 65%;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
    left: -70%;
    top: 70%;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title:before {
    width: 14%;
    left: 10%;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title svg * {
    fill: #00aeef !important;
}

.grid-box .rectangle, .grid-box .top-vert-line, .grid-box .bottom-small-line, .grid-box .top-small-square {
    display: none
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper {
    mask-image: none !Important;
    -webkit-mask-image: none;
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper, .grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-inner, .grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-wrapper-background {
    -webkit-clip-path: polygon(90% 0, 100% 12%, 100% 16%, 100% 100%, 0 100%, 0% 60%, 0 0);
    clip-path: polygon(90% 0, 100% 12%, 100% 16%, 100% 100%, 0 100%, 0% 60%, 0 0);
}

.grid-box .grid-box-container-wrapper .grid-box-container .grid-box-wrapper .grid-box-wrapper-background {
    background: none;
}

<<<<<<< HEAD
/*.events-container .single-event {
    width: 25% !important;
}*/
=======
.events-container .single-event {
    width: 25% !important;
}
>>>>>>> 23c68329f701a8e3e0a43d58c4f57abd8bcbee95

a.single-event:hover {
    cursor: pointer;
}

a.single-event:nth-child(even) {
    background-color: rgba(0, 159, 220, 0.4196078431372549);
}

a.single-event:nth-child(odd) {
    background-color: rgba(5, 80, 109, 0.45098039215686275);
}

.events-container .single-event .event-content .title {
    margin-top: 0px;
}

.see-all-leadership {
    padding-top: 50px;
    text-align: center;
}

.see-all-leadership svg * {
    fill: #0099d9 !important;
}

.terms-container a:nth-child(2) {
    padding-left: 35px;
    padding-right: 35px;
}

.grid-box-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    height: 100%;
    width: 110%;
    background-image: URL("/wp-content/uploads/callout-border-lines.png");
    background-size: 100% 100%;
    z-index: -1;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter .single-dropdown-container:nth-child(1),.filter .single-dropdown-container:nth-child(2) {
    display: none;
}

.filter-container {
    display: flex;
    flex-direction: column;
    padding-left: 0px !Important;
    align-items: flex-start !important;
    ; justify-content: flex-end !Important;
}

.filter .back-button {
    color: white;
}

.filter .title-wrapper {
    padding-top: 25px;
}

.filter .excerpt-wrapper {
    padding-bottom: 25px;
}

.filter .single-dropdown-container {
    padding-left: 0px !Important;
}

.filter .input-animation:before,.filter .input-animation:after {
    display: none !Important;
}

.page-view.filter .filter-container .dropdown-container .dropdown-wrapper .single-dropdown-container .single-dropdown-wrapper {
    border-bottom: none;
}

.filter .single-dropdown-container .text {
    color: white !Important;
}

.page-view.filter .filter-container {
    width: 80%;
}

.filter .grid-items {
    width: 80%;
}

.filter .grid-box-single {
    left: -5%;
}

.page-view.filter .filter-container .content-container {
    min-width: 45% !important;
    max-width: 45% !important;
}

.projectdetail .main-container {
    min-width: 100vw !important;
    min-height: 100vh !important;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
}

.projectdetail .content-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50% !important;
    margin-left: 10%;
}

.projectdetail .content-container a {
    color: white;
    font-weight: 600;
}

.projectdetail .content-container h1 {
    font-size: 45px;
    padding-top: 25px;
    padding-bottom: 10px;
}

.projectdetail .content-container h4 {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 25px;
}

.projectdetail .content-container .links-container {
    display: flex;
    width: 25%;
    justify-content: space-between;
    padding-bottom: 50px;
}

.projectdetail .content-container .bio-container p {
    line-height: 1.6;
    font-size: 18px;
    width: 80%;
    padding-bottom: 50px;
}

.projectdetail .content-container .read-more p {
    color: #59cbe8;
    font-size: 20px;
}

@media(max-width: 1000px) {
    .projectdetail .content-container {
        width:100% !important;
        text-align: center;
        margin-left: 0%;
    }

    .projectdetail .content-container .bio-container p {
        margin: 0 auto;
    }

    .projectdetail .content-container .links-container {
        margin: 0 auto;
    }
}

@media(max-width: 600px) {
    .projectdetail .content-container .bio-container p {
        width:90%;
        font-size: 16px;
        position: relative;
        left: -10px;
    }

    .projectdetail .links-container {
        padding-bottom: 20px !important;
    }
}

a.single-event:nth-child(odd),a.single-event:nth-child(even) {
    background-color: transparent;
}

.events-container {
    background-image: URL("/wp-content/uploads/bg-home-thelatest.png");
    background-position: center;
}

.events-container .single-event .event-content {
    margin-top: 20%;
}

.events-container svg * {
    fill: #59cbe8 !important;
}

.arrow-title svg * {
    fill: #59cbe8 !important;
}

@media(max-width: 767px) {
    .home a.slideshow-title-container {
        left:0% !important;
        margin: 0 auto !important;
        width: 90% !important;
        text-align: center;
        margin-left: 5% !important;
    }
}

.page-view.home .sub-section.projects {
    padding-bottom: 0px;
}

.overview {
    margin-top: 150px;
}

.overview {
    margin-top: 0px !important;
    background-color: Red;
    background-image: URL("/wp-content/uploads/bg-main.jpg");
    background-position: 100%;
    background-size: 100% 100%;
}

.overview .content-container {
    padding-top: 250px;
}

.overview .services-three-columns {
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
}

.overview .intro-title h1 {
    font-size: 50px;
}

.overview .intro-title p {
    line-height: 38px;
    width: 40%;
    padding-top: 35px;
}

.overview .service-image-container {
    height: 488px;
}

.overview .service-image-container img {
    max-height: 488px;
    position: absolute;
}

.overview .content-container {
    width: 80%;
    margin: 0 auto;
}

.overview .service-image-container h5 {
    font-weight: 100;
    font-size: 30px;
    width: 80%;
    margin-left: 5%;
}

.overview .service-image-container {
    display: flex;
    align-items: flex-end;
}

.overview .service-text-under {
    font-size: 17px;
    line-height: 38px;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.overview .service-image-container {
    display: flex;
    justify-content: center;
}

.overview .service-text-under p {
    width: 82%;
}

.overview .intro-title {
    margin-left: 3%;
}

.overview .service-image-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.overview .arrow-title {
    margin-left: 5%;
    margin-bottom: 5%;
}

.overview .service-image-container h5 {
    padding-bottom: 60px;
}

.overview .service-image-container {
    align-items: center !important;
}

.overview .arrow-title {
    left: -26%;
}

.overview .seperator-line {
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background-color: grey;
    margin-top: 50px;
}

.overview .line {
    width: 100%;
    height: 2px;
}

.overview .go-down-container {
}

.overview .seperators {
    padding-bottom: 200px;
}

.overview .seperators .one {
    width: 70%;
}

.overview .seperators .two {
    width: 60%;
}

.overview .seperator-line .line {
    background-color: #3380af;
    width: 33%;
}

.overview .timeline .arrow-title {
    left: 0%;
}

.timeline {
    padding-top: 100px;
    padding-bottom: 100px;
}

.timeline-item {
    width: 40%;
    margin: 0 auto;
}

.timeline h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.timeline p {
    line-height: 38px;
    font-size: 17px;
    padding-bottom: 25px;
}

.timeline .arrow-title {
    margin: 0px;
}

.timeline-date {
    position: absolute;
    top: -5px;
    left: -120px;
    width: 100px;
    text-align: center;
    font-size: 13px;
}

.timeline-date p {
    font-size: 13px;
    color: #59cbe8;
}

.timeline-item::after {
    content: '';
    width: 1px;
    height: 80%;
    top: 40px;
    left: -70px;
    background-color: #59cbe8;
    position: absolute;
}

.overview {
    background-size: auto auto;
    background-position: top;
    background-color: #161c28;
    background-repeat: no-repeat;
}

.timeline {
    background-image: URL("/wp-content/uploads/bg-history.jpg");
    background-position: center;
}

.overview .content-container {
    width: 100%;
}

.overview .intro-title {
    width: 80%;
    margin: 0 auto;
    margin-left: 12%;
}

.overview .services-three-columns {
    width: 80%;
    margin: 0 auto;
}

.timeline-item:nth-last-child(1)::after {
    display: none !Important;
}

.overview .seperators * {
    overflow: hidden !important
}

.overview .service a {
    color: white;
}

.overview .service-text-under {
    justify-content: flex-start;
}

.overview .service-image-container {
    align-items: flex-start !important;
}

.overview .arrow-title {
    left: 0%;
}

.overview .services-three-columns {
    left: 40px;
}

@media(max-width: 1640px) {
    .service {
        width:30% !important;
        margin-left: 3%;
    }

    .overview .services-three-columns {
        left: 0px;
    }

    .overview .service-image-container h5 {
        width: 90%;
        font-size: 28px;
    }
}

@media(max-width: 1300px) {
    .overview .service-image-container {
        height:auto;
        margin-top: 400px;
    }

    .services-three-columns {
        flex-direction: column;
    }

    .service {
        width: 100% !important;
        text-align: center;
        margin-left: 0px;
    }

    .service-image-container {
        text-align: center !important;
    }

    .service h5 {
        text-align: center;
        margin-left: 0px !Important;
        width: 43% !important;
    }

    .overview .arrow-title {
        margin-left: 0px !Important;
    }

    .overview .service-image-container {
        align-items: center !Important;
    }

    .overview .service-text-under p {
        width: 100%;
    }

    .services-three-columns {
        padding-top: 0px !important;
    }

    .overview .intro-title {
        width: 100% !important;
        text-align: center;
        margin-left: 0px !important;
    }

    .overview .intro-title p {
        width: 80% !important;
        margin: 0 auto;
    }
}

@media(max-width: 850px) {
    .service h5 {
        font-size:20px !Important;
        width: 90% !Important;
    }
}

@media(max-width: 600px) {
    .service-text-under p {
        font-size:16px !Important;
    }

    .service {
        height: 900px;
    }

    .overview .seperators {
        margin-top: 100px;
    }
}

.timeline {
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width: 700px) {
    .timeline-item {
        width:90%;
        margin-top: 60px;
    }

    .timeline-date {
        top: -50px;
        left: 0px !important;
        text-align: left;
    }

    .timeline-date::after {
        content: '';
        width: 350px;
        height: 1px;
        top: 20px;
        left: 100px;
        background-color: #59cbe8;
        position: absolute;
    }
}

@media(max-width: 500px) {
    .timeline-date::after {
        display:none;
    }

    .timeline-item h2 {
        font-size: 20px;
    }

    .timeline-item p {
        font-size: 15px;
    }
}

.content-container {
    margin-top: 200px;
}

.opportunities h1 {
    font-size: 2em;
}

.opportunities .intro-para p {
    width: 40%;
    line-height: 38px;
    font-size: 17px;
    padding-top: 25px;
}

.opportunities .intro-para {
    margin-left: 8%;
}

.opportunities .process-form-wrapper .hiring-process-container {
    width: 90%;
    margin: auto;
    padding-top: 5em;
    padding-bottom: 3em;
}

.opportunities .process-form-wrapper .hiring-process-grid {
    perspective: 55em;
    display: flex;
}

.opportunities .process-form-wrapper .single-hiring-process-grid-item {
    width: 100%;
    float: left;
    margin-right: 6.5%;
    margin-top: 3.25%;
    margin-bottom: 3.25%;
    cursor: pointer;
}

.opportunities .single-hiring-process {
    min-height: 220px;
}

.opportunities .process-form-wrapper .dummy {
    padding-top: 70%;
}

.opportunities .process-form-wrapper .single-hiring-process {
    border: 1px solid #3380af;
    display: block;
    padding: 12.5%;
}

.opportunities .process-form-wrapper .single-hiring-process .content .number .text {
    font-size: 1.2em;
    font-weight: 600;
}

.opportunities .process-form-wrapper .single-hiring-process .content .title {
    margin-top: 1em;
    font-size: 16px;
    line-height: 20px;
}

.opportunities .why-choose .go-down-container {
    top: 50px;
}

.opportunities .why-choose .title {
    width: 200%;
    text-align: left;
}

.opportunities .why-choose .title .text {
    font-weight: 500;
}

@media(max-width: 1000px) {
    .opportunities .process-form-wrapper .hiring-process-container {
        width:80%;
    }

    .opportunities .process-form-wrapper .single-hiring-process .content .number .text {
        font-size: 1em;
    }

    .opportunities .process-form-wrapper .single-hiring-process .content .title {
        margin-top: 0.75em;
    }
}

@media(max-width: 767px) {
    .opportunities .process-form-wrapper .hiring-process-container {
        width:90%;
    }
}

.opportunities .commitment {
    width: 75% ;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.opportunities .commitment p {
    line-height: 38px;
    font-size: 17px;
}

.opportunities .process-form-wrapper .hiring-process-container {
    width: 84%;
}

.opportunities .process-form-wrapper .single-hiring-process-grid-item:nth-last-child(1) {
    margin-right: 0px;
}

.opportunities-go-down {
    padding-top: 100px;
}

.career-wrapper {
    width: 75%;
    margin: 0 auto;
    margin-top: 150px;
}

.career-wrapper .career {
    margin-top: 50px;
    display: flex;
}

.career-wrapper .career .left-box,.career-wrapper .career .right-box {
    width: 50%;
}

.career-wrapper .career .right-box p {
    line-height: 38px;
    font-size: 17px;
    margin-top: 30px;
}

.career-wrapper .career .left-box .date p {
    font-size: 15px;
    color: #59cbe8;
    font-weight: 600;
    margin-bottom: 20px;
}

.career-wrapper .career .right-box svg {
    width: 30px;
    display: inline;
    transition: transform 0.35s ease;
    position: relative;
    left: 10px;
}

.career-wrapper .career .right-box svg * {
    fill: #59cbe8 !important;
}

.career-wrapper .career .right-box a {
    color: #59cbe8;
    transition: transform 0.35s ease;
    text-decoration: underline;
}

.career-wrapper .career .right-box a:hover svg {
    transform: translateX(20px);
    transition: transform 0.35s ease;
}

.projectdetail .content-container {
    margin-top: 0px;
}

.projectdetail .main-container {
    background-size: 100% auto !important;
    background-attachment: fixed;
}

.page-view.contact .locations-container {
    background-color: #021729;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-title .text {
    color: white !Important;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-title .text {
    color: #59cbe8 !Important;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .content .text {
    color: white !important;
    font-weight: 500;
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item .group-item-list-items .group-item-list-item .icon svg * {
    fill: #59cbe8 !important;
}

.group-items {
    display: flex !Important;
    justify-content: center !important;
}

.group-items .group-item {
}

.page-view.contact .locations-container .location-types .list-container .list-group .group-items .group-item {
    width: auto;
}

.page-view.contact .locations-container .location-types .list-container .list-group:nth-child(1) .group-items .group-item {
    margin-left: 6.66%;
}

@media(max-width: 1300px) {
    .opportunities .process-form-wrapper .single-hiring-process-grid-item {
        width:50% !Important;
        margin: 0px !Important;
    }

    .opportunities .dummy {
        display: none
    }

    .hiring-process-grid.clearfix {
        flex-wrap: wrap;
    }

    .opportunities .hiring-process-container {
        padding-top: 0px !important;
        margin-top: 200px !Important;
    }

    .intro-para p {
        width: 75% !Important;
    }

    .single-hiring-process {
        min-height: 230px !Important;
    }
}

@media(max-width: 730px) {
    .career-wrapper .career {
        flex-direction:column;
    }

    .career-wrapper .career a {
        display: block
    }

    .career {
        align-items: center !important;
    }

    .career-wrapper .career .left-box, .career-wrapper .career .right-box {
        width: 100%;
    }
}

@media(max-width: 600px) {
    .opportunities .process-form-wrapper .single-hiring-process-grid-item {
        width:100% !important;
    }

    .opportunities .intro-para {
        text-align: center;
        margin-left: 0px !Important;
    }

    .opportunities .intro-para p {
        margin: 0 auto;
    }
}

.menu-items-container {
    display: flex;
}

#menu * {
    word-wrap: initial;
}

.event-content .sub-title {
    margin-top: 30px !important;
    line-height: 38px;
}

.events-container .single-event .event-content .details {
    margin-top: 30px;
}

.projectdetail .links-container {
    display: none !important;
}

.career .top-section {
    height: 50vh;
    display: flex;
    flex-direction: column;
}

.career .title-bg-image {
    height: 100% !Important;
    background-size: cover ;
    background-position: center;
}

.career .title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
    width: 75%;
    margin: 0 auto;
}

.career .title h5 {
    font-size: 20px;
    font-weight: 100;
}

.career .title h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.career .bottom-section {
    background-color: white;
    height: 50vh;
    display: flex;
    align-items: center;
}

.career .bottom-section p {
    margin-top: 0px;
    color: black;
    font-size: 17px;
    line-height: 38px;
    width: 75%;
    padding-top: 20px;
    margin: 0 auto;
}

@media(max-width: 1400px) {
    .career .bottom-section {
        height:auto;
        padding-bottom: 20px;
    }
}

.businesses .content-container {
    margin-top: 0px;
}

.businesses .service {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.businesses .text-box {
    width: 40%;
    margin-left: 8%;
}

.businesses .text-box h1 {
    font-size: 50px;
    margin-bottom: 75px;
}

.businesses .text-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.businesses .text-box p {
    font-size: 17px;
    line-height: 38px;
    margin-bottom: 25px;
}

.businesses .service:nth-child(2) {
    justify-content: flex-end;
}

.businesses .service:nth-child(2) .text-box {
    margin-left: 0px;
    margin-right: 8%;
}

@media(max-width: 1640px) {
    .businesses .service {
        width:100% !important;
        margin-left: 0px;
    }
}

@media(max-width: 1300px) {
    .businesses .service {
        text-align:left;
    }
}

@media(max-width: 1000px) {
    .businesses .service {
        justify-content:center !important;
    }

    .businesses .service:nth-child(2) {
        justify-content: center !important
    }

    .businesses .service:nth-child(2) .text-box {
        margin-left: 0px;
        margin-right: 0%;
    }

    .businesses .text-box {
        margin-left: 0px;
        width: 90%;
        text-align: center;
    }
}

@media(max-width: 480px) {
    .businesses .service {
        height:auto !Important;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.footer-three-sections svg {
    width: 20px;
    margin-right: 20px;
}

.footer-three-sections svg * {
    fill: #59cbe8;
}

.footer-three-sections {
    display: flex;
    flex-direction: row;
}

.footer-three-sections .section {
    width: 35%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #10202d;
}

.footer-three-sections .text-box {
    width: 70%;
    margin-left: 0px;
    margin-right: 0px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;
}

.footer-three-sections .text-box h2 {
    font-weight: 400;
}

.footer-three-sections .section:nth-child(3) li {
    list-style: none;
}

.footer-three-sections p,.footer-three-sections li {
    font-size: 17px !important;
    line-height: 38px;
}

.footer-three-sections .section:nth-child(3) li {
    display: flex;
    align-items: center;
}

.footer-three-sections .section:nth-child(3) li:nth-child(4) , .footer-three-sections .section:nth-child(3) li:nth-child(5) {
    margin-left: 40px;
}

.footer-three-sections .section:nth-child(3) li:nth-child(5) {
    margin-bottom: 40px;
}

.footer-three-sections .text-box p {
    margin-bottom: 0px;
}

.footer-three-sections .section .text-box a {
    position: relative;
    top: 50px;
}

@media(max-width: 1000px) {
    .footer-three-sections {
        display:flex;
        flex-direction: column;
    }

    .footer-three-sections .section {
        width: 100%;
    }

    .footer-three-sections .section li {
        justify-content: center;
    }

    .footer-three-sections .section:nth-child(3) li:nth-child(4) , .footer-three-sections .section:nth-child(3) li:nth-child(5) {
        margin-left: 20px;
    }
}

.businesses .top-gradient {
    position: absolute;
    top: -5.2em;
    left: 0;
    width: 100%;
    height: 5em;
    ; background: red;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, #020c17));
    background: linear-gradient(transparent, #020c17 100%);
    opacity: 1;
}

.businesses .top-gradient::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5em;
    ; background: red;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, #020c17));
    background: linear-gradient(transparent, #020c17 100%);
    transform: rotate(180deg);
}

#footer .form-fillable-fields.custom-input-fields.invester-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#footer input::placeholder {
    color: grey !important;
    ; }

/*Side menu */
.side-menu .text {
    font-size: 0.9em;
    text-transform: uppercase;
}

.side-menu li {
    padding-left: 7.04%;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    display: block;
    color: rgba(255, 255, 255, 0.4);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    text-align: right;
    line-height: 30px;
}

.side-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 3em 0;
}

.side-menu li a {
    color: white;
}

#menu .menu-items-container .menu-items-wrapper .menu-items li {
    line-height: 45px;
}

#menu .menu-items-container .menu-items-wrapper .menu-items {
    height: 100% !Important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customers canvas {
    width: 50% !important;
    height: 100% !Important;
}

.customers .canvas-container {
    display: flex;
    width: 25%;
    flex-wrap: wrap;
    justify-content: center;
}

.solutions .service-container h5 {
    width: 75%;
}

.solutions .service-text-under {
    flex-direction: column;
}

.solutions .service-text-under a {
    color: #59cbe8;
    font-weight: 300;
}

.solutions .intro-title {
    margin-bottom: 150px;
}

.solutions .go-down-container {
    bottom: -100px;
    width: 100% !important;
}

.solutions .line {
    bottom: -50px;
}

@media(max-width: 500px) {
    .solutions .service {
        height:auto;
    }

    .solutions .services-three-columns {
        padding-bottom: 10px !Important;
    }

    .solutions .seperators {
        padding-bottom: 75px;
    }
}

.solutions .seperators .line {
    bottom: 0px;
}

.investors .service:nth-child(3) {
    position: relative;
    left: -75px;
}

.investors .hiring-process-overlay.swiper-container {
    display: none;
}

.investors .single-hiring-process {
    min-height: 161px ;
}

.investors .single-hiring-process .text {
    font-weight: 600;
    width: 90%;
}

.investors .process-form-wrapper .hiring-process-container {
    width: 60%;
}

.investors .service-image-container {
    justify-content: flex-start ;
}

.investors .service-image-container p {
    margin-left: 5%;
}

.investors .service-image-container a {
    margin-left: 7%;
}

.investors .service-image-container p {
    width: 65%;
    line-height: 38px;
    font-size: 17px;
}

.investors .service-image-container {
    justify-content: flex-end;
}

.investors .service-image-container .arrow-title {
    display: flex;
    flex-direction: row;
    margin-bottom: 25px !important;
    transform: scale(1.3);
    margin-top: 50px ;
}

.investors .service-image-container .arrow-title .text {
    width: 100% !Important;
    font-size: 12px !important;
}

.investors .service-image-container h5 {
    padding-bottom: 30px;
}

@media(max-width: 1725px) {
    .investors .services-three-columns {
        width:100% !important;
        position: relative;
        left: 100px !important;
    }
}

@media(max-width: 1640px) {
    .investors .service:nth-child(3) {
        left:0px !Important;
    }

    .investors .services-three-columns {
        left: 20px !Important;
    }
}

@media(max-width: 1300px) {
    .investors .service p {
        width:25% !Important;
        margin-left: 0px !Important;
    }

    .investors .service a {
        margin-left: 0px !important;
    }

    .investors .service {
        height: auto !important;
    }

    .investors .service h5 {
        font-weight: 500;
        font-size: 27px !important;
    }
}

@media(max-width: 1100px) {
    .investors .service p {
        width:35% !Important;
    }

    .investors .services-three-columns {
        left: 0px !important;
    }
}

@media(max-width: 800px) {
    .investors .service p {
        width:55% !important;
    }
}

@media(max-width: 600px) {
    .investors .service p {
        width:75% !important;
    }
}

@media(max-width: 1900px) and (min-width:1400px) {
    .investors .single-hiring-process {
        min-height:180px;
    }

    .investors .hiring-process-container {
        width: 70% !Important;
    }
}

@media(max-width: 1400px) and (min-width:1300px) {
    .investors .single-hiring-process {
        min-height:190px;
    }

    .investors .hiring-process-container {
        width: 90% !Important;
    }
}

.menu-items-wrapper {
    left: 150px;
}

.side-menu {
    left: -80px;
}

.menu-background {
    background-position: center !Important;
}

li[data-name = "LEADERSHIP"] {
    display: none;
}

.menu-items-container {
    padding: 0px !important;
    display: flex;
}

.menu-items-wrapper {
}

#menu * {
    overflow-x: hidden ;
}

.side-menu {
    overflow-x: visible !important;
}

.menu-items-wrapper {
    border: 1px solid;
    width: 100% !important;
}

.side-menu {
    left: 0px;
    height: 100% !Important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
}

.menu-items-wrapper {
    left: 0px;
}

.menu-items {
    background-size: 110% 100%;
    background-repeat: no-repeat;
    background-position: -300px;
}

.menu-items-wrapper {
    background-repeat: no-repeat;
    background-position: -250px;
    background-color: #0c1d2a;
    transition: all 1s ease !Important;
}

.side-menu-active .menu-items-wrapper {
    background-position: 0px;
    transition: all 1s ease !Important;
}

.top-gradient {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.top-gradient::after {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.businesses .service.intro-service {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.businesses .service.intro-service p {
    width: 40%;
    font-size: 17px;
    line-height: 38px;
    margin-bottom: 25px;
    margin-left: 8%;
}

.businesses .service.intro-service h1 {
    font-size: 50px;
    margin-left: 8%;
    margin-bottom: 25px;
}

.businesses .top-gradient {
    background: linear-gradient(transparent, #192e3f 100%);
}

.businesses .top-gradient::after {
    background: linear-gradient(transparent, #12232b 100%) !important;
}

.businesses .service:nth-child(1) .top-gradient {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.businesses .service:nth-child(1) .top-gradient::after {
    background: linear-gradient(transparent, #11222c 100%) !important;
}

.businesses .service:nth-child(2) .top-gradient {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.businesses .service:nth-child(2) .top-gradient::after {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.businesses .service:nth-child(3) .top-gradient {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

.businesses .service:nth-child(3) .top-gradient::after {
    background: linear-gradient(transparent, #10212b 100%) !important;
}

@media(max-width: 1000px) {
    .businesses .service.intro-service p {
        width:90%;
        text-align: center;
    }

    .businesses.service.intro-service .service.intro-service p,.businesses .service.intro-service h1 {
        margin-left: 0px;
    }

    .businesses .service.intro-service {
        justify-content: center;
        align-items: center;
    }
}

.businesses .service img {
    margin-bottom: 20px ;
}

.service.intro-service .go-down-container .text {
    font-weight: 600 !important;
}

.page-view.home .service {
    width: 500px;
    left: 0px !important;
    height: auto !important;
}

.home .investors .services-three-columns {
    left: 0px !important;
}

.home .service h5 {
    padding-bottom: 10px !important;
}

.home .service p {
    font-weight: 100 !important;
}

.home .investors .service-image-container .arrow-title {
    margin-top: 20px;
}

.home .service:nth-child(1) .arrow-title {
    margin-top: 80px;
}

.home .service-container.overview.solutions.opportunities.investors {
    background-image: URL("/wp-content/uploads/bg-home-module2.jpg") !important;
    background-color: red !important;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.home .sub-section.projects {
    padding-top: 120px !important;
    padding-bottom: 180px !important;
}

.home .top-gradient {
    position: absolute;
    top: -5.3em;
    left: 0;
    width: 100%;
    height: 5em;
    ; background: red;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#10212b)) !important;
    background: -webkit-linear-gradient(transparent, #10212b 100%) !important;
    background: -o-linear-gradient(transparent, #10212b 100%) !important;
    background: linear-gradient(transparent, #10212b 100%) !important;
    opacity: 1;
    z-index: 9;
}

.home .top-gradient::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5em;
    ; background: red;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#10212b)) !important;
    background: -webkit-linear-gradient(transparent, #10212b 100%) !important;
    background: -o-linear-gradient(transparent, #10212b 100%) !important;
    background: linear-gradient(transparent, #10212b 100%) !important;
    transform: rotate(180deg);
    z-index: 9;
}

.home .gradient {
    position: relative;
}

.home .latest-down .go-down-container * {
    bottom: -75px;
}

.customers .footer-three-sections .section:nth-child(3) li:nth-child(4),.customers .footer-three-sections .section:nth-child(3) li:nth-child(5) {
    margin-left: 0px ;
    margin-bottom: 0px;
}

.customers .footer-three-sections .section:nth-child(3) li:nth-child(4) {
    margin-bottom: 50px;
}

.customers .first-row {
    display: flex;
}

.customers .first-row .left-box,.customers .first-row .right-box {
    width: 50%;
}

.customers .first-row .left-box .title-container p {
    line-height: 38px;
    font-size: 17px;
    width: 90%;
}

.customers .first-row .left-box .title-container h1 {
    font-size: 50px;
    margin-bottom: 25px;
}

.customers .first-row .left-box .title-container {
    margin-left: 15%;
}

.customers .first-row .right-box .image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.customers .first-row .right-box .image-container .single-image:nth-child(1) {
    width: 100%;
    display: flex;
    justify-content: center;
}

.customers .first-row .right-box .image-container .single-image:nth-child(2) {
    margin-right: 50px;
    margin-top: 50px;
}

.customers .first-row .right-box .image-container .single-image:nth-child(3) {
    margin-left: 50px;
    margin-top: 50px;
}

.customers .go-down-container {
    bottom: -220px !important;
}

.customers .process-form-wrapper .dummy {
    padding-top: 40%;
}

.customers .second-row {
    padding-bottom: 100px;
}

.customers .single-hiring-process {
    width: 70% ;
    min-height: 256px;
    margin: 0 auto
}

@media(max-width: 1300px) {
    .customers .second-row {
        padding-top:100px;
    }
}

@media(max-width: 1000px) {
    .customers .first-row .right-box .image-container .single-image:nth-child(2) , .customers .first-row .right-box .image-container .single-image:nth-child(3) {
        margin:0px !Important;
        margin-top: 50px !Important;
    }

    .customers .first-row .right-box .image-container .single-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media(max-width: 767px) {
    .customers .first-row {
        flex-direction:column;
    }

    .customers .first-row .left-box,.customers .first-row .right-box {
        width: 100%;
    }

    .customers .first-row .right-box {
        padding-top: 50px;
    }

    .customers .first-row .right-box .single-image {
        transform: scale(0.9);
    }

    .customers .first-row h1 {
        font-size: 30px !Important;
    }

    .customers .first-row .title-container {
        text-align: center !Important;
        margin-left: 0px !Important;
    }

    .customers .first-row .title-container p {
        margin: 0 auto;
    }
}

li[data-name = "LEADERSHIP"] {
    display: block;
}

li[data-name = "INVESTORS"] {
    display: none;
}

.news .news-container,.news .intro {
    width: 80%;
    margin: 0 auto;
}

.news .intro h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.news .title-and-icon {
    display: flex;
}

.news .title-and-icon svg {
    width: 25px;
}

.news .title-and-icon svg * {
    fill: #59cbe8;
}

.news .title-and-icon .title {
    padding-right: 100px;
    width: 70%;
    padding-bottom: 25px;
}

.news .article {
    margin-bottom: 75px;
    position: relative;
    width: 70%;
}

.news .date {
    font-size: 14px;
    color: #59cbe8;
    font-weight: 600;
    margin-bottom: 15px;
}

.news .article::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -5%;
    width: 110%;
    height: 100%;
    background-image: URL("/wp-content/uploads/separator-line.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.news .title-and-icon {
    justify-content: space-between;
}

.news .title-and-icon .title a {
    color: white;
    line-height: 30px;
}

.news .dropdown-items {
    width: 100%;
    background: rgba(2, 12, 23, 0.925);
    border: 1px solid rgba(0, 174, 239, 0.3);
    z-index: 10;
    position: absolute;
    top: 100%;
    left: 0;
    cursor: initial;
    padding: 1em;
    display: none;
}

.news .dropdown-items .checkbox input {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.news label {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-left: 2em;
    padding-top: 0.17em;
    font-size: 0.7em;
    line-height: 1.5;
}

.news .single-dropdown-container:hover .dropdown-items {
    display: block !important;
}

.news .dropdown-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    margin-bottom: 50px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.news .single-dropdown-container {
    width: 25%;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    position: relative;
    left: -10px;
    font-size: 15px;
    font-weight: 600;
}

.news .single-dropdown-container::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    width: 100%;
    height: 100%;
    background-image: URL("/wp-content/uploads/callout-border-lines.png");
    background-size: 100% 100%;
    z-index: 9999;
}

.news .single-dropdown-container {
    background-image: URL("/wp-content/uploads/separator-line.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 20%;
}

.news .input-animation:after ,.news .input-animation:before {
    display: none;
}

.opportunities .career .title {
    margin-left: 0px !important;
}

.opportunities .career-wrapper .career .right-box svg {
    display: none;
}

.opportunities .career-wrapper .career .right-box a {
    display: block;
}

.opportunities .career .title {
    display: initial;
}

.opportunities .career-wrapper .career .right-box p {
    margin-top: 0px;
}

.opportunities .career {
    background-image: URL("/wp-content/uploads/separator-line.png");
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 50px;
    background-size: 100% auto;
}

.financial-results h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.financial-results .intro-stat {
    display: flex;
}

.financial-results .left-box {
    width: 40%;
}

.financial-results .right-box {
    width: 60%;
}

.financial-results .content-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
}

.financial-results .intro-stat p:nth-child(1) {
    font-size: 16px;
}

.financial-results .intro-stat .date p {
    font-size: 30px;
    color: #3380af;
    margin-top: 10px;
    margin-bottom: 10px;
}

.financial-results .intro-stat h2 {
    font-size: 25px;
    font-weight: 100;
    margin-bottom: 50px;
}

.financial-results .intro-stat .download-links p {
    color: #3380af;
    font-size: 25px;
    width: 100%;
}

.financial-results .intro-stat .download-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.financial-results .intro-stat .download-links .link {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.financial-results .intro-stat .download-links a {
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #3380af;
}

.financial-results .intro-stat .download-links .link:nth-child(3) , .financial-results .intro-stat .download-links .link:nth-child(5) {
    padding-left: 75px;
}

.financial-results .right-stat {
    display: flex;
}

.financial-results .right-stat .stat {
    display: flex;
    min-height: 147px;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    text-align: center;
}

.financial-results .right-stat h2 {
    font-size: 16px;
    font-weight: 600;
}

.financial-results .right-stat .title {
    font-size: 40px;
}

.financial-results .right-stat .small {
    font-size: 14px;
    margin-top: 10px;
}

.financial-results .watch-webcast {
    margin-top: 50px;
}

.financial-results .intro-stat {
    padding-bottom: 200px;
}

.financial-results .historic-results {
    width: 70%;
    margin: 0 auto;
}

.financial-results .historic-results .result {
    display: flex;
}

.financial-results .historic-results .date {
    font-size: 15px;
    color: #3380af;
    font-weight: 600;
    margin-bottom: 10px;
}

.financial-results .historic-results .title {
    font-size: 25px;
    margin-bottom: 50px;
}

.financial-results .historic-results .download-links {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: 25%;
}

.financial-results .historic-results .download-links .link {
    width: 50%;
}

.financial-results .historic-results .download-links .link a {
    color: white;
    border-bottom: 2px solid #3380af;
    font-size: 16px;
    font-weight: 600;
}

.financial-results .historic-results .download-links p {
    width: 100%;
    color: #3380af;
}

.financial-results .result {
    background-image: URL("/wp-content/uploads/separator-line.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 110% auto;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.financial-results h2 {
    line-height: 25px;
}

@media(max-width: 1100px) {
    .financial-results .intro-stat {
        flex-direction:column;
    }

    .financial-results .intro-stat .left-box, .financial-results .intro-stat .right-box {
        width: 100%;
    }

    .financial-results .intro-stat .right-box {
        padding-top: 100px;
    }
}

@media(max-width: 767px) {
    .historic-results {
        width:90% !important;
    }

    .historic-results .result {
        flex-direction: column;
        text-align: center;
    }

    .financial-results .historic-results .download-links {
        left: 0%;
    }

    .financial-results .historic-results .link {
        margin-top: 50px;
    }

    .financial-results .right-stat {
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
    }

    .financial-results .right-stat h2 {
        margin-top: 50px;
        font-size: 20px;
    }

    .financial-results .right-stat .stat {
        width: auto;
    }
}

.financial-results a.go-down-container {
    bottom: 150px;
}

.financial-results .intro-stat {
    padding-bottom: 400px;
}

.financial-results a.go-down-container .text {
    width: 100% !Important;
    font-weight: 600 !Important;
    width: 200% !Important;
    position: relative;
    left: -50%;
}

.presentations h1 {
    font-size: 50px;
}

.presentations .content-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
}

.presentations .presentations-container {
    width: 90%;
    margin: 0 auto !important;
    display: flex;
    margin-top: 100px !Important;
}

.presentations .presentations-container .presentation {
    width: 33%;
    margin: 0 auto !important;
    text-align: center;
}

.presentations .presentations-container .presentation .title {
    font-size: 30px;
    font-weight: 100 !important;
}

.presentations .presentations-container .presentation .date {
    font-size: 16px;
    color: #59cbe8;
    font-weight: 600;
    margin-top: 10px;
}

.presentations .presentations-container .presentation .location-container {
    margin-top: 50px;
    font-weight: 500;
    font-size: 17px;
}

.presentations .presentations-container .presentation .phone-pin {
    margin-top: 15px !Important;
}

.presentations .presentations-container .presentation .arrow-title {
    margin-top: 50px;
}

.presentations .news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presentations .news .dropdown-container {
    justify-content: center;
}

.presentations .go-down-container {
    bottom: 0;
    top: 40%;
}

.presentations .news {
    margin-top: 400px;
}

.presentations .go-down-container .text {
    font-weight: 600;
}

.presentations .go-down-container {
    position: relative;
    left: 0px;
    top: 150px !important;
}

.presentations .presentation {
    background-image: URL("/wp-content/uploads/divider-wht.png");
    background-repeat: no-repeat;
    background-position: right;
}

.presentations .presentation:nth-last-child(1) {
    background-image: URL("");
}

@media(max-width: 1250px) {
    .presentations .presentations-container {
        width:100%;
    }
}

@media(max-width: 1000px) {
    .presentations .presentations-container {
        flex-direction:column;
        margin-top: 0px !important;
    }

    .presentations .presentations-container .presentation {
        width: 100%;
        background-image: URL("");
        margin-top: 70px !important;
    }

    .presentations .go-down-container {
        top: 100px !important;
    }

    .news-container {
        width: 100% !important;
    }

    .presentations .news {
        margin-top: 250px !Important;
    }
}

@media(max-width: 767px) {
    .presentations .title-and-icon {
        flex-direction:column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .presentations .news .date {
        text-align: center;
    }

    .presentations .title {
        padding: 0px !Important;
    }

    .presentations .news .icon {
        margin-top: 20px;
    }

    .presentations .news .article {
        padding-bottom: 30px;
    }

    .news .single-dropdown-container {
        width: 50%;
    }

    .news .title-and-icon .title {
        width: 100% !Important;
    }
}

.presentations .news {
    margin-top: 200px;
}

.financial-results .right-box .stat {
    background-image: URL("/wp-content/uploads/divider-wht.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 100%;
    padding-right: 20px;
}

.financial-results .right-box .stat:nth-last-child(1) {
    background-image: URL("");
}

@media(max-width: 767px) {
    .financial-results .right-box .stat {
        background-image:URL("");
    }
}

.home .latest-down .go-down-container {
    z-index: -999 !Important;
}

.see-all-leadership {
    z-index: 999;
}

.page-view.filter .filter-container {
    padding-top: 0px;
}

.page-view.filter .back-button {
    display: none;
}

.contact .custom-background-image {
    background-position: top;
}

.financial-results .custom-background-image {
    background-position: top;
}

.leadership .sub {
    line-height: 38px;
    font-size: 16px;
    margin-top: 20px;
}

.leadership .custom-background-image {
    background-position: top;
}

@media(max-width: 1200px) {
    .page-view.leadership .filter-container .content-container {
        min-width:auto !important;
        max-width: 100% !important;
        width: 70% !important;
    }
}

@media(max-width: 600px) {
    .page-view.leadership .filter-container .content-container {
        min-width:auto !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: center;
    }
}

.home .service-container.overview.solutions.opportunities.investors {
    background-color: transparent !important;
}

.menu-items-wrapper {
    border: none !Important;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .slideshow-title-container .excerpt {
    font-family: "industry" !important;
    font-style: normal;
    font-weight: 100;
    line-height: 38px;
    font-size: 25px;
    width: 140%;
    letter-spacing: 0.8px;
}

.home a.slideshow-title-container {
    left: 13% !important;
}

.home .service p {
    font-family: "Industry";
    line-height: 30px;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 0.8px !important;
}

.home .grid-box-link-title {
    opacity: 1 !important;
}

.home .grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
    left: 0px !Important;
}

.home .grid-box-link-title {
    transform: translateX(300px) !important;
    opacity: 0 !important;
}

.home .swiper-slide:hover .grid-box-link-title {
    transform: translateX(240px) !important;
    opacity: 1 !Important;
}

.home .projects .grid-box-wrapper {
    width: 400px !Important;
}

.home .projects .swiper-slide:nth-child(1) {
    transform: translateX(-100px);
}

.home .projects .swiper-slide:nth-child(3) {
    transform: translateX(100px);
}

.leadership .grid-box-link-title {
    opacity: 1 !important;
}

.leadership .grid-box .grid-box-container-wrapper .grid-box-container .grid-box-link-title {
    left: 0px !Important;
}

.leadership .grid-box-link-title {
    transform: translateX(350px) !important;
    opacity: 0 !important;
}

.leadership .grid-box-single:hover .grid-box-link-title {
    transform: translateX(240px) !important;
    opacity: 1 !Important;
}

.leadership .grid-box-wrapper {
    width: 400px !Important;
}

.leadership .grid-box-wrapper *,.grid-box-wrapper {
    clip-path: none !Important;
}

.home .grid-box-wrapper *,.grid-box-wrapper {
    clip-path: none !Important;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .slideshow-title-container .excerpt {
    font-family: "industry" !important;
    font-style: normal;
    font-weight: 100;
    line-height: 38px;
    font-size: 25px;
    width: 140%;
    letter-spacing: 0.8px;
}

.home a.slideshow-title-container {
    left: 13% !important;
}

.home .service p {
    font-family: "Industry";
    line-height: 30px;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 0.8px !important;
}

.single-event * {
    opacity: 1 !Important;
}

.single-event .title .text {
    font-family: "industry";
    font-weight: 300 !important;
    font-size: 30px !important;
}

.home .service p {
    line-height: 24px;
}

.home .service h5 {
    font-family: "industry" ;
}

.home .service-container .service-image-container {
    left: 46px;
}

.event-content .date {
    font-size: 18px;
    color: #59cbe8;
}

.event-content {
    padding-left: 75px !important;
    ; padding-right: 75px !important;
}

.customers .single-hiring-process {
    padding: 0px !Important;
    min-height: 268px !Important;
}

.customers .single-hiring-process .title {
    padding: 50px ;
    font-weight: 400;
    font-family: "industry";
    line-height: 30px !Important;
}

.customers .single-hiring-process .number {
    position: relative;
    top: 30px;
    left: 50px;
    font-size: 26px;
    opacity: 0.5;
}

.customers .opportunities .process-form-wrapper .single-hiring-process-grid-item {
    margin-right: 0px !important;
}

.customers .footer-three-sections .section:nth-child(3) li:nth-child(3),.customers .footer-three-sections .section:nth-child(3) li:nth-child(4) {
    margin-left: 40px !important;
}

.customers .footer-three-sections .section:nth-child(3) .para {
    position: relative;
    top: -20px;
}

.customers .footer-three-sections .section h2 {
    font-family: "industry";
    font-weight: 100 ;
}

.customers .single-hiring-process .text {
    font-weight: 100;
    font-size: 20px;
}

.customers .single-hiring-process .text-under {
    font-weight: 100;
    margin-top: 15px;
}

.customers .single-hiring-process {
    height: 300px;
}

.customers .first-row .left-box {
    display: flex;
    align-items: Center;
}

.customers .second-row.opportunities {
    padding-top: 200px;
}

.customers .line-container {
    height: 3em !important;
}

.customers .go-down-container {
    top: 70vh;
}

.customers .first-row .left-box p {
    font-family: "industry";
}

.solutions .services-three-columns .service h5 {
    font-family: "industry";
    width: 60%;
}

.solutions .service-image-container {
    width: 500px;
}

.solutions .services-three-columns {
    margin-top: 600px;
}

.solutions .service-text-under {
    width: 418px;
}

.solutions .service-text-under p,.solutions .service-text-under a {
    width: 100%;
    padding-right: 25px;
    padding-left: 25px;
    font-family: "industry";
    font-weight: 100;
}

.solutions .go-down-container {
    bottom: 0px;
    bottom: -42vh;
}

.solutions .intro-title {
    margin-left: 10%;
    top: 50px;
}

.solutions .intro-title p {
    font-family: "industry";
}

.solutions .custom-background-image {
    background-position: top;
}

.solutions .service-text-under p {
    line-height: 30px;
}

.solutions .service-text-under a {
    position: relative;
    margin-top: 10px;
}

.solutions .service-image-container h5 {
    line-height: 35px;
    padding-bottom: 50px;
}

.solutions a.go-down-container {
    font-size: 16px;
    font-weight: 500;
}

.news .custom-background-image {
    background-position: top;
}

.home .solutions .services-three-columns {
    margin-top: 0px;
}

.home .service-container .service-image-container {
    left: 0px !Important;
}

.home .services-three-columns {
    display: flex;
    justify-content: center !Important;
}

.home .service-image-container {
    width: 417px !important;
}

.page-view.home .service {
    width: 417px !important;
    margin-left: 50px;
}

@media(max-width: 1520px) {
    .page-view.home .services-three-columns {
        transform:scale(0.9) translateX(-40px)
    }
}

@media(max-width: 1400px) {
    .home .services-three-columns {
        transform:scale(0.9) translateX(-20px)
    }
}

@media(max-width: 1350px) {
    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper {
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
    }

    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        margin: 0px !important;
        transform: initial !Important;
        margin-top: 50px !Important;
        position: relative !Important;
        left: -75px;
    }

    .home .swiper-wrapper {
    }
}

@media(max-width: 1300px) {
    .home .services-three-columns {
        transform:scale(1) translateX(0px)
    }

    .home .service {
        margin-left: 0px;
    }

    .home .services-three-columns {
        justify-content: center;
        align-items: center;
    }

    .home .service {
        align-items: flex-start !Important;
        justify-content: flex-start !important;
    }

    .home .investors .service p {
        width: 75% !Important;
    }

    .home .service-container {
        padding-top: 0px !Important;
    }
}

@media(max-width: 767px) {
    .home a.slideshow-title-container {
        left:0px !Important;
    }

    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .excerpt .text {
        width: 70%;
        margin: 0px !important;
        font-size: 16px ;
    }

    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide {
    }
}

@media(max-width: 567px) {
    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        margin:0px !important;
        transform: initial !Important;
        margin-top: 50px !Important;
        position: relative !Important;
        left: -20px;
        ; transform: scale(0.9) !important;
    }
}

@media(max-width: 500px) {
    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        left:-40px;
        ; }
}

@media(max-width: 480px) {
    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        transform:scale(0.75) !important;
    }

    .home .service {
        transform: scale(0.9);
    }

    .home .swiper-wrapper {
        width: 100% !Important;
    }

    .home .carousel-container.container .wrapper {
        margin: 0px !Important;
        width: 100% !Important;
    }
}

@media(max-width: 400px) {
    .home .service {
        transform:scale(0.8);
    }

    .home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
        transform: scale(0.75) !important;
        left: -50px;
    }
}

@media(max-width: 1300px) {
    .events-container .single-event {
        width:100% !Important;
    }

    .event-content {
        margin: 0px !Important;
    }
}

@media(max-width: 767px) {
    .customers .go-down-container {
        top:110%;
    }
}

@media(max-width: 900px) and (min-width:600px) {
    .customers .single-hiring-process {
        width:100% !Important;
    }
}

@media(max-width: 440px) {
    .customers .single-hiring-process {
        width:100% !Important;
    }
}

.page-view.solutions .service-image-container {
    width: 418px;
}

.page-view.solutions .services-three-columns {
    display: flex;
    justify-content: space-between
}

.page-view.solutions .service {
    margin-left: 0;
}

.page-view.solutions .services-three-columns {
    left: 0px;
}

@media(max-width: 1620px) {
    .page-view.solutions .service {
        transform:scale(0.9);
    }

    .page-view.solutions .services-three-columns {
        width: 95% ;
    }
}

@media(max-width: 1470px) {
    .page-view.solutions .service {
        margin:0px
    }
}

@media(max-width: 1300px) {
    .page-view.solutions .service {
        display:flex ;
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 450px) {
    .page-view.solutions .service {
        transform:scale(0.8);
    }
}

.page-view.businesses .service:nth-child(2) {
    background-size: auto;
    background-position: initial;
}

@media(max-width: 1000px) {
    .page-view.businesses .title-header {
        display:flex;
        justify-content: center;
    }

    .businesses .service.intro-service p {
        margin-left: 0px;
    }
}

@media(max-width: 500px) {
    .page-view.businesses .service p {
        width:90%;
        margin: 0 auto;
        font-size: 15px;
    }

    .page-view.businesses .title-header {
        transforM: scale(0.7);
    }
}

.page-view.financial-results .go-down-container {
    top: 56vh;
    ; }

.page-view.financial-results .historic-results {
    padding-top: 100px;
}

@media(min-width: 1100px) and (max-width:1400px) {
    .financial-results .right-stat .stat {
        width:50%;

    }

    .financial-results .right-stat .stat:nth-child(3), .financial-results .right-stat .stat:nth-child(4) {
        margin-top: 50px;
    }

    .financial-results .right-box .stat:nth-last-child(1) {
        background-image: URL("/wp-content/uploads/divider-wht.png")
    }

    .financial-results .right-stat {
        flex-wrap: wrap
    }
}

@media(max-width: 1100px) {
    .page-view.financial-results .content-container {
        margin-top:150px;
    }

    .page-view.financial-results h1 {
        font-size: 30px;
    }

    .page-view.financial-results .go-down-container {
        top: 65vh;
    }

    .intro-stat {
        padding-bottom: 150px !important;
    }
}

@media(max-width: 767px) {
    .page-view.financial-results .go-down-container {
        top:97%;
    }

    .page-view.financial-results .historic-results {
        padding-top: 200px;
    }

    .page-view.financial-results .stat .header-title {
        font-weight: 600;
    }

    .page-view.financial-results .stat {
        margin-bottom: 50px;
    }
}

.page-view.financial-results .header-title {
    font-weight: 600;
}

.events-container.clearfix {
    background-image: URL("");
}

.event-content {
    margin-top: 0px !important;
}

.single-event:nth-child(1) {
    background-image: URL("/wp-content/uploads/bg-home-thelatest_1.jpg");
}

.single-event:nth-child(2) {
    background-image: URL("/wp-content/uploads/bg-home-thelatest_2.jpg");
}

.single-event:nth-child(3) {
    background-image: URL("/wp-content/uploads/bg-home-thelatest_3.jpg");
}

.single-event:nth-child(4) {
    background-image: URL("/wp-content/uploads/bg-home-thelatest_4.jpg");
}

.single-event {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.events-container .single-event .event-content .arrow {
    width: auto;
}

.events-container .single-event .sub-title .text {
    coloR: #59cbe8;
}

@media(min-width: 1300px) and (max-width:1500px) {
    .single-event {
        min-height:430px !important;
    }
}

.see-all-leadership {
    z-index: 99;
}

.sub-section.events {
    padding-top: 50px;
}

.news .checkbox::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3380af;
    top: 3.5px;
    left: 0px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.news .checkbox.active::after {
    opacity: 1;
    transition: opacity 0.35s ease;
}

@media(max-width: 1000px) {
    .page-view.news .news-container {
        width:80% !important;
    }

    .page-view.news .article {
        width: 100% !Important;
    }
}

@media(min-width: 1550px) {
    .financial-results .content-container {
        margin-top:250px !important;
    }

    .page-view.financial-results .go-down-container {
        top: 53vh;
    }
}

::selection {
    background-color: #59cbe8;
}

.financial-results .intro-stat .download-links a,.financial-results .historic-results .download-links .link a {
    padding-bottom: 5px;
    border-bottom: 1px solid #3380af;
    font-weight: 400;
}

div#menu {
    width: 30em
}

ul.menu-items {
    width: 50% !important;
    left: -40%;
}

.menu-items-wrapper {
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link:hover::before {
    display: none;
}

.menu-items-line {
    z-index: 99
}

.side-menu {
    z-index: 999;
}

.side-menu-active .menu-items-wrapper {
    transform: none !Important;
}

.menu-items-wrapper {
    background-position: 0px !important; }

.menu-items-line {
    display: none ;
}

ul.menu-items::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 20px;
    background-color: grey;
    height: 100%;
    width: 1px;
}

@media(max-width: 420px) {
    #menu {
        width:115vw !important;
    }
}

li.menu-item.leadership::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 0px;
    ; height: 1px;
    background-color: grey;
    transition: width 0.25s ease;
}

li.menu-item.leadership:hover::after {
    width: 19px;
    transition: width 0.25s ease;
}

.side-menu-active li.menu-item.leadership::after {
    width: 19px !important;
}

.side-menu li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 19px;
    height: 1px;
    background-color: grey;
    transition: left 0.25s ease;
}

.side-menu li:hover::before {
    width: 19px;
    transition: left 0.25s ease;
    left: 90%;
}

.side-menu {
    top: 40px;
}

.menu-items-wrapper {
    overflow: hidden ;
}

.side-menu li {
    position: relative;
}

a.menu-item-link {
    padding-left: 0px !important;
    margin-left: 7.04%;
}

ul.menu-items::after {
    left: 0px;
}

.side-menu li {
    padding-right: 30px;
}

fieldset.dropdown-items {
    opacity: 1;
    top: 24px !Important;
    width: 110% !important;
    left: -16px !important;
}

fieldset.dropdown-items .checkbox label {
    font-weight: 300;
    font-size: 12px;
    line-height: 2;
}

fieldset.dropdown-items .checkbox {
}

.checkbox::after {
    top: 30%;
}

.article.date a {
    font-weight: 100;
    font-size: 19px;
}

.single-dropdown-container::before {
    content: 'V';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 120%;
    height: 100%;
    color: #59cbe8;
    left: 90%;
    top: 31%;
    font-size: 11px;
}

#menu li {
    font-family: "industry";
}

#footer form.wpcf7-form {
    width: 40%;
    float: right;
}

.page-view.presentations .news {
    padding-bottom: 50px;
}

#footer span.wpcf7-form-control-wrap.your-email {
    width: 500px !Important;
    float: left !Important;
}

#footer .submit-wrap {
    float: left;
    display: inline !important;
    border-top: 0px !Important;
    left: -80px;
    top: -10px;
    z-index: 99999;
    width: 100px;
}

.invester-form {
    display: flex !important;
    flex-direction: row !Important;
}

#footer .custom-input-fields .submit-wrap:before {
    display: none;
}

#footer .form-fillable-fields.custom-input-fields.invester-form {
    align-items: center !Important;
    justify-content: flex-end;
}

#footer .form.wpcf7-form {
    top: -10px;
}

#footer span.wpcf7-form-control-wrap.your-email {
    padding-bottom: 20px;
}

@media(max-width: 1000px) {
    #footer .submit-wrap {
        width:200px;
    }

    #footer span.wpcf7-form-control-wrap.your-email {
        left: 0px !important;
        width: 100% !Important;
    }
}

@media(max-width: 767px) {
    #footer .submit-wrap {
        top: 0px;
    }

    #footer .form-fillable-fields.custom-input-fields.invester-form {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .form-fillable-fields.custom-input-fields.invester-form {
        align-items: center !Important;
        justify-content: flex-start !important;
    }

    #footer .wpcf7-form {
        width: 79% !important;
    }

    #footer span.wpcf7-form-control-wrap.your-email {
        padding-bottom: 0px;
    }

    .invester-form {
        display: flex !important;
        flex-direction: column !Important;
    }

    #footer .form-fillable-fields.custom-input-fields.invester-form {
        left: -40px;
    }

    #footer .submit-wrap {
        padding-top: 20px;
    }
}

@media(max-width: 500px) {
    .page-view.home .slideshow-title-container .text {
        text-align:left;
    }

    .page-view.home .slideshow-title-container .arrow-title {
        float: left;
    }

    .page-view.home .slideshow-title-container .excerpt .text {
        font-size: 14px !important;
    }
}

@media(max-width: 430px) {
    .page-view.home .slideshow-title-container .main-title .text {
        font-size:25px !important;
    }

    .page-view.home .service {
        transform: scale(0.8) !important;
    }
}

@media(max-width: 420px) {
    ul.menu-items {
        left: -30%;
        width: 50% !important;
    }

    ul.side-menu {
        left: 10%;
    }
}

@media(max-width: 380px) {
    ul.menu-items {
        left: -35%;
        width: 50% !important;
    }

    ul.side-menu {
        left: 5%;
    }
}

@media(max-width: 1000px) {
    .footer-three-sections * {
        text-align:left;
    }

    .footer-three-sections .section li {
        justify-content: flex-start;
    }
}

@media(max-width: 420px) {
    .content-container {
        margin-top:100px;
    }

    .page-view.customers .second-row {
        padding-top: 50px;
    }
}

@media(max-width: 1000px) {
    .page-view.solutions .content-container {
        padding-top:100px;
    }
}

@media(max-width: 567px) {
    .page-view.leadership .grid-box-single.mix {
        transform:scale(0.75) translateX(0px);
    }

    .page-view.leadership .grid-items {
        margin: 0 auto !Important;
        display: flex;
        position: relative;
        left: 20px;
        flex-direction: column;
    }

    .page-view.leadership .filter .grid-box-single {
        width: 90% !Important;
    }

    .page-view.leadership .grid-box-wrapper {
        width: auto !important;
    }
}

.page-view.leadership .grid-box-wrapper {
    width: auto !important;
}

.page-view.contact .location-types {
    padding-top: 50px;
}

.page-view.contact .top-title.noselect {
    display: none;
}

@media(max-width: 430px) {
    .page-view.solutions .intro-title {
        margin:0px !important;
    }

    .page-view.solutions .go-down-container {
        bottom: -35vh;
    }

    .page-view.solutions .go-down-container {
        font-size: 14px !important;
    }

    .page-view.solutions .services-three-columns {
        margin-top: 300px;
    }

    .page-view.solutions .services-three-columns h5 {
        font-size: 25px !important;
    }

    .page-view.solutions .services-three-columns p {
        font-size: 20px !important;
    }

    .page-view.solutions .services-three-columns a:nth-child(2) {
        font-size: 20px;
        top: 20px;

    }

    h1 {
        font-size: 30px !important;
    }

    .page-view.businesses .intro-service {
        padding-top: 150px;
    }

    .page-view.businesses .go-down-container {
        bottom: -20vh;
    }

    .page-view.businesses .service img {
        margin-top: 100px;
    }

    .page-view.businesses .service .link {
        margin-top: 50px;
    }

    .page-view.businesses .service p {
        font-size: 15px !important;
    }

    .page-view.opportunities .content-container {
        margin-top: 150px;
    }

    .page-view.opportunities .intro-para {
        margin-bottom: 70px;
    }

    .page-view.opportunities .process-form-wrapper {
        padding-top: 100px;
    }

    .page-view.opportunities .commitment {
        display: none;
    }

    .page-view.contact .contact-container {
        padding-top: 120px;
    }

    .page-view.contact .group-items {
        flex-wrap: wrap;
    }

    .page-view.contact .group-item {
        width: 100% !Important;
        margin: 0px !Important;
        margin-top: 50px !important;
    }

    .page-view.overview .service p {
        font-size: 15px !important;
    }

    .page-view.overview .service-text-under {
        padding-top: 20px;
    }

    .page-view.news fieldset.dropdown-items {
        width: 140px !Important;
    }
}

@media(max-width: 1000px) {
    .page-view.overview .content-container {
        padding-top:150px;
    }
}

@media(max-width: 740px) {
    .page-view.financial-results .link a {
        width:100% !Important;
        line-height: 2;
    }

    .page-view.financial-results .link {
        width: 100% !Important;
        padding: 0px !Important;
    }
}

@media(max-width: 1000px) {
    .page-view.presentations .content-container {
        width: 80%;
        margin: 150px auto;
    }

    .page-view.presentations .presentations-container * {
        text-align: left;
    }

    .page-view.presentations .presentations-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-view.presentations .presentations-container .presentation {
        width: 50%;
        margin-left: 0px !important;
    }
}

@media(max-width: 767px) {
    .page-view.presentations .article .date,.page-view.presentations .article .title {
        text-align:left;
    }

    .page-view.presentations .article .title {
        width: 70% !Important;
        margin: 0px !Important;
    }

    .page-view.presentations .title-and-icon {
        flex-direction: row;
        justify-content: space-between !Important;
        align-items: flex-start !important;
    }
}

@media(max-width: 600px) {
    .page-view.presentations h1 {
        font-size:30px;
    }
}

@media(max-width: 430px) {
    .page-view.presentations .presentations-container {
        flex-direction:column;
    }

    .page-view.presentations .presentations-container .presentation {
        width: 100% !Important;
    }
}

@media(max-width: 600px) {
    .page-view.governance .sub,.page-view.governance .text {
        text-align:left !important;
    }
}

@media(max-width: 1250px) {
    .page-view.projectdetail .content-container {
        width:100% !Important;
        margin-left: 0px
    }

    .page-view.projectdetail .content-container {
        display: initial !Important;
    }

    .page-view.projectdetail .mobile-image-container {
        height: 50vh;
        width: 100% !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
    }

    .page-view.projectdetail .main-container {
        background-image: URL("") !Important;
        ; }

    .page-view.projectdetail .bio * {
        text-align: left;
    }

    .page-view.projectdetail .bio p {
        width: 100% !Important;
    }

    .page-view.projectdetail .bio {
        width: 75%;
        margin: 0 auto;
    }

    .projectdetail .content-container .bio-container p {
        left: 0px;
    }

    .page-view.projectdetail .bio {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .page-view.projectdetail .bio h1 {
        font-size: 30px;
    }

    .page-view.projectdetail .bio h4 {
        font-size: 18px !important;
    }

    .page-view.projectdetail .bio p {
        font-size: 15px;
    }
}

.page-view.servicedetail .top-title {
    display: none;
}

.side-menu li a {
    line-height: 1;
}

.side-menu * {
    overflow: hidden;
}

.swiper-wrapper .arrow-title {
    display: none;
}

@media(max-width: 1300px) {
    .page-view.solutions .intro-title * {
        text-align:left;
    }

    .page-view.solutions .intro-title h1 {
        width: 80%;
        margin: 0 auto;
    }

    .page-view.overview .intro-title * {
        text-align: left;
    }

    .page-view.overview .intro-title h1 {
        width: 80%;
        margin: 0 auto;
    }
}

@media(max-width: 1000px) {
    .page-view.businesses .intro-service p {
        text-align:left !Important;
    }

    .page-view.businesses .intro-service h1 {
        width: 100% !important;
        margin-left: 10%;
    }

    .page-view.businesses p {
        text-align: left;
    }

    .page-view.businesses .title-header {
        display: initial
    }

    .page-view.businesses .title-header {
        justify-content: flex-start;
        width: 100% !important;
    }

    .page-view.businesses .link {
        text-align: left;
    }
}

@media(max-width: 767px) {
    .page-view.customers .title-container * {
        text-align:left;
    }

    .page-view.customers .title-container h1 {
        width: 90%;
        margin: 0 auto;
    }
}

@media(max-width: 600px) {
    .page-view.leadership .title-wrapper * {
        text-align:left;
    }

    .page-view.opportunities .intro-para * {
        text-align: left;
    }

    .page-view.opportunities .intro-para h1 {
        width: 75%;
        margin: 0 auto;
    }
}

.page-view.servicedetail .top-title {
    display: none;
}

.side-menu li a {
    line-height: 1;
}

.side-menu * {
    overflow: hidden;
}

.swiper-wrapper .arrow-title {
    display: none;
}

@media(max-width: 1300px) {
    .page-view.solutions .intro-title * {
        text-align:left;
    }

    .page-view.solutions .intro-title h1 {
        width: 80%;
        margin: 0 auto;
    }

    .page-view.overview .intro-title * {
        text-align: left;
    }

    .page-view.overview .intro-title h1 {
        width: 80%;
        margin: 0 auto;
    }
}

@media(max-width: 1000px) {
    .page-view.businesses .intro-service p {
        text-align:left !Important;
    }

    .page-view.businesses .intro-service h1 {
        width: 100% !important;
        margin-left: 10%;
    }

    .page-view.businesses p {
        text-align: left;
    }

    .page-view.businesses .title-header {
        display: initial
    }

    .page-view.businesses .title-header {
        justify-content: flex-start;
        width: 100% !important;
    }

    .page-view.businesses .link {
        text-align: left;
    }
}

@media(max-width: 767px) {
    .page-view.customers .title-container * {
        text-align:left;
    }

    .page-view.customers .title-container h1 {
        width: 90%;
        margin: 0 auto;
    }
}

@media(max-width: 600px) {
    .page-view.leadership .title-wrapper * {
        text-align:left;
    }

    .page-view.opportunities .intro-para * {
        text-align: left;
    }

    .page-view.opportunities .intro-para h1 {
        width: 75%;
        margin: 0 auto;
    }
}

.page-view.governance .news-container .date {
    color: white;
    font-size: 22px;
    width: 50%;
    margin-bottom: 40px;
}

.page-view.governance .news-container .title p {
    padding-right: 5px;
}

.page-view.governance .news-container .title {
    padding: 0px;
    display: flex;
    color: white;
    font-size: 17px;
    margin-bottom: 10px;
}

.page-view.governance .news-container .members {
    color: white;
    display: flex;
    font-size: 17px;
}

.page-view.governance .news-container .members p {
    padding-right: 5px;
}

.page-view.governance .news-container .icon a {
    color: white !important;
    display: flex !important;
}

.page-view.governance .news-container .icon p {
    display: flex;
    align-items: center;
    padding-right: 30px;
    font-weight: 500;
}

.page-view.governance .news-container .article {
    padding-bottom: 30px;
}

.page-view.governance .news-container {
    margin-top: 300px !Important;
    display: flex;
    justify-content: center;
}

.page-view.governance .go-down-container {
    bottom: 300px;
}

@media(max-width: 1200px) {
    .page-view.governance .news-container .date {
        font-size:20px;
        width: 100%;
    }
}

@media(max-width: 767px) {
    .page-view.governance .news-container {
        margin-top:200px !important;
    }

    .page-view.governance .news-container .date {
    }

    .page-view.governance .news-container .members {
        flex-direction: column;
    }

    .page-view.governance .news-container .title {
        flex-direction: column;
    }

    .page-view.governance .news-container .icon {
        align-items: center;
        display: flex ;
    }

    .page-view.governance .news-container {
        padding-top: 50px;
    }

    .page-view.governance .go-down-container {
        bottom: 380px;
    }

    .page-view.governance .go-down-container .text {
        text-align: center !important;
    }
}

@media(max-width: 550px) {
    .page-view.governance .news-container .date {
        font-size:15px;
        width: 75%;
    }
}

.filter .single-dropdown-container:nth-child(1), .filter .single-dropdown-container:nth-child(2) {
    display: block;
}

.page-view.leadership .news {
    margin-bottom: 200px;
}

.page-view.leadership .news .single-dropdown-container {
    padding-left: 20px !Important;
}

.page-view.leadership .news .checkbox.active::after {
    top: 30%;
}

.page-view.governance.leadership.filter .not-on-governance {
    display: none;
}

.page-view.leadership .single-dropdown-container:nth-child(2), .page-view.leadership .single-dropdown-container:nth-child(3) {
    display: none;
}

.projects .carousel-container.container .swiper-slide:not(.homepage) {
    display: none;
}

.projects .carousel-container.container .homepage {
}

.projects .wrapper {
    width: 80% !Important;
}

.projects .swiper-wrapper {
    display: flex;
    justify-content: center;
}

@media(max-width: 1600px) {
    .projects .wrapper {
        width: 100% !Important;
    }

    .projects .swiper-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media(max-width: 1490px) and (min-width:1350px) {
    .projects .wrapper {
        width: 100% !Important;
        position: relative;
        left: -25px;
    }
}

.page-view.financial-results .result {
    justify-content: space-between
}

.footer-three-sections .section:nth-child(3) li:nth-child(4), .footer-three-sections .section:nth-child(3) li:nth-child(5) {
    margin-left: 0px;
}

.customers .footer-three-sections .section:nth-child(3) li:nth-child(3), .customers .footer-three-sections .section:nth-child(3) li:nth-child(4) {
    margin-left: 0px !important;
}

.footer-three-sections a {
    position: absolute !important;
    top: 110% !important;
}

.footer-three-sections .text-box {
    height: 100% !Important;
    padding-top: 100px !Important;
    padding-bottom: 100px !important;
}

.footer-three-sections .customers,.footer-three-sections .solutions,.footer-three-sections .businesses,.footer-three-sections .contact {
    height: 100%;
}

.footer-three-sections .arrow-title {
    display: flex;
    flex-direction: row;
    width: 100% ;
}

.footer-three-sections .arrow-title .text {
    width: 100% !Important;
}

.footer-three-sections .para {
    height: 100%;
}

@media(max-width: 430px) {
    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .main-title .text {
        font-size:18px !important;
    }
}

.home .service-container.overview.solutions.opportunities.investors a {
    height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 30%;
}

.single-event .header {
    color: white;
}

.single-event .sub-title .text {
    font-size: 18px !Important;
}

.page-view .customers .right-box .image-container img {
    min-width: 184px;
    min-height: 182px;
}

.page-view.customers .second-row.opportunities {
    padding-top: 0px !Important;
}

.page-view.customers .second-row.opportunities .dummy {
    padding: 30px;
}

.page-view.customers .go-down-container {
    top: 45vh;
}

@media(max-width: 1000px) {
    .page-view.customers .go-down-container {
        top:70vh;
    }
}

@media(max-width: 767px) {
    .page-view.customers .go-down-container {
        top:108vh;
    }
}

@media(max-width: 480px) {
    .page-view.customers .go-down-container {
        top:195vh;
    }
}

.page-view.overview .go-down-container * {
    text-align: center;
}

.page-view.solutions .services-three-columns .service h5 {
    padding-bottom: 20px !important;
}

.page-view.solutions .services-three-columns .service-text-under {
    padding-top: 0px;
    padding-bottom: 50px;
}

@media(max-width: 600px) {
    .page-view.solutions .services-three-columns {
        margin-top:200px;
    }

    .page-view.solutions .go-down-container {
        bottom: -20vh;
    }
}

@media(min-width: 1250px) {
    .page-view.projectdetail .next-bio {
        position:absolute;
        top: 50%;
        left: 90%;
    }
}

@media(max-width: 1250px) {
    .page-view.projectdetail .next-bio {
        width:75%;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .projectdetail .main-container {
        min-height: auto !important;

        height: auto !Important;
    }
}

@media(min-width: 767px) and (max-width:1755px) {
    .page-view.financial-results .historic-results .result .date {
        width:240%;
    }
}

.page-view.financial-results .historic-results {
    padding-top: 0px;
}

.page-view.governance .news-container {
    flex-direction: column;
    align-items: center;
}

.page-view.governance .go-down-container {
    bottom: 550px;
}

.home .projects .swiper-slide:nth-child(1) {
    transform: translateX(0px)
}

@media(min-width: 1300px) {
    .events-container.clearfix {
        display:flex;
    }
}

.page-view.businesses .service ul {
    padding-left: 0px;
}

.page-view.businesses .service ul li {
    line-height: 1.5;
    font-size: 17px;
}

@media(max-width: 1000px) {
    .page-view.businesses .service ul li {
        text-align:left;
    }
}

.page-view.leadership .news {
    margin-bottom: 0px;
    z-index: 9
}

.page-view.leadership-only .abbreviation {
    display: none;
}

@media(max-width: 1150px) and (min-width:568px) {
    .page-view.leadership-only .grid-box-single .position-title {
        display:none;
    }
}

@media(min-width: 1250px) {
    .page-view.projectdetail .main-container.read-more-active {
        min-width: auto !important;
        min-height: 100vh !important;

        height: auto !important;
    }

    .page-view.projectdetail .main-container.read-more-active .content-container {
        min-width: auto !important;
        min-height: auto !important;
        height: auto !important;

        padding-bottom: 200px;
        top: 100px !important;
    }
}

.page-view.projectdetail .read-more-button:hover {
    cursor: pointer;
}

.page-view.projectdetail .read-more-content {
    display: none
}

.page-view.leadership .grid-items .grid-box-single {
    padding: 0% 3%;
    left: -3.5%
}

@media(max-width: 1024px) {
    .page-view.leadership .grid-items .grid-box-single {
        padding: 0% 2%;
        left: -2.5%
    }
}

@media(max-width: 768px) {
    .filter .grid-items {
        width: 90%;
        left: 5%;
    }
    .title-and-abbreviation .text {
        font-size: 16px !important
    }
    .abbreviation {
        font-size: 10px;
    }
    .position-title {
        font-size: 10px
    }
}
.news .checkbox.active::after {
    top: 8px;
}

@media(min-width: 1000px) {
    .page-view.news .article {
        width:75% !important;
    }

    .page-view.news .title {
        padding-right: 0px !important;
    }
}

.side-menu-active::before {
    width: 19px !important;
    opacity: 1 !important;
    left: 90% !important;
}

.presentations .news-container {
    align-items: flex-start;
}

.presentations .news .dropdown-container {
    justify-content: flex-end;
}

.presentations .presentations-container {
    padding-bottom: 100px;
}

.customers .first-row .right-box .image-container .single-image:nth-child(1)::after {
    content: 'Top 25 US Banks By Assets';
}

.customers .first-row .right-box .image-container .single-image:nth-child(2)::after {
    content: 'Top 25 US Regional Banks By Assets';
}

.customers .first-row .right-box .image-container .single-image:nth-child(3)::after {
    content: 'Top 15 US Credit Card Issuers by Balances';
}

.customers .first-row .right-box .image-container .single-image::after {
    position: absolute;
    top: 110%;
    line-height: 1.2;
    font-family: "industry";
    text-align: center;
}

.page-view.home .two-modules {
    display: flex;
    padding-top: 30px;
}

.page-view.home .left-module {
    padding-right: 50px;
}

.page-view.home .two-modules h3 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 10px;
}

.page-view.home .two-modules p {
    font-size: 16px;
    text-align: center;
}

.page-view.home .two-modules .left-module {
    background-image: URL("/wp-content/uploads/divider-wht.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 100% !important;
}

.side-menu li:nth-child(1) {
    display: none;
}

/*.menu-items li:nth-last-child(2) {
    display: none;
}
*/
.page-view.financial-results .stat:nth-child(4) .small {
    opacity: 0;
}

.page-view.home .services-three-columns {
    background-image: URL("/wp-content/uploads/bg-home-module2.jpg");
}

.page-view.home .service-container {
    padding-top: 0px !Important;
    padding-bottom: 0px !Important;
}

@media(max-width: 1520px) {
    .page-view.home .services-three-columns {
        transform:initial;
    }
}

.page-view.overview.solutions a.go-down-container {
    font-weight: 100 !Important;
    bottom: -100px;
}

.page-view.leadership-only .grid-box-single.governance {
    display: none !Important;
}

.page-view.leadership .title-and-abbreviation .text {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap !important;
}

.page-view.leadership .title-and-abbreviation #firstTitle {
    width: auto ;
}

.page-view.leadership .title-and-abbreviation #secondTitle {
    padding-left: 5px;
}

.page-view.leadership .title-and-abbreviation #thirdTitle {
    width: 100%;
}

.page-view.home .title-and-abbreviation .text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap !important;
}

.page-view.home .title-and-abbreviation #thirdTitle {
    width: 100%;
}

.page-view.home .title-and-abbreviation #secondTitle {
    width: auto;
    padding-left: 5px;
}

.page-view.home .title-and-abbreviation #firstTitle {
    width: auto;
}

.page-view.home .title-and-abbreviation .abbreviation {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100% !Important;
}

.page-view.home .carousel-container.container .wrapper .carousel.swiper-container .swiper-wrapper .swiper-slide {
    margin: 0px;
}

.page-view.home .swiper-wrapper {
    justify-content: space-evenly;
}

@media (max-width: 1490px) and (min-width: 1350px) {
    .page-view.home .projects .wrapper {
        width: 100% !Important;
        position: relative;
        left: -0px;
    }
}

@media(min-width: 1350px) {
    .page-view.home .projects .wrapper {
        left:0px;
    }

    .swiper-slide.homepage {
        margin-left: 0px !important;
    }
}

.page-view.home .about-us-section .service {
    margin-left: 0px;
}

.home .services-three-columns {
    justify-content: space-around !important;
}

.page-view.customers .go-down-container {
    top: 60vh;
}

@media(max-width: 1200px) {
    .page-view.customers .go-down-container {
        top:65vh;
    }
}

@media(max-width: 1000px) {
    .page-view.customers .go-down-container {
        top:95vh;
    }
}

@media(max-width: 767px) {
    .page-view.customers .go-down-container {
        top:142vh;
    }
}

@media(max-width: 560px) {
    .page-view.customers .go-down-container {
        top:146vh;
    }
}

@media(max-width: 448px) {
    .page-view.customers .go-down-container {
        top:150vh;
    }
}

@media(max-width: 440px) {
    .page-view.customers .go-down-container {
        top:156vh;
    }
}

.single-event.latest-results .sub-title {
    line-height: 1.2 ;
}

.page-view.governance .go-down-container {
    width: 100% !Important;
    position: relative;
    top: 0px ;
    left: 0px !important;
}

.page-view.governance .news-container {
    margin-top: 100px !important;
}

@media(max-width: 767px) {
    .page-view.governance .go-down-container {
        top:50px;
    }
}

.menu-items-wrapper li.side-menu-active a {
    color: #009BDA !important;
    font-weight: 600;
    cursor: default;
}

.customers .first-row .right-box .image-container .single-image:nth-child(3)::after {
    content: 'Top 25 US Regional Banks By Assets';
}

.customers .first-row .right-box .image-container .single-image:nth-child(2)::after {
    content: 'Top 15 Credit Card Issuers by Balances';
}

.solutions .services-three-columns {
    margin-top: 100px;
}

@media (max-width: 1300px) and (min-width:920px) {
    .solutions .services-three-columns {
        margin-top:0px !Important;
    }
}

.page-view.home .left-module {
    padding-right: 20px;
}

.page-view.home .right-module {
    padding-left: 15px
}

.home .service-container.overview.solutions.opportunities.investors {
    background-color: transparent !important;
}

.menu-items-wrapper {
    border: none !Important;
}
.businesses .service:nth-child(2){
    background-size:115%;
    background-position:-200px;
}
.page-view.leadership .dropdown-container.noselect .single-dropdown-container:nth-child(2) {
    display:none;
}
.page-view.governance.leadership.filter .single-dropdown-container{
    display:none;
}
#menu .menu-items-container .menu-items-wrapper .menu-items .menu-item .menu-item-link.active:before {
    display: none;
}
.page-view.leadership-only .grid-box-single.governance{
    display:none;
}.page-view.leadership .single-dropdown-container:nth-child(4){
    display:none;
}
.side-menu-active .menu-items .leadership a{
    color:#0194d1  !important;
    font-weight:600 !important;
}
.projectdetail .content-container .bio-container p {
    padding-bottom: 0px !Important;
}

.projectdetail .content-container .read-more-button {
    padding-top: 10px;
}
.menu-items .leadership a{
    display:block !important;
}
@media(max-width:1300px){
    .page-view.solutions .service{
        align-items:center !important;
    }
}
.financial-results .intro-stat .download-links a, .financial-results .historic-results .download-links .link a {
    padding-bottom: 5px;
    font-weight: 400;
    border: none;
}

.financial-results .intro-stat .download-links .link a::after, .financial-results .historic-results .download-links .link a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid rgb(51, 128, 175);
}
.side-menu-active .side-active a {
    color: #009BDA ;
    font-weight: 600;
    cursor: default;
}

.side-menu-active .side-active::before {
    left: 90%;
}
.page-view.solutions .intro-title ul {
    padding-left: 20px;
}

.page-view.solutions .intro-title ul li {
    padding-top: 5px;
}

@media(max-width: 1300px) {
    .page-view.solutions .intro-title ul {
        width:80%;
        margin: 0 auto;
    }
}
.businesses .text-box ul li{
    padding-top:5px;
}
.gradient .go-down-container {
    bottom: -75px;
}
@media(min-width: 1000px) {
    .customers .go-down-container {
        top:115% !important;
    }
}
@media(max-width: 1100px) {
    .page-view.financial-results .go-down-container {
        top:82%;
    }
}

@media(max-width: 767px) {
    .page-view.financial-results .go-down-container {
        top:88%;
    }
}

@media(max-width: 415px) {
    .page-view.financial-results .historic-results .link a {
        font-size:15px;
    }
}

@media(max-width: 400px) {
    .page-view.financial-results .historic-results .link:nth-child(4) a::after {
        width:150%;
    }
}
.page-view.presentations .news{
    margin-top:30px !important;

}
.page-view.presentations .news .dropdown-container{
    width:99%;
}
.page-view.presentations .news-container{
    width:100%;
}
@media(max-width:1000px){
    .page-view.presentations .news .article{
    width:100% !Important;
}
}
.page-view.news .article {
    margin-bottom: 50px;
}
.page-view.presentations .article {
   margin-bottom: 50px !important
}
.service.intro-service .go-down-container .text {
    font-weight: 100 !important;
}

@media(max-width: 500px) {
    .page-view.businesses .service ul {
        padding-left:15px;
    }
}
.page-view.contact .left-content p {
    line-height: 38px;
    font-family: "industry"
}
@media(max-width:460px){
    #footer .terms-container a{
    font-size:9px !Important;
    }
    #footer .terms-container{
        display:flex;
        padding-top:20px;
    }
}
@media(min-width:767px){
    .page-view.financial-results .result .date-title {
 width:30%;
}

}
.home .main-section .slideshow-title-container {
    width: 100% !important;
    margin-left: 0px !important;
    left: 0px !Important;
    text-align: center !important;
}

.home .main-section .excerpt {
    width: 100% !important;
}

.home .two-modules {
    display: flex;
    justify-content: center;
}

.home .two-modules h3 {
    font-size: 75px !Important;
    text-align: left !Important;
}

.home .two-modules p {
    font-size: 20px !important;
    font-weight: 600;
    width: 50%;
    text-align: left !important;
}

.home .two-modules h3,.home .two-modules .para {
    display: flex;
    justify-content: center;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container:hover {
    color: white;
    cursor: grab !Important;
}

.page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .excerpt {
    font-weight: 500 !important;
}

@media(max-width: 1000px) {
    .home .two-modules h3 {
        font-size: 40px !important;
    }

    .home .two-modules p {
        font-size: 18px !important;
    }
}

@media(max-width: 767px) {
    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .excerpt .text {
        margin: 0 auto !important;
    }
}

@media(max-width: 480px) {
    .page-view.home .main-section .slideshow.swiper-container .swiper-wrapper .swiper-slide .slideshow-title-container .main-title .text {
        font-size: 20px !important;
        text-align: center;
    }

    .home .two-modules p {
        font-size: 14px !important;
    }
}
.financial-results .right-box .stat:nth-child(1) {

    display: none;
}

.financial-results .right-box .right-stat{
  
    display: flex;
    justify-content: center;

}
.home .projects .swiper-wrapper {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-evenly !important;
}

.home .projects .wrapper {
    width: 100% !important;
    position: relative;
    left: 2% !important;
}

.home .projects .swiper-slide {
    width: 25% !important;
}

.home .projects .grid-box-wrapper {
    width: 100% !important;
}

@media(max-width: 1350px) {
    .home .projects .wrapper {
        width: 100% !important;
        position: relative;
        left: 8% !important;
    }

    .home .projects .swiper-slide {
        width: 40% !important;
    }
}

@media(max-width: 767px) {
    .home .projects .wrapper {
        width: 100% !important;
        position: relative;
        left: 10% !important;
    }

    .home .projects .swiper-slide {
        width: 60% !important;
    }
}

@media(max-width: 480px) {
    .home .projects .wrapper {
        width: 100% !important;
        position: relative;
        left: 10% !important;
    }

    .home .projects .swiper-slide {
        width: 100% !important;
    }
}
.governance-only .news.no-subs .date {
    width: 100%;
    margin: 0px
}
@media(max-width: 500px) {
    .page-view.governance-only .news .article {
        width: 85%
    }

    .governance-only .news.no-subs .date {
        width: 90%;
    }
}
.side-menu .text {
    width: 200px;
}
.side-menu{
    padding-left: 10px;
  }