.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 23px;
    height: 19px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    width: 23px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
    content: "";
    display: block;
}

.hamburger-inner:before {
    top: -8px;
}

.hamburger-inner:after {
    bottom: -8px;
}

.hamburger--3dx .hamburger-box {
    perspective: 46px;
}

.hamburger--3dx .hamburger-inner {
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx .hamburger-inner:after,
.hamburger--3dx .hamburger-inner:before {
    transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner:before {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
    perspective: 46px;
}

.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r .hamburger-inner:after,
.hamburger--3dx-r .hamburger-inner:before {
    transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
    perspective: 46px;
}

.hamburger--3dy .hamburger-inner {
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy .hamburger-inner:after,
.hamburger--3dy .hamburger-inner:before {
    transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner:before {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
    perspective: 46px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r .hamburger-inner:after,
.hamburger--3dy-r .hamburger-inner:before {
    transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
    transform: translate3d(-4.6px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrow.is-active .hamburger-inner:after {
    transform: translate3d(-4.6px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
    transform: translate3d(4.6px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
    transform: translate3d(4.6px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt .hamburger-inner:before {
    transition: top 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
    transition: bottom 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
    top: 0;
    transform: translate3d(-4.6px, -5.75px, 0) rotate(-45deg) scaleX(0.7);
    transition: top 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
    bottom: 0;
    transform: translate3d(-4.6px, 5.75px, 0) rotate(45deg) scaleX(0.7);
    transition: bottom 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}

.hamburger--arrowalt-r .hamburger-inner:before {
    transition: top 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
    transition: bottom 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
    top: 0;
    transform: translate3d(4.6px, -5.75px, 0) rotate(45deg) scaleX(0.7);
    transition: top 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
    bottom: 0;
    transform: translate3d(4.6px, 5.75px, 0) rotate(-45deg) scaleX(0.7);
    transition: bottom 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner:after,
.hamburger--boring .hamburger-inner:before {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner:after {
    top: -16px;
    transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner:before {
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner:after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.27s;
}

.hamburger--collapse.is-active .hamburger-inner:before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
}

.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner:after {
    top: -16px;
    transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -8px, 0) rotate(45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.27s;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
}

.hamburger--elastic .hamburger-inner {
    top: 1.5px;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner:before {
    top: 8px;
    transition: opacity 0.15s ease 0.4s;
}

.hamburger--elastic .hamburger-inner:after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(135deg);
    transition-delay: 0.1s;
}

.hamburger--elastic.is-active .hamburger-inner:before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    transition-delay: 0.1s;
}

.hamburger--elastic-r .hamburger-inner {
    top: 1.5px;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner:before {
    top: 8px;
    transition: opacity 0.15s ease 0.4s;
}

.hamburger--elastic-r .hamburger-inner:after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(-135deg);
    transition-delay: 0.1s;
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
    transform: translate3d(0, -16px, 0) rotate(270deg);
    transition-delay: 0.1s;
}

.hamburger--emphatic {
    overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s ease-in 0.25s;
}

.hamburger--emphatic .hamburger-inner:before {
    left: 0;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, left 0.2s ease-in 0.25s;
}

.hamburger--emphatic .hamburger-inner:after {
    top: 8px;
    right: 0;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, right 0.2s ease-in 0.25s;
}

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
    left: -46px;
    top: -46px;
    transform: translate3d(46px, 46px, 0) rotate(45deg);
    transition: left 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}

.hamburger--emphatic.is-active .hamburger-inner:after {
    right: -46px;
    top: -46px;
    transform: translate3d(-46px, 46px, 0) rotate(-45deg);
    transition: right 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}

.hamburger--emphatic-r {
    overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r .hamburger-inner:before {
    left: 0;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, left 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r .hamburger-inner:after {
    top: 8px;
    right: 0;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, right 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
    left: -46px;
    top: 46px;
    transform: translate3d(46px, -46px, 0) rotate(-45deg);
    transition: left 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
    right: -46px;
    top: 46px;
    transform: translate3d(-46px, -46px, 0) rotate(45deg);
    transition: right 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}

.hamburger--slider .hamburger-inner {
    top: 1.5px;
}

.hamburger--slider .hamburger-inner:before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner:after {
    top: 16px;
}

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-3.28571px, -5px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
    transform: translate3d(0, -16px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
    top: 1.5px;
}

.hamburger--slider-r .hamburger-inner:before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.hamburger--slider-r .hamburger-inner:after {
    top: 16px;
}

.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
    transform: rotate(45deg) translate3d(3.28571px, -5px, 0);
    opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
    transform: translate3d(0, -16px, 0) rotate(90deg);
}

.hamburger--spring .hamburger-inner {
    top: 1.5px;
    transition: background-color 0s linear 0.15s;
}

.hamburger--spring .hamburger-inner:before {
    top: 8px;
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner:after {
    top: 16px;
    transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.32s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner:before {
    top: 0;
    transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
    transform: translate3d(0, 8px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner:after {
    top: -16px;
    transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.32s;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
}

.hamburger--stand .hamburger-inner {
    transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.22s, background-color 0s linear 0.1s;
}

.hamburger--stand .hamburger-inner:before {
    transition: top 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand .hamburger-inner:after {
    transition: bottom 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent;
    transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.22s;
}

.hamburger--stand.is-active .hamburger-inner:before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}

.hamburger--stand.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}

.hamburger--stand-r .hamburger-inner {
    transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.22s, background-color 0s linear 0.1s;
}

.hamburger--stand-r .hamburger-inner:before {
    transition: top 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r .hamburger-inner:after {
    transition: bottom 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent;
    transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.22s;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}

.hamburger--stand-r.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}

.hamburger--spin .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
    transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
    transition: bottom 0.1s ease-in 0.34s, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
}

.hamburger--spin.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}

.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner:before {
    transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
    transition: bottom 0.1s ease-in 0.34s, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 0.1s ease 0.14s, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 0.1s ease 0.14s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s ease 0.14s;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}

.hamburger--vortex .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner:after,
.hamburger--vortex .hamburger-inner:before {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner:before {
    transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
    transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner:after,
.hamburger--vortex.is-active .hamburger-inner:before {
    transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner:after,
.hamburger--vortex-r .hamburger-inner:before {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner:before {
    transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
    transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner:after,
.hamburger--vortex-r.is-active .hamburger-inner:before {
    transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
}

@keyframes plyr-progress {
    to {
        background-position: 25px 0;
    }
}

.plyr {
    position: relative;
    max-width: 100%;
    min-width: 200px;
    font-family: Avenir, Avenir Next, Helvetica Neue, Segoe UI, Helvetica, Arial, sans-serif;
    direction: ltr;
}

.plyr,
.plyr *,
.plyr:after,
.plyr:before {
    box-sizing: border-box;
}

.plyr a,
.plyr button,
.plyr input,
.plyr label {
    touch-action: manipulation;
}

.plyr:focus {
    outline: 0;
}

.plyr audio,
.plyr video {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: inherit;
}

.plyr input[type="range"] {
    display: block;
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    appearance: none;
    cursor: pointer;
    border: none;
    background: 0 0;
}

.plyr input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: 0 0;
    border: 0;
    border-radius: 4px;
    user-select: none;
}

.plyr input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -4px;
    position: relative;
    height: 16px;
    width: 16px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 100%;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.plyr input[type="range"]::-moz-range-track {
    height: 8px;
    background: 0 0;
    border: 0;
    border-radius: 4px;
    user-select: none;
}

.plyr input[type="range"]::-moz-range-thumb {
    position: relative;
    height: 16px;
    width: 16px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 100%;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.plyr input[type="range"]::-ms-track {
    height: 8px;
    background: 0 0;
    border: 0;
    color: transparent;
}

.plyr input[type="range"]::-ms-fill-upper {
    height: 8px;
    background: 0 0;
    border: 0;
    border-radius: 4px;
    user-select: none;
}

.plyr input[type="range"]::-ms-fill-lower {
    height: 8px;
    background: 0 0;
    border: 0;
    border-radius: 4px;
    user-select: none;
    background: #3498db;
}

.plyr input[type="range"]::-ms-thumb {
    position: relative;
    height: 16px;
    width: 16px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 100%;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    margin-top: 0;
}

.plyr input[type="range"]::-ms-tooltip {
    display: none;
}

.plyr input[type="range"]:focus {
    outline: 0;
}

.plyr input[type="range"]::-moz-focus-outer {
    border: 0;
}

.plyr input[type="range"].tab-focus:focus {
    outline-offset: 3px;
}

.plyr input[type="range"]:active::-webkit-slider-thumb {
    background: #3498db;
    border-color: #fff;
    transform: scale(1.25);
}

.plyr input[type="range"]:active::-moz-range-thumb {
    background: #3498db;
    border-color: #fff;
    transform: scale(1.25);
}

.plyr input[type="range"]:active::-ms-thumb {
    background: #3498db;
    border-color: #fff;
    transform: scale(1.25);
}

.plyr--video input[type="range"].tab-focus:focus {
    outline: 1px dotted hsla(0, 0%, 100%, 0.5);
}

.plyr--audio input[type="range"].tab-focus:focus {
    outline: 1px dotted rgba(86, 93, 100, 0.5);
}

.plyr__sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    position: absolute !important;
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
}

.plyr__video-wrapper {
    position: relative;
    background: #000;
    border-radius: inherit;
}

.plyr__video-embed {
    padding-bottom: 56.25%;
    height: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 0;
}

.plyr__video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    user-select: none;
}

.plyr__video-embed>div {
    position: relative;
    padding-bottom: 200%;
    transform: translateY(-35.95%);
}

.plyr .plyr__video-embed iframe {
    pointer-events: none;
}

.plyr video::-webkit-media-text-track-container {
    display: none;
}

.plyr__captions {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    transform: translateY(-60px);
    transition: transform 0.3s ease;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}

.plyr__captions span {
    border-radius: 2px;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.7);
    box-decoration-break: clone;
    line-height: 150%;
}

.plyr__captions span:empty {
    display: none;
}

@media (min-width: 768px) {
    .plyr__captions {
        font-size: 24px;
    }
}

.plyr--captions-active .plyr__captions {
    display: block;
}

.plyr--hide-controls .plyr__captions {
    transform: translateY(-20px);
}

@media (min-width: 1024px) {
    .plyr--fullscreen-active .plyr__captions {
        font-size: 32px;
    }
}

.plyr::-webkit-media-controls {
    display: none;
}

.plyr__controls {
    display: flex;
    align-items: center;
    line-height: 1;
    text-align: center;
}

.plyr__controls .plyr__progress,
.plyr__controls .plyr__time,
.plyr__controls>button {
    margin-left: 5px;
}

.plyr__controls .plyr__progress:first-child,
.plyr__controls .plyr__time:first-child,
.plyr__controls>button:first-child {
    margin-left: 0;
}

.plyr__controls .plyr__volume {
    margin-left: 5px;
}

.plyr__controls [data-plyr="pause"] {
    margin-left: 0;
}

.plyr__controls button {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    overflow: visible;
    vertical-align: middle;
    padding: 7px;
    border: 0;
    background: 0 0;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    color: inherit;
}

.plyr__controls button svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.plyr__controls button:focus {
    outline: 0;
}

.plyr__controls .icon--captions-on,
.plyr__controls .icon--exit-fullscreen,
.plyr__controls .icon--muted {
    display: none;
}

@media (min-width: 480px) {

    .plyr__controls .plyr__progress,
    .plyr__controls .plyr__time,
    .plyr__controls>button {
        margin-left: 10px;
    }
}

.plyr--hide-controls .plyr__controls {
    opacity: 0;
    pointer-events: none;
}

.plyr--video .plyr__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 10px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    color: #fff;
    transition: opacity 0.3s ease;
}

.plyr--video .plyr__controls button.tab-focus:focus,
.plyr--video .plyr__controls button:hover {
    background: #3498db;
    color: #fff;
}

.plyr--audio .plyr__controls {
    padding: 10px;
    border-radius: inherit;
    background: #fff;
    border: 1px solid #dbe3e8;
    color: #565d64;
}

.plyr--audio .plyr__controls button.tab-focus:focus,
.plyr--audio .plyr__controls button:hover,
.plyr__play-large {
    background: #3498db;
    color: #fff;
}

.plyr__play-large {
    display: none;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border: 4px solid currentColor;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.plyr__play-large svg {
    position: relative;
    left: 2px;
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.plyr__play-large:focus {
    outline: 1px dotted hsla(0, 0%, 100%, 0.5);
}

.plyr .plyr__play-large {
    display: inline-block;
}

.plyr--audio .plyr__play-large {
    display: none;
}

.plyr--playing .plyr__play-large {
    opacity: 0;
    visibility: hidden;
}

.plyr--playing .plyr__controls [data-plyr="play"],
.plyr__controls [data-plyr="pause"] {
    display: none;
}

.plyr--playing .plyr__controls [data-plyr="pause"] {
    display: inline-block;
}

.plyr--captions-active .plyr__controls .icon--captions-on,
.plyr--fullscreen-active .icon--exit-fullscreen,
.plyr--muted .plyr__controls .icon--muted {
    display: block;
}

.plyr [data-plyr="captions"],
.plyr [data-plyr="fullscreen"],
.plyr--captions-active .plyr__controls .icon--captions-on+svg,
.plyr--fullscreen-active .icon--exit-fullscreen+svg,
.plyr--muted .plyr__controls .icon--muted+svg {
    display: none;
}

.plyr--captions-enabled [data-plyr="captions"],
.plyr--fullscreen-enabled [data-plyr="fullscreen"] {
    display: inline-block;
}

.plyr__tooltip {
    position: absolute;
    z-index: 2;
    bottom: 100%;
    margin-bottom: 10px;
    padding: 5px 7.5px;
    pointer-events: none;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    transform: translate(-50%, 10px) scale(0.8);
    transform-origin: 50% 100%;
    transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
}

.plyr__tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.7);
    border-left: 4px solid transparent;
    z-index: 2;
}

.plyr button.tab-focus:focus .plyr__tooltip,
.plyr button:hover .plyr__tooltip,
.plyr__tooltip--visible {
    opacity: 1;
    transform: translate(-50%) scale(1);
}

.plyr button:hover .plyr__tooltip {
    z-index: 3;
}

.plyr__controls button:first-child .plyr__tooltip {
    left: 0;
    transform: translateY(10px) scale(0.8);
    transform-origin: 0 100%;
}

.plyr__controls button:first-child .plyr__tooltip:before {
    left: 16px;
}

.plyr__controls button:last-child .plyr__tooltip {
    right: 0;
    transform: translateY(10px) scale(0.8);
    transform-origin: 100% 100%;
}

.plyr__controls button:last-child .plyr__tooltip:before {
    left: auto;
    right: 16px;
    transform: translateX(50%);
}

.plyr__controls button:first-child .plyr__tooltip--visible,
.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:first-child:hover .plyr__tooltip,
.plyr__controls button:last-child .plyr__tooltip--visible,
.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:last-child:hover .plyr__tooltip {
    transform: translate(0) scale(1);
}

.plyr__progress {
    display: none;
    position: relative;
    flex: 1;
}

.plyr__progress input[type="range"] {
    position: relative;
    z-index: 2;
}

.plyr__progress input[type="range"]::-webkit-slider-runnable-track {
    background: 0 0;
}

.plyr__progress input[type="range"]::-moz-range-track {
    background: 0 0;
}

.plyr__progress input[type="range"]::-ms-fill-upper {
    background: 0 0;
}

.plyr__progress .plyr__tooltip {
    left: 0;
}

.plyr .plyr__progress {
    display: inline-block;
}

.plyr__progress--buffer,
.plyr__progress--played,
.plyr__volume--display {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 8px;
    margin: -4px 0 0;
    padding: 0;
    vertical-align: top;
    appearance: none;
    border: none;
    border-radius: 100px;
}

.plyr__progress--buffer::-webkit-progress-bar,
.plyr__progress--played::-webkit-progress-bar,
.plyr__volume--display::-webkit-progress-bar {
    background: 0 0;
}

.plyr__progress--buffer::-webkit-progress-value,
.plyr__progress--played::-webkit-progress-value,
.plyr__volume--display::-webkit-progress-value {
    background: currentColor;
    border-radius: 100px;
    min-width: 8px;
}

.plyr__progress--buffer::-moz-progress-bar,
.plyr__progress--played::-moz-progress-bar,
.plyr__volume--display::-moz-progress-bar {
    background: currentColor;
    border-radius: 100px;
    min-width: 8px;
}

.plyr__progress--buffer::-ms-fill,
.plyr__progress--played::-ms-fill,
.plyr__volume--display::-ms-fill {
    border-radius: 100px;
}

.plyr__progress--played,
.plyr__volume--display {
    z-index: 1;
    color: #3498db;
    background: 0 0;
    transition: none;
}

.plyr__progress--played::-webkit-progress-value,
.plyr__volume--display::-webkit-progress-value {
    min-width: 8px;
    max-width: 99%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: none;
}

.plyr__progress--played::-moz-progress-bar,
.plyr__volume--display::-moz-progress-bar {
    min-width: 8px;
    max-width: 99%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: none;
}

.plyr__progress--played::-ms-fill,
.plyr__volume--display::-ms-fill {
    display: none;
}

.plyr__progress--buffer::-webkit-progress-value {
    transition: width 0.2s ease;
}

.plyr__progress--buffer::-moz-progress-bar {
    transition: width 0.2s ease;
}

.plyr__progress--buffer::-ms-fill {
    transition: width 0.2s ease;
}

.plyr--video .plyr__progress--buffer,
.plyr--video .plyr__volume--display {
    background: hsla(0, 0%, 100%, 0.25);
}

.plyr--video .plyr__progress--buffer {
    color: hsla(0, 0%, 100%, 0.25);
}

.plyr--audio .plyr__progress--buffer,
.plyr--audio .plyr__volume--display {
    background: rgba(198, 214, 219, 0.67);
}

.plyr--audio .plyr__progress--buffer {
    color: rgba(198, 214, 219, 0.67);
}

.plyr--loading .plyr__progress--buffer {
    animation: plyr-progress 1s linear infinite;
    background-size: 25px 25px;
    background-repeat: repeat-x;
    background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0.15) 75%, transparent 0, transparent);
    color: transparent;
}

.plyr--video.plyr--loading .plyr__progress--buffer {
    background-color: hsla(0, 0%, 100%, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress--buffer {
    background-color: rgba(198, 214, 219, 0.67);
}

.plyr__time {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

.plyr__time+.plyr__time {
    display: none;
}

@media (min-width: 768px) {
    .plyr__time+.plyr__time {
        display: inline-block;
    }
}

.plyr__time+.plyr__time:before {
    content: "\2044";
    margin-right: 10px;
}

.plyr__volume {
    display: none;
}

.plyr .plyr__volume {
    flex: 1;
    position: relative;
}

.plyr .plyr__volume input[type="range"] {
    position: relative;
    z-index: 2;
}

@media (min-width: 480px) {
    .plyr .plyr__volume {
        display: block;
        max-width: 60px;
    }
}

@media (min-width: 768px) {
    .plyr .plyr__volume {
        max-width: 100px;
    }
}

.plyr--is-ios .plyr__volume,
.plyr--is-ios [data-plyr="mute"] {
    display: none !important;
}

.plyr--fullscreen-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 10000000;
    background: #000;
    border-radius: 0 !important;
}

.plyr--fullscreen-active video {
    height: 100%;
}

.plyr--fullscreen-active .plyr__video-wrapper {
    height: 100%;
    width: 100%;
}

.plyr--fullscreen-active .plyr__video-embed {
    overflow: visible;
}

.plyr--fullscreen-active .plyr__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper {
    height: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video {
    width: 60%;
    margin: auto;
}

@media (max-width: 1200px) {
    .video {
        width: 95%;
    }
}

@media (max-width: 1025px) {
    .video {
        width: 85%;
    }
}

@media (max-width: 767px) {
    .video {
        width: 100%;
    }
}

strong {
    font-weight: 700;
}

.purple {
    color: #b34fc5;
}

.orange {
    color: #f99e1d;
}

.blue {
    color: #00c1d5;
}

.pink {
    color: #ef6eba;
}

.green {
    color: #6cab36;
}

.green-dark {
    color: #00966c;
}

.empty-img {
    background: 50% / auto url(../images/empty.png?f061194e7f5630e17c9036eea95c9cdc) no-repeat;
    background-size: auto !important;
}

h1 {
    font-size: 4.6875rem;
    line-height: 4.6875rem;
}

h1,
h2 {
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 1.6rem;
    line-height: 3.4375rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.3rem;
        line-height: 3.4375rem;
    }
}

p {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}

a {
    color: #6cab36;
}

ul:not(.not-general) {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

ul:not(.not-general) li {
    padding-left: 23px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

.footer-form--spherical ul:not(.not-general) li {
    padding-left: 0;
}

ul:not(.not-general) li:before {
    content: "";
    width: 11px;
    height: 11px;
    background-color: #6cab36;
    display: inline-block;
    position: absolute;
    left: 0;
    top: calc(1em - 11px);
}

ul:not(.not-general) li+li {
    margin-top: 18px;
}

ol {
    counter-reset: item;
    padding: 0;
    margin: 0;
}

ol li {
    display: block;
    position: relative;
    padding-left: 23px;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

ol li:before:not(.tab-content li::before) {
    content: counter(item) ". ";
    counter-increment: item;
    color: #6cab36;
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

ol li+li {
    margin-top: 18px;
}

html {
    font-size: 16px;
    background-color: #1c1f20;
}

body,
html {
    line-height: 1.75;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-size: 20px;
    font-family: Nunito, sans-serif;
    color: #505354;
}

@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon.eot?50f7a259aa37f634b1e8504cd3b9128f);
    src: url(../fonts/icomoon.eot?50f7a259aa37f634b1e8504cd3b9128f) format("embedded-opentype"), url(../fonts/icomoon.ttf?a8f7dcde83c78f9a11b0ef4b0c057a6f) format("truetype"), url(../fonts/icomoon.woff?a8c607603d60766e5028828ba2bae1c9) format("woff"), url(../fonts/icomoon.svg?feed7de29ae41af887c5c255d591e509) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: dashicons;
    src: url(/wp-includes/fonts/dashicons.eot);
    src: url(/wp-includes/fonts/dashicons.eot) format("embedded-opentype"), url(/wp-includes/fonts/dashicons.ttf) format("truetype"), url(/wp-includes/fonts/dashicons.woff) format("woff"), url(/wp-includes/fonts/dashicons.svg) format("svg");
    font-weight: 400;
    font-style: normal;
}

.icon--logo {
    position: relative;
    display: inline-block;
}

.icon--logo:after {
    content: "\E90A";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--search {
    position: relative;
    display: inline-block;
}

.icon--search:after {
    content: "\E94D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--careers {
    position: relative;
    display: inline-block;
}

.icon--careers:after {
    content: "\E951";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--arrow {
    position: relative;
    display: inline-block;
}

.icon--arrow:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--data {
    position: relative;
    display: inline-block;
}

.icon--data:after {
    content: "\E903";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--light-bulb {
    position: relative;
    display: inline-block;
}

.icon--light-bulb:after {
    content: "\E908";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--speech-bubbles {
    position: relative;
    display: inline-block;
}

.icon--speech-bubbles:after {
    content: "\E94E";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--data-management {
    position: relative;
    display: inline-block;
}

.icon--data-management:after {
    content: "\E905";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--audience-optimizer {
    position: relative;
    display: inline-block;
}

.icon--audience-optimizer:after {
    content: "\E901";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--cross-device {
    position: relative;
    display: inline-block;
}

.icon--cross-device:after {
    content: "\E902";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--data-exchange {
    position: relative;
    display: inline-block;
}

.icon--data-exchange:after {
    content: "\E904";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--data-stream {
    position: relative;
    display: inline-block;
}

.icon--data-stream:after {
    content: "\E906";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--tv-dmp {
    position: relative;
    display: inline-block;
}

.icon--tv-dmp:after {
    content: "\E950";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--onboarding {
    position: relative;
    display: inline-block;
}

.icon--onboarding:after {
    content: "\E922";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--syndicate {
    position: relative;
    display: inline-block;
}

.icon--syndicate:after {
    content: "\E94F";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--location {
    position: relative;
    display: inline-block;
}

.icon--location:after {
    content: "\E909";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--email {
    position: relative;
    display: inline-block;
}

.icon--email:after {
    content: "\E907";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--facebook {
    position: relative;
    display: inline-block;
}

.icon--facebook:after {
    content: "\E90C";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--linkedin {
    position: relative;
    display: inline-block;
}

.icon--linkedin:after {
    content: "\E90E";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--twitter {
    position: relative;
    display: inline-block;
}

.icon--twitter:after {
    content: "\E90D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--youtube {
    position: relative;
    display: inline-block;
}

.icon--youtube:after {
    content: "\E90B";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--quote {
    position: relative;
    display: inline-block;
}

.icon--quote:after {
    content: "\E90F";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--video-play {
    position: relative;
    display: inline-block;
}

.icon--video-play:after {
    content: "\E910";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--check {
    position: relative;
    display: inline-block;
}

.icon--check:after {
    content: "\E911";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--download {
    position: relative;
    display: inline-block;
}

.icon--download:after {
    content: "\E912";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--blog {
    position: relative;
    display: inline-block;
}

.icon--blog:after {
    content: "\E913";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon--center:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    line-height: inherit;
}

.block {
    position: relative;
    padding-top: 85px;
    padding-bottom: 80px;
}

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

.block img.alignright {
    float: right;
    margin: 0 0 0 10px;
}

.block img.alignleft {
    float: left;
    margin: 0 0 0 10px;
}

.block:after {
    clear: both;
    content: "";
    display: table;
}

.block.block--no-pad-top {
    padding-top: 0;
}

.block.block--no-pad-bottom {
    padding-bottom: 0;
}

.block.block--has-next-bottom .block__next {
    margin: 0 auto;
    display: block;
    width: 55px;
    height: 27px;
    background-color: #e4e4e4;
    border-top-left-radius: 27px;
    border-top-right-radius: 27px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 100;
    text-decoration: none;
    text-align: center;
    position: relative;
    display: inline-block;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.block.block--has-next-bottom .block__next:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(90deg);
    display: inline-block;
    line-height: 1em;
    color: #a8afb7;
    margin-top: 0;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.block.block--has-next-bottom .block__next:hover:after {
    color: #6cab36;
}

.block.block--has-next-bottom.block--has-next-bottom--below .block__next {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
    height: 27px;
    top: 100%;
    bottom: auto;
}

.block.block--has-next-bottom.block--has-next-bottom--below .block__next:after {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
}

.block.block--grey,
.block.block--grey.block--has-next-bottom .block__next {
    background-color: #edf0f3;
}

.block .block__inner.block__inner--container {
    max-width: 1200px;
    margin: 0 auto;
}

.block .block__inner.block__inner--container:after {
    clear: both;
    content: "";
    display: block;
}

.block .block__title {
    font-size: 3.375rem;
    line-height: 3.375rem;
    font-weight: 200;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.block .block__title:after {
    content: "";
    width: 231px;
    height: 1px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 auto;
    background-color: #cfd2d4;
}

.block .block__title.block__title--small {
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin-bottom: 47px;
}

.block .block__title.block__title--smaller {
    font-size: 2.375rem;
    line-height: 2.375rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.block .block__title.block__title--smaller:after {
    display: none;
}

.block .block__title.block__title--smaller+.block__copy {
    margin-top: 0;
}

.block .block__title.block__title--h1 {
    margin-bottom: 56px;
}

.block .block__title.block__title--h1:after {
    bottom: -34px;
}

.block .block__title.block__title--h2 {
    font-size: 2.8rem;
    line-height: 4.5rem;
    margin-bottom: 50px;
}

.block .block__title.block__title--h2:after {
    bottom: -15px;
}

.block .block__title.block__title--line-far {
    margin-bottom: 53px;
}

.block .block__title.block__title--line-far:after {
    bottom: -30px;
}

.block .block__title h1,
.block .block__title h3 {
    font-size: inherit;
    line-height: inherit;
}

.block .block__subtitle {
    font-size: 2.125rem;
    line-height: 2.5625rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 19px;
    color: #393b3c;
    max-width: 666px;
    margin-left: auto;
    margin-right: auto;
}

.block .block__subtitle+.block__copy {
    margin-top: 19px;
}

.block .block__subtitle.block__subtitle--wide {
    max-width: 790px;
}

.block .block__subtitle.block__subtitle--big {
    font-size: 2.375rem;
    line-height: 2.625rem;
    max-width: 760px;
}

.block .block__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 2.6875rem;
    max-width: 666px;
    margin-left: auto;
    margin-right: auto;
}

.block .block__copy:first-child,
.block .block__copy:first-child p:first-child {
    margin-top: 0;
}

.block .block__copy p:last-child {
    margin-bottom: 0;
}

.block .block__copy.block__copy--big {
    font-size: 1.25rem;
    line-height: 1.875rem;
    max-width: 750px;
    margin-bottom: 40px;
}

.block .block__copy.block__copy--wide {
    max-width: 790px;
}

.block .block__copy ol,
.block .block__copy ul,
.block .block__copy.search-results {
    text-align: left;
}

.block .block__cta-link {
    text-transform: uppercase;
    font-size: 1rem;
    color: #333f48;
    line-height: 2.25rem;
    font-weight: 700;
    display: block;
    margin-top: 20px;
}

.block .block__cta-link:hover {
    color: #6cab36;
}

.block .block__pagination {
    display: flex;
    margin-top: 54px;
    clear: both;
    font-size: 1.125rem;
}

.block .block__pagination .block__pagination__left {
    width: calc(37.5% - 5.5px);
    float: left;
    margin-left: 4px;
    line-height: 64px;
}

.block .block__pagination .block__pagination__right {
    width: calc(62.5% - 6.5px);
    float: left;
    margin-left: 4px;
    text-align: right;
}

.block .block__cta {
    text-align: center;
    margin-top: 50px;
}

.block .block__image {
    margin-top: 50px;
}

.block .block__image:first-child {
    margin-top: 0;
}

.block .block__image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .block {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .block .block__inner.block__inner--container {
        max-width: 708px;
    }

    .block .block__title {
        font-size: 2.875rem;
        line-height: 2.875rem;
        margin-bottom: 30px;
    }

    .block .block__title:after {
        content: "";
        width: 231px;
        height: 1px;
        position: absolute;
        top: auto;
        right: 0;
        bottom: -15px;
        left: 0;
    }

    .block .block__title.block__title--small {
        font-size: 2.875rem;
        line-height: 2.875rem;
        margin-bottom: 30px;
    }

    .block .block__title.block__title--line-far {
        margin-bottom: 26px;
    }

    .block .block__title.block__title--line-far:after {
        bottom: -15px;
    }

    .block .block__title.block__title--h1 {
        margin-bottom: 26px;
    }

    .block .block__title.block__title--h1:after {
        bottom: -15px;
    }

    .block .block__title.block__title--h2 {
        font-size: 2.4rem;
        line-height: 4.5rem;
        margin-bottom: 26px;
    }

    .block .block__title.block__title--h2:after {
        bottom: -15px;
    }

    .block .block__subtitle {
        font-size: 2rem;
        line-height: 2.375rem;
        max-width: 550px;
    }

    .block .block__copy {
        font-size: 1.125rem;
        font-weight: 300;
        line-height: 1.625rem;
        margin-top: 30px;
        max-width: 650px;
    }

    .block .block__copy.block__copy--big {
        font-size: 1.125rem;
        line-height: 1.625rem;
        max-width: 550px;
        margin-bottom: 35px;
    }

    .block .block__cta-link {
        margin-top: 15px;
    }

    .block .block__cta {
        margin-top: 40px;
    }

    .block .block__pagination {
        margin-top: 30px;
        font-size: 1rem;
    }

    .block .block__pagination .block__pagination__left {
        width: calc(25% - 5px);
        float: left;
        margin-left: 4px;
        line-height: 58px;
    }

    .block .block__pagination .block__pagination__right {
        width: calc(75% - 7px);
        float: left;
        margin-left: 4px;
        text-align: right;
    }
}

@media (max-width: 767px) {
    .block {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .block .block__inner.block__inner--container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .block .block__title {
        font-size: 2.125rem;
        line-height: 2.5rem;
        margin-bottom: 28px;
    }

    .block .block__title:after {
        bottom: -12px;
        width: 150px;
    }

    .block .block__title.block__title--small {
        font-size: 2.125rem;
        line-height: 2.5rem;
        margin-bottom: 26px;
    }

    .block .block__title.block__title--small:after {
        bottom: -16px;
    }

    .block .block__title.block__title--small.block__title--line-far:after {
        bottom: -20px;
    }

    .block .block__title.block__title--h1 {
        font-size: 2.125rem;
        line-height: 2.1875rem;
        margin-bottom: 35px;
    }

    .block .block__title.block__title--h1:after {
        bottom: -16px;
    }

    .block .block__title.block__title--h2 {
        font-size: 2.125rem;
        line-height: 4.5rem;
    }

    .block .block__subtitle {
        font-size: 1.625rem;
        line-height: 2.125rem;
    }

    .block .block__copy {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 26px;
    }

    .block .block__copy.block__copy--big {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .block .block__pagination {
        display: block;
        margin-top: 20px;
        margin-left: -4px;
        margin-right: -4px;
        width: calc(100% + 8px);
    }

    .block .block__pagination:after {
        clear: both;
        content: "";
        display: table;
    }

    .block .block__pagination .block__pagination__left {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
        font-size: 1rem;
        line-height: 1.625rem;
        text-align: center;
    }

    .block .block__pagination .block__pagination__right {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
        text-align: center;
        margin-top: 20px;
    }
}

.ticker {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    font-weight: 300;
    color: #fff;
    background-color: #1c1f20;
    padding: 14px 0;
    position: relative;
    z-index: 4500;
}

.ticker .ticker__inner {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.ticker .ticker__inner:after {
    clear: both;
    content: "";
    display: block;
}

.ticker a {
    text-decoration: none;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .ticker input[type="button"],
.ticker #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
.ticker .btn {
    margin-right: 18px;
    padding-left: 18px;
    padding-right: 18px;
    white-space: nowrap;
}

.ticker .orange {
    text-transform: uppercase;
    font-weight: 700;
}

.ticker .close {
    position: absolute;
    right: 0;
    width: 26px;
    cursor: pointer;
}

.ticker+.search-bar {
    top: 57px;
}

.ticker .ticker__divider {
    display: inline-block;
    width: 16px;
    text-align: center;
}

.ticker .ticker__divider:before {
    content: "|";
}

.ticker .ticker__content {
    display: inline-block;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .ticker {
        font-size: 1rem;
        line-height: 1.4375rem;
        padding: 16px 30px;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .ticker .ticker__inner input[type="button"],
    .ticker .ticker__inner #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    .ticker .ticker__inner .btn {
        margin-right: 28px;
        height: 32px;
        box-sizing: border-box;
        margin-top: 6px;
    }
}

@media (max-width: 767px) {
    .ticker {
        font-size: 1rem;
        line-height: 1.4375rem;
        padding: 15px 20px;
    }

    .ticker .ticker__inner {
        margin-right: 23px;
        border-right: 1px solid hsla(0, 0%, 100%, 0.1);
    }

    .ticker .ticker__inner .close {
        right: -35px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 20px;
        height: 20px;
        font-size: 1.4375rem;
    }

    .ticker .ticker__inner .ticker__content {
        margin-top: 12px;
        line-height: 1.375rem;
    }
}

.hero {
    height: auto !important;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero.hero--tabbed {
    margin-bottom: -11px;
}

.hero .block__inner {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-content: space-between;
    height: 100%;
    z-index: 10000;
}

.hero .hero__cookie {
    position: absolute;
    top: auto;
    right: 50px;
    bottom: 35px;
    left: auto;
    background-color: #fff;
    text-align: center;
    -moz-transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.hero .hero__cookie.hidden {
    opacity: 0;
}

.hero .hero__cookie .hero__cookie__copy {
    padding: 25px;
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #333f48;
}

.hero .hero__cookie .hero__cookie__close {
    display: block;
    background-color: #6cab36;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 2.5625rem;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

.hero .hero__top {
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero .hero__top:after {
    clear: both;
    content: "";
    display: table;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hero .hero__top.sticky {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    animation-name: slideDown;
    animation-duration: 0.3s;
    margin-top: 0;
    background-color: #fff;
    border-bottom: 1px solid #dbdcdd;
    z-index: 4000;
    padding: 15px 53px;
}

.hero .hero__top.sticky .hero__logo {
    background: url(../fonts/logo-colored.svg?3550e6d1cf0b6691045d8b23f8d0c142) no-repeat 50%;
    background-size: 100%;
}

.hero .hero__top.sticky .hero__logo:after {
    color: transparent;
}

.hero .hero__top.sticky .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]) {
    color: #000000;
    font-weight: 600;
}

.hero .hero__top.sticky .hero__nav .hero__nav__search {
    border-color: #888b8d;
    color: #888b8d;
}

.hero .hero__top.sticky .hero__nav .hero__nav__careers {
    color: #888b8d;
}

.hero .hero__top.sticky .hero__nav .hero__nav__careers:after {
    font-weight: 600;
}

.hero .hero__top.sticky .hero__nav__bottom ul li a:not(.nav__toggle) {
    color: #393b3c;
}

.hero .hero__nav__left {
    width: calc(37.5% - 5.5px);
    float: left;
    margin-left: 4px;
}

.hero .hero__logo {
    display: inline-block;
    width: 200px;
    height: 53px;
    overflow: hidden;
    margin-top: 20px;
    background: url(../images/logo-white.png?cfcda202d2f632e56851ff9b9f74ce7e) no-repeat 50%;
    background-size: 100%;
    float: left;
}

.hero .hero__logo--spherical {
    display: inline-block;
    width: 200px;
    overflow: hidden;
    text-decoration: none;
    float: left;
}

.hero .hero__nav {
    /* float: left; */
    width: calc(100% - 270px);
    text-align: right;
    color: #fff;
    margin-left: auto;
}

.hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]) {
    color: #000;
    text-decoration: none;
}

.hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):focus,
.hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):hover {
    text-decoration: underline;
}

.hero .hero__nav .hero__nav__top {
    font-size: 0;
}

.hero .hero__nav .hero__nav__search {
    color: #9797979c !important;
    text-decoration: none;
    vertical-align: top;
    border: 1px solid #979797b8;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    text-align: center;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
}

.hero .hero__nav .hero__nav__search:after {
    content: "\E94D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    line-height: inherit;
    font-size: 16px;
    line-height: 28px;
}

.hero .hero__nav .hero__nav__careers {
    display: none !important;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding-left: 30px;
    margin-right: 22px;
    position: relative;
    display: inline-block;
}

.hero .hero__nav .hero__nav__pcenter {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding-left: 0;
    margin-right: 22px;
    position: relative;
    display: inline-block;
}

.hero .hero__nav .hero__nav__careers:after {
    content: "\E951";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 4px;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto 0;
    font-size: 18px;
}

.hero .hero__nav .hero__nav__careers:hover,
.hero .hero__nav .hero__nav__pcenter:hover {
    color: #6cab36;
    text-decoration: none !important;
}

.hero .hero__nav .hero__nav__burger {
    display: none;
}

.hero .hero__nav .hero__nav__bottom {
    margin-top: 45px;
}

.hero .hero__nav .hero__nav__bottom>ul {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.hero .hero__nav .hero__nav__bottom>ul>li {
    display: inline-block;
    position: relative;
    line-height: 1rem;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.hero .hero__nav .hero__nav__bottom>ul>li:before {
    display: none !important;
}

.hero .hero__nav .hero__nav__bottom>ul>li+li {
    margin-top: 0;
    margin-left: 40px;
}

.hero .hero__nav .hero__nav__bottom>ul>li:before {
    display: none;
}

.hero .hero__nav .hero__nav__bottom>ul>li>a:not(.nav__toggle) {
    color: #000;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    -moz-transition: color 0.07s ease-in-out;
    -webkit-transition: color 0.07s ease-in-out;
    -ms-transition: color 0.07s ease-in-out;
    -o-transition: color 0.07s ease-in-out;
    transition: color 0.07s ease-in-out;
    padding-bottom: 13px;
}

.hero .hero__nav .hero__nav__bottom>ul>li>a:not(.nav__toggle):after,
.hero .hero__nav .hero__nav__bottom>ul>li>a:not(.nav__toggle):before {
    content: "";
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 4px;
    left: 50%;
    height: 5px;
    background-color: #007643 !important;
    opacity: 0;
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
    pointer-events: none;
}

.hero .hero__nav .hero__nav__bottom>ul>li.current-menu-item>a:not(.nav__toggle):after,
.hero .hero__nav .hero__nav__bottom>ul>li.current-menu-item>a:not(.nav__toggle):before {
    content: "";
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 4px;
    left: 50%;
    height: 0px;
    background-color: #6cab36;
    opacity: 0;
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
    pointer-events: none;
}

.hero .hero__nav .hero__nav__bottom>ul>li:hover>a {
    color: #6cab36;
    text-decoration: none;
}

.hero .hero__nav .hero__nav__bottom>ul>li:hover>a:before {
    opacity: 1;
    left: 0;
}

.hero .hero__nav .hero__nav__bottom>ul>li:hover>a:after {
    opacity: 1;
    right: 0;
}

.hero .hero__nav .hero__nav__bottom>ul>li:hover>ul {
    display: block !important;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul {
    display: none;
    position: absolute;
    top: calc(100% + 7px);
    right: auto;
    bottom: auto;
    left: 0;
    border-top: 7px solid #6cab36;
    background-color: #fff;
    text-align: left;
    padding: 15px;
    min-width: 150px;
    z-index: 210;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 0;
    border-color: #6cab36 transparent transparent;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li {
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
    white-space: nowrap;
    padding: 10px;
}

.sub-menu .menu-item:not(.menu-item-has-children) {
    padding-left: 15px !important;
}

.sub-menu .menu-item-has-children>a {
    display: block;
    margin-bottom: 10px;
}

.sub-menu .menu-item-has-children:not(:first-of-type) a {
    margin-top: 10px;
}

@media (min-width: 1025px) {
    .sub-menu {
        box-shadow: 0px 1px 6px 1px #0000002b;
    }
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li:before {
    display: none !important;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li+li {
    margin-top: 0;
    border-top: 1px solid #dbdcdd;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li+li:last-of-type {
    padding-bottom: 0;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li a {
    color: #393b3c !important;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none !important;
}

.hero .hero__nav .hero__nav__bottom>ul>li>ul li a:hover {
    color: #007643 !important;
    text-decoration: none !important;
}

.hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile {
    display: none;
}

.hero .hero__content {
    color: #000;
    text-align: center;
    flex: 2;
    display: flex;
    box-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 600px) {
    .hero .hero__content {
        margin-top: 2rem;
    }
}

@media (min-width: 1025px) {
    .hero .hero__content {
        margin-top: 0;
    }
}

.short_text {
    text-align: start;
}

.hero .hero__content .hero__title,
.hero .hero__content h1 {
    max-width: 890px;
    margin: 0 0 1rem;
    font-size: 50px;
    text-align: left;
    font-weight: bold;
    line-height: 1;
}

.hero .hero__content .hero__title.hero__title--small,
.hero .hero__content h1.hero__title--small {
    font-size: 3.75rem;
    line-height: 4.5rem;
    font-weight: 200;
}

.hero .hero__content .hero__intro {
    /* font-size: 20px; */
    /* line-height: 1.5; */
    max-width: 750px;
    margin: 25px 0 0;
    text-align: left;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 28px;
    /* color: #505354; */
}

.hero .hero__content .hero__cta {
    margin-bottom: 17px;
    min-width: 155px;
}

.hero .hero__nav .hero__nav__bottom>ul>li:hover>ul {
    display: none !important;
}

@media (min-width: 1200px) and (max-width: 3000px) {
    .hero .hero__nav .hero__nav__bottom>ul>li+li {
        margin-left: 25px;
    }

    .page-template-template-spherical-2023 .hero .hero__nav .hero__nav__bottom>ul>li+li {
        margin-left: 50px;
    }

    .hero .hero__nav .hero__nav__bottom>ul>li:hover>ul {
        display: block !important;
        position: absolute;
        top: 29px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero .hero__nav .hero__nav__bottom ul li a ul li a:not(.nav__toggle) {
        display: block;
        width: calc(100% - 40px);
        font-size: 1rem;
        line-height: 1rem;
        padding: 16px 0;
        color: #393b3c;
        font-weight: 700;
        text-decoration: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a ul li a:not(.nav__toggle):after,
    .hero .hero__nav .hero__nav__bottom ul li a ul li a:not(.nav__toggle):before {
        display: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a ul li a.nav__toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        height: 48px;
        display: block;
        float: right;
        z-index: 220;
        cursor: pointer;
    }

    .hero .hero__nav .hero__nav__bottom>ul>li>ul li {
        padding-right: 25px;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu li a.nav__toggle:before {
        content: "";
        color: #6cab36;
        border-top: 6px solid;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        position: absolute;
        top: calc(50% - 2px);
        right: calc(50% - 5px);
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu li a.nav__toggle {
        width: 30px;
        float: right;
        height: 30px;
        background-color: #fff;
        border-radius: 3px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 3px;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle.active:before {
        border-top: none;
        border-bottom: 6px solid;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu {
        border-top: none;
        position: relative;
        padding: 0;
    }

    ul.sub-menu li.menu-item-has-children {
        min-width: 300px;
        position: relative;
    }

    ul ul.sub-menu {
        display: none;
    }

    ul ul.sub-menu.active {
        display: block;
    }

    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__careers,
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__pcenter {
        display: block;
        text-align: left;
        margin-right: 0;
        margin-top: 17px;
        margin-bottom: 17px;
        color: #888b8d;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .hero__fade {
        opacity: 0;
        transition: opacity 0.25s ease;
        z-index: 3999;
    }

    .hero__fade.active {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(62, 76, 91, 0.95);
        opacity: 1;
    }

    .hero {
        padding: 0 60px;
        margin-top: 88px;
        /* height: 474px; */
    }

    .hero.hero--icon {
        margin-bottom: 12px;
    }

    .hero .hero__cookie {
        display: none;
    }

    .hero .hero__top {
        margin-top: 0;
        position: absolute;
        top: -88px;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 4000;
        background: #fff;
        height: 88px;
        box-sizing: border-box;
    }

    .hero .hero__top,
    .hero .hero__top.sticky {
        padding: 26px 30px;
    }

    .hero .hero__logo {
        height: 36.13px;
        margin-top: 0;
        width: 188px;
        background: url(../fonts/logo-colored.svg?3550e6d1cf0b6691045d8b23f8d0c142) no-repeat 50%;
        background-size: cover;
    }

    .hero .hero__logo:after {
        display: none;
    }

    .hero .hero__nav {
        width: calc(100% - 188px);
    }

    .hero .hero__nav:after {
        clear: both;
        content: "";
        display: table;
    }

    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]) {
        color: #888b8d;
        text-decoration: none;
    }

    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):focus,
    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):hover {
        text-decoration: underline;
    }

    .hero .hero__nav .hero__nav__top {
        margin-top: 0;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .hero .hero__nav .hero__nav__top input[type="button"],
    .hero .hero__nav .hero__nav__top #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    .hero .hero__nav .hero__nav__top .btn {
        display: none;
    }

    .hero .hero__nav .hero__nav__search {
        color: #888b8d;
        border-color: #888b8d;
        margin-right: 15px;
        width: 35px;
        height: 32px;
        line-height: 32px;
    }

    .hero .hero__nav .hero__nav__search:after {
        line-height: 32px;
    }

    .hero .hero__nav .hero__nav__careers,
    .hero .hero__nav .hero__nav__pcenter {
        display: none;
    }

    .hero .hero__nav .hero__nav__burger {
        display: inline-block;
        width: 40px;
        height: 36px;
        background-color: #6cab36;
        border-radius: 5px;
    }

    .hero .hero__nav .hero__nav__bottom {
        display: none;
        position: absolute;
        top: 88px;
        right: 0;
        bottom: auto;
        left: auto;
        width: 289px;
        background-color: #fff;
        margin-top: 0;
        z-index: 4000;
        border-top: 1px solid #dbdcdd;
        padding: 0 27px;
    }

    .hero .hero__nav .hero__nav__bottom.active {
        display: block;
    }

    .hero .hero__nav .hero__nav__bottom ul li {
        display: block;
        text-align: left;
    }

    .hero .hero__nav .hero__nav__bottom ul li+li {
        border-top: 1px solid #dbdcdd;
        margin-top: 0;
        margin-left: 0;
    }

    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle) {
        display: block;
        width: calc(100% - 40px);
        font-size: 1rem;
        line-height: 1rem;
        padding: 16px 0;
        color: #393b3c;
        font-weight: 700;
        text-decoration: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle):after,
    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle):before {
        display: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        height: 48px;
        display: block;
        float: right;
        z-index: 220;
        cursor: pointer;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle:before {
        content: "";
        color: #6cab36;
        position: absolute;
        top: 22px;
        right: 0;
        bottom: 0;
        left: auto;
        height: 0;
        border-top: 6px solid;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle.active:before {
        border-top: none;
        border-bottom: 6px solid;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu {
        border-top: none;
        position: relative;
        padding: 0;
        display: none !important;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu.active {
        display: block !important;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu:before {
        display: none;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu li {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile {
        display: block;
        border-top: 1px solid #dbdcdd;
    }

    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__careers,
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__pcenter {
        display: block;
        text-align: left;
        margin-right: 0;
        margin-top: 17px;
        margin-bottom: 17px;
        color: #888b8d;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile input[type="button"],
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .btn {
        display: block;
        text-align: center;
        margin-left: -27px;
        margin-right: -27px;
        border-radius: 0;
        font-size: 1.0625rem;
        padding: 17px 22px;
    }

    .hero .hero__content .hero__title,
    .hero .hero__content h1 {
        font-size: 3.375rem;
        line-height: 3.625rem;
    }

    .hero .hero__content .hero__title.hero__title--small,
    .hero .hero__content h1.hero__title--small {
        font-size: 3.125rem;
        line-height: 3.625rem;
    }

    .hero .hero__content .hero__intro {
        font-size: 1.125rem;
        line-height: 1.625rem;
        /* margin: 25px auto 35px; */
    }

    .hero .hero__content .hero__cta {
        margin-bottom: 17px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 0 20px;
        margin-top: 64px;
        /* height: 506px; */
    }

    .hero .hero__cookie {
        display: none;
    }

    .hero .hero__top {
        margin-top: 0;
        position: absolute;
        top: -64px;
        right: 0;
        bottom: auto;
        left: 0;
        background: #fff;
    }

    .hero .hero__top,
    .hero .hero__top.sticky {
        padding: 14px 20px;
    }

    .hero .hero__logo {
        height: 27px;
        margin-top: 5px;
        width: 140px;
        background: url(../fonts/logo-colored.svg?3550e6d1cf0b6691045d8b23f8d0c142) no-repeat 50%;
        background-size: cover;
    }

    .hero .hero__logo:after {
        display: none;
    }

    .hero .hero__nav {
        width: calc(100% - 140px);
    }

    .hero .hero__nav:after {
        clear: both;
        content: "";
        display: table;
    }

    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]) {
        color: #888b8d;
        text-decoration: none;
    }

    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):focus,
    .hero .hero__nav a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]):hover {
        text-decoration: underline;
    }

    .hero .hero__nav .hero__nav__top {
        margin-top: 0;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .hero .hero__nav .hero__nav__top input[type="button"],
    .hero .hero__nav .hero__nav__top #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    .hero .hero__nav .hero__nav__top .btn {
        display: none;
    }

    .hero .hero__nav .hero__nav__search {
        color: #888b8d;
        border-color: #888b8d;
        width: 36px;
        height: 32px;
        margin-right: 15px;
    }

    .hero .hero__nav .hero__nav__search:after {
        line-height: 32px;
    }

    .hero .hero__nav .hero__nav__careers,
    .hero .hero__nav .hero__nav__pcenter {
        display: none;
    }

    .hero .hero__nav .hero__nav__burger {
        display: inline-block;
        width: 40px;
        height: 36px;
        background-color: #6cab36;
        border-radius: 5px;
    }

    .hero .hero__nav .hero__nav__bottom {
        display: none;
        position: absolute;
        top: 64px;
        right: 0;
        bottom: auto;
        left: 0;
        background-color: #fff;
        margin-top: 0;
        z-index: 4000;
        border-top: 1px solid #dbdcdd;
        padding: 0 44px;
        max-height: calc(100vh - 65px);
        overflow: scroll;
    }

    .hero .hero__nav .hero__nav__bottom.active {
        display: block;
    }

    .hero .hero__nav .hero__nav__bottom ul li {
        display: block;
        text-align: left;
    }

    .hero .hero__nav .hero__nav__bottom ul li+li {
        border-top: 1px solid #dbdcdd;
        margin-top: 0;
        margin-left: 0;
    }

    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle) {
        display: block;
        width: calc(100% - 70px);
        font-size: 1rem;
        line-height: 1rem;
        padding: 16px 0;
        color: #393b3c;
        font-weight: 700;
        text-decoration: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle):after,
    .hero .hero__nav .hero__nav__bottom ul li a:not(.nav__toggle):before {
        display: none;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle {
        position: absolute;
        right: -15px;
        top: 0;
        width: 60px;
        height: 48px;
        display: block;
        float: right;
        z-index: 220;
        cursor: pointer;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle:before {
        content: "";
        color: #6cab36;
        position: absolute;
        top: 22px;
        right: 0;
        bottom: 0;
        left: auto;
        height: 0;
        border-top: 6px solid;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        margin-right: 15px;
    }

    .hero .hero__nav .hero__nav__bottom ul li a.nav__toggle.active:before {
        border-top: none;
        border-bottom: 6px solid;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu {
        border-top: none;
        position: relative;
        padding: 0;
        display: none !important;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu.active {
        display: block !important;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu:before {
        display: none;
    }

    .hero .hero__nav .hero__nav__bottom ul.sub-menu li {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile {
        display: block;
        border-top: 1px solid #dbdcdd;
        text-align: center;
    }

    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__careers,
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .hero__nav__pcenter {
        display: block;
        text-align: left;
        margin-right: 0;
        margin-top: 17px;
        margin-bottom: 17px;
        color: #888b8d;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile input[type="button"],
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    .hero .hero__nav .hero__nav__bottom .hero__nav__bottom__mobile .btn {
        display: block;
        text-align: center;
        margin-left: -44px;
        margin-right: -44px;
        border-radius: 0;
        font-size: 1.0625rem;
        padding: 17px 22px;
    }

    .hero .hero__content .hero__title,
    .hero .hero__content .hero__title.hero__title--small,
    .hero .hero__content h1,
    .hero .hero__content h1.hero__title--small {
        /* font-size: 2.375rem; */
        line-height: 2.375rem;
        margin-block: 2rem;
    }

    .hero .hero__content .hero__intro {
        /* font-size: 1rem; */
        line-height: 1.375rem;
        /* margin: 25px auto 35px; */
    }

    .hero .hero__content .hero__cta {
        margin-bottom: 17px;
    }
}

.hero__nav__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero__nav__top .btn.btn-green {
    padding: 8px 30px;
    border-radius: 20px;
}

.search-bar {
    background-color: #202324;
    border-bottom: 8px solid #6cab36;
    height: 105px;
    z-index: 5000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    -moz-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    -webkit-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    -ms-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    -o-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    margin-top: -105px;
    opacity: 0;
    pointer-events: none;
}

.search-bar.active {
    display: block;
    margin-top: 0;
    opacity: 1;
    pointer-events: all;
}

.search-bar .search-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.search-bar .search-bar__inner:after {
    clear: both;
    content: "";
    display: block;
}

.search-bar .close {
    display: inline-block;
    width: 26px;
    font-size: 1.875rem;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
}

.search-bar form {
    margin-bottom: 0;
}

.search-bar input[type="search"],
.search-bar input[type="text"] {
    border: none;
    color: #fff;
    font-size: 2.125rem;
    background: 0 0;
    display: inline-block;
    width: calc(100% - 118px);
    box-sizing: border-box;
}

.search-bar input[type="search"]::-webkit-input-placeholder,
.search-bar input[type="text"]::-webkit-input-placeholder {
    color: #fff;
    transition: opacity 0.25s ease-in-out;
}

.search-bar input[type="search"]:focus::-webkit-input-placeholder,
.search-bar input[type="text"]:focus::-webkit-input-placeholder {
    opacity: 0.5;
}

.search-bar input[type="search"]:-ms-input-placeholder,
.search-bar input[type="text"]:-ms-input-placeholder {
    color: #fff;
    transition: opacity 0.25s ease-in-out;
}

.search-bar input[type="search"]:focus:-ms-input-placeholder,
.search-bar input[type="text"]:focus:-ms-input-placeholder {
    opacity: 0.5;
}

.search-bar input[type="search"]::-moz-placeholder,
.search-bar input[type="text"]::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.search-bar input[type="search"]:-moz-placeholder,
.search-bar input[type="text"]:-moz-placeholder {
    color: #fff;
}

.search-bar input[type="search"]:focus,
.search-bar input[type="text"]:focus {
    color: #fff;
}

.search-bar button {
    width: 56px;
    height: 56px;
    background-color: #6cab36;
    border-radius: 28px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: none;
    position: relative;
    display: inline-block;
}

.search-bar button:after {
    content: "\E94D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 27px;
    color: #fff;
}

.benefits .benefits__item {
    width: calc(25% - 5px);
    float: left;
    margin-left: 4px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.benefits .benefits__icon svg {
    max-width: 102px;
    width: auto !important;
    height: auto !important;
    margin: auto;
}

.benefits .benefits__icon span {
    color: #6cab36;
    border: 2px solid #6cab36;
    border-radius: 98px;
    width: 98px;
    height: 98px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.benefits .benefits__icon.benefits__icon--data span {
    position: relative;
    display: inline-block;
}

.benefits .benefits__icon.benefits__icon--data span:after {
    content: "\E903";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2.9375rem;
    line-height: 6.125rem;
}

.benefits .benefits__icon.benefits__icon--light-bulb span {
    position: relative;
    display: inline-block;
}

.benefits .benefits__icon.benefits__icon--light-bulb span:after {
    content: "\E908";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2.9375rem;
    line-height: 6.125rem;
}

.benefits .benefits__icon.benefits__icon--speech-bubbles span {
    position: relative;
    display: inline-block;
}

.benefits .benefits__icon.benefits__icon--speech-bubbles span:after {
    content: "\E94E";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2.9375rem;
    line-height: 6.125rem;
}

.benefits .benefits__title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #393b3c;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 35px;
}

.benefits .benefits__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .benefits .block__inner {
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    .benefits .benefits__item {
        width: calc(50% - 6px);
        float: left;
        margin-left: 4px;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .benefits .benefits__item:nth-child(n + 3) {
        margin-top: 27px;
    }

    .benefits .benefits__title {
        font-size: 1.125rem;
        line-height: 1.375rem;
        margin-top: 30px;
    }

    .benefits .benefits__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

@media (max-width: 767px) {
    .benefits .block__inner {
        overflow: scroll;
        white-space: nowrap;
    }

    .benefits .benefits__item {
        width: 180px;
        float: none;
        white-space: normal;
        display: inline-block;
        padding-left: 0;
        padding-right: 0;
        vertical-align: top;
    }

    .benefits .benefits__item:first-child {
        margin-left: 0;
    }

    .benefits .benefits__item:last-child {
        margin-right: 20px;
    }

    .benefits .benefits__title {
        font-size: 1.125rem;
        line-height: 1.3125rem;
        margin-top: 15px;
    }

    .benefits .benefits__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

.products {
    padding-bottom: 105px;
}

.products,
.products.block--has-next-bottom .block__next {
    background-color: #edf0f3;
}

.products.products--related {
    padding-top: 95px;
    padding-bottom: 115px;
}

.products.products--related .products__items {
    margin-top: 70px;
}

.products .products__title {
    text-align: center;
    font-size: 3.75rem;
    line-height: 4.5rem;
    color: #393b3c;
    font-weight: 200;
}

.products .products__copy {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 300;
}

.products .products__items {
    margin-top: 45px;
    text-align: center;
}

.products .products__items:after {
    clear: both;
    content: "";
    display: block;
}

.products .products__item {
    width: calc(25% - 5px);
    display: inline-block;
    vertical-align: top;
    position: relative;
    box-sizing: border-box;
    padding-top: 55px;
    padding-bottom: 20px;
    border-bottom: 11px solid;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    min-height: 296px;
}

.products .products__item:nth-child(5n) {
    clear: both;
}

.products .products__item:nth-child(n + 5) {
    margin-top: 4px;
}

.products__item__icon-container {
    width: 100%;
    text-align: center;
}

.products__items.equal-height .products__item {
    margin-top: 0;
    height: auto !important;
}

.products__item__icon-container svg {
    display: block;
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
}

.products__item__overlay__copy p {
    margin: 0;
    font-size: 16px;
}

.products .products__item .products__item__icon svg {
    max-width: 130px;
}

.products .products__item .products__item__icon span:after {
    font-size: 130px;
    line-height: 130px;
}

.products .products__item .products__item__title {
    margin-top: 35px;
    font-size: 1.25rem;
    line-height: 1.4375rem;
    font-weight: 900;
    color: #333f48;
    text-transform: uppercase;
}

.products .products__item.products__item--green {
    border-color: #6cab36;
}

.products .products__item.products__item--green .products__item__icon {
    color: #6cab36;
}

.products .products__item.products__item--green .products__item__overlay {
    background: #6cab36;
    color: #fff;
}

.products .products__item.products__item--yellow {
    border-color: #ffc708;
}

.products .products__item.products__item--yellow .products__item__icon {
    color: #ffc708;
}

.products .products__item.products__item--yellow .products__item__overlay {
    background: #ffc708;
    color: #fff;
}

.products .products__item.products__item--orange {
    border-color: #f99e1d;
}

.products .products__item.products__item--orange .products__item__icon {
    color: #f99e1d;
}

.products .products__item.products__item--orange .products__item__overlay {
    background: #f99e1d;
    color: #fff;
}

.products .products__item.products__item--red {
    border-color: #e32726;
}

.products .products__item.products__item--red .products__item__icon {
    color: #e32726;
}

.products .products__item.products__item--red .products__item__overlay {
    background: #e32726;
    color: #fff;
}

.products .products__item.products__item--navy-dark {
    border-color: #333f48;
}

.products .products__item.products__item--navy-dark .products__item__icon {
    color: #333f48;
}

.products .products__item.products__item--navy-dark .products__item__overlay {
    background: #333f48;
    color: #fff;
}

.products .products__item.products__item--blue {
    border-color: #00c1d5;
}

.products .products__item.products__item--blue .products__item__icon {
    color: #00c1d5;
}

.products .products__item.products__item--blue .products__item__overlay {
    background: #00c1d5;
    color: #fff;
}

.products .products__item.products__item--purple {
    border-color: #b34fc5;
}

.products .products__item.products__item--purple .products__item__icon {
    color: #b34fc5;
}

.products .products__item.products__item--purple .products__item__overlay {
    background: #b34fc5;
    color: #fff;
}

.products .products__item.products__item--green-dark {
    border-color: #00966c;
}

.products .products__item.products__item--green-dark .products__item__icon {
    color: #00966c;
}

.products .products__item.products__item--green-dark .products__item__overlay {
    background: #00966c;
    color: #fff;
}

.products .products__item .products__item__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    z-index: 2;
    text-align: left;
    padding: 15px;
    color: #fff;
    background-color: #fff;
    -webkit-box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
}

.products .products__item .products__item__overlay .products__item__overlay__title {
    font-size: 1.25rem;
    line-height: 1.4375rem;
    font-weight: 900;
}

.products .products__item .products__item__overlay .products__item__overlay__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 1em;
}

.products .products__item .products__item__overlay .products__item__overlay__cta {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-top: 1em;
    display: inline-block;
}

.products .products__item .products__item__overlay .products__item__overlay__cta:hover {
    text-decoration: none;
}

.products .products__item:hover .products__item__overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -26px;
    left: -15px;
    padding: 30px;
    opacity: 1;
    z-index: 3;
}

@media (min-width: 768px) and (max-width: 1199px) {

    .products,
    .products.products--related {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .products.products--related .products__items {
        margin-top: 55px;
    }

    .products .products__items {
        margin-top: 34px;
    }

    .products .products__item {
        width: calc(33.33333% - 5.33333px);
        min-height: 234px;
        padding-top: 44px;
        border-bottom: 9px solid;
    }

    .products .products__item:nth-child(5n) {
        clear: none;
    }

    .products .products__item:nth-child(3n + 1) {
        clear: both;
    }

    .products .products__item:nth-child(n + 4) {
        margin-top: 4px;
    }

    .products .products__item .products__item__icon span:after {
        font-size: 102px;
        line-height: 102px;
    }

    .products .products__item .products__item__title {
        font-size: 1.125rem;
        line-height: 1.125rem;
        margin-top: 20px;
    }

    .products .products__item .products__item__overlay {
        padding: 15px;
    }

    .products .products__item .products__item__overlay .products__item__overlay__title {
        font-size: 1.125rem;
        line-height: 1.1875rem;
    }

    .products .products__item .products__item__overlay .products__item__overlay__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products .products__item:hover .products__item__overlay {
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .products {
        padding-top: 57px;
        padding-bottom: 60px;
    }

    .products .products__items {
        margin-top: 37px;
        margin-left: auto;
        margin-right: auto;
        max-width: 234px;
    }

    .products .products__item {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
        min-height: 234px;
        padding-top: 44px;
        border-bottom: 9px solid;
    }

    .products .products__item+.products__item {
        margin-top: 4px;
    }

    .products .products__item .products__item__icon span:after {
        font-size: 102px;
        line-height: 102px;
    }

    .products .products__item .products__item__title {
        font-size: 1.125rem;
        line-height: 1.125rem;
        margin-top: 20px;
    }

    .products .products__item .products__item__overlay {
        padding: 15px;
    }

    .products .products__item .products__item__overlay .products__item__overlay__title {
        font-size: 1.125rem;
        line-height: 1.1875rem;
    }

    .products .products__item .products__item__overlay .products__item__overlay__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products .products__item:hover .products__item__overlay {
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
        padding: 30px;
    }
}

.related {
    text-align: center;
    background: url(../images/related-banner.jpg?0d123c38a0be1c65b3227ad725ce6a67) no-repeat;
    background-size: cover;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.related .related__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 521px;
}

.related .block__inner {
    margin: 0 !important;
    width: 100%;
}

.related .block__cta {
    margin-top: 30px;
    min-width: 267px;
}

.related.related--white .block__copy,
.related.related--white .block__title {
    color: #fff;
}

.related.related--white .block__title:after {
    background-color: hsla(0, 0%, 100%, 0.3);
}

@media (max-width: 1199px) and (min-width: 768px) {

    .related,
    .related .related__inner {
        min-height: 422px;
    }

    .related .block__cta {
        margin-top: 30px;
        min-width: 231px;
    }
}

@media (max-width: 767px) {
    .related {
        display: block;
        padding-top: 52px;
        padding-bottom: 57px;
    }

    .related,
    .related .related__inner {
        min-height: 0;
    }

    .related .block__title {
        margin-bottom: 25px;
    }

    .related .block__title:after {
        width: 231px;
    }

    .related .block__copy {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 25px;
    }

    .related .block__cta {
        margin-top: 13px;
        min-width: 0;
    }
}

footer.footer-main {
    background-color: #1c1f20;
    color: #999;
    padding-top: 62px;
}

footer.footer-main .footer-main__top {
    border-bottom: 1px solid #393c3d;
    padding-bottom: 37px;
    display: flex;
}

footer.footer-main .footer-main__top:after {
    clear: both;
    content: "";
    display: table;
}

footer.footer-main .footer-main__top .footer-main__column {
    box-sizing: border-box;
}

footer.footer-main .footer-main__top .footer-main__column:first-child {
    width: 30%;
    float: left;
    /*
  border-right: 1px solid #393c3d;
  */
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) {
    width: 30%;
    float: left;
    /*
  padding-left: 60px;
  padding-right: 60px;
  border-right: 1px solid #393c3d;
  */
}

footer.footer-main--spherical .footer-main__top .footer-main__column:nth-child(2) {
    width: 40%;
    float: left;
    padding-left: 60px;
    padding-right: 60px;
    /*
  border-right: 1px solid #393c3d;
  */
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(1) a,
footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a {
    display: block;
    float: left;
    clear: left;
    color: #fff;
    text-decoration: none;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a span {
    margin-right: 19px;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a:hover {
    color: #6cab36;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a+a {
    margin-top: 10px;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--location {
    font-size: 1.5rem;
    vertical-align: middle;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--email {
    font-size: 1.4375rem;
    vertical-align: middle;
    margin-right: 15px;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(1) .icon--email {
    font-size: 1.4375rem;
    vertical-align: middle;
    margin-right: 15px;
}

footer.footer-main .footer-main__top .footer-main__column:nth-child(3) {
    width: 51.83333%;
    float: left;
    padding-left: 80px;
}

footer.footer-main--spherical .footer-main__top .footer-main__column:nth-child(3) {
    width: 30%;
    float: left;
    /*
  padding-left: 120px;
  */
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__logo {
    overflow: hidden;
    color: #fff;
    width: 172px;
    height: 35px;
    display: block;
    background: url(../images/logo-white.png?cfcda202d2f632e56851ff9b9f74ce7e) no-repeat 50%;
    background-size: 100%;
}

footer.footer-main--spherical .footer-main__top .footer-main__column .footer-main__logo {
    background: none;
    text-decoration: none;
    height: auto;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links {
    border-bottom: 1px solid #393c3d;
    padding-top: 5px;
    padding-bottom: 30px;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links .footer-main__top__links__toggle {
    display: none;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul:after {
    clear: both;
    content: "";
    display: table;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li {
    display: block;
    width: 25%;
    float: left;
    text-align: center;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:before {
    display: none !important;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li+li {
    margin-top: 0;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:first-child {
    text-align: left;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:last-child {
    text-align: right;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:before {
    display: none;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.125rem;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li a:hover {
    color: #6cab36;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials {
    padding-top: 32px;
    text-align: right;
    font-size: 0;
}

footer.footer-main--spherical .footer-main__top .footer-main__column .footer-main__top__socials {
    padding-top: 0;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials:after {
    clear: both;
    content: "";
    display: table;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials a.btn {
    float: left;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social {
    background-color: #6cab36;
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -moz-transition: background-color 0.13s ease-in-out;
    -webkit-transition: background-color 0.13s ease-in-out;
    -ms-transition: background-color 0.13s ease-in-out;
    -o-transition: background-color 0.13s ease-in-out;
    transition: background-color 0.13s ease-in-out;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social:hover {
    background-color: #fff;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social+.footer-main__social {
    margin-left: 15px;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube {
    position: relative;
    display: inline-block;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube:after {
    content: "\E90B";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c1f20;
    font-size: 16px;
    line-height: 36px;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook {
    position: relative;
    display: inline-block;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook:after {
    content: "\E90C";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c1f20;
    font-size: 21px;
    line-height: 36px;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin {
    position: relative;
    display: inline-block;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin:after {
    content: "\E90E";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c1f20;
    font-size: 18px;
    line-height: 36px;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter {
    position: relative;
    display: inline-block;
}

footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter:after {
    content: "\E90D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c1f20;
    font-size: 18px;
    line-height: 36px;
}

footer.footer-main .footer-main__bottom {
    font-size: 0.875rem;
    line-height: 1.6875rem;
    padding-top: 20px;
}

footer.footer-main .footer-main__bottom a {
    color: #999;
    text-decoration: none;
}

footer.footer-main .footer-main__bottom a:hover {
    color: #6cab36;
    text-decoration: none;
}

footer.footer-main .footer-main__bottom .footer-main__bottom__divider:before {
    content: "|";
    color: #999;
    padding: 0 12px;
}

footer .hbspt-form .hs-form .hs-form-field {
    width: 100% !important;
    max-width: 206px;
}

footer .hbspt-form .hs-form .hs-input {
    padding: 8px 8px !important;
    border-radius: 0.25rem !important;
    font-size: 1rem !important;
}

footer .hbspt-form .hs-form .hs_submit .hs-button {
    padding: 8px 22px !important;
    margin: 12px 0 0 0 !important;
}

footer .hbspt-form .hs-form .hs-form-field:last-child {
    padding-left: 0;
}

footer .hbspt-form .hs-form .hs-form-field>label {
    padding-left: 0;
    margin-top: 5px;
}

footer .hbspt-form .hs-richtext span {
    line-height: 1;
}

footer .hbspt-form .hs-form .hs-form-field:first-child {
    padding-right: 0;
}

footer .newsletter-form {
    margin-top: 110px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    footer.footer-main {
        padding-top: 55px;
        padding-bottom: 62px;
    }

    footer.footer-main .footer-main__top {
        display: block;
        padding-bottom: 25px;
    }

    footer.footer-main .footer-main__top .footer-main__column {
        box-sizing: border-box;
    }

    footer.footer-main .footer-main__top .footer-main__column:first-child {
        width: 218px;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) {
        width: calc(100% - 218px);
        border-right: 0;
        padding-left: 23px;
        padding-right: 0;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) br {
        display: none;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a {
        width: 50%;
        display: inline-block;
        box-sizing: border-box;
        letter-spacing: 0.04em;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a:nth-child(2) {
        clear: none;
        margin-top: 0;
        border-left: 1px solid #393c3d;
        padding-left: 25px;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--location {
        font-size: 1.5rem;
        vertical-align: middle;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--email {
        font-size: 1.4375rem;
        vertical-align: middle;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(3) {
        width: 100%;
        padding-left: 0;
        margin-top: 25px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__logo {
        overflow: hidden;
        color: #fff;
        width: 172px;
        height: 35px;
        display: block;
        margin-top: 5px;
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__logo:after {
        content: "\E90A";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 172px;
        line-height: 35px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links {
        border-top: 1px solid #393c3d;
        border-bottom: 1px solid #393c3d;
        padding-top: 19px;
        padding-bottom: 15px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul {
        text-align: left;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li {
        display: inline-block;
        float: none;
        width: auto;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:first-child,
    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li:last-child {
        text-align: left;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li+li {
        margin-left: 57px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li a {
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1rem;
        letter-spacing: 0.04em;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials {
        padding-top: 20px;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials input[type="button"],
    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .btn {
        margin-top: 5px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social {
        background-color: #6cab36;
        display: inline-block;
        width: 36px;
        height: 36px;
        border-radius: 36px;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        -moz-transition: background-color 0.13s ease-in-out;
        -webkit-transition: background-color 0.13s ease-in-out;
        -ms-transition: background-color 0.13s ease-in-out;
        -o-transition: background-color 0.13s ease-in-out;
        transition: background-color 0.13s ease-in-out;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social:hover {
        background-color: #fff;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube:after {
        content: "\E90B";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 16px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook:after {
        content: "\E90C";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 21px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin:after {
        content: "\E90E";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 18px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter:after {
        content: "\E90D";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 18px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__bottom {
        font-size: 0.875rem;
        line-height: 1.6875rem;
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    footer.footer-main {
        background-color: #1c1f20;
        padding-top: 37px;
        padding-bottom: 190px;
    }

    footer.footer-main .footer-main__top {
        display: block;
        padding-bottom: 20px;
    }

    footer.footer-main .footer-main__top .footer-main__column {
        box-sizing: border-box;
    }

    footer.footer-main .footer-main__top .footer-main__column:first-child {
        width: 100%;
        border-right: 0;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) {
        width: 100%;
        border-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) br {
        display: none;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a {
        width: 100%;
        display: block;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a+a {
        margin-top: 8px;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--location {
        font-size: 1.5rem;
        vertical-align: middle;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--email {
        font-size: 1.4375rem;
        vertical-align: middle;
    }

    footer.footer-main .footer-main__top .footer-main__column:nth-child(3) {
        width: 100%;
        padding-left: 0;
        margin-top: 24px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__logo {
        overflow: hidden;
        color: #fff;
        width: 134px;
        height: 27px;
        display: block;
        margin-bottom: 22px;
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__logo:after {
        content: "\E90A";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 134px;
        line-height: 27px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links {
        border-top: 1px solid #393c3d;
        border-bottom: 1px solid #393c3d;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links .footer-main__top__links__toggle {
        display: inline-block;
        line-height: 2.25rem;
        font-weight: 700;
        color: #6cab36;
        text-transform: uppercase;
        position: relative;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links .footer-main__top__links__toggle:after {
        content: "+";
        color: #6cab36;
        border: 1px solid #fff;
        width: 25px;
        height: 25px;
        display: inline-block;
        vertical-align: middle;
        line-height: 25px;
        text-align: center;
        border-radius: 100%;
        font-size: 1.125rem;
        margin-left: 16px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links .footer-main__top__links__toggle.active:after {
        content: "-";
        font-size: 54px;
        line-height: 19px;
        font-weight: 100;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links .footer-main__top__links__toggle.active+ul {
        display: block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul {
        text-align: left;
        display: none;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li {
        display: block;
        float: none;
        width: auto;
        text-align: left !important;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li+li {
        margin-top: 20px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__links ul li a {
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1rem;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials {
        padding-top: 25px;
        text-align: left;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials a.btn {
        display: block;
        text-align: center;
        margin-bottom: 30px;
        float: none;
        padding: 12px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social {
        background-color: #6cab36;
        display: inline-block;
        width: 36px;
        height: 36px;
        border-radius: 36px;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        -moz-transition: background-color 0.13s ease-in-out;
        -webkit-transition: background-color 0.13s ease-in-out;
        -ms-transition: background-color 0.13s ease-in-out;
        -o-transition: background-color 0.13s ease-in-out;
        transition: background-color 0.13s ease-in-out;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social:hover {
        background-color: #fff;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--youtube:after {
        content: "\E90B";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 16px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--facebook:after {
        content: "\E90C";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 21px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--linkedin:after {
        content: "\E90E";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 18px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter {
        position: relative;
        display: inline-block;
    }

    footer.footer-main .footer-main__top .footer-main__column .footer-main__top__socials .footer-main__social.footer-main__social--twitter:after {
        content: "\E90D";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #1c1f20;
        font-size: 18px;
        line-height: 36px;
    }

    footer.footer-main .footer-main__bottom {
        font-size: 0.875rem;
        line-height: 1.6875rem;
        padding-top: 12px;
    }
}

.footer-form {
    background-color: #1f272e;
}

.page-id-6975 .footer-form {
    display: none;
}

.page-id-6975 .hbspt-form {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.page-id-6975 .hbspt-form label {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    font-size: 16px !important;
    line-height: 1em !important;
}

.page-id-6975 .hbspt-form .hs-form .hs-input {
    margin-top: 5px;
}

.page-id-6975 .hbspt-form .hs-form .hs_submit .hs-button {
    width: 100%;
    margin-top: 20px !important;
}

.hs_what_data_are_you_interested_in_.hs-what_data_are_you_interested_in_.hs-fieldtype-checkbox.field.hs-form-field {
    margin-top: 20px;
    margin-bottom: 20px;
}

.hs_syndicate_how_would_you_like_to_access_this_data_.hs-syndicate_how_would_you_like_to_access_this_data_.hs-fieldtype-select.field.hs-form-field {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
}

.hs_are_you_interested_in_buying_or_selling_2nd_party_data_.field.hs-form-field,
.hs_what_data_are_you_interested_in_.field.hs-form-field {
    width: 100% !important;
}

ul.inputs-list.multi-container {
    column-count: 2;
    column-gap: 40px;
}

ul.inputs-list.multi-container li {
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-form .gfield_required,
.footer-form .gform_wrapper .top_label .gfield_label,
.footer-form p,
.footer-form__heading {
    color: #fff;
}

.footer-form .gform_wrapper .top_label .gfield_label {
    padding-left: 0;
}

.footer-form .gfield_required {
    color: #fff;
}

.footer-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    margin-top: 0;
}

.footer-form .gform_wrapper ul li.gfield {
    margin-top: 20px;
}

.footer-form .gform_wrapper .gform_footer input.button,
.footer-form .gform_wrapper .gform_footer input[type="submit"] {
    width: 100%;
}

@media (min-width: 1200px) {
    .footer-form__content {
        background: url(../images/footer-form-icon.gif) no-repeat left top;
        float: left;
        padding-left: 9%;
        padding-top: 10px;
        width: 31%;
    }

    .footer-form__heading {
        max-width: 250px;
    }

    .footer-form--spherical .footer-form__content {
        background: none;
        padding-left: 0;
    }

    .footer-form--spherical .footer-form__heading {
        max-width: 100%;
    }

    .footer-form__form {
        float: left;
        width: 61%;
        margin-left: 8%;
    }

    .footer-form .gform_wrapper ul.gform_fields li.gfield {
        clear: none;
        padding-right: 0;
        margin-bottom: 0 !important;
    }

    .footer-form #field_8_1,
    .footer-form #field_8_2,
    .footer-form #field_8_3 {
        float: left;
        width: calc(33.3333% - 34px);
    }

    .footer-form #field_8_1,
    .footer-form #field_8_2,
    .footer-form #field_8_4 {
        margin-right: 50px;
    }

    .footer-form #field_8_4,
    .footer-form #field_8_5 {
        float: left;
        width: calc(50% - 25px);
    }

    .footer-form .gform_wrapper .gform_footer {
        float: left;
    }
}

.news {
    padding-bottom: 85px;
}

.news,
.news.block--has-next-bottom .block__next {
    background-color: #edf0f3;
}

.news .block__copy {
    text-align: center;
}

.news .news__items {
    margin-top: 35px;
    font-size: 0;
}

.news .news__items .news__item {
    width: calc(25% - 5px);
    float: left;
    margin-left: 4px;
    height: 296px;
    position: relative;
}

.news .news__items .news__item:first-child {
    margin-left: 0;
}

.news .news__items .news__item .news__item__meta {
    position: absolute;
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.news .news__items .news__item .news__item__meta .news__item__category {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news .news__items .news__item .news__item__meta .news__item__title {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.news .news__items .news__item .news__item__meta .news__item__date {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
}

.news .news__items .news__item .news__item__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
}

.news .news__items .news__item .news__item__background.empty-img {
    background-color: rgba(0, 0, 0, 0.4);
}

.news .news__items .news__item .news__item__background:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-image: -ms-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
    background-image: -webkit-linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    background-image: -moz-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

.news .news__items .news__item:hover {
    z-index: 1000;
}

.news .news__items .news__item:hover .news__item__background {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .news {
        padding-top: 70px;
        padding-bottom: 81px;
    }

    .news .news__items {
        white-space: nowrap;
        overflow-x: scroll;
        margin-right: -30px;
        padding-right: 30px;
        margin-top: 20px;
    }

    .news .news__items .news__item {
        width: 296px;
        height: 296px;
        float: none;
        display: inline-block;
        white-space: normal;
    }

    .news .news__items .news__item .news__item__meta {
        bottom: 17px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .news {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .news .block__copy {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .news .block__copy .block__cta-link {
        margin-top: 10px;
    }

    .news .news__items {
        white-space: nowrap;
        overflow-x: scroll;
        margin-right: -20px;
        padding-right: 20px;
        margin-top: 22px;
    }

    .news .news__items .news__item {
        width: 280px;
        height: 280px;
        float: none;
        display: inline-block;
        white-space: normal;
    }
}

.faqs {
    padding-top: 90px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .faqs {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    .faqs {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .faqs .block__title:after {
        bottom: -10px !important;
    }

    .faqs .block__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .faqs .accordion {
        margin-top: 35px;
    }

    .faqs .accordion .accordion__toggle {
        padding: 20px 40px 20px 15px !important;
    }
}

.interactive-map {
    background-color: #fff;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.interactive-map .block__next {
    background-color: #7cba54 !important;
    border-radius: 0 0 30px 30px !important;
    height: 25px !important;
    bottom: -23px !important;
}

.interactive-map .block__next:after {
    color: #e4ede9 !important;
    margin-top: 0 !important;
}

.interactive-map.started .block__next {
    background-color: #6eb241 !important;
}

.interactive-map .map__start {
    -moz-transition: opacity 0.37s ease-in-out;
    -webkit-transition: opacity 0.37s ease-in-out;
    -ms-transition: opacity 0.37s ease-in-out;
    -o-transition: opacity 0.37s ease-in-out;
    transition: opacity 0.37s ease-in-out;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 80px 30px;
    background-color: hsla(0, 0%, 100%, 0.1);
}

.interactive-map .map__start.active {
    opacity: 1;
    pointer-events: all;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons .interactive-map .map__start input[type="button"],
.interactive-map .map__start #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
.interactive-map .map__start .btn {
    width: 100%;
    max-width: 268px;
}

.interactive-map .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -20;
    opacity: 0;
    transition: opacity 0.3s, z-index 0 linear 0.3s;
}

.interactive-map .map-header {
    color: #fff;
    padding: 42px 3% 0;
    transition: all 0.25s;
}

.interactive-map .map-header h1 {
    color: #333;
}

.interactive-map .map-container {
    display: none;
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.interactive-map .map-container>.inner {
    position: relative;
}

.interactive-map .map-image {
    width: 100%;
    margin-bottom: 20px;
    z-index: 20;
}

.interactive-map .mobile-map {
    display: none;
    width: 100%;
}

.interactive-map .mobile-map img {
    width: 100%;
}

.interactive-map .pin {
    width: 10px;
    height: 1px;
    position: absolute;
    transform: scale(0);
    transition: transform 0.3s;
}

.interactive-map .pin.show {
    background-image: url(../fonts/map-pinpoint.svg?05485438be269e46aaa1e50640bb7795);
    background-size: 96%;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulsate 1.35s ease-in;
    animation-iteration-count: infinite;
}

.interactive-map .pin.freeze {
    animation: none;
}

.interactive-map .region {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -20;
}

.interactive-map .menu {
    background-color: #333f48;
    width: 100%;
    transition: width 0.3s linear 0.2s;
}

.interactive-map .menu-info {
    padding: 30px 20px 12px;
}

.interactive-map .menu-info h1 {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.interactive-map .menu-info p {
    font-size: 12px;
    line-height: normal;
    color: #86bb3b;
    margin-bottom: 0;
}

.interactive-map .menu-header {
    margin-bottom: 0;
    padding: 40px 40px 30px;
}

.interactive-map .menu-header h1 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 0;
    line-height: normal;
}

.interactive-map .menu-header .uniques {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 1rem;
    font-weight: 300;
    margin-top: 16px;
    margin-bottom: 0;
}

.interactive-map .menu-header select {
    display: block;
    width: 100%;
}

.interactive-map .menu-header select option:first-child {
    display: none;
}

.interactive-map .menu-list {
    padding: 0;
    list-style: none;
}

.interactive-map .menu-list a {
    display: inline-block;
    margin-top: 28px;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.interactive-map .menu-list a .icon {
    font-size: 12px;
    margin-left: 6px;
    margin-bottom: 14px;
}

.interactive-map .menu-list p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    list-style: none;
}

.interactive-map .menu-list p strong {
    color: #6cab36;
}

.interactive-map .menu-list li {
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
    padding: 45px 40px;
    cursor: pointer;
    color: #fff;
}

.interactive-map .menu-list li:before {
    display: none !important;
}

.interactive-map .menu-list li+li {
    margin-top: 0;
}

.interactive-map .menu-list li.selected {
    background-color: #ededed;
}

.interactive-map .menu-list li:not(first-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: 40px;
    bottom: auto;
    left: 40px;
    height: 1px;
    background-color: hsla(0, 0%, 100%, 0.3);
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-north-america"] {
    left: 17.5%;
    top: 22.5%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-south-america"] {
    left: 28%;
    top: 62%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-emea"] {
    left: 53.6%;
    top: 20.4%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-south-africa"] {
    left: 55%;
    top: 76%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-asia"] {
    left: 79%;
    top: 32%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-australasia"] {
    left: 92.2%;
    top: 73%;
}

.interactive-map .pingroup[data-slug="world"] .pin[data-slug="region-russia"] {
    left: 71.5%;
    top: 15%;
}

.interactive-map .region[data-slug="region-north-america"] {
    width: 22%;
    height: 32%;
    left: 6%;
    top: 14%;
}

.interactive-map .pingroup[data-slug="region-north-america"] .pin[data-slug="canada"] {
    left: 18%;
    top: 16%;
}

.interactive-map .pingroup[data-slug="region-north-america"] .pin[data-slug="united-states"] {
    left: 16.5%;
    top: 26%;
}

.interactive-map .pingroup[data-slug="region-north-america"] .pin[data-slug="mexico"] {
    left: 13.2%;
    top: 39%;
}

.interactive-map .region[data-slug="region-south-america"] {
    width: 24%;
    height: 36%;
    left: 16.5%;
    top: 54%;
}

.interactive-map .pingroup[data-slug="region-south-america"] .pin[data-slug="argentina"] {
    left: 26.6%;
    top: 83.5%;
}

.interactive-map .pingroup[data-slug="region-south-america"] .pin[data-slug="brazil"] {
    left: 29.5%;
    top: 65%;
}

.interactive-map .pingroup[data-slug="region-south-america"] .pin[data-slug="chile"] {
    left: 24.5%;
    top: 78%;
}

.interactive-map .pingroup[data-slug="region-south-america"] .pin[data-slug="colombia"] {
    left: 23.5%;
    top: 56.5%;
}

.interactive-map .region[data-slug="region-emea"] {
    width: 34%;
    height: 36%;
    left: 40%;
    top: 10%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="belgium"] {
    left: 49.2%;
    top: 20.8%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="denmark"] {
    left: 50.65%;
    top: 17%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="egypt"] {
    left: 57%;
    top: 37.5%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="finland"] {
    left: 54.5%;
    top: 13.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="france"] {
    left: 48.4%;
    top: 25%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="germany"] {
    left: 50.86%;
    top: 20.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="ireland"] {
    left: 45.7%;
    top: 19.2%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="israel"] {
    left: 59.2%;
    top: 33.8%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="italy"] {
    left: 52.1%;
    top: 27%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="netherlands"] {
    left: 49.82%;
    top: 19.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="norway"] {
    left: 50.4%;
    top: 14%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="pakistan"] {
    left: 71.5%;
    top: 36.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="poland"] {
    left: 51.8%;
    top: 19.6%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="saudi-arabia"] {
    left: 62.2%;
    top: 39%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="spain"] {
    left: 46.5%;
    top: 28%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="sweden"] {
    left: 52.5%;
    top: 12.5%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="switzerland"] {
    left: 50.6%;
    top: 23.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="turkey"] {
    left: 58%;
    top: 28.4%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="united-arab-emirates"] {
    left: 65.2%;
    top: 40%;
}

.interactive-map .pingroup[data-slug="region-emea"] .pin[data-slug="united-kingdom"] {
    left: 47.2%;
    top: 18%;
}

.interactive-map .region[data-slug="region-south-africa"] {
    width: 16%;
    height: 20%;
    left: 49.5%;
    top: 65%;
}

.interactive-map .region[data-slug="region-asia"] {
    width: 25%;
    height: 30%;
    left: 69%;
    top: 28.4%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="china"] {
    left: 81.2%;
    top: 33.8%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="hong-kong"] {
    left: 84.45%;
    top: 42%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="india"] {
    left: 73.67%;
    top: 43%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="indonesia"] {
    left: 85.67%;
    top: 55%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="japan"] {
    left: 91.5%;
    top: 30.8%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="malaysia"] {
    left: 81.6%;
    top: 52.8%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="philippines"] {
    left: 89.2%;
    top: 47.8%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="singapore"] {
    left: 82.8%;
    top: 55%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="sri-lanka"] {
    left: 75%;
    top: 52%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="south-korea"] {
    left: 88.5%;
    top: 30%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="taiwan"] {
    left: 87.4%;
    top: 38.2%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="thailand"] {
    left: 81.4%;
    top: 43.8%;
}

.interactive-map .pingroup[data-slug="region-asia"] .pin[data-slug="vietnam"] {
    left: 84%;
    top: 46.8%;
}

.interactive-map .region[data-slug="region-australasia"] {
    width: 21%;
    height: 30%;
    left: 80%;
    top: 62%;
}

.interactive-map .pingroup[data-slug="region-australasia"] .pin[data-slug="australia"] {
    left: 92%;
    top: 74.8%;
}

.interactive-map .pingroup[data-slug="region-australasia"] .pin[data-slug="new-zealand"] {
    left: 99%;
    top: 83.8%;
}

.interactive-map .region[data-slug="region-russia"] {
    width: 26%;
    height: 40%;
    left: 61%;
    top: 0;
}

.interactive-map .loader {
    display: none;
}

.interactive-map.loading .loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.interactive-map.loading .overlay {
    z-index: 0;
    opacity: 1;
    transition: opacity 0.3s;
}

.interactive-map .pingroup[data-slug="region-south-africa"] .pin[data-slug="south-africa"] {
    left: 55%;
    top: 79%;
}

.interactive-map .pingroup[data-slug="region-russia"] .pin[data-slug="russia"] {
    left: 71.5%;
    top: 15%;
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        transform: scale(0.1);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        transform: scale(0.1);
        opacity: 0;
    }
}

@media screen and (min-width: 768px) {
    .interactive-map {
        background-size: cover;
        background-repeat: no-repeat;
        background-color: #6eb241;
    }

    .interactive-map .map-header {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .interactive-map .map-header h1 {
        color: #fff;
    }

    .interactive-map .menu {
        background-color: #333f48;
        width: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        overflow: auto;
        transition: width 0.3s linear 0.2s;
    }

    .interactive-map .menu-header {
        padding: 40px 40px 30px;
    }

    .interactive-map .map-container {
        display: block;
    }

    .interactive-map.zoomed .map-header {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        transition: all 0.25s;
    }

    .interactive-map.zoomed .map-container {
        width: calc(100% - 230px);
        margin: 0;
        transition: width 0.3s linear 0.2s;
    }

    .interactive-map.zoomed .menu {
        width: 230px;
        transition: width 0.3s linear 0.2s;
    }

    .map__modal.modal .modal-fade-screen {
        background-color: rgba(62, 76, 91, 0.7);
    }

    .map__modal.modal .modal-inner {
        background-color: #fff;
    }

    .map__modal.modal .modal__intro {
        margin-top: 3px;
    }

    .map__modal.modal .map__modal__stats {
        border-top: 1px solid #dbdcdd;
        padding: 20px 0 0;
        margin-top: 20px;
    }

    .map__modal.modal .map__modal__stats dl {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
        -webkit-column-gap: 90px;
        -moz-column-gap: 90px;
        column-gap: 90px;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 1.125rem;
    }

    .map__modal.modal .map__modal__stats dl dt {
        text-align: left;
        overflow: visible;
        white-space: normal;
        margin-bottom: 4px;
        width: calc(100% - 60px);
        display: inline-block;
        font-weight: 700;
        color: #393b3c;
    }

    .map__modal.modal .map__modal__stats dl dd {
        -webkit-break-before: avoid;
        -moz-break-before: avoid;
        break-before: avoid;
        text-align: right;
        width: 60px;
        display: inline-block;
        margin-left: 0;
    }

    .map__modal.modal .map__modal__footer {
        border-top: 1px solid #dbdcdd;
        padding: 30px 0;
        margin-top: 20px;
    }

    .map__modal.modal .map__modal__footer a {
        text-decoration: none;
    }

    .map__modal.modal .map__modal__footer a:hover {
        text-decoration: underline;
    }
}

@media screen and (min-width: 992px) {
    .interactive-map.zoomed .map-container {
        width: calc(100% - 546px);
    }

    .interactive-map.zoomed .menu {
        width: 546px;
    }
}

#interactive-map-popover {
    width: 250px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -20;
    transition: opacity 0.3s, z-index 0.6s;
    -ms-transform: translateX(-34px) translateY(-100%) translateY(-25px);
    transform: translateX(-34px) translateY(calc(-100% - 35px));
}

#interactive-map-popover .map-popover-content {
    font-size: 1.125rem;
    line-height: 1.625rem;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 3px 3px 4px 3px rgba(0, 0, 0, 0.09);
    z-index: 40;
}

#interactive-map-popover .map-popover-content strong {
    display: block;
    color: #6cab36;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.4375rem;
    margin-bottom: 10px;
}

#interactive-map-popover p {
    margin-top: 0;
    margin-bottom: 0;
}

#interactive-map-popover.show {
    opacity: 1;
    z-index: 40;
    transition: opacity 0.3s;
}

#interactive-map-popover a {
    display: inline-block;
    margin-top: 10px;
    color: #333f48;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
}

#interactive-map-popover .map-popover-caret {
    display: block;
    width: 100%;
    height: 7px;
    background-color: #333f48;
    z-index: 20;
    position: relative;
}

#interactive-map-popover .map-popover-caret:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 0;
    border-color: #333f48 transparent transparent;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 20px;
}

#interactive-map-popover .map-popover-caret.right:after {
    left: auto;
    right: 20px;
}

#interactive-map-popover .map-popover-caret.top {
    position: absolute;
    top: -7px;
}

#interactive-map-popover .map-popover-caret.top:after {
    top: -7px;
    bottom: auto;
    border-width: 0 11px 11px;
    border-color: transparent transparent #333f48;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .interactive-map .menu-header {
        padding: 20px;
    }

    .interactive-map .menu-header select {
        font-size: 1rem;
        padding: 10px;
        background-position: right 8px center;
    }

    .interactive-map .menu-list p {
        font-size: 1rem;
    }

    .interactive-map .menu-list a {
        margin-top: 10px;
    }

    .interactive-map .menu-list li {
        padding: 20px;
    }

    .interactive-map .menu-list li:not(:first-child):after {
        left: 20px;
        right: 20px;
    }

    .interactive-map .menu-list li strong {
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .interactive-map .mobile-map {
        display: block;
        padding-top: 55px;
        padding-bottom: 20px;
    }

    .interactive-map .mobile-map .mobile-map__subtitle {
        font-size: 0.875rem;
        line-height: 1rem;
        text-align: center;
        color: #38444c;
        margin: 0 auto;
        max-width: 70%;
    }

    .interactive-map .map__start,
    .interactive-map .map__start__cta {
        display: none;
    }

    .interactive-map .menu {
        z-index: 101;
        position: relative;
        padding-bottom: 25px;
    }

    .interactive-map .menu-header {
        padding: 30px 20px 15px;
    }

    .interactive-map .menu-header p.uniques {
        display: none;
        font-size: 0.875rem;
        line-height: 0.875rem;
    }

    .interactive-map .menu-header p.uniques.active,
    .interactive-map .menu-header select option:first-child {
        display: block;
    }

    .interactive-map .menu-list a {
        display: inline-block;
        margin-top: 8px;
        text-transform: uppercase;
        font-size: 1rem;
        color: #fff;
        font-weight: 700;
    }

    .interactive-map .menu-list a .icon {
        font-size: 12px;
        margin-left: 6px;
        margin-bottom: 14px;
    }

    .interactive-map .menu-list p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .interactive-map .menu-list li {
        padding: 15px 20px;
    }

    .interactive-map .menu-list li:not(first-child):after {
        left: 20px;
        right: 20px;
    }

    .interactive-map .map__modal.modal .modal-inner {
        background-color: #fff;
    }

    .interactive-map .map__modal.modal .modal-fade-screen {
        background-color: rgba(62, 76, 91, 0.95);
    }

    .interactive-map .map__modal.modal .modal__intro {
        margin-top: 3px;
    }

    .interactive-map .map__modal.modal .map__modal__stats {
        border-top: 1px solid #dbdcdd;
        padding: 15px 0 11px;
        margin-top: 15px;
    }

    .interactive-map .map__modal.modal .map__modal__stats dl {
        margin: 0;
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
        -webkit-column-gap: 90px;
        -moz-column-gap: 90px;
        column-gap: 90px;
        font-size: 0.875rem;
    }

    .interactive-map .map__modal.modal .map__modal__stats dl dt {
        text-align: left;
        overflow: visible;
        white-space: normal;
        margin-bottom: 4px;
        width: calc(100% - 60px);
        display: inline-block;
        font-weight: 700;
        color: #393b3c;
    }

    .interactive-map .map__modal.modal .map__modal__stats dl dd {
        -webkit-break-before: avoid;
        -moz-break-before: avoid;
        break-before: avoid;
        text-align: right;
        width: 60px;
        display: inline-block;
        margin-left: 0;
    }

    .interactive-map .map__modal.modal .map__modal__footer {
        font-size: 0.875rem;
        line-height: 1.25rem;
        padding-top: 15px;
        border-top: 1px solid #dbdcdd;
    }

    .interactive-map .map__modal.modal .map__modal__footer a {
        text-decoration: none;
        font-weight: 700;
    }

    .interactive-map .map__modal.modal .map__modal__footer a:hover {
        text-decoration: underline;
    }
}

.clientele {
    background: url(../images/clientele-bg.png?b985160a4bcfca03a7fd06e1516ea9a1) no-repeat 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

.clientele .tabs {
    margin-top: 30px;
}

.clientele .tabs .tabs__inner .tab-content {
    padding-top: 85px;
    position: relative;
    min-height: 480px;
}

.clientele .clientele__tab {
    width: 44%;
}

.clientele .clientele__category {
    font-weight: 900;
    font-size: 1rem;
    line-height: 2.25rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.clientele .clientele__logo {
    position: absolute;
    top: 60px;
    right: 110px;
    bottom: auto;
    left: auto;
    min-width: 231px;
    text-align: center;
    z-index: 2;
}

.clientele .clientele__logo:after {
    content: "";
    width: 231px;
    height: 1px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 auto;
    background-color: #cfd2d4;
}

.clientele .clientele__title {
    font-weight: 700;
    font-size: 2.125rem;
    line-height: 2.5rem;
    position: relative;
    z-index: 2;
}

.clientele .clientele__title a {
    color: #505354;
    text-decoration: none;
}

.clientele .clientele__description {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.clientele .clientele__cta {
    color: #333f48;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.clientele .clientele__bg {
    position: absolute;
    top: 125px;
    right: -12.5%;
    bottom: 0;
    left: auto;
    width: 67.5%;
    height: 460px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: contain;
    z-index: 1;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .clientele {
        padding-top: 65px;
        padding-bottom: 75px;
        overflow: hidden;
    }

    .clientele .tabs {
        margin-top: 22px;
    }

    .clientele .tabs .tabs__inner .tab-content {
        padding-top: 44px;
        min-height: 352px;
    }

    .clientele .clientele__tab {
        width: 55%;
    }

    .clientele .clientele__category {
        font-size: 0.875rem;
    }

    .clientele .clientele__logo {
        position: absolute;
        top: 40px;
        right: 0;
        bottom: auto;
        left: auto;
        min-width: 166px;
        text-align: center;
    }

    .clientele .clientele__logo:after {
        content: "";
        width: 166px;
        height: 1px;
        position: absolute;
        top: auto;
        right: 0;
        bottom: -14px;
        left: 0;
        margin: 0 auto;
        background-color: #cfd2d4;
    }

    .clientele .clientele__logo img {
        width: 67%;
        height: auto;
    }

    .clientele .clientele__title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .clientele .clientele__cta {
        margin-top: 15px;
    }

    .clientele .clientele__bg {
        position: absolute;
        top: 0;
        right: -22.5%;
        bottom: 0;
        left: auto;
        width: 67.5%;
        height: 460px;
    }
}

@media (max-width: 767px) {
    .clientele {
        padding-top: 57px;
        padding-bottom: 60px;
    }

    .clientele .tabs {
        margin-top: 26px;
    }

    .clientele .tabs .tabs__inner .tab-content {
        padding-top: 28px;
        min-height: 0;
    }

    .clientele .clientele__tab {
        width: 100%;
    }

    .clientele .clientele__category {
        font-size: 0.875rem;
    }

    .clientele .clientele__logo {
        display: none;
    }

    .clientele .clientele__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .clientele .clientele__cta,
    .clientele .clientele__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .clientele .clientele__cta {
        margin-top: 20px;
        max-width: 200px;
    }

    .clientele .clientele__bg {
        display: none;
    }
}

.team {
    padding-bottom: 115px;
    z-index: 200;
}

.team.block .block__inner.block__inner--container:after {
    clear: both;
    content: "";
    display: block;
}

.team .team__items {
    margin-left: -26px;
    margin-right: -26px;
    width: calc(100% + 52px);
}

.team .team__items:after {
    clear: both;
    content: "";
    display: table;
}

.team .team__item {
    width: calc(25% - 32.5px);
    float: left;
    margin-left: 26px;
    height: 296px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
}

.team .team__item:nth-child(n + 5) {
    margin-top: 31px;
}

.team .team__item:before {
    content: "Read more";
    position: absolute;
    top: auto;
    right: 20px;
    bottom: 12px;
    left: 20px;
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    opacity: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.team .team__item .team__image {
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
}

.team .team__item .team__image,
.team .team__item .team__image:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.team .team__item .team__image:after {
    content: "";
    background-image: -ms-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    background-image: -webkit-linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    background-image: -moz-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.team .team__item:hover:before {
    opacity: 1;
    z-index: 101;
}

.team .team__item:hover a {
    z-index: 102;
}

.team .team__item:hover .team__meta {
    margin-bottom: 25px;
    z-index: 101;
}

.team .team__item:hover .team__name {
    color: #6cab36;
    font-size: 1.875rem;
}

.team .team__item:hover .team__position {
    font-size: 1.125rem;
}

.team .team__item:hover .team__image {
    position: absolute;
    top: -25px;
    right: -25px;
    bottom: -25px;
    left: -25px;
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(5%);
    z-index: 100;
}

.team .team__item .team__meta {
    align-self: flex-end;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 2;
}

.team .team__item .team__name {
    font-size: 1.625rem;
    font-weight: 700;
}

.team .team__item .team__name,
.team .team__item .team__position {
    color: #fff;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.team .team__item .team__position {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
}

.section-logo--block>a,
.team .team__item>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.team .team__item .modal-inner {
    overflow: visible !important;
}

.team .team__item .team__modal__pagination__left,
.team .team__item .team__modal__pagination__right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.team .team__item .team__modal__pagination__left span,
.team .team__item .team__modal__pagination__right span {
    background-color: #edf0f3;
    border-radius: 100%;
    border: 1px solid #d3dae2;
    width: 85px;
    height: 85px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    z-index: 10;
    position: relative;
    display: inline-block;
}

.team .team__item .team__modal__pagination__left span:after,
.team .team__item .team__modal__pagination__right span:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 45px;
    line-height: 85px;
    color: #6cab36;
}

.team .team__item .team__modal__pagination__left span:hover,
.team .team__item .team__modal__pagination__right span:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
}

.team .team__item .team__modal__pagination__left span:hover:after,
.team .team__item .team__modal__pagination__right span:hover:after {
    font-weight: 700;
}

.team .team__item .team__modal__pagination__left.team__modal__pagination__left,
.team .team__item .team__modal__pagination__right.team__modal__pagination__left {
    position: absolute;
    top: 100px;
    right: auto;
    bottom: 100px;
    left: -30px;
}

.team .team__item .team__modal__pagination__left.team__modal__pagination__right,
.team .team__item .team__modal__pagination__right.team__modal__pagination__right {
    position: absolute;
    top: 100px;
    right: -30px;
    bottom: 100px;
    left: auto;
}

.team .team__item .team__modal__pagination__left.team__modal__pagination__left span,
.team .team__item .team__modal__pagination__right.team__modal__pagination__left span {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.team .team__item .team__modal__content {
    position: relative;
    max-height: 78vh;
}

.team .team__item .team__modal__left {
    float: left;
    width: 284px;
}

.team .team__item .team__modal__left .team__modal__image {
    height: 282px;
    background-size: cover;
}

.team .team__item .team__modal__left ul {
    background-color: #fff;
    list-style: none;
    padding: 18px;
    margin: 0;
}

.team .team__item .team__modal__left ul li {
    display: block;
    padding: 14px 0;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.team .team__item .team__modal__left ul li:before {
    display: none !important;
}

.team .team__item .team__modal__left ul li+li {
    margin-top: 0;
    border-top: 1px solid #dbdcdd;
}

.team .team__item .team__modal__left ul li a {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 900;
    color: #333f48;
    text-decoration: none;
    text-transform: uppercase;
}

.team .team__item .team__modal__left ul li .icon {
    margin-right: 14px;
    background-color: #6cab36;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    text-align: center;
}

.team .team__item .team__modal__left ul li .icon:after {
    line-height: 36px;
}

.team .team__item .team__modal__right {
    float: right;
    width: calc(100% - 284px);
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.team .team__item .team__modal__right .team__modal__name {
    font-size: 2.625rem;
    line-height: 2.625rem;
    font-weight: 700;
    color: #333f48;
}

.team .team__item .team__modal__right .team__modal__position {
    font-size: 1.125rem;
    font-weight: 300;
    color: #333f48;
    border-bottom: 1px solid #dbdcdd;
    padding-bottom: 15px;
}

.team .team__item .team__modal__right .team__modal__description {
    font-size: 1.125rem;
    color: #333f48;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .team {
        padding-bottom: 75px;
    }

    .team.block .block__inner.block__inner--container:after {
        clear: both;
        content: "";
        display: block;
    }

    .team .team__items {
        margin-left: -13px;
        margin-right: -13px;
        width: calc(100% + 26px);
    }

    .team .team__items:after {
        clear: both;
        content: "";
        display: table;
    }

    .team .team__item {
        width: calc(33.33333% - 17.33333px);
        float: left;
        margin-left: 13px;
        height: 240px;
        padding: 15px;
    }

    .team .team__item:nth-child(n+4) {
        margin-top: 13px;
    }

    .team .team__item:hover .team__image {
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
    }

    .team .team__item .team__name {
        font-size: 1.625rem;
        font-weight: 700;
    }

    .team .team__item .team__position {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 300;
    }

    .team .team__item .team__modal__pagination__left span,
    .team .team__item .team__modal__pagination__right span {
        width: 66px;
        height: 66px;
    }

    .team .team__item .team__modal__pagination__left span:after,
    .team .team__item .team__modal__pagination__right span:after {
        font-size: 36px;
        line-height: 66px;
    }

    .team .team__item .team__modal__left {
        width: 180px;
    }

    .team .team__item .team__modal__left .team__modal__image {
        height: 180px;
    }

    .team .team__item .team__modal__left ul {
        padding: 18px;
    }

    .team .team__item .team__modal__left ul li {
        padding: 14px 0;
    }

    .team .team__item .team__modal__left ul li a {
        font-size: 0.875rem;
        line-height: 0.875rem;
    }

    .team .team__item .team__modal__left ul li .icon {
        width: 32px;
        height: 32px;
    }

    .team .team__item .team__modal__left ul li .icon:after {
        line-height: 32px;
    }

    .team .team__item .team__modal__right {
        width: calc(100% - 180px);
        padding-left: 28px;
        padding-right: 20px;
    }

    .team .team__item .team__modal__right .team__modal__name {
        font-size: 2rem;
        line-height: 2rem;
        font-weight: 700;
    }

    .team .team__item .team__modal__right .team__modal__position {
        font-size: 1.125rem;
        font-weight: 300;
        margin-top: 3px;
        padding-bottom: 10px;
    }

    .team .team__item .team__modal__right .team__modal__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .team .team__item .team__modal__right .team__modal__description p:first-child {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .team {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .team.block .block__inner.block__inner--container:after {
        clear: both;
        content: "";
        display: block;
    }

    .team .team__items {
        margin-left: -4px;
        margin-right: -4px;
        width: calc(100% + 8px);
    }

    .team .team__items:after {
        clear: both;
        content: "";
        display: table;
    }

    .team .team__item {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
        height: 296px;
        padding: 23px;
    }

    .team .team__item:nth-child(n+4) {
        margin-top: 13px;
    }

    .team .team__item:hover .team__image {
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
        left: -15px !important;
        right: -15px !important;
        top: -15px !important;
        bottom: -15px !important;
    }

    .team .team__item .team__name {
        font-size: 1.625rem;
        line-height: 1.625rem;
        font-weight: 700;
    }

    .team .team__item .team__position {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 300;
    }

    .team .team__item .team__modal__content {
        padding: 20px;
    }

    .team .team__item .team__modal__pagination__left {
        left: -15px !important;
    }

    .team .team__item .team__modal__pagination__right {
        right: -15px !important;
    }

    .team .team__item .team__modal__pagination__left span,
    .team .team__item .team__modal__pagination__right span {
        width: 32px;
        height: 32px;
    }

    .team .team__item .team__modal__pagination__left span:after,
    .team .team__item .team__modal__pagination__right span:after {
        font-size: 18px;
        line-height: 32px;
    }

    .team .team__item .team__modal__left {
        display: none;
        width: 180px;
    }

    .team .team__item .team__modal__left .team__modal__image {
        height: 180px;
    }

    .team .team__item .team__modal__left ul {
        padding: 18px;
    }

    .team .team__item .team__modal__left ul li {
        padding: 14px 0;
    }

    .team .team__item .team__modal__left ul li a {
        font-size: 0.875rem;
        line-height: 0.875rem;
    }

    .team .team__item .team__modal__left ul li .icon {
        width: 32px;
        height: 32px;
    }

    .team .team__item .team__modal__left ul li .icon:after {
        line-height: 32px;
    }

    .team .team__item .team__modal__right {
        width: 100%;
        padding: 0;
    }

    .team .team__item .team__modal__right .team__modal__name {
        font-size: 1.625rem;
        font-weight: 700;
    }

    .team .team__item .team__modal__right .team__modal__position {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 300;
    }

    .team .team__item .team__modal__right .team__modal__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.quotes {
    padding-bottom: 105px;
}

.quotes,
.quotes.block--has-next-bottom .block__next {
    background-color: #edf0f3;
}

.quotes .quotes__items {
    margin-top: 45px;
}

.quotes .quotes__item {
    margin-left: -4px;
    margin-right: -4px;
    width: calc(100% + 8px);
    display: flex;
}

.quotes .quotes__left,
.quotes .quotes__right {
    width: calc(50% - 6px);
    float: left;
    margin-left: 4px;
}

.quotes .quotes__media .plyr__video-embed {
    padding-bottom: 76.92308%;
}

.quotes .quotes__media.quotes__image {
    background-size: cover;
}

.quotes .quotes__quote {
    position: relative;
    background-color: #fff;
    padding: 70px 50px 50px;
    box-sizing: border-box;
    text-align: center;
    color: #505354;
}

.quotes .quotes__quote:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    background-color: #6cab36;
    height: 11px;
}

.quotes .quotes__quote .quotes__copy {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 700;
}

.quotes .quotes__quote .quotes__author {
    font-size: 1rem;
    line-height: 3rem;
    font-weight: 300;
    font-style: italic;
}

.quotes .quotes__icon {
    display: inline-block;
    position: relative;
    display: block;
    text-align: center;
    font-size: 78px;
    border-top: 1px solid #dbdcdd;
    height: 34px;
    margin-top: 80px;
    margin-bottom: 25px;
}

.quotes .quotes__icon:after {
    content: "\E90F";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    padding: 0 27px;
    display: inline-block;
    position: absolute;
    top: -45px;
    right: 0;
    bottom: auto;
    left: 0;
    margin: 0 auto;
    width: 134px;
}

.quotes .quotes__controls {
    text-align: center;
    margin-top: 30px;
}

.quotes .quotes__controls .quotes__controls__left,
.quotes .quotes__controls .quotes__controls__right {
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #d3dae2;
    width: 44px;
    height: 44px;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.quotes .quotes__controls .quotes__controls__left:after,
.quotes .quotes__controls .quotes__controls__right:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 23px;
    line-height: 44px;
    color: #6cab36;
}

.quotes .quotes__controls .quotes__controls__left:hover,
.quotes .quotes__controls .quotes__controls__right:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.quotes .quotes__controls .quotes__controls__left {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-right: 30px;
}

.quotes .quotes__controls .quotes__controls__right {
    margin-left: 30px;
}

.quotes .quotes__controls .quotes__controls__pagination {
    display: inline-block;
    height: 12px;
    vertical-align: middle;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .quotes {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .quotes .swiper-container {
        max-width: 572px;
    }

    .quotes .quotes__items {
        margin-top: 30px;
        max-width: 572px;
    }

    .quotes .quotes__item {
        margin-left: -4px;
        margin-right: -4px;
        width: calc(100% + 8px);
        display: block;
    }

    .quotes .quotes__left,
    .quotes .quotes__right {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
    }

    .quotes .quotes__right {
        margin-top: 4px;
    }

    .quotes .quotes__media {
        min-height: 440px;
    }

    .quotes .quotes__media .plyr__video-embed {
        padding-bottom: 76.92308%;
    }

    .quotes .quotes__media .plyr__video-embed+.plyr__play-large {
        width: 94px;
        height: 94px;
    }

    .quotes .quotes__media .plyr__video-embed+.plyr__play-large svg {
        width: 32px;
        height: 36px;
    }

    .quotes .quotes__media.quotes__image {
        background-size: cover;
    }

    .quotes .quotes__quote {
        padding: 70px 50px 50px;
    }

    .quotes .quotes__quote .quotes__copy {
        font-size: 1.25rem;
        line-height: 1.875rem;
        font-weight: 700;
    }

    .quotes .quotes__quote .quotes__author {
        font-size: 1rem;
        line-height: 3rem;
        font-weight: 300;
    }

    .quotes .quotes__icon {
        font-size: 78px;
        height: 34px;
        margin-top: 80px;
        margin-bottom: 25px;
    }

    .quotes .quotes__controls {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .quotes {
        padding-top: 53px;
        padding-bottom: 40px;
    }

    .quotes .swiper-container {
        max-width: 572px;
    }

    .quotes .quotes__items {
        margin-top: 40px;
        max-width: 572px;
    }

    .quotes .quotes__item {
        margin-left: -4px;
        margin-right: -4px;
        width: calc(100% + 8px);
        display: block;
    }

    .quotes .quotes__left,
    .quotes .quotes__right {
        width: 100%;
        margin-right: 0;
    }

    .quotes .quotes__right {
        margin-top: 3px;
    }

    .quotes .quotes__media {
        min-height: 0;
    }

    .quotes .quotes__media .plyr__video-embed {
        padding-bottom: 76.78571%;
    }

    .quotes .quotes__media .plyr__video-embed+.plyr__play-large {
        width: 94px;
        height: 94px;
    }

    .quotes .quotes__media .plyr__video-embed+.plyr__play-large svg {
        width: 32px;
        height: 36px;
    }

    .quotes .quotes__media.quotes__image {
        background-size: cover;
        height: 215px;
    }

    .quotes .quotes__quote {
        padding: 60px 10px 25px;
    }

    .quotes .quotes__quote:before {
        height: 7px;
    }

    .quotes .quotes__quote .quotes__copy {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 700;
    }

    .quotes .quotes__quote .quotes__author {
        font-size: 1rem;
        line-height: 2.125rem;
        font-weight: 300;
    }

    .quotes .quotes__icon {
        font-size: 47px;
        height: 0;
        margin-top: 13px;
        margin-bottom: 25px;
    }

    .quotes .quotes__icon:after {
        top: -35px;
        width: 75px;
        padding: 0;
    }

    .quotes .quotes__controls {
        margin-top: 16px;
    }

    .quotes .quotes__controls .quotes__controls__left,
    .quotes .quotes__controls .quotes__controls__right {
        width: 29px;
        height: 29px;
    }

    .quotes .quotes__controls .quotes__controls__left:after,
    .quotes .quotes__controls .quotes__controls__right:after {
        font-size: 16px;
        line-height: 29px;
    }

    .quotes .quotes__controls .quotes__controls__left {
        margin-right: 18px;
    }

    .quotes .quotes__controls .quotes__controls__right {
        margin-left: 18px;
    }
}

.investors {
    padding-top: 95px;
    padding-bottom: 95px;
}

.investors .investors__items {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.investors .investors__items li {
    display: flex;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.investors .investors__items li:before {
    display: none !important;
}

.investors .investors__items li+li {
    margin-top: 0;
}

.investors .investors__items img {
    max-width: 100%;
    height: auto;
    align-self: center;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .investors {
        padding-top: 68px;
        padding-bottom: 105px;
    }
}

@media (max-width: 767px) {
    .investors {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .investors .block__title:after {
        width: 141px;
    }

    .investors .investors__items {
        display: block;
        margin-top: 55px;
    }

    .investors .investors__items li {
        display: block;
        text-align: center;
    }

    .investors .investors__items li+li {
        margin-top: 33px;
    }

    .investors .investors__items li img {
        max-height: 45px;
    }
}

.caption-grid {
    padding-bottom: 120px;
}

.caption-grid,
.caption-grid.block--has-next-bottom .block__next {
    background-color: #edf0f3;
}

.caption-grid .caption-grid__items .caption-grid__items__row {
    display: flex;
}

.caption-grid .caption-grid__items .caption-grid__items__row:after {
    clear: both;
    content: "";
    display: table;
}

.caption-grid .caption-grid__items .caption-grid__items__row+.caption-grid__items__row {
    margin-top: 5px;
}

.caption-grid .caption-grid__items .caption-grid__item {
    flex: 0 0 calc(50% - 1.5px);
    max-width: calc(50% - 1.5px);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    min-height: 458px;
    background-color: #fff;
}

.caption-grid .caption-grid__items .caption-grid__item:first-child {
    margin-right: 3px;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left {
    right: 50%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left+.caption-grid__item {
    right: -50%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right {
    left: 50%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right+.caption-grid__item {
    left: -50%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--image {
    background-size: cover;
    background-position: 50%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--video {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #000;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--video .video {
    width: 100%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--video .plyr__video-embed {
    padding-bottom: 76%;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text {
    padding: 60px 40px 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text.caption-grid__item--border-top {
    border-top: 11px solid #6cab36;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text.caption-grid__item--border-bottom {
    border-bottom: 11px solid #6cab36;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__title {
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 700;
    color: #393b3c;
    margin-bottom: 20px;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
}

.caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__copy p:last-child {
    margin-bottom: 0;
}

.caption-grid .caption-grid__items .caption-grid__item .caption-grid__item__inner {
    width: 100%;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .caption-grid {
        padding-bottom: 75px;
    }

    .caption-grid .caption-grid__items {
        max-width: 572px;
        margin: 0 auto;
    }

    .caption-grid .caption-grid__items .caption-grid__items__row {
        display: block;
    }

    .caption-grid .caption-grid__items .caption-grid__item {
        display: block;
        width: 100%;
        max-width: 100%;
        float: none;
        min-height: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left,
    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left+.caption-grid__item {
        right: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right,
    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right+.caption-grid__item {
        left: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--image {
        height: 441px;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text {
        padding: 63px 33px;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__title {
        font-size: 1.875rem;
        line-height: 1.875rem;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__copy {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--video .plyr__video-embed {
        padding-bottom: 77.0979%;
    }
}

@media (max-width: 767px) {
    .caption-grid {
        padding-bottom: 48px;
    }

    .caption-grid .caption-grid__items .caption-grid__items__row {
        display: block;
    }

    .caption-grid .caption-grid__items .caption-grid__item {
        display: block;
        width: 100%;
        max-width: 100%;
        float: none;
        min-height: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left,
    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--left+.caption-grid__item {
        right: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right,
    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--right+.caption-grid__item {
        left: 0;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--image {
        height: 217px;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text {
        padding: 50px 40px;
        margin-top: 3px;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__title {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .caption-grid .caption-grid__items .caption-grid__item.caption-grid__item--text .caption-grid__item__copy {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.news-listing-related {
    background-color: #fff;
    background-image: url(../images/related-news-bg.jpg?fe6d57e7df59446b729b994450f5628e);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-top: 125px;
    padding-bottom: 100px;
}

.news-listing-related.news-listing-related--small-pad {
    padding-top: 105px;
}

.news-listing-related.news-listing-related--smaller-pad {
    padding-top: 80px;
}

.news-listing-related.news-listing-related--smaller-pad .news-listing__items {
    margin-top: 35px;
}

.news-listing-related.block {
    background-color: #fff;
}

.news-listing-related .block__copy {
    text-align: center;
}

.news-listing-related .news-listing__items {
    margin-top: 75px;
}

.news-listing-related.news-listing .news-listing__item {
    width: calc(25% - 21.25px);
    margin-left: 17px;
}

.news-listing-related.news-listing .news-listing__item:nth-child(4) {
    margin-top: 0;
}

.news-listing-related.news-listing .news-listing__item.swiper-slide {
    margin-top: 0 !important;
}

.news-listing-related .news-listing-related__loader {
    margin-top: 40px;
    text-align: center;
}

@media (min-width: 1200px) {
    .news-listing-related.news-listing .news-listing__item.swiper-slide:first-child:nth-last-child(2) {
        margin-left: 25% !important;
    }

    .news-listing-related.news-listing .news-listing__item.swiper-slide:first-child:nth-last-child(3) {
        margin-left: 12.5% !important;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .news-listing-related {
        padding-top: 95px;
        padding-bottom: 73px;
    }

    .news-listing-related.news-listing-related--small-pad {
        padding-top: 68px;
        padding-bottom: 73px;
    }

    .news-listing-related.block .block__inner.block__inner--container {
        max-width: 708px;
    }

    .news-listing-related .news-listing__items {
        margin-top: 55px;
        margin-left: -13px;
        margin-right: -13px;
        width: calc(100% + 26px);
    }

    .news-listing-related.news-listing .news-listing__item {
        width: calc(33.33333% - 17.33333px);
        float: left;
        margin-left: 13px;
    }

    .news-listing-related.news-listing .news-listing__item:not(.swiper-slide):nth-child(n+4) {
        margin-top: 13px;
    }

    .news-listing-related.news-listing .news-listing__item.swiper-slide {
        margin-top: 0 !important;
    }

    .news-listing-related.news-listing .news-listing__item.swiper-slide:first-child:nth-last-child(2) {
        margin-left: calc(16.5% + 10px) !important;
    }

    .news-listing-related.news-listing .news-listing__item:nth-child(n+7) {
        display: none;
    }

    .news-listing-related.news-listing .news-listing__item:nth-child(n+7).active {
        display: block;
    }

    .news-listing-related.news-listing .news-listing__item:last-child:nth-child(4n+4) {
        margin-left: calc(33.33333% - 17.33333px + 26px);
    }

    .news-listing-related .news-listing-related__loader {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .news-listing-related {
        padding-top: 95px;
        padding-bottom: 73px;
    }

    .news-listing-related.news-listing-related--small-pad {
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .news-listing-related.block .block__inner.block__inner--container {
        max-width: 100%;
    }

    .news-listing-related .news-listing__items {
        margin-top: 25px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .news-listing-related.news-listing .news-listing__item {
        width: 100%;
        float: left;
        margin-left: 0;
    }

    .news-listing-related.news-listing .news-listing__item:not(.swiper-slide):nth-child(n+4) {
        margin-top: 13px;
    }

    .news-listing-related.news-listing .news-listing__item:nth-child(n+7) {
        display: none;
    }

    .news-listing-related.news-listing .news-listing__item:nth-child(n+7).active {
        display: block;
    }

    .news-listing-related .news-listing-related__loader {
        margin-top: 40px;
        text-align: center;
    }
}

.news-listing {
    background-color: #edf0f3;
}

.news-listing.block .block__inner {
    max-width: 1234px;
}

.news-listing .news-listing__items__row+.news-listing__items__row {
    margin-top: 17px;
}

.news-listing .news-listing__right {
    width: calc(75% - 29.75px);
    float: left;
    margin-left: 17px;
}

.news-listing .news-listing__right .block__pagination {
    margin-top: 57px;
}

.news-listing .news-listing__items:after {
    clear: both;
    content: "";
    display: table;
}

.news-listing .news-listing__items .news-listing__items__inner {
    margin-left: -17px;
    margin-right: -17px;
    width: calc(100% + 34px);
    text-align: center;
}

.news-listing .news-listing__item {
    width: calc(33.33333% - 22.66667px);
    float: left;
    margin-left: 17px;
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.news-listing .news-listing__item:nth-child(n+4) {
    margin-top: 17px;
}

.news-listing .news-listing__item>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0);
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
    height: 372px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .news-listing .news-listing__item>a {
        height: 315px;
    }
}

@media (max-width: 908px) {
    .news-listing .news-listing__item>a {
        height: 330px;
    }
}

@media (max-width: 767px) {
    .news-listing .news-listing__item>a {
        height: 286px;
    }
}

@media (max-width: 528px) {
    .news-listing .news-listing__item>a {
        height: 308px;
    }
}

.news-listing .news-listing__item>a:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.news-listing .news-listing__item>a:hover+.news-listing__item__image .news-listing__item__image__inner {
    transform: scale(1.1);
}

.news-listing .news-listing__item .news-listing__item__meta {
    min-height: 125px;
    padding: 15px 15px 25px;
    border: 1px solid #dbdcdd;
    border-top: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-listing .news-listing__item .news-listing__item__meta .news-listing__item__category {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 8px;
}

.news-listing .news-listing__item .news-listing__item__meta .news-listing__item__title {
    color: #393b3c;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.news-listing .news-listing__item .news-listing__item__meta .news-listing__item__cta {
    color: #333f48;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-top: auto;
}

.news-listing .news-listing__item .news-listing__item__image {
    width: 100%;
    height: 196px;
    position: relative;
    overflow: hidden;
}

.news-listing .news-listing__item .news-listing__item__image .news-listing__item__image__inner {
    background-image: url(../images/blog-listing-placeholder.jpg?511cf927958670595ad8cd73550fd6ad);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
}

.news-listing .news-listing__item:hover .news-listing__item__background {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
}

.news-listing .news-listing__filters {
    width: calc(25% - 21.25px);
    float: left;
    margin-left: 17px;
}

.news-listing .news-listing__filters .news-listing__filters__toggle {
    display: none;
    background-color: #6cab36;
    color: #fff;
    padding: 30px 40px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAABEVBMVEXT2uL////T2uLT2uL////T2uLT2uLT2uL////T2uLT2uLT2uL////////T2uLT2uL////T2uLT2uL////////T2uLT2uL////T2uL////T2uLT2uLT2uLT2uL////////T2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uL////T2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////////T2uLT2uLT2uL////T2uL////T2uL////T2uL////////T2uLT2uLT2uL////j17nhAAAAWnRSTlMAAAECAgMFBgcICQoLEBITFBUWHCAhIiwwMDEyPD09QERFTlFSWVpbaGlqgIGFjI2OkpWWl5mbnZ6kpaaturvCxMTFxsjKzM3Oz9PU1tfY2d7f7Ozt8fj5+v59zFglAAABeElEQVR42oXUaVeCQBSA4QuFZFakqZlGYYK4ZeZWSJrhXmFFC8H//yFpwplBOMP7+eEMB+ZewEuVlJlhmsZMKaXAiVqFBCNpVlvOcSzL5eS2pUmMHwm6ytPoEZpXdWELRTsDEbYSB50ojuKTBgTUmMQRii9rEFhtGXdRbIyb3VNcjWMO6tYB68E+AVS9u0HCAPCe7EvAGghrtPMqkpCoMyskqUBClCqt0JAnI16jIGXRZERbaSi3gIyoVhkUOQzJCiwyYSg7B4MLQ0dfYLL//+Lxw+3H/v50u1oj1nTQsR3Y7Qa5x+0l3d7si0OnA+c4/4u/2Gfed8osoFcMQ7KCPqYfoY+Ztmgf8v0WGPJkxGvoquDIf1UYXSShgs5sri8J9fObQbj3DMKzncQH4S5wpJLX3pFCw1mFwKpoOAES05vAMZ8mACHY7/QL26TQRwvDKb/0rB447y3zQUtsZDWlLBeJcFmp+T4qYksML1VR58bvrzFXK551+AcGDEdnZsWd5QAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-size: 36px 36px;
    background-position: right 20px center;
    user-select: none;
}

.news-listing .news-listing__filters.active .news-listing__filters__toggle {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAA5FBMVEXT2uL////T2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uL////T2uL////T2uL////////T2uLT2uLT2uL///++BKFqAAAAS3RSTlMAAAECAgMFBggJChITFBUWISIwMTI8PURFTlFSWVpbaGlqgIGMjY6SlZaXmZudnqSlprq7wsTFxsjKzM3Oz9bX2N7f7Ozt8fj5+v6opwVkAAABQElEQVR42o3UaVeCQBSA4QuFmBGiGJggrplbIVDuBkYL4v//P+EBG9FpmPfzcw4wzL1wmtQwV34Q+CuzIUESE4UEp0/DoVEReF6oGMNwqnOXSHUthYW/WMVy1TOUHzkanKU5o/wpEhc9wNRbiAiJXgewdTzxiArz2ODUvJCgcRf+rTuOkeoAIUc9oKt3jYQ0l4uQbgEpxtIj9KaQkTJlQApZMmLDEjQHQEbMoAmmkYUMEzblLCSvwRey0O0XBDxEXb9+HPvZf38eezggPkjQ3R7bU4yoHkfx4uUNTOrZR0B3mCWK30Lzg2mvCudqJFRzuezra1fjQXghDcIz1Uih4WzjTRsNJ0Bx+Ygd82UREIKbkV27+C4bLYykqpdaPXA/8aq4JTYL+7os5HKCrPe3s3pqiaGklrX2dzt/bbVS6/AXDJwtAL4+lvAAAAAASUVORK5CYII=);
}

.news-listing .news-listing__filters .news-listing__filters__group {
    background-color: #fff;
    position: relative;
    padding: 20px;
}

.news-listing .news-listing__filters .news-listing__filters__group.news-listing__filters__group--no-pad {
    padding: 0;
}

.news-listing .news-listing__filters .news-listing__filters__group+.news-listing__filters__group {
    border-top: 11px solid #6cab36;
}

.news-listing .news-listing__filters .news-listing__filters__group+.news-listing__filters__group--no-border {
    border-top: none;
}

.news-listing .news-listing__filters .news-listing__filters__group .news-listing__filters__label,
.news-listing .news-listing__filters .news-listing__filters__group input,
.news-listing .news-listing__filters .news-listing__filters__group select {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.news-listing .news-listing__filters .news-listing__filters__group .news-listing__filters__label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333f48;
    text-transform: uppercase;
}

.news-listing .news-listing__filters .news-listing__filters__group.news-listing__filters__group--tags {
    padding-top: 0;
}

.news-listing .news-listing__filters .news-listing__filters__group.news-listing__filters__group--tags>div+div {
    margin-top: 20px;
}

.news-listing .news-listing__filters .news-listing__search+span {
    cursor: pointer;
    color: #6cab36;
    height: 27px;
    position: relative;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 22px;
    bottom: 0;
    left: auto;
    margin: auto 0;
}

.news-listing .news-listing__filters .news-listing__search+span:after {
    content: "\E94D";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 27px;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes,
.news-listing .news-listing__filters ul.news-listing__filters__radios {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes.all-tags,
.news-listing .news-listing__filters ul.news-listing__filters__radios.all-tags {
    column-count: 3;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes li,
.news-listing .news-listing__filters ul.news-listing__filters__radios li {
    display: block;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes li:before,
.news-listing .news-listing__filters ul.news-listing__filters__radios li:before {
    display: none !important;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes li+li,
.news-listing .news-listing__filters ul.news-listing__filters__radios li+li {
    margin-top: 0;
    margin-top: 8px;
}

.news-listing .news-listing__filters ul.news-listing__filters__checkboxes li input,
.news-listing .news-listing__filters ul.news-listing__filters__radios li input {
    display: none;
}

.news-listing .news-listing__filters .news-listing__filters__expand {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700;
    color: #333f48;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 30px;
}

.news-listing .news-listing__filters .news-listing__filters__modal .modal-state {
    display: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .news-listing .news-listing__items__row {
        display: flex;
    }

    .news-listing .news-listing__items__row:after {
        clear: both;
        content: "";
        display: table;
    }

    .news-listing .news-listing__items__row+.news-listing__items__row {
        margin-top: 17px;
    }

    .news-listing .news-listing__right {
        width: calc(100% - 26px);
        float: left;
        margin-left: 13px;
    }

    .news-listing .news-listing__right .block__pagination {
        margin-top: 57px;
    }

    .news-listing .news-listing__items .news-listing__items__inner {
        margin-left: -13px;
        margin-right: -13px;
        width: calc(100% + 26px);
    }

    .news-listing .news-listing__item {
        width: calc(33.33333% - 17.33333px);
        float: left;
        margin-left: 13px;
    }

    .news-listing .news-listing__item:nth-child(n+4) {
        margin-top: 13px;
    }

    .news-listing .news-listing__item .news-listing__item__meta {
        min-height: 105px;
        padding-bottom: 20px;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__category {
        font-size: 0.875rem;
        line-height: 0.875rem;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__title {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__cta {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 10px;
    }

    .news-listing .news-listing__item .news-listing__item__image {
        height: 155px;
    }

    .news-listing .news-listing__filters {
        width: calc(100% - 26px);
        float: left;
        margin-left: 13px;
        background-color: #fff;
    }

    .news-listing .news-listing__filters .news-listing__filters__toggle {
        display: block;
        margin-bottom: 9px;
        background-color: #333f48;
        position: relative;
    }

    .news-listing .news-listing__filters .news-listing__filters__toggle:after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        height: 9px;
        background-color: #edf0f3;
    }

    .news-listing .news-listing__filters.active {
        margin-bottom: 20px;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__toggle {
        background-color: #6cab36;
    }

    .news-listing .news-listing__filters .news-listing__filters__group {
        display: none;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group {
        display: block;
        box-sizing: border-box;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group.news-listing__filters__group--categories,
    .news-listing .news-listing__filters.active .news-listing__filters__group.news-listing__filters__group--sort {
        width: 38.13559%;
        float: left;
        clear: left;
        border-right: 1px solid #d3d3d3;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group.news-listing__filters__group--tags {
        width: 61.86441%;
        display: inline-block;
        border-top: 11px solid #6cab36;
        padding-top: 20px;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group.news-listing__filters__group--tags>div {
        float: left;
        width: 50%;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group.news-listing__filters__group--tags>div+div {
        margin-top: 0;
    }

    .news-listing .news-listing__filters ul.news-listing__filters__checkboxes.all-tags {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .news-listing .news-listing__items__row {
        display: flex;
    }

    .news-listing .news-listing__items__row:after {
        clear: both;
        content: "";
        display: table;
    }

    .news-listing .news-listing__items__row+.news-listing__items__row {
        margin-top: 17px;
    }

    .news-listing .news-listing__right {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
    }

    .news-listing .news-listing__right .block__pagination {
        margin-top: 57px;
    }

    .news-listing .news-listing__items .news-listing__items__inner {
        margin-left: -4px;
        margin-right: -4px;
        width: calc(100% + 8px);
    }

    .news-listing .news-listing__item {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
    }

    .news-listing .news-listing__item:nth-child(n+1) {
        margin-top: 16px;
    }

    .news-listing .news-listing__item .news-listing__item__meta {
        min-height: 105px;
        text-align: left;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__category {
        font-size: 0.875rem;
        line-height: 0.875rem;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__title {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }

    .news-listing .news-listing__item .news-listing__item__meta .news-listing__item__cta {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .news-listing .news-listing__item .news-listing__item__image {
        height: 155px;
    }

    .news-listing .news-listing__filters {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
    }

    .news-listing .news-listing__filters .news-listing__filters__toggle {
        display: block;
        margin-bottom: 9px;
    }

    .news-listing .news-listing__filters .news-listing__filters__group {
        display: none;
    }

    .news-listing .news-listing__filters.active .news-listing__filters__group {
        display: block;
        box-sizing: border-box;
    }

    .news-listing .news-listing__filters ul.news-listing__filters__checkboxes.all-tags {
        column-count: 1;
    }
}

.cta-columns {
    background: linear-gradient(90deg, #2e3c4b 0, #2e3c4b 50%, #2e3c4b 0, #2a3642 0, #2a3642);
}

.cta-columns.cta-columns--solid,
.cta-columns.cta-columns--triple {
    background: #2e3c4b;
}

.cta-columns.cta-columns--triple .cta-columns__items .cta-columns__item {
    width: 33%;
    padding: 0 30px;
}

.cta-columns.cta-columns--triple .cta-columns__items .cta-columns__item:nth-child(2) {
    border-left: 1px solid hsla(204, 2%, 54%, 0.3);
    border-right: 1px solid hsla(204, 2%, 54%, 0.3);
}

.cta-columns .cta-columns__items {
    display: flex;
}

.cta-columns .cta-columns__items .cta-columns__item {
    float: left;
    text-align: center;
    color: #fff;
    padding: 0 100px;
    width: 50%;
}

.cta-columns .cta-columns__items .cta-columns__item .icon {
    color: #6cab36;
    font-size: 4.375rem;
    margin-bottom: 34px;
}

.cta-columns .cta-columns__items .cta-columns__item svg {
    max-width: 70px;
    max-height: 70px;
}

.cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__title {
    font-size: 2.625rem;
    line-height: 2.625rem;
    font-weight: 200;
    position: relative;
    margin-bottom: 24px;
}

.cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__title:after {
    content: "";
    max-width: 231px;
    height: 1px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -14px;
    left: 0;
    margin: 0 auto;
    background-color: hsla(204, 2%, 54%, 0.3);
}

.cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__copy {
    /* font-size: 1.125rem; */
    line-height: 2.25rem;
}

.cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__cta {
    font-size: 1rem;
    line-height: 2.25rem;
    color: #6cab36;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    display: inline-block;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .cta-columns .cta-columns__items .cta-columns__item {
        padding: 0 30px;
    }

    .cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__title {
        font-size: 2rem;
        line-height: 2rem;
    }

    .cta-columns .cta-columns__items .cta-columns__item .cta-columns__item__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

@media (max-width: 767px) {
    .cta-columns {
        background: 0 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .cta-columns.block .block__inner.block__inner--container {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-columns.cta-columns--triple .cta-columns__items .cta-columns__item {
        width: 100%;
        padding: 45px 15px;
    }

    .cta-columns.cta-columns--triple .cta-columns__items .cta-columns__item:nth-child(2) {
        border: none;
    }

    .cta-columns.cta-columns--triple .cta-columns__items .cta-columns__item:last-child {
        background-color: #2e3c4b;
    }

    .cta-columns .cta-columns__items {
        display: block;
    }

    .cta-columns .cta-columns__items .cta-columns__item {
        width: 100%;
        padding: 45px 15px;
        box-sizing: border-box;
    }

    .cta-columns .cta-columns__items .cta-columns__item:first-child {
        background-color: #2e3c4b;
    }

    .cta-columns .cta-columns__items .cta-columns__item:last-child {
        background-color: #2a3642;
    }

    .cta-columns .cta-columns__items .cta-columns__item+.cta-columns__item {
        position: relative;
    }

    .cta-columns .cta-columns__items .cta-columns__item+.cta-columns__item:before {
        content: "";
        position: absolute;
        top: 0;
        left: 20px;
        right: 20px;
        border-top: 1px solid hsla(204, 2%, 54%, 0.3);
    }
}

.key-benefits {
    background: url(../images/key-benefits-bg.jpg?8fcbe3b8edc41a3c81400906227f17c7) no-repeat 50%;
    background-size: cover;
    padding-bottom: 107px;
}

.key-benefits .block__title {
    color: #fff;
}

.key-benefits .block__next {
    background-color: #333f48 !important;
}

.key-benefits .key-benefits__title {
    text-align: center;
    font-size: 3.75rem;
    line-height: 4.5rem;
    color: #393b3c;
    font-weight: 200;
}

.key-benefits .key-benefits__copy {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 300;
}

.key-benefits .key-benefits__items {
    max-width: 910px;
    margin: 45px auto 0;
}

.key-benefits .key-benefits__items:after {
    clear: both;
    content: "";
    display: block;
}

.key-benefits .key-benefits__item {
    width: calc(33.33333% - 6.66667px);
    float: left;
    margin-left: 5px;
    position: relative;
    box-sizing: border-box;
    padding: 40px 45px 20px;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    min-height: 296px;
}

.key-benefits .key-benefits__item:nth-child(4n) {
    clear: both;
}

.key-benefits .key-benefits__item:nth-child(n+4) {
    margin-top: 5px;
}

.key-benefits .key-benefits__item .key-benefits__item__icon {
    font-size: 0;
}

.key-benefits .key-benefits__item .key-benefits__item__icon svg {
    max-width: 130px;
}

.key-benefits .key-benefits__item .key-benefits__item__icon span:after {
    font-size: 126px;
    line-height: 126px;
}

.key-benefits .key-benefits__item .key-benefits__item__title {
    margin-top: 24px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 900;
    color: #393b3c;
    text-transform: uppercase;
}

.key-benefits .key-benefits__item .key-benefits__item__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 20px;
}

.key-benefits .key-benefits__item .key-benefits__item__copy p:first-child {
    margin-top: 0;
}

.key-benefits .key-benefits__item .key-benefits__item__copy p:last-child {
    margin-bottom: 0;
}

.key-benefits .key-benefits__item.key-benefits__item--green {
    border-color: #6cab36;
}

.key-benefits .key-benefits__item.key-benefits__item--green .key-benefits__item__icon {
    color: #6cab36;
}

.key-benefits .key-benefits__item.key-benefits__item--green .key-benefits__item__overlay {
    background: #6cab36;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--yellow {
    border-color: #ffc708;
}

.key-benefits .key-benefits__item.key-benefits__item--yellow .key-benefits__item__icon {
    color: #ffc708;
}

.key-benefits .key-benefits__item.key-benefits__item--yellow .key-benefits__item__overlay {
    background: #ffc708;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--orange {
    border-color: #f99e1d;
}

.key-benefits .key-benefits__item.key-benefits__item--orange .key-benefits__item__icon {
    color: #f99e1d;
}

.key-benefits .key-benefits__item.key-benefits__item--orange .key-benefits__item__overlay {
    background: #f99e1d;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--red {
    border-color: #e32726;
}

.key-benefits .key-benefits__item.key-benefits__item--red .key-benefits__item__icon {
    color: #e32726;
}

.key-benefits .key-benefits__item.key-benefits__item--red .key-benefits__item__overlay {
    background: #e32726;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--navy-dark {
    border-color: #333f48;
}

.key-benefits .key-benefits__item.key-benefits__item--navy-dark .key-benefits__item__icon {
    color: #333f48;
}

.key-benefits .key-benefits__item.key-benefits__item--navy-dark .key-benefits__item__overlay {
    background: #333f48;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--blue {
    border-color: #00c1d5;
}

.key-benefits .key-benefits__item.key-benefits__item--blue .key-benefits__item__icon {
    color: #00c1d5;
}

.key-benefits .key-benefits__item.key-benefits__item--blue .key-benefits__item__overlay {
    background: #00c1d5;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--purple {
    border-color: #b34fc5;
}

.key-benefits .key-benefits__item.key-benefits__item--purple .key-benefits__item__icon {
    color: #b34fc5;
}

.key-benefits .key-benefits__item.key-benefits__item--purple .key-benefits__item__overlay {
    background: #b34fc5;
    color: #fff;
}

.key-benefits .key-benefits__item.key-benefits__item--green-dark {
    border-color: #00966c;
}

.key-benefits .key-benefits__item.key-benefits__item--green-dark .key-benefits__item__icon {
    color: #00966c;
}

.key-benefits .key-benefits__item.key-benefits__item--green-dark .key-benefits__item__overlay {
    background: #00966c;
    color: #fff;
}

.key-benefits .key-benefits__item .key-benefits__item__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    z-index: 2;
    text-align: left;
    padding: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.2);
}

.key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__title {
    font-size: 1.25rem;
    line-height: 1.4375rem;
    font-weight: 900;
}

.key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
}

.key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__cta {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-top: 14px;
    display: inline-block;
}

.key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__cta:hover {
    text-decoration: none;
}

.key-benefits .key-benefits__item:hover .key-benefits__item__overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    padding: 30px;
    opacity: 1;
    z-index: 3;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .key-benefits {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .key-benefits .key-benefits__items {
        margin: 55px auto 0;
    }

    .key-benefits .key-benefits__item {
        padding: 25px 20px 20px;
        min-height: 234px;
    }

    .key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__title {
        font-size: 1.25rem;
        line-height: 1.4375rem;
    }

    .key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__copy {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
}

@media (max-width: 767px) {
    .key-benefits {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .key-benefits .key-benefits__items {
        margin: 28px auto 0;
    }

    .key-benefits .key-benefits__item {
        padding: 38px 20px 20px;
        min-height: 276px;
        width: 100%;
        margin-left: 0;
    }

    .key-benefits .key-benefits__item:nth-child(n+1) {
        margin-top: 14px;
    }

    .key-benefits .key-benefits__item .key-benefits__item__title {
        margin-top: 24px;
    }

    .key-benefits .key-benefits__item .key-benefits__item__copy {
        margin-top: 5px;
    }

    .key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__title {
        font-size: 1.25rem;
        line-height: 1.4375rem;
    }

    .key-benefits .key-benefits__item .key-benefits__item__overlay .key-benefits__item__overlay__copy {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
}

.pagination-page {
    background-color: #6cab36;
    padding-top: 26px;
    padding-bottom: 26px;
}

.pagination-page .pagination-page__left,
.pagination-page .pagination-page__right {
    width: 50%;
}

.pagination-page .pagination-page__left a,
.pagination-page .pagination-page__right a {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.pagination-page .pagination-page__left a:hover .icon,
.pagination-page .pagination-page__right a:hover .icon {
    background-color: #fff;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.pagination-page .pagination-page__left a:hover .icon:after,
.pagination-page .pagination-page__right a:hover .icon:after {
    color: #6cab36;
}

.pagination-page .pagination-page__left .icon,
.pagination-page .pagination-page__right .icon {
    border: 1px solid #fff;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: relative;
    vertical-align: middle;
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
}

.pagination-page .pagination-page__left .icon:after,
.pagination-page .pagination-page__right .icon:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 33px;
    font-size: 33px;
    -moz-transition: all 0.13s ease-in-out;
    -webkit-transition: all 0.13s ease-in-out;
    -ms-transition: all 0.13s ease-in-out;
    -o-transition: all 0.13s ease-in-out;
    transition: all 0.13s ease-in-out;
}

.pagination-page .pagination-page__left div,
.pagination-page .pagination-page__right div {
    display: inline-block;
    width: calc(100% - 160px);
    vertical-align: middle;
}

.pagination-page .pagination-page__left {
    float: left;
}

.pagination-page .pagination-page__left .icon {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-right: 15px;
}

.pagination-page .pagination-page__right {
    float: right;
    text-align: right;
}

.pagination-page .pagination-page__right .icon {
    margin-left: 15px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .pagination-page {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .pagination-page .pagination-page__left a,
    .pagination-page .pagination-page__right a {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }

    .pagination-page .pagination-page__left div,
    .pagination-page .pagination-page__right div {
        display: inline-block;
        width: calc(100% - 160px);
        vertical-align: middle;
    }

    .pagination-page .pagination-page__left div {
        margin-left: 10px;
    }

    .pagination-page .pagination-page__right div {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .pagination-page {
        padding-top: 24px;
        padding-bottom: 15px;
    }

    .pagination-page .pagination-page__left a,
    .pagination-page .pagination-page__right a {
        font-size: 1rem;
        line-height: 1.125rem;
        display: block;
        padding-top: 37px;
        text-transform: uppercase;
    }

    .pagination-page .pagination-page__left .icon,
    .pagination-page .pagination-page__right .icon {
        width: 31px;
        height: 31px;
        position: absolute;
        top: 18px;
        right: 20px;
    }

    .pagination-page .pagination-page__left .icon:after,
    .pagination-page .pagination-page__right .icon:after {
        font-size: 17px;
        width: 10px;
        height: 17px;
    }

    .pagination-page .pagination-page__left div,
    .pagination-page .pagination-page__right div {
        display: block;
        width: 100%;
    }

    .pagination-page .pagination-page__left div {
        margin-left: 0;
    }

    .pagination-page .pagination-page__left .icon {
        left: 20px;
        right: auto;
    }

    .pagination-page .pagination-page__right div {
        margin-right: 0;
    }
}

.about {
    padding: 0;
}

.about .about__navigation {
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    left: auto;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    counter-reset: about-nav-counter;
}

.about .about__navigation.above {
    top: 0;
    bottom: auto;
}

.about .about__navigation.below {
    top: auto;
    bottom: 0;
}

.about .about__navigation.fixed {
    position: fixed;
    top: 106px;
    right: 30px;
    bottom: 0;
    left: auto;
}

.about .about__navigation li {
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
    position: relative;
    counter-increment: about-nav-counter;
}

.about .about__navigation li:before {
    display: none !important;
}

.about .about__navigation li+li {
    margin-top: 0;
    margin-top: 20px;
}

.about .about__navigation li+li:after {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    bottom: 100%;
    left: 0;
    width: 1px;
    margin: auto;
    background-color: hsla(0, 0%, 100%, 0.5);
    z-index: 30;
}

.about .about__navigation li a {
    display: block;
    width: 5px;
    height: 5px;
    border: 2px solid #fff;
    border-radius: 100%;
    margin: 0 auto;
    text-decoration: none;
    font-size: 0.6875rem;
    color: #a6a6a6;
    font-weight: 800;
    line-height: 19px;
}

.about .about__navigation li.active a {
    width: 18px;
    height: 18px;
    background-color: #fff;
    text-align: center;
}

.about .about__navigation li.active a:before {
    content: counter(about-nav-counter);
}

.about .about__items {
    position: relative;
    z-index: 10;
}

.about .about__items.fixed {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
}

.about .about__item {
    box-sizing: border-box;
}

.about .about__container {
    max-width: 1668px;
    margin: 0 auto;
    padding: 146px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about .about__container:after {
    clear: both;
    content: "";
    display: table;
}

.about .about__container .about__left,
.about .about__container .about__right {
    box-sizing: border-box;
}

.about .about__container .about__left {
    width: 50%;
    padding-right: 45px;
    padding-top: 70px;
}

.about .about__container .about__right {
    float: right;
    width: calc(50% - 234px);
    margin-left: 4px;
    padding-left: 85px;
}

.about .about__image {
    display: none;
}

.about .about__image img {
    max-width: 100%;
    height: auto;
}

.about .about__text {
    color: #fff;
    z-index: 30;
    position: relative;
    box-sizing: border-box;
    float: right;
    clear: right;
    width: 50%;
    padding-left: 85px;
    padding-right: 75px;
    margin-top: 75px;
    margin-bottom: 75px;
}

.about .about__text .about__number {
    font-size: 6.25rem;
    line-height: 6.25rem;
    letter-spacing: -0.1em;
    font-weight: 700;
    color: hsla(0, 0%, 100%, 0.25);
}

.about .about__text .about__title {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
}

.about .about__text .about__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-top: 21px;
    margin-bottom: 21px;
}

.about .about__text .about__copy a {
    color: #fff;
}

.about .about__text ul li:before {
    background-color: #fff;
}

.about .about__text a:not(.btn):not(#resumator-wrapper.resumator-basic-widget.resumator-job.resumator-buttonsinput[type="button"]) {
    color: #fff;
    text-decoration: underline;
}

.about .about__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.about .about__bg.fixed {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
}

.about .about__bg img {
    max-width: 50%;
    height: auto;
}

.about .about__bgs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.about .about__bgs.above {
    top: 0;
    bottom: auto;
}

.about .about__bgs.below {
    top: auto;
    bottom: 0;
}

.about .about__bgs.fixed {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
}

.about .about__bgs.fixed .about__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about .about__bgs .about__bg {
    display: flex;
    align-items: center;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.about .about__bgs .about__bg .about__container {
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
}

.about .about__bgs .about__bg.active {
    opacity: 1;
}

.about .about__bgs.fixed .about__bg .about__container {
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 1200px) {
    .about .about__item {
        background-color: transparent !important;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .about .about__items {
        overflow: visible;
    }

    .about .about__container {
        max-width: 560px;
        box-sizing: border-box;
        display: block;
        padding: 100px 0 100px 30px;
    }

    .about .about__image {
        width: 100%;
        max-width: 477px;
        padding: 0;
        display: block;
    }

    .about .about__text {
        float: none;
        width: 100%;
        padding: 0;
        margin: 30px 0 0;
        position: relative;
    }

    .about .about__text .about__number {
        position: absolute;
        top: 0;
        right: calc(100% + 20px);
        bottom: auto;
        left: auto;
        font-size: 4.375rem;
        line-height: 4.375rem;
    }

    .about .about__text .about__title {
        font-size: 1.875rem;
        line-height: 1.875rem;
    }

    .about .about__text .about__copy {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .about .about__bgs {
        display: none;
    }
}

@media (max-width: 767px) {
    .about .about__navigation {
        display: none;
    }

    .about .about__items {
        overflow: visible;
    }

    .about .about__item {
        min-height: 0 !important;
    }

    .about .about__container {
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        padding: 36px 20px;
    }

    .about .about__image {
        width: 100%;
        max-width: 477px;
        padding: 0;
        display: block;
    }

    .about .about__text {
        float: none;
        width: 100%;
        padding: 0;
        margin: 10px 0 0;
    }

    .about .about__text .about__number {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }

    .about .about__text .about__title {
        font-size: 1.375rem;
        line-height: 1.375rem;
        margin-top: 10px;
    }

    .about .about__text .about__copy {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .about .about__text .about__copy ul {
        columns: 2;
    }

    .about .about__bgs {
        display: none;
    }
}

.testimonials {
    color: #fff;
}

.testimonials,
.testimonials.block--has-next-bottom .block__next {
    background-color: #2a3642;
}

.testimonials .swiper-container {
    margin-top: 45px;
}

.testimonials .testimonials__items:after {
    clear: both;
    content: "";
    display: table;
}

.testimonials .testimonials__items .testimonials__item {
    width: calc(50% - 2px);
    height: 460px;
    float: left;
    position: relative;
    border-radius: inherit;
    overflow: hidden;
    z-index: 0;
}

.testimonials .testimonials__items .testimonials__item .video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.testimonials .testimonials__items .testimonials__item .plyr__video-wrapper {
    padding-bottom: 77.01342%;
}

.testimonials .swiper__controls .swiper__controls__left,
.testimonials .swiper__controls .swiper__controls__right {
    background-color: transparent;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .testimonials .testimonials__items .testimonials__item {
        height: 262px;
    }

    .testimonials .testimonials__items .testimonials__item .plyr__video-wrapper {
        padding-bottom: 75%;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonials__items .testimonials__item {
        height: 210px;
    }

    .testimonials .testimonials__items .testimonials__item .plyr__video-wrapper {
        padding-bottom: 75%;
    }
}

.awards .swiper-container {
    margin-top: 100px;
}

.awards .swiper-container .swiper__controls {
    margin-top: 60px;
}

.awards .awards__item {
    text-align: center;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards .awards__grid_item {
    text-align: center;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 235px;
}

.awards .award_logo {
    height: 100px;
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: center;
}


.awards .award_logo img {
    height: fit-content;
}

.awards .award_name {
    line-height: 1;
    padding: 15px 0;
    height: 100px;
}

.awards .awards_grid .awards__items {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0 auto;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
.btn {
    font-size: 0.9375rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #fff;
    background-color: #6cab37;
    border: none;
    border-radius: 0.25rem;
    padding: 8px 15px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    -moz-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"],
.btn-green,
.form .form__row input[type="submit"] {
    background-color: #6cab36;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons input[type="button"]:hover,
.btn-green:hover,
.form .form__row input[type="submit"]:hover {
    background-color: #fff;
    color: #6cab36;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.btn-white {
    background-color: #fff;
    color: #6cab36;
}

.btn-white:hover {
    background-color: #393b3c;
    color: #fff;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.btn-hollow-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hollow-white:hover {
    background-color: #fff;
    color: #393b3c;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.btn-big {
    font-size: 1.125rem;
    line-height: 1.125rem;
    padding: 22px 26px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .btn-big {
        padding: 17px 18px;
    }
}

@media (max-width: 767px) {
    .btn-big {
        font-size: 1rem;
        padding: 15px 42px;
    }

    .opt-out-trigger+.opt-out-trigger {
        margin-top: 15px;
    }
}

input:not([type]),
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    color: #6d6d6d;
    font-size: 1.125rem;
    padding: 1rem;
    border: 1px solid #d0d0d0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input:not([type]):focus,
input:not([type]):hover,
input[type="color"]:focus,
input[type="color"]:hover,
input[type="date"]:focus,
input[type="date"]:hover,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime"]:focus,
input[type="datetime"]:hover,
input[type="email"]:focus,
input[type="email"]:hover,
input[type="month"]:focus,
input[type="month"]:hover,
input[type="number"]:focus,
input[type="number"]:hover,
input[type="password"]:focus,
input[type="password"]:hover,
input[type="search"]:focus,
input[type="search"]:hover,
input[type="tel"]:focus,
input[type="tel"]:hover,
input[type="text"]:focus,
input[type="text"]:hover,
input[type="time"]:focus,
input[type="time"]:hover,
input[type="url"]:focus,
input[type="url"]:hover,
input[type="week"]:focus,
input[type="week"]:hover,
textarea:focus,
textarea:hover {
    border-color: #333f48;
    color: #000;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]+span {
    position: relative;
    display: inline-block;
    font-size: 1.125rem;
}

input[type="radio"]+span:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1px solid #d0d0d0;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 20px;
}

input[type="radio"]:checked+span:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #6cab36;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 8px;
    margin: auto 0;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+span {
    position: relative;
}

input[type="checkbox"]+span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #d0d0d0;
    vertical-align: middle;
    margin-right: 15px;
}

input[type="checkbox"]:checked+span {
    position: relative;
    display: inline-block;
}

input[type="checkbox"]:checked+span:before {
    background-color: #6cab36;
}

input[type="checkbox"]:checked+span:after {
    content: "\E911";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 8px;
    margin: auto 0;
    width: 19px;
    height: 13px;
}

input,
select,
textarea {
    color: #6d6d6d;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #6d6d6d;
}

input:-moz-placeholder,
input::-moz-placeholder,
select:-moz-placeholder,
select::-moz-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder {
    color: #6d6d6d;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #6d6d6d;
}

select {
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-family: Nunito, sans-serif;
    padding: 16px;
    outline: 0 !important;
    border: 1px solid #d0d0d0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAABIFBMVEVsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZurDhvrTtxrjxyrj54skax05Wy05a11Zm515+616C/2qjA26jB26rI37PI4LTN4rrP473T5sPU5sTY6cnY6crd7NDe7NLi7tfi79jx9+vz+O/1+fH6/Pj6/Pn7/fkVZ1L6AAAAQHRSTlMABAUIEhMUGBkaGxwdIyUoMTY7RUhKUV9gd3h8foqQkZSeoKqvsLnBwsTFzdng4ePn6ers7e/w8fT19vf5+vv+/ytkTAAAASxJREFUeAF9yXfDCgEABvDnvSSEdkYdDdpb0YieBiIytLnu+38LdVc33hu/f3/QBZL5Dk86+WQAVpE8DQoRmPle8ZbXPhiEG7RohKGJ9WmjH8NFqEdbvRAUd2p0UPPiLE1HaZwER3Q0CgLI0kUW8A7pYngXT+jqKTJUHX6PqRv/OVCRQZmqX/JqrP9K/klFGW1eLOX1hKrJWl5S1cZ7Xv2QthP1t9L1+QEDar4fN1OS083xG68GaFK3OO5nnO2lBTVNFGnwVdp93ElfqCsiRaO59E+a0yCFOE0+//1Eozg8b+ninQd4QRcvAfj7dDR4iJMEHSVwJpTooCRA4a/TVt2Pi8dV2qg+guZ+gRaFBzC4edalSff5Dcx84htq2uI9WAlRMVdptSo5MSpA8x9Zl8vRxv6e6wAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-size: 32px 33px;
    background-position: right 20px center;
}

select:focus {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAABJlBMVEVsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZurDhvrTtxrjxyrj54skax05Wy05a11Zm515+616C/2qjA26jB26rI37PI4LTN4rrP473T5sPU5sTY6cnY6crd7NDe7NLi7tfi79jx9+vz+O/1+fH6/Pj6/Pn7/fkR3ML8AAAAQnRSTlMABAUIEhMUFxgZHB0jKTE2NztGR0pQYHd8f4iKkJGTlJ6foaqwsbjCw8TFzc7Z3+Hi5+jp6+zt8PHz9PX29/n6+/4bqdPqAAABNUlEQVR4AX3P53bSAADF8VuqHbWtsgcOBSWAMhAFlYByE1BRFIdsDXn/lxCy04zf53vOPX/YIvFcqdZu10q5eARep/lXtLzOn8LtKP2WLu/SR3A4F+ghnMNyWaeP+iUMF036al5AE6kyQFWvyTBQRjsQGUi8A+A+QzwAjrsM8eYYSbp8/vuJTkk8otNE+adM6PAQFTp8VdYf18oX2ipo0zbdbcYcb5QpLS/Rp+X7bjkiOVruvtHUx3uafigrmQfySpnR8AEdGmbqQqZOXqjmooMX1P1S5xJN0lz9Sc1zFKjb/pZok/5sqSkgxVApnAwYYnACFBmiCOB6yEDDa+w9ZqAnOLjVYIDGbWju9uirdw+GhEgfYgKWaIserSgczp7yhmdncIuV6VCOwesqK3S51xWyV7D8BzRF0ZFVu0DfAAAAAElFTkSuQmCC);
}

select::-ms-expand {
    display: none;
}

textarea {
    height: 142px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.wrapper {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.clearfix:after {
    clear: both;
    content: "";
    display: table;
}

.tabs {
    margin-left: -4px;
    margin-right: -4px;
    width: calc(100% + 8px);
    display: flex;
}

.tabs:after {
    clear: both;
    content: "";
    display: block;
}

.tabs .tabs__left,
.tabs .tabs__right {
    width: calc(12.5% - 4.5px);
    float: left;
    margin-left: 4px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 2;
}

.tabs .tabs__left span,
.tabs .tabs__right span {
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #d3dae2;
    width: 85px;
    height: 85px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    position: relative;
    display: inline-block;
}

.tabs .tabs__left span:after,
.tabs .tabs__right span:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 45px;
    line-height: 85px;
    color: #6cab36;
}

.tabs .tabs__left span:hover,
.tabs .tabs__right span:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.11);
}

.tabs .tabs__left span:hover:after,
.tabs .tabs__right span:hover:after {
    font-weight: 700;
}

.tabs .tabs__left.tabs__left span,
.tabs .tabs__right.tabs__left span {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.tabs .tabs__left {
    justify-content: flex-start;
}

.tabs .tabs__right {
    justify-content: flex-end;
}

.tabs .tabs__inner {
    width: calc(75% - 7px);
    float: left;
    margin-left: 4px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0;
}

.tabs .tabs__inner:after {
    clear: both;
    content: "";
    display: table;
}

.tabs .tabs__inner .tab-header-and-content {
    list-style: none;
    display: inline;
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.tabs .tabs__inner .tab-header-and-content:before {
    display: none !important;
}

.tabs .tabs__inner .tab-header-and-content+li {
    margin-top: 0;
}

.tabs .tabs__inner .tab-header-and-content:first-child:last-child .tab-link {
    width: 100%;
}

.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(2) .tab-link,
.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(2)~.tab-header-and-content .tab-link {
    width: 50%;
}

.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(3) .tab-link,
.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(3)~.tab-header-and-content .tab-link {
    width: 33.33333%;
}

.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(4) .tab-link,
.tabs .tabs__inner .tab-header-and-content:first-child:nth-last-child(4)~.tab-header-and-content .tab-link {
    width: 25%;
}

.tabs .tabs__inner .tab-link {
    position: relative;
    font-size: 1.625rem;
    line-height: 2.6875rem;
    font-weight: 900;
    color: #333f48;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 7px;
    text-align: center;
    border-bottom: 11px solid #333f48;
    -moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    display: inline-block;
}

.tabs .tabs__inner .tab-link:hover {
    color: #6cab36;
}

.tabs .tabs__inner .is-active {
    color: #6cab36;
    border-color: #6cab36;
}

.tabs .tabs__inner .is-active:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9.5px 0;
    border-color: #6cab36 transparent transparent;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: 0;
    -moz-transition: border-color 0.13s ease-in-out;
    -webkit-transition: border-color 0.13s ease-in-out;
    -ms-transition: border-color 0.13s ease-in-out;
    -o-transition: border-color 0.13s ease-in-out;
    transition: border-color 0.13s ease-in-out;
    margin: 0 auto;
}

.tabs .tabs__inner .tab-content {
    display: none;
    width: 100%;
    float: left;
    font-size: 1rem;
}

@media (max-width: 1199px) and (min-width: 768px) {

    .tabs .tabs__left span,
    .tabs .tabs__right span {
        width: 50px;
        height: 50px;
    }

    .tabs .tabs__left span:after,
    .tabs .tabs__right span:after {
        font-size: 26px;
        line-height: 50px;
    }

    .tabs .tabs__left,
    .tabs .tabs__right {
        width: calc(8.33333% - 4.33333px);
        float: left;
        margin-left: 4px;
    }

    .tabs .tabs__inner {
        width: calc(83.33333% - 7.33333px);
        float: left;
        margin-left: 4px;
    }

    .tabs .tabs__inner .tab-link {
        font-size: 1.25rem;
        line-height: 2.6875rem;
    }
}

@media (max-width: 767px) {

    .tabs .tabs__left,
    .tabs .tabs__right {
        display: none;
    }

    .tabs .tabs__inner {
        width: calc(100% - 8px);
        float: left;
        margin-left: 4px;
    }

    .tabs .tabs__inner .tab-header-and-content {
        display: block;
    }

    .tabs .tabs__inner .tab-header-and-content+li {
        margin-top: 13px;
    }

    .tabs .tabs__inner .tab-link {
        font-size: 1.25rem;
        line-height: 2.6875rem;
        text-align: left;
        width: 100% !important;
        display: block;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAMAAABhTZc9AAAA21BMVEXT2uL////T2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uLT2uJ8uEJ+uUWKwFenz4Cq0YW115S215a52Zm825/B3aXF4KzM47XO5LjT2uLm6u7m6u/m8tvn6+/n8tzn8t3q7fHt8PPu8PTv9ufw9+rx8/Xx8/by+Oz0+e/3+/P4+fv5+vv5/Pf6/Pj8/f39/f39/vz+/v7+/v/+//7+//////93sh39AAAAH3RSTlMAAAgJChobHDAxMmxtkpOrrK2ur8/Q0djZ2+Dw8fz99bCq2AAAASNJREFUeAGF021XgjAUwPGpOAyMKFRSaeu5LDBKsciopAfu9/9EzXHYuJ7D6f/2dzib7l6i6vYP/Gk4Hbv9bquqsp53Er1kG9i8pxHzekjb+2xZgGrJnLZWOpj/QL1iPqCVmpMF7LaYmKV2hhqvPxUPO1KdWOEHv4Kq2NmqxfR93vilPptZQr0EkKoSr0UoA6w6RokdNWpkEzdt1PSQ+FmjZj4JchCtV7InfvEge/wCgDwg4RZnfLdTEIXlt993M9kNP78vW8tv8bkrfovPdVOs+M52hBX/XsoalZn4f0aaeOqNtKI3Qu/7LBS/LzH0bPyeverZMP6fKxEdxQWyIh5RPc8dhyU1T5hjoF3YE7uQZjnkchesVll9j9zjIAzGR7U9+gNPoZ8L9/I/HAAAAABJRU5ErkJggg==);
        background-position: 100%;
        background-repeat: no-repeat;
    }

    .tabs .tabs__inner .tab-link:after {
        margin-right: 0;
        left: 20px;
        right: auto;
    }

    .tabs .tabs__inner .is-active {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAAbFBMVEWGuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD6GuD7j79Pm8Nf0+e5j3WzXAAAAIHRSTlMAAQIDIScoPj9ARkdJYmOJiovCw8TFysvM29zo6/Lz+fZZCREAAAC1SURBVHjafdPrEoIgEIbhxQNYeSw1UYPV7v8eU0wNAt6/z4w636ywR1hRD1IOdckI6AUZxyOeBb8WtajVRqddRjQa2W5XiX/J22bxCy2JeLWwRWttuGCGjnIAwl3ICSToLIHCjQU83HiHwY0DqAHmt9GshthwMnFS6H2s/4NKNxbeEXzzBQC5Z3gIn3brQliiwmaCgiq1nUkK8FVhmlC2RTvjfVQ/6v6kXh21xqxq1t+hqdhBH/L0TP6qvorYAAAAAElFTkSuQmCC);
    }

    .tabs .tabs__inner .tab-content {
        float: none;
    }
}

.accordion {
    margin-top: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion .accordion__item+.accordion__item {
    margin-top: 20px;
}

.accordion .accordion__item .accordion__toggle {
    position: relative;
    color: #fff;
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 700;
    background-color: #333f48;
    cursor: pointer;
    padding: 35px 65px 35px 30px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    -moz-transition: color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out;
}

.accordion .accordion__item .accordion__toggle:after {
    content: "";
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAfCAMAAADHso01AAAAXVBMVEV8uEL///98uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEJ8uEKN7D8JAAAAHnRSTlMAAAEDBAUMECgvS1hcYGVweoCQl6OwzN/l6PHz9fvxn3GfAAAAUUlEQVR42u3JNxKAMAwEQAmTk8mZ+/8zKYUaNQydt13SImJFb3xMVtdAanQDZKG/d9L1YgbGQbRMGwwVleclbmB/WRwpHmAl9O9dYLWacqf7AQSEEaeuYf2WAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: auto;
    margin: auto;
    border-radius: 100%;
    -moz-transition: background 0.13s ease-in-out;
    -webkit-transition: background 0.13s ease-in-out;
    -ms-transition: background 0.13s ease-in-out;
    -o-transition: background 0.13s ease-in-out;
    transition: background 0.13s ease-in-out;
}

.accordion .accordion__item .accordion__toggle:hover {
    color: #6cab36;
}

.accordion .accordion__item .accordion__toggle:hover:after {
    background-color: #fff;
}

.accordion .accordion__item .accordion__content {
    display: none;
    padding: 60px 55px 50px;
    background-color: #edf0f3;
    font-size: 1.25rem;
    line-height: 1.875rem;
}

.accordion .accordion__item .accordion__content p:first-child {
    margin-top: 0;
}

.accordion .accordion__item .accordion__content p:last-child {
    margin-bottom: 0;
}

.accordion .accordion__item.active .accordion__toggle {
    background-color: #6cab36;
    position: relative;
}

.accordion .accordion__item.active .accordion__toggle:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9.5px 0;
    border-color: #6cab36 transparent transparent;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 38px;
}

.accordion .accordion__item.active .accordion__toggle:after {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAADCAMAAABYkfTWAAAADFBMVEX////////////////1pQ5zAAAAA3RSTlOv5OXCIP6cAAAAFklEQVR4AWNgYGTCBRiBksy4ASN+vQAhOQC8KJDn+wAAAABJRU5ErkJggg==);
    border-color: #fff;
    background-color: transparent;
}

.accordion .accordion__item.active .accordion__toggle:hover {
    color: #fff;
}

.accordion .accordion__item.active .accordion__toggle:hover:after {
    background-color: transparent;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .accordion {
        margin-top: 55px;
        max-width: 900px;
    }

    .accordion .accordion__item .accordion__toggle {
        font-size: 1.5rem;
        line-height: 1.5rem;
        padding: 28px 65px 28px 35px;
    }

    .accordion .accordion__item .accordion__content {
        padding: 34px 50px 40px;
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
}

@media (max-width: 767px) {
    .accordion {
        margin-top: 55px;
        max-width: 900px;
    }

    .accordion .accordion__item+.accordion__item {
        margin-top: 10px;
    }

    .accordion .accordion__item .accordion__toggle {
        font-size: 1.25rem;
        line-height: 1.25rem;
        padding: 28px 50px 28px 20px;
    }

    .accordion .accordion__item .accordion__toggle:after {
        width: 31px;
        height: 31px;
        background-size: 21px;
    }

    .accordion .accordion__item .accordion__content {
        padding: 30px 16px;
        font-size: 1rem;
        line-height: 1.625rem;
    }
}

.breadcrumbs {
    color: #888b8d;
    position: relative;
    margin-top: 40px;
    bottom: auto;
    left: 0;
    width: 100%;
    z-index: 200;
}

.breadcrumbs.breadcrumbs--grey {
    background-color: #edf0f3;
}

.breadcrumbs .breadcrumbs__inner {
    height: 100%;
    padding: 10px 0 10px 50px;
    /* text-align: center; */
    margin-bottom: 1rem;
}

.page-template-page-flexible-content .breadcrumbs__inner {
    text-align: left;
}

.breadcrumbs * {
    font-family: Nunito Sans, sans-serif;
    font-size: 0.875rem;
    line-height: 1.625rem;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #8b8e90;
    text-decoration: none;
    text-transform: uppercase;
}

.breadcrumbs span.current {
    color: #888b8d;
    text-decoration: none;
    text-transform: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .breadcrumbs {
        display: none;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }
}

.js_pagination_item {
    display: none !important;
}

.js_pagination_item.active {
    display: flex !important;
}

.pagination {
    font-size: 0;
}

.pagination .pagination__item {
    display: inline-block;
    width: 62px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-size: 1.125rem;
}

.pagination .pagination__item+.pagination__item {
    margin-left: 3px;
}

.pagination .pagination__item.pagination__item--current {
    position: relative;
}

.pagination .pagination__item.pagination__item--current:after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #6cab36;
    height: 5px;
}

.pagination .pagination__item.pagination__item--next,
.pagination .pagination__item.pagination__item--prev {
    position: relative;
    display: inline-block;
}

.pagination .pagination__item.pagination__item--next:after,
.pagination .pagination__item.pagination__item--prev:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 62px;
    color: #6cab36;
    font-size: 23px;
}

.pagination .pagination__item.pagination__item--prev {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 1199px) and (min-width: 768px) {
    .pagination .pagination__item {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 1rem;
    }

    .pagination .pagination__item+.pagination__item {
        margin-left: 2px;
    }

    .pagination .pagination__item.pagination__item--next,
    .pagination .pagination__item.pagination__item--prev {
        position: relative;
        display: inline-block;
    }

    .pagination .pagination__item.pagination__item--next:after,
    .pagination .pagination__item.pagination__item--prev:after {
        content: "\E900";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        line-height: 56px;
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .pagination {
        text-align: center;
    }

    .pagination .pagination__item {
        width: 51px;
        height: 51px;
        line-height: 51px;
        font-size: 1rem;
    }

    .pagination .pagination__item+.pagination__item {
        margin-left: 3px;
    }

    .pagination .pagination__item.pagination__item--next,
    .pagination .pagination__item.pagination__item--prev {
        position: relative;
        display: inline-block;
    }

    .pagination .pagination__item.pagination__item--next:after,
    .pagination .pagination__item.pagination__item--prev:after {
        content: "\E900";
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        line-height: 56px;
        font-size: 21px;
    }
}

.modal label {
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.modal .modal-state {
    display: none;
}

.modal .modal-fade-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsla(0, 0%, 100%, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
    visibility: hidden;
    z-index: 99999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.modal .modal-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.modal .modal-close {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
    color: #fff;
    font-weight: 900;
    text-align: center;
    line-height: 43px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAArCAMAAAAJzfvtAAABHVBMVEVsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZsqzZtqzdvrTtxrjxxrj1yrj51sEN2sUOFuVmHuluPv2WPv2aQwGiaxXSbxnacx3idx3mex3qeyHufyHyiyn+iyoCjyoGjy4Kky4Kky4OmzIWqz4uz1Je01Jm11Zq21Zy31py41p2515+516C616C62KG82KO82aS92aW+2qa+2qe/2qfA26jA26nB26rI37PJ4LXJ4LbO47zQ5L/R5cDR5cHS5cLT5sLU5sTV58bW6MfX6MjY6cnY6cro8t/q8+Lr9OP2+vP4+/X8/fv9/vz9/v3+/v3+//7///+U82BrAAAAFnRSTlMAGhseX2BhYoyNj5CRktbX2Nr19vr8FK1qmwAAAUxJREFUeNrN1ldTwkAQB/CT2LBEILAJxt57VxALCHbFXom57/8xvA0Z5/Ky3r44/l+Snfn/HjLJ3EaoWH2ZAvyaQqbfElG6HTCM04P9TmCkS4iOHAfkUqIXWEkLmwdskeeBvABm/hxMjidnd2qMBIcy3NZn71KGCxR4lVLuav0rNV9QYEeq7P30r9UUTlPAPUVRivs36v5rnX5ot4GiHPVv230KoKjHwmuqa7AGNEBRQ1Hx7rC/CiTQxRv2VwzfdFVGCZbBEMAJ9sMlMAXFe4k5MgXFB9nOsRkYxn7Q1AQN/EfsL8IBippLAL2PX2glFjTwn7A/D5h9FHWXBP6z6rTm4qmMouFS4Czuxymh2KTAi5SfswAJcU6BjdbHDOjZCt4nKAAjPiQz6rOPmf8P+Ke3zQNDIs0DaeaOc1LcLcrf0xhrIGvyJ5AdtFT5G3Ms33RGMOQ0AAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    width: 48px;
    height: 43px;
    font-size: 0;
    z-index: 100;
}

.modal .modal-inner {
    background-color: #edf0f3;
    margin: 0;
    max-height: 95%;
    overflow: auto;
    transition: opacity 0.25s ease;
    width: 95%;
    max-width: 1024px;
    border-bottom: 11px solid #6cab36;
    position: relative;
}

.modal .modal-content {
    padding: 62px 75px 34px;
    box-sizing: border-box;
}

.modal .modal-content:after {
    clear: both;
    content: "";
    display: table;
}

.modal .modal-content .modal__title {
    font-size: 2.125rem;
    line-height: 2.125rem;
    font-weight: 900;
    color: #6cab36;
    text-transform: uppercase;
}

.modal .modal-content .modal__intro {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 300;
}

.modal .modal-state:checked+.modal-fade-screen {
    opacity: 1;
    visibility: visible;
}

.modal.modal--white .modal-inner {
    background-color: #fff;
}

.modal.modal--blue-fade .modal-fade-screen {
    background-color: rgba(62, 76, 91, 0.95);
}

.modal.modal--no-border .modal-inner {
    border-bottom: none;
}

.modal.modal--no-fadein .modal-fade-screen {
    transition: none !important;
}

.modal.modal--download .modal-content {
    padding-top: 40px;
    padding-bottom: 62px;
}

.modal.modal--download .modal-content p {
    margin: 0;
}

.modal .gform_title {
    font-size: 3.75rem;
    line-height: 4.5rem;
    text-align: center;
    position: relative;
    font-weight: 200;
}

.modal .gform_title:after {
    content: "";
    width: 231px;
    height: 1px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 auto;
    background-color: #cfd2d4;
}

.modal .gform_description {
    display: block;
    font-size: 1.125rem;
    line-height: 1.625rem;
    text-align: center;
}

.modal-open {
    overflow: hidden;
}

.modal-closed {
    overflow: auto;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .modal .modal-inner {
        max-width: 674px;
        overflow: hidden;
    }

    .modal .modal-content {
        padding: 40px 52px 34px;
    }

    .modal .modal-content .modal__title {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .modal .modal-content .modal__intro {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .modal .gform_title {
        font-size: 2rem;
        line-height: 2rem;
    }

    .modal .gform_description {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 767px) {
    .modal .modal-close {
        width: 29px;
        height: 26px;
        top: 12px;
        right: 12px;
    }

    .modal .modal-inner {
        max-width: 88%;
        height: calc(100% - 100px);
        margin-top: 75px;
        overflow: hidden;
        border-bottom: none;
    }

    .modal .modal-content {
        padding: 40px 20px 34px;
        height: 100%;
        position: relative;
    }

    .modal .modal-content .modal__title {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .modal .modal-content .modal__intro {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .modal .gform_title {
        font-size: 1.625rem;
        line-height: 1.625rem;
    }

    .modal .gform_description {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.video .plyr__video-embed+.plyr__play-large {
    background-color: #6cab36;
    border: 0;
    box-shadow: none;
    width: 94px;
    height: 94px;
    text-align: center;
    z-index: 3;
}

.video .plyr__video-embed+.plyr__play-large:after {
    content: "Play Video";
    position: absolute;
    top: calc(100% + 13px);
    right: -50px;
    bottom: auto;
    left: -50px;
    font-size: 1.25rem;
    font-family: Nunito Sans, sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.video .plyr__video-embed+.plyr__play-large svg {
    width: 32px;
    height: 36px;
    display: inline-block;
    -moz-transition: color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out;
}

.video .plyr__video-embed+.plyr__play-large:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    -moz-box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
    box-shadow: 0 0 21px 0 rgba(29, 36, 42, 0.15);
}

.video .plyr__video-embed+.plyr__play-large:hover svg {
    color: #6cab36;
}

.video .plyr--video {
    z-index: 1000;
    cursor: pointer;
}

.video .plyr--playing {
    opacity: 1;
}

.video .video__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
}

.video .video__overlay:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.video .plyr.plyr--playing+.video__overlay {
    display: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .video .plyr__video-embed+.plyr__play-large:after {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .video .plyr__video-embed+.plyr__play-large {
        width: 70px;
        height: 70px;
    }

    .video .plyr__video-embed+.plyr__play-large:after {
        font-size: 0.875rem;
    }
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

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

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translate(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

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

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wp8-vertical {
    -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;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
    left: 10px;
    right: auto;
}

.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E");
}

.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
    right: 10px;
    left: auto;
}

.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(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-bullet {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 100%;
    background: #333f48;
    opacity: 1;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    vertical-align: top;
    margin: 1.5px 10px;
}

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

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

.swiper-pagination-white .swiper-pagination-bullet {
    background: #333f48;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6cab36;
    width: 12px;
    height: 12px;
    margin: 0 8.5px;
}

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-progress.swiper-pagination-white {
    background: hsla(0, 0%, 100%, 0.5);
}

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

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

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -o-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;
    -moz-transform-style: preserve-3d;
    -ms-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, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}

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

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

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

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

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

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

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

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

.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,
.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;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

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

.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-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

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

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-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-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: 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-scrollbar {
    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);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    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%;
    -moz-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
    -moz-animation: swiper-preloader-spin 1s steps(12) infinite;
    animation: swiper-preloader-spin 1s steps(12) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
    }
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn);
    }
}

.swiper__controls {
    text-align: center;
    margin-top: 30px;
}

.swiper__controls .swiper__controls__left,
.swiper__controls .swiper__controls__right {
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #d3dae2;
    width: 44px;
    height: 44px;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.swiper__controls .swiper__controls__left:after,
.swiper__controls .swiper__controls__right:after {
    content: "\E900";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 23px;
    line-height: 44px;
    color: #6cab36;
}

.swiper__controls .swiper__controls__left {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-right: 30px;
}

.swiper__controls .swiper__controls__right {
    margin-left: 30px;
}

.swiper__controls .swiper__controls__pagination {
    display: inline-block;
    height: 12px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 1.5px 7px;
    }

    .swiper-pagination-bullet-active {
        width: 9px;
        height: 9px;
    }
}

.hero-tabs {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.hero-tabs:after {
    clear: both;
    content: "";
    display: table;
}

.hero-tabs:before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 11px;
    left: 0;
    border-bottom: 11px solid #6cab36;
}

.hero-tabs .ps-container.ps-active-x>.ps-scrollbar-x-rail {
    display: none !important;
}

.hero-tabs .hero-tabs__inner {
    text-align: center;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 11px;
}

.hero-tabs .hero-tabs__tab {
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    margin: 0 36px;
    padding-bottom: 26px;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hero-tabs .hero-tabs__tab.active,
.hero-tabs .hero-tabs__tab:hover {
    color: #6cab36;
}

.hero-tabs .hero-tabs__tab.active:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9.5px 0;
    border-color: #6cab36 transparent transparent;
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    margin: 0 auto;
}

.hero-tabs-content {
    display: none;
}

.hero-tabs-content.active {
    display: block;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .hero-tabs .ps-container.ps-active-x>.ps-scrollbar-x-rail {
        display: block !important;
    }

    .hero-tabs .hero-tabs__inner {
        overflow: hidden !important;
    }

    .hero-tabs .hero-tabs__tab {
        font-size: 1.375rem;
        line-height: 1.375rem;
        margin: 0 36px;
    }
}

@media (max-width: 767px) {
    .hero-tabs .ps-container.ps-active-x>.ps-scrollbar-x-rail {
        display: block !important;
    }

    .hero-tabs .hero-tabs__inner {
        overflow: hidden !important;
    }

    .hero-tabs .hero-tabs__tab {
        font-size: 1.125rem;
        line-height: 1.125rem;
        margin: 0 12px;
    }
}

.hero-icon {
    border-bottom: 11px solid #ffc708;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}

.hero-icon--product .hero-icon__inner {
    padding: 15px;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
}

.hero-icon .hero-icon__inner {
    display: inline-block;
    width: 95px;
    height: 95px;
    border-radius: 100%;
}

.hero-icon .hero-icon__inner,
.hero-icon svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.hero-icon svg {
    max-width: 55px;
    max-height: 55px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .hero-icon .hero-icon__inner {
        width: 76px;
        height: 76px;
    }

    .hero-icon svg {
        top: 6px;
    }
}

@media (max-width: 767px) {
    .hero-icon {
        border-bottom: 7px solid #ffc708;
    }

    .hero-icon .hero-icon__inner {
        width: 86px;
        height: 86px;
    }
}

.ps-container {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
    .ps-container {
        overflow: auto !important;
    }
}

@media (-ms-high-contrast: none),
screen and (-ms-high-contrast: active) {
    .ps-container {
        overflow: auto !important;
    }
}

.ps-container.ps-active-x>.ps-scrollbar-x-rail,
.ps-container.ps-active-y>.ps-scrollbar-y-rail {
    display: block;
    background-color: transparent;
}

.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    background-color: #999;
    height: 11px;
}

.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: #999;
    width: 11px;
}

.ps-container>.ps-scrollbar-x-rail {
    display: none;
    position: absolute;
    opacity: 0;
    transition: background-color 0.2s linear, opacity 0.2s linear;
    bottom: 0;
    height: 15px;
}

.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    position: absolute;
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
    bottom: 2px;
    height: 6px;
}

.ps-container>.ps-scrollbar-x-rail:active>.ps-scrollbar-x,
.ps-container>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x {
    height: 11px;
}

.ps-container>.ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    opacity: 0;
    transition: background-color 0.2s linear, opacity 0.2s linear;
    right: 0;
    width: 15px;
}

.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    position: absolute;
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
    right: 2px;
    width: 6px;
}

.ps-container>.ps-scrollbar-y-rail:active>.ps-scrollbar-y,
.ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y {
    width: 11px;
}

.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    background-color: #999;
    height: 11px;
}

.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: #999;
    width: 11px;
}

.ps-container:hover>.ps-scrollbar-x-rail,
.ps-container:hover>.ps-scrollbar-y-rail {
    opacity: 0.6;
}

.ps-container:hover>.ps-scrollbar-x-rail:hover {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x {
    background-color: #999;
}

.ps-container:hover>.ps-scrollbar-y-rail:hover {
    background-color: #eee;
    opacity: 0.9;
}

.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y {
    background-color: #999;
}

blockquote {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #505354;
    padding-top: 45px;
    margin-top: 62px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    display: inline-block;
}

blockquote .blockquote__author {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 300;
    font-style: italic;
    margin-top: 26px;
    margin-bottom: 36px;
}

blockquote:before {
    content: "";
    border-top: 1px solid #dbdcdd;
    top: 0;
}

blockquote:after,
blockquote:before {
    position: absolute;
    right: 0;
    bottom: auto;
    left: 0;
}

blockquote:after {
    content: "\E90F";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    padding: 0 27px;
    display: inline-block;
    top: -60px;
    margin: 0 auto;
    width: 134px;
    text-align: center;
    font-size: 78px;
}

.block.block--grey blockquote:after {
    background: #edf0f3;
}

@media (max-width: 1199px) and (min-width: 768px) {
    blockquote {
        margin-top: 50px;
        margin-bottom: 35px;
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    blockquote:after {
        font-size: 60px;
        top: -38px;
        width: 106px;
    }

    blockquote .blockquote__author {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

.two-col {
    padding-top: 55px;
    padding-bottom: 55px;
}

.two-col:after {
    clear: both;
    content: "";
    display: table;
}

.two-col .two-col__item {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding-right: 65px;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .two-col {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .two-col .two-col__item:first-child {
        padding-left: 0;
        padding-right: 20px;
    }

    .two-col .two-col__item:last-child {
        padding-left: 20px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .two-col {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .two-col .two-col__item {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        float: none;
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.table-container {
    position: relative;
}

table {
    width: 100%;
    border-spacing: 3px;
}

table thead tr th {
    border-bottom: 11px solid #6cab36;
    background-color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4375rem;
    font-weight: 900;
    color: #333f48;
    white-space: nowrap;
    padding: 20px;
}

table tbody tr td {
    background-color: #fff;
    font-size: 1.125rem;
    line-height: 1.125rem;
    padding: 20px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    table {
        width: 100%;
    }

    table thead tr th {
        border-bottom: 11px solid #6cab36;
        background-color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-size: 1.25rem;
        line-height: 1.4375rem;
        font-weight: 900;
        color: #333f48;
        padding: 20px;
    }

    table tbody tr td {
        background-color: #fff;
        font-size: 1.125rem;
        line-height: 1.125rem;
        padding: 20px;
    }
}

img.style-svg {
    display: none;
}

#catapult-cookie-bar {
    background-color: #fff;
    text-align: center;
    padding-bottom: 0 !important;
    border-radius: 0 !important;
    top: auto !important;
    bottom: 35% !important;
    right: 60px !important;
    -moz-transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

#catapult-cookie-bar.hidden {
    opacity: 0;
}

#catapult-cookie-bar .hero__cookie__copy {
    padding: 25px;
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #333f48;
}

#catapult-cookie-bar .ctcc-right-side {
    margin-left: -20px !important;
    margin-right: -20px !important;
    margin-bottom: 0 !important;
}

#catapult-cookie-bar .ctcc-right-side button {
    display: block;
    width: 100%;
    background-color: #6cab36;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 2.5625rem;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

@media (max-width: 1199px) and (min-width: 768px) {
    #catapult-cookie-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #catapult-cookie-bar {
        display: none !important;
    }
}

.form {
    max-width: 896px;
    margin: 0 auto;
}

.form .form__row:after {
    clear: both;
    content: "";
    display: table;
}

.form .form__row+.form__row {
    margin-top: 25px;
}

.form .form__row .form__col {
    width: calc(50% - 3px);
    float: left;
}

.form .form__row .form__col:nth-child(2) {
    margin-left: 6px;
}

.form .form__row label {
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 700;
    color: #333f48;
}

.form .form__row input,
.form .form__row select,
.form .form__row textarea {
    display: block;
    width: 100%;
}

.form .form__row input[type="submit"] {
    font-size: 0.9375rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #fff;
    background-color: #6cab36;
    border: none;
    border-radius: 0.25rem;
    padding: 8px 22px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    -moz-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-size: 1.125rem;
    padding: 20px 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.sharethis {
    position: fixed;
    right: 48px;
    bottom: 48px;
    z-index: 9999;
    transition: opacity 0.13s ease-in-out;
}

.sharethis .st-btn {
    background-color: #393b3c !important;
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 100% !important;
    cursor: pointer;
    -webkit-transition: background, 0.13s ease-in-out !important;
    -moz-transition: background, 0.13s ease-in-out !important;
    transition: background, 0.13s ease-in-out !important;
}

.sharethis .st-btn:hover {
    opacity: 1 !important;
    top: 0 !important;
    background-color: #6cab36 !important;
}

.sharethis .st-btn>svg {
    top: 8px !important;
}

.sharethis .st-btn+.st-btn {
    margin-top: 5px;
}

.sharethis .st-btn.st-download {
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.sharethis .st-btn.st-download:after {
    content: "\E912";
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    line-height: 36px;
    font-size: 21px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .sharethis {
        right: 7px;
    }
}

@media (max-width: 767px) {
    .sharethis {
        display: none;
    }
}

.gform_anchor {
    position: absolute;
    top: 0;
}

.gform_wrapper {
    margin: 0 !important;
    position: relative;
}

.gform_wrapper>p br:first-child {
    display: none;
}

.gform_wrapper .gform_title {
    margin-top: 0 !important;
}

.gform_wrapper li.gfield {
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.gform_wrapper li.gfield:before {
    display: none !important;
}

.gform_wrapper li.gfield+li {
    margin-top: 0;
}

.gform_wrapper li.gfield.gfield_error {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.gform_wrapper li.gfield.gfield_error label.gfield_label {
    margin-top: 0 !important;
    color: #393b3c !important;
}

.gform_wrapper li.gfield.gfield_error div.ginput_container {
    margin-top: 8px !important;
}

.gform_wrapper li.gfield.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper li.gfield.gfield_error select {
    border-color: #ed4435 !important;
    margin-bottom: 0 !important;
}

.gform_wrapper label.gfield_label {
    display: block;
    width: 100%;
    text-transform: uppercase;
    padding-left: 10px;
    margin-bottom: 0;
}

.gform_wrapper label.gfield_label,
.gform_wrapper label.gfield_label .gfield_required {
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: #333f48;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    color: #6d6d6d !important;
    font-size: 1.125rem !important;
    line-height: 1.125rem !important;
    padding: 1rem !important;
    border: 1px solid #d0d0d0 !important;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus,
.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):hover {
    border-color: #333f48 !important;
    color: #000 !important;
}

.gform_wrapper select {
    font-size: 1.125rem !important;
    line-height: 1.125rem !important;
    padding: 19px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.gform_wrapper .gform_footer {
    margin-top: 50px;
}

.gform_wrapper .gform_button {
    font-size: 0.9375rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #fff;
    background-color: #6cab36;
    border: none;
    border-radius: 0.25rem;
    padding: 8px 22px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    -moz-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    display: block !important;
    margin: 0 auto !important;
    font-family: Nunito Sans, sans-serif !important;
    font-size: 1.125rem !important;
    line-height: 1.125rem !important;
    padding: 22px 26px !important;
    min-width: 206px;
}

.gform_confirmation_message {
    text-align: center;
    margin: 40px auto 65px;
    max-width: 60%;
    font-size: 1.625rem;
    color: #6cab36;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .gform_confirmation_message {
        max-width: 100%;
        font-size: 1.375rem;
    }
}

@media (max-width: 767px) {
    .gform_confirmation_message {
        max-width: 100%;
        font-size: 1.125rem;
    }
}

.hbspt-form {
    width: 100%;
    max-width: 896px !important;
    margin: 0 auto !important;
}

.hbspt-form .hs-form fieldset {
    width: 100% !important;
    max-width: 100% !important;
}

.hbspt-form .hs-form fieldset>.hs-form-field {
    margin-top: 25px;
}

.hbspt-form .hs-form .hs-form-field {
    width: 50%;
    box-sizing: border-box;
}

.hbspt-form .hs-form .hs-form-field:first-child {
    padding-right: 8px;
}

.hbspt-form .hs-form .hs-form-field:last-child {
    padding-left: 0;
    padding-right: 8px;
}

@media (min-width: 768px) {
    .hbspt-form .hs-form .hs-form-field:last-child {
        padding-left: 8px;
        padding-right: 0;
    }
}

.hbspt-form .hs-form .hs-form-field:first-child:last-child {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hbspt-form .hs-form .hs-form-field>label {
    display: block;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: #333f48;
    margin-bottom: 0;
    padding-left: 0;
}

.hbspt-form .hs-form .hs-form-field .input select {
    margin-top: 13px;
}

.footer-form .footer-form__form .hbspt-form label {
    margin-bottom: 0;
}

.hbspt-form .hs-form input.hs-button.primary.large {
    margin-top: 20px !important;
}

.hbspt-form .hs-form .hs-input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    color: #6d6d6d !important;
    font-size: 1.125rem !important;
    line-height: 1.125rem !important;
    padding: 1rem !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 0 !important;
    height: auto !important;
    box-shadow: none !important;
}

.hbspt-form .hs-form .hs-input:focus,
.hbspt-form .hs-form .hs-input:hover {
    border-color: #333f48 !important;
    color: #000 !important;
}

.hbspt-form .hs-form .hs-input.invalid {
    border-color: #ed4435 !important;
}

.hbspt-form .hs-form .input {
    margin-right: 0 !important;
}

.hbspt-form .hs-form .hs-form-checkbox {
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
}

.hbspt-form .hs-form .hs-form-checkbox:before {
    display: none !important;
}

.hbspt-form .hs-form .hs-form-checkbox+li {
    margin-top: 0;
}

.hbspt-form .hs-form .hs-form-checkbox .hs-input {
    display: none !important;
}

.hbspt-form .hs-form .hs-error-msgs li {
    padding-left: 0;
    font-size: 1em;
    line-height: 1em;
    background-color: transparent;
    color: #ed4435;
    font-size: 0.875rem;
    line-height: 0.875rem;
    margin-top: 8px;
}

.hbspt-form .hs-form .hs-error-msgs li:before {
    display: none !important;
}

.hbspt-form .hs-form .hs-error-msgs li+li {
    margin-top: 0;
}

.hbspt-form .hs-form .hs_submit .hs-button {
    font-size: 0.9375rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.0625rem;
    color: #fff;
    background-color: #6cab36;
    border: none;
    border-radius: 0.25rem;
    padding: 8px 22px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    -moz-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -webkit-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -ms-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -o-transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    transition: color 0.13s ease-in-out, background-color 0.13s ease-in-out;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: none;
    text-shadow: none;
    box-shadow: none;
    display: block !important;
    margin: 0 auto !important;
    font-family: Nunito Sans, sans-serif !important;
    font-size: 1.125rem !important;
    line-height: 1.125rem !important;
    padding: 22px 26px !important;
    min-width: 206px;
}

@media (max-width: 767px) {

    .hbspt-form .hs-form fieldset .field+.field,
    .hbspt-form .hs-form fieldset+fieldset {
        margin-top: 15px;
    }

    .hbspt-form .hs-form .hs-form-field {
        width: 100% !important;
    }
}

.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center;
}

.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {

    0%,
    80%,
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-three-bounce {

    0%,
    80%,
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.fp-enabled body,
html.fp-enabled {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

#superContainer {
    height: 100%;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide,
.fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    position: relative;
}

.fp-scrollable,
.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    border: 0 !important;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translateZ(0);
}

#fp-nav.right {
    right: 17px;
}

#fp-nav.left {
    left: 17px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active+.fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell,
.fp-auto-height.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell,
.fp-responsive .fp-auto-height-responsive.fp-section {
    height: auto !important;
}

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

    50% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.perfectUX {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    top: 0;
    left: 0;
    background: hsla(0, 0%, 100%, 0.9);
    text-align: center;
}

.perfectUX:before {
    content: "";
    top: 30%;
    left: 50%;
    width: 53px;
    height: 53px;
    position: absolute;
    margin-left: -27px;
    background: 50% / auto 100% url(../images/logo.png?243f2c249fac785a0d669c0740444d9e) no-repeat;
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}

.tracking-img {
    position: absolute;
}

#resumator-wrapper {
    box-shadow: 2px 10px 17px 0 #d1c9d1;
    padding: 0;
    margin-top: 3em;
}

#resumator-wrapper a.resumator-job-link {
    color: #6cab36 !important;
    text-decoration: none;
}

#resumator-wrapper .resumator-basic-widget .resumator-jobs-text {
    font-size: 16px;
    font-family: Nunito, sans-serif;
    color: #505354;
}

#resumator-wrapper .resumator-basic-widget .resumator-job {
    padding: 15px;
    position: relative;
    background-color: #edf0f3;
}

#resumator-wrapper .resumator-basic-widget .resumator-job:after {
    clear: both;
    content: "";
    display: table;
}

#resumator-wrapper .resumator-basic-widget .resumator-job:nth-child(odd) {
    background-color: #fff;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-title {
    font-size: 16px;
    font-family: Nunito, sans-serif;
    color: #505354;
    margin: 0;
    padding: 0;
    border-top: none;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-view-details {
    position: absolute;
    top: 25px;
    right: 15px;
    bottom: auto;
    left: auto;
    padding: 0;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-description li,
#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-description p,
#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-description ul {
    font-size: 0.875rem;
    font-family: Nunito, sans-serif;
    color: #505354;
}

#resumator-wrapper .resumator-basic-widget .resumator-job .resumator-buttons li:before {
    display: none;
}

@media (max-width: 767px) {
    #resumator-wrapper .resumator-basic-widget .resumator-jobs-text {
        margin-right: 0;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-department,
    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-experience {
        margin-left: 0;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-department:before,
    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-experience:before {
        content: "\A";
        display: block;
    }

    #resumator-wrapper .resumator-basic-widget .resumator-job .resumator-job-view-details {
        position: static;
    }
}

body.home .hero {
    height: 672px;
}

body.page-template-detail-t4 .hero {
    height: 259px;
}

body.page-template-detail-t4 .block .image-mobile {
    display: none;
}

body.page-template-detail-t4 .block.news-listing-related {
    background-image: none;
    background-color: #edf0f3;
}

@media (max-width: 1199px) and (min-width: 768px) {
    body.page-template-detail-t4 .hero {
        height: 108px;
    }

    body.page-template-detail-t4 .block .image.image-mobile {
        display: block;
    }

    body.page-template-detail-t4 .block .image.image-full {
        display: none;
    }

    body.page-template-detail-t4 .block .image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    body.page-template-detail-t4 .hero {
        height: 145px;
        margin-bottom: 20px;
    }

    body.page-template-detail-t4 .block .image.image-mobile {
        display: block;
    }

    body.page-template-detail-t4 .block .image.image-full {
        display: none;
    }

    body.page-template-detail-t4 .block .image img {
        max-width: 100%;
        height: auto;
    }
}

body.page-template-partners-t8 .hero,
body.page-template-team-t5 .hero {
    height: 450px;
}

@media (max-width: 1199px) and (min-width: 768px) {

    body.page-template-partners-t8 .hero,
    body.page-template-team-t5 .hero {
        height: 310px;
    }
}

@media (max-width: 767px) {

    body.page-template-partners-t8 .hero,
    body.page-template-team-t5 .hero {
        height: 337px;
    }
}

body.page-template-cms-t6 .hero,
body.page-template-default:not(.home) .hero {
    height: 354px;
}

body.page-template-cms-t6 .hero .hero__content,
body.page-template-default:not(.home) .hero .hero__content {
    padding-top: 0;
}

body.page-template-cms-t6 .hero .hero__content .hero__intro,
body.page-template-default:not(.home) .hero .hero__content .hero__intro {
    margin-top: 0;
}

body.page-template-cms-t6 .hero .block__next,
body.page-template-default:not(.home) .hero .block__next {
    background-color: #edf0f3;
}

body.page-template-cms-t6 .caption-grid,
body.page-template-default:not(.home) .caption-grid {
    padding-bottom: 0;
}

body.page-template-cms-t6 .block__copy>blockquote,
body.page-template-cms-t6 .block__copy>blockquote .blockquote__author,
body.page-template-default:not(.home) .block__copy>blockquote,
body.page-template-default:not(.home) .block__copy>blockquote .blockquote__author {
    margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 768px) {

    body.page-template-cms-t6 .hero,
    body.page-template-default:not(.home) .hero {
        height: 310px;
    }

    body.page-template-cms-t6 .hero .hero__content,
    body.page-template-default:not(.home) .hero .hero__content {
        padding-top: 0;
    }

    body.page-template-cms-t6 .hero .hero__content .hero__intro,
    body.page-template-default:not(.home) .hero .hero__content .hero__intro {
        margin-top: 0;
    }

    body.page-template-cms-t6 blockquote,
    body.page-template-default:not(.home) blockquote {
        margin-bottom: 0;
    }

    body.page-template-cms-t6 .caption-grid,
    body.page-template-default:not(.home) .caption-grid {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {

    body.page-template-cms-t6 .hero,
    body.page-template-default:not(.home) .hero {
        height: 264px;
    }

    body.page-template-cms-t6 .hero .hero__content,
    body.page-template-default:not(.home) .hero .hero__content {
        padding-top: 0;
    }

    body.page-template-cms-t6 .hero .hero__content .hero__intro,
    body.page-template-default:not(.home) .hero .hero__content .hero__intro {
        margin-top: 0;
    }
}

body.page-template-landing-t2 .hero {
    height: 452px;
}

body.page-template-landing-t2 .hero .hero__content {
    padding-top: 0;
    padding-bottom: 20px;
}

body.page-template-landing-t2 .hero .hero__content .hero__intro {
    margin-top: 5px;
    margin-bottom: 0;
}

body.archive .hero,
body.blog .hero {
    height: 385px;
}

.hero__intro--shift {
    margin-top: 5px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) and (min-width: 768px) {

    body.archive .hero,
    body.blog .hero {
        height: 261px;
    }
}

@media (max-width: 767px) {

    body.archive .hero,
    body.blog .hero {
        height: 265px;
    }
}

body.page-template-about-t7 .hero,
body.page-template-t7-template .hero {
    height: 451px;
}

body.page-template-about-t7 .intro,
body.page-template-t7-template .intro {
    padding-top: 35px;
    padding-bottom: 10px;
}

body.page-template-about-t7 .intro .block__copy,
body.page-template-t7-template .intro .block__copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
}

body.page-template-about-t7 .products,
body.page-template-t7-template .products {
    padding-top: 95px;
}

body.page-template-about-t7 .products .products__items,
body.page-template-t7-template .products .products__items {
    margin-top: 75px;
}

@media (max-width: 1199px) and (min-width: 768px) {

    body.page-template-about-t7 .hero,
    body.page-template-t7-template .hero {
        height: 310px;
    }
}

@media (max-width: 767px) {

    body.page-template-about-t7 .hero,
    body.page-template-t7-template .hero {
        height: 265px;
    }
}

body.search-results article+article {
    margin-top: 30px;
}

body.search-results article.team {
    padding-bottom: 0 !important;
}

body.search-results article .entry-summary p:first-child {
    margin-top: 0;
}

body.search-results article .entry-summary p:last-child {
    margin-bottom: 0;
}

body.single-post .hero {
    height: 375px;
}

body.single-post .hero__content {
    padding-bottom: 20px;
}

body.single-post .block__copy {
    text-align: left;
    position: relative;
    float: left;
}

body.single-post .social-share,
body.single-post .sticky-sidebar {
    width: 267px;
    float: left;
}

body.single-post .social-share a {
    display: block;
    text-align: center;
}

body.single-post .social-share a span {
    font-size: 24px;
}

body.single-post .sticky-sidebar {
    margin-left: 20px;
    background: #fff;
    text-align: center;
    padding: 20px;
    width: 247px;
}

body.single-post .sticky-sidebar h3 {
    font-size: 22px;
    line-height: 1.4em;
}

@media (max-width: 1199px) and (min-width: 768px) {
    body.single-post .sticky-sidebar {
        width: 20%;
    }

    body.single-post .social-share {
        width: 10%;
    }

    body.single-post .block .block__inner.block__inner--container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body.single-post .sticky-sidebar {
        display: none;
    }

    body.single-post .social-share a {
        display: inline-block;
    }

    body.single-post .block__copy {
        width: 100%;
        padding-left: 20px;
    }
}

@media (min-width: 973px) {

    .single-post .social-share,
    .single-post .sticky-sidebar {
        position: sticky;
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        top: 100px;
    }
}

.social-share h4 {
    margin-top: 40px;
    margin-bottom: 5px;
}

.social-share a {
    margin: 18px 6px 6px 6px;
    font-size: 16px;
    color: #6cab36;
}

.social-share a:hover {
    opacity: 0.7;
}

.ThirdPartyAudience {
    text-align: left;
    position: relative;
    padding-bottom: 100px;
}

.ThirdPartyAudience #paging_ThirdPartyAudience span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-size: 1.125rem;
    position: relative;
    margin-left: -1px;
}

.ThirdPartyAudience #paging_ThirdPartyAudience span:hover {
    cursor: pointer;
}

.ThirdPartyAudience #paging_ThirdPartyAudience span:first-child {
    margin-left: 0;
}

.ThirdPartyAudience #paging_ThirdPartyAudience span.current:after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #6cab36;
    height: 2px;
}

.ThirdPartyAudience #paging_ThirdPartyAudience .fx_paging_pages_hide {
    display: inline-block;
    position: relative;
    top: -5px;
    margin-left: -1px;
}

.ThirdPartyAudience #paging_ThirdPartyAudience select {
    border-radius: 0;
    padding: 4px;
    height: 32px;
    width: 90px;
    line-height: 25px;
    margin-left: -1px;
    background-size: 18px 19px;
    background-position: right 10px center;
    padding-left: 10px;
}

#paging_ThirdPartyAudience {
    margin-top: 20px;
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
}

#fx_audience_extractor_container {
    font-size: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid #dbdcdd;
    border-bottom: 11px solid #6cab36;
}

#fx_audience_extractor_container h3 {
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #dbdcdd;
    margin: 0 0;
    padding: 10px 0;
    margin-bottom: 20px;
    background: url(http://www.lotame.com/wp-content/uploads/2017/10/arrow.png) no-repeat right center;
}

h3.ui-state-active .ui-icon-triangle-1-s {
    background: url(http://www.lotame.com/wp-content/uploads/2017/10/arrow.png);
}

.block.block--grey.block--dark-grey {
    background-color: #293442;
}

.block--dark-grey .block__title {
    color: #fff;
}

.case-studies .block--dark-grey .block__copy {
    background-color: #fff;
    padding: 30px;
    text-align: left;
    font-size: 1rem;
}

.case-studies .case-studies__item__category {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 8px;
}

.block .block__copy.block__copy--case-studies {
    max-width: 1200px;
}

.case-study__wrapper .case-study__half-block {
    width: 100%;
}

.case-studies .case-studies__item__title {
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 700;
    color: #393b3c;
    margin-bottom: 20px;
}

.block.block--grey.block--medium-grey {
    background-color: #333f48;
}

.testimonial .block--medium-grey .block__copy {
    background-color: #fff;
    padding: 30px;
    text-align: left;
    font-size: 1rem;
}

.testimonial .testimonial__item__category {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 8px;
}

.block .block__copy.block__copy--testimonial {
    max-width: 900px;
}

.testimonial__wrapper .testimonial__half-block {
    width: 100%;
}

.testimonial__wrapper .testimonial__image {
    height: 120px;
    width: 120px;
    margin: 0 auto;
    border-radius: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: center center;
}

.testimonial__wrapper .testimonial__image img {
    height: 100%;
    widows: auto;
}

.testimonial .testimonial__item__title {
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 700;
    color: #393b3c;
    margin-bottom: 20px;
}

.testimonial__copy .author {
    font-family: Nunito Sans, sans-serif;
    font-style: italic;
    opacity: 0.4;
}

.testimonial__copy p:nth-child(2) {
    display: inline-block;
}

@media (min-width: 1025px) {
    .case-study__wrapper .case-study__half-block {
        width: 50%;
        float: left;
    }
}

@media (min-width: 768px) {

    .case-study__wrapper .case-study__copy,
    .case-study__wrapper .case-study__image {
        padding: 30px;
    }
}

.page-template-partners-t8 .team .team__item {
    margin-bottom: 115px;
}

.page-template-partners-t8 .team .team__item .team__image {
    filter: none;
    -webkit-filter: grayscale(0);
}

.page-template-partners-t8 .team .team__item .team__modal__left ul li a {
    width: 100%;
    color: #fff;
    text-align: center;
}

.page-template-partners-t8 .team .team__item .team__modal__left ul li a:hover {
    color: #6cab36;
}

.page-template-partners-t8 .team .team__item:hover:before {
    display: none;
}

.page-template-partners-t8 .team .team__item>a.team__meta-wrapper {
    top: unset;
    right: unset;
    color: #505354;
    bottom: -103px;
    text-decoration: none;
    text-decoration-color: transparent;
    transition: all 0.2s ease-in-out;
}

.page-template-partners-t8 .team .team__item .team__name,
.page-template-partners-t8 .team .team__item .team__position {
    color: #505354;
    text-decoration: none;
    text-decoration-color: transparent;
}

.page-template-partners-t8 .team .team__item:hover .team__position {
    position: relative;
    top: -5px;
}

.page-template-partners-t8 .team .team__item:hover .team__meta {
    margin-bottom: 0;
}

.page-template-partners-t8 .team .team__item .team__image {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .page-template-partners-t8 .team .team__item>a.team__meta-wrapper {
        bottom: -74px;
    }

    .page-template-partners-t8 .team .team__item {
        margin-bottom: 115px;
    }

    .page-template-partners-t8 .team .team__item:hover>a.team__meta-wrapper {
        margin-bottom: -56px;
        left: -18px;
    }

    .page-template-partners-t8 .team .team__item>a.team__meta-wrapper .btn {
        margin-top: 5px;
        display: none;
    }

    .page-template-partners-t8 .team .team__item:hover>a.team__meta-wrapper .btn {
        display: block;
    }
}

@media (min-width: 1200px) {
    .page-template-partners-t8 .team .team__item:hover>a.team__meta-wrapper {
        margin-bottom: -29px;
        left: -25px;
    }
}

#connect-with-seller {
    padding-top: 100px;
}

.page-id-6135 .footer-form {
    display: none;
}

.subpage-list {
    padding-bottom: 50px;
}

.subpage-btn {
    display: inline-block;
}

.anchor-links {
    margin-bottom: 20px;
}

.hero-icon__inner svg circle,
.hero-icon__inner svg path,
.hero-icon__inner svg rect,
.products__item:hover .products__item__icon-container svg circle,
.products__item:hover .products__item__icon-container svg path,
.products__item:hover .products__item__icon-container svg rect {
    fill: #fff !important;
}

.anchor-link:target::before {
    content: "";
    display: block;
    height: 90px;
    margin: -90px 0 0;
}

@media (min-width: 1025px) {
    .anchor-link:target::before {
        height: 113px;
        margin: -113px 0 0;
    }
}

@media (min-width: 1200px) {
    .anchor-link:target::before {
        height: 127px;
        margin: -127px 0 0;
    }
}

.breadcrumbs .breadcrumbs__inner {
    padding: 10px 0 0 0;
}

body.single-post .social-share {
    width: 132px;
}

body.single-post .block__copy {
    width: 800px;
    max-width: 100%;
    margin-top: 20px;
}

footer.footer-main--spherical .hbspt-form .hs-form .hs_submit .hs-button {
    width: 100%;
}

footer.footer-main--spherical .hbspt-form .hs-form .hs-form-field {
    max-width: 100%;
}

.spherical-template .btn-green,
.spherical-template .hbspt-form .hs-form .hs_submit .hs-button {
    color: #fff;
    background-color: #8ba86f;
}

.spherical-template .btn-green:hover,
.spherical-template .hbspt-form .hs-form .hs_submit .hs-button:hover {
    color: #8ba86f;
    background-color: #fff;
}

.spherical-template select {
    /*
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAQJQTFRFAAAAi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvW6RPZgAAAFZ0Uk5TACh+we//RcIYr7A750r2NvUS4ROeMf6q+RRfYKCWzc+Kh3ntx0+M+rGhVW7795yuIGzppsStu3+UZFGpCPDxkJEcHXwFxeMl4CMaGwR39HjsGUi52eo6O0zhAAABOElEQVR4nH2T51bCUBCEh4QlSJeuIkZj16ACKiKWSEBURKW8/6sYUm/q/Ll75ptz29kFbMU4Pk6a4jwXg18JnhgJCQ9ObpBHqSTL0xkvJ8qkHZ7N+TlRLmvxfCGIExXyBt8sBnOiYkkPlMM4UXnNK9XwQLWiBWrhnKgGlOpRgfoWtqM40Q4aZgXXV9MujLWBpunsQWT4Pg6MognJ8g5xZPNj++0STmz3FGdmdY4Ly7yE7OzbwpW+ctc3tiejzZws6nt00HGsNrrs3W/RojvcM04XPdfrUtrXPrBGD31XgB49Rh+DJ4rQ8wB4iQq8akcqgf1mSH5bN8QwPDDUO0odhfGRajSlMg7mY8Vq6/dJEJ98OIPxKfi58MWO1vR75sazn6l3OsVfB0viX8B8q3NxsVytlgtxrjruPzTSJKuedd2lAAAAAElFTkSuQmCC)
*/
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAACWklEQVRYhcXXTYhNYRzH8c89DTHlXcxqUigbbxt5CWOm2WgyjBqxYMRKskKUIiIyFlYWJCwIC2wxFoSFhZeVmhQZsjE0NZmaURbPc6bpui9nrpnrV7dOPf/n9/2d55x7nuefc7hJRi1CO5qwBNPzxn/iHbpwB++zmOYyBGjGMazLmjTqGU7hUamipMRYHe7hYQVwWBvn3o9eowqwBq+xuQJwvlqj15qsATYKy1Y0dQWqi54bywVYgbuYPIbwVJOj94piAWbGgtpxgKeqjYxZhQJ0on4c4anqcT4/wHJ0VAGeqiMyhwMcRa6KAXKRKRGeR2sV4alaMTtBCyb+hwAT0ZJgQ5nCHJ5WCLmk9KNtSLC4jMlrrDfizc2os9gnPusiWlyDeWWMluElVuG58G0vpwsRfBW7S9TNSzAlg+FKPIi/G2Vq23EQB8rAYWqC3xkCwCZcwS5hlyyk43iF/biYwXOoBn2YlDHEHvSiDdexc8TYLZzETWzP6NdXg27MyTgBDmE+tmIwhnqMHcIKZIVDd4I3o5iQqk14GfcKf7PmeH1ilD5vEuEMV4lacTteb8HlCjy6cg43TcI3TKswSKXqw9wEA7hWZbjIHEh3w078qiJ8IDKHt+MenKligNP4PDIAnMOLKsBfRJb8AIPYJqzGeKknMgYLBUgLGvFpHOCf0CDvBgv1Bd1YLbRWY6VnQmPyIX+gWGf0VViJI+j/B3C/sC034kuhglK94ZDwsiwQDiPfRwHujXMWCgeToWKFWbrjVBOE1rwRS4WDzIw49gMf8RZPhM/74F8OBfQHQ79voUu34vsAAAAASUVORK5CYII=);
    background-size: 25px 25px;
}

.spherical-template select:focus {
    /*
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAARpQTFRFAAAAi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hv2uPR////ssWgi6hv0d3Gr8Oci6hvxdS3qr+VuMqnsMSdi6hvi6hws8ahtsikwNCxztrC8PTtxtS4i6hvzdnB2OLPrsObi6hvt8mmv8+w2+TSpLuPi6hvyNa7xNK1obiKi6hvvs6up72S+Pr2i6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvi6hvUygNhwAAAF50Uk5TAAVIirnZ6hnt/+wYBHj0dxvCGiPgJRzjxXwd9/aRkAjx8FH///+U///E/////+n/////////+/////r/////zf///6D///9gXxT5E6ox/p7hEjb1SjvnsK9FwSh+76zMqcgAAAFCSURBVHicfZPpVsJADIUDBSSCKIosUkUxoigg4L6C4soum1Lg/V/Dlm7TNT9mkvvdczo5TQC08Hg5nz8Q8Ps4rwesscIFUYtVLmTC4bUIGiKyHmb5RhQtEd3U+VbMyhFj2yqPJ+w4YiKuvD5pzxGTcjcpJ46YkvhO2tnASx/ZdeaIewCZfTfDQQayRuWQjgx1FnKG+piITlghB3m2PKUzLFCRUfJQEs9zpSpTWTwrVNUNJWCavLi8Wt5FKmhaGq61/IZulaxCd6p4D9oUPNCj5n2iZyULQk3J6vTCvK1Kr3JSg4Yi0RvbDr5/yHcDPtE1vuC76cabLYC2m6Et/s1O15l3O9JA9JwNveVEtfpOvP8jD+VgaM+HA3WsR7wd50f6YownVj4Zs6sV+jXzP/N2Tg3bJ0xt9ns2FxYSXAjzma7+A0vvNPN19Il+AAAAAElFTkSuQmCC);
*/
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAACXUlEQVRYhb3XP0iVURjH8Y9vCkZkZVNlFITQVDY0JNSQFTiVRUWLSX/GiCgzDKImo6IhoinKliKH0pCW6D9GtPTHJahBnByyosDABhvec0Mv98/73qv3By+8vOc5z+/Lc8895zlVTrdIqBq0YCvWYzWWhLEfGMFHPMNT/E2StCoBwDKcwGHUJ4Qdxy1cxVihwKjAWDXO4As6U5jD0jDnK7pCrlQAK8Sl7MGCFMbZWoCLIdfypABrMITNZRhnazPeoLEYQANeYNUsmme0SlyJhnwANbifHTDLaggeNbkAutA8h+YZNQevGQArcbYC5hl1C5XOAJxCbQUB5gdPUTDuqKB5Rh2ojdCKuhIS7EYV+koEWITWSLy/p9VRPAzv+zFQIkRLhKaUk87jJp5gKrzvwoMSAJoiOXanArqHC7iLbeHbYdzBHlxOCdBYLfnvfwyDOIcDWWPtWCheF/UBKonqIgVOqmk6juvYKK5ALrWJK3EEjxICzIvwq0jQbVzDFcVXfDt2hudtAoDfkbiTyaduHBIfyycTJIR+XMImfCgSOxJhuEBAD26IG5M06sRLbCgSN1wtPn4P5gmYSmk8XVsSzH8eiVf2ZBlGpWoSgxG+KX0nK0cDGM+chj3KK3daTQXP/8fxe/RWEKA3eM7oiDoxWgHzUaEXyAYYx15MzKH5RPD4ngsA3oWAP3Ng/ifkfjf9Y657wWNsV+RKlVJjIefj7IF8N6Mh8S42G3/P/pBrKNdgobvhmLjR2IHXJRi/CnPbFKhmkqP4SXjWYp+4hVuHxVlxP/FJfDXvw+cklP8AOMhvXf6GhdcAAAAASUVORK5CYII=);
    background-size: 25px 25px;
}

.spherical-template a,
.spherical-template .green,
.spherical-template footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a:hover,
.spherical-template footer.footer-main .footer-main__top .footer-main__column:nth-child(2) .icon--email {
    color: #8ba86f;
}

.spherical-template footer.footer-main .footer-main__top .footer-main__column:nth-child(1) a:hover,
.spherical-template footer.footer-main .footer-main__top .footer-main__column:nth-child(1) .icon--email {
    color: #8ba86f;
}

.spherical-template ul:not(.not-general) li:before {
    background-color: #8ba86f;
}

.page-template-template-spherical-2023 ul:not(.not-general) li:before {
    background-color: #007643;
}

.spherical-template footer.footer-main .footer-main__top .footer-main__column .footer-main__logo:after {
    content: none !important;
    ;
}

.spherical-template .hero .hero__nav .hero__nav__top .btn {
    display: block !important;
}

.spherical-template footer.footer-main .footer-main__top .footer-main__column:nth-child(2) a {
    width: 100% !important;
    display: block !important;
    float: none !important;
}

.page-template-template-spherical-2023 .btn-green,
.page-template-template-spherical-2023 .hbspt-form .hs-form .hs_submit .hs-button {
    color: #FFFFFF;
    background-color: #007643;
    font-size: 18px;
    line-height: 24px;
    font-family: "cabrito-sans", sans-serif;
    font-weight: bold;
    text-transform: none;
}

.page-template-template-spherical-2023 .hbspt-form .hs-form .hs_submit .hs-button {
    border-radius: 30px;
}

.page-template-template-spherical-2023 .btn-green:hover,
.page-template-template-spherical-2023 .hbspt-form .hs-form .hs_submit .hs-button:hover {
    color: #007643;
    background-color: #fff;
}

.page-template-template-spherical-2023 footer.footer-main {
    background-color: #151f16;
    color: #FFFFFF;
    padding-top: 62px;
}

.page-template-template-spherical-2023 .footer-form {
    background-color: #1F3121;
}

.page-template-template-spherical-2023 .footer-form__content {
    color: #FFFFFF;
}

.page-template-template-spherical-2023 .bg-color--blue {
    background-color: #F0F5F3;
}

.page-template-template-spherical-2023 h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 64px;
    letter-spacing: 0;
    text-align: left;
    color: #1F3121;
    padding-bottom: 24px;
    font-family: "cabrito-normal", sans-serif;
}

.page-template-template-spherical-2023 h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0;
    text-align: left;
    color: #1F3121;
    padding: 0 0 20px 0;
    font-family: "cabrito-sans", sans-serif !important;
    margin-block-start: 0;
    margin-block-end: 0;
}

.page-template-template-spherical-2023 .header-o1__text p {
    font-family: "cabrito-sans", sans-serif !important;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #1F3121;
    padding-top: 0;
    margin-top: 0;
}

.page-template-template-spherical-2023 h2 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 800;
    font-family: "cabrito-normal", sans-serif;
    letter-spacing: 0em;
    color: #000000;
}

.page-template-template-spherical-2023 .footer-form h2 {
    color: #FFFFFF;
}

.page-template-template-spherical-2023 h3,
.page-template-template-spherical-2023 .half-half-sec__text-cont h2 {
    font-size: 38px;
    line-height: 48px;
    font-family: "cabrito-normal", sans-serif;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: left;
}

.page-template-template-spherical-2023 .half-half-sec__text-cont h3 {
    font-size: 48px;
    line-height: 48px;
    font-family: "cabrito-normal", sans-serif;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 30px;
}

.page-template-template-spherical-2023 .half-half-sec__text-cont h5 {
    font-size: 24px;
    line-height: 32px;
    font-family: "cabrito-sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
}

body.page-template-template-spherical-2023 input,
body.page-template-template-spherical-2023 .oic__item-lbt,
body.page-template-template-spherical-2023 .oic__item-lst,
body.page-template-template-spherical-2023 .oic__item-blocqte,
body.page-template-template-spherical-2023,
body.page-template-template-spherical-2023 .header-o1__text-content,
body.page-template-template-spherical-2023 body {
    font-family: "cabrito-sans", sans-serif !important;
}

body.page-template-template-spherical-2023 .footer-main__top a.btn-green {
    font-family: "cabrito-sans", sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    background-color: #151f16;
    outline: 2px solid #007643;
    padding: 5px 60px;
    text-transform: none;
    border-radius: 30px;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom {
    padding: 8px 30px 0 0;
    margin: 0;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom .menu-item-has-children a.nav__toggle:after {
    content: "!";
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li>a:not(.nav__toggle) {
    color: #000;
    text-decoration: none !important;
    text-transform: none;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    -moz-transition: color 0.07s ease-in-out;
    -webkit-transition: color 0.07s ease-in-out;
    -ms-transition: color 0.07s ease-in-out;
    -o-transition: color 0.07s ease-in-out;
    transition: color 0.07s ease-in-out;
    padding-bottom: 13px;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li.current-menu-item>a:not(.nav__toggle) {
    padding-bottom: 5px;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li>ul:before {
    display: none;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li>a:not(.nav__toggle):after,
.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li>a:not(.nav__toggle):before {
    height: 3px;
    background-color: #327448;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom a:hover {
    text-decoration: none !important;
}

.page-template-template-spherical-2023 .menu-item-has-children a {
    padding-right: 0px;
}

.page-template-template-spherical-2023 .menu-item-has-children:after {
    font-family: dashicons;
    content: "\f140";
    top: -1px;
    right: -11px;
    margin-top: 0px;
    font-size: 23px;
    position: absolute;
    color: #327448;
    font-weight: bold;
}

.page-template-template-spherical-2023 .menu-item-has-children {
    padding-right: 10px;
}

@media (min-width: 1200px) {
    .page-template-template-spherical-2023 .breadcrumbs {
        color: #000000;
        position: absolute;
        margin-top: 145px;
        bottom: auto;
        width: 100%;
        z-index: 200;
        font-weight: 600;
    }

    .page-template-template-spherical-2023 .breadcrumbs a {
        color: #000000;
        font-weight: 400;
    }


}

.hero__top.sticky .breadcrumbs,
.page-id-620 .breadcrumbs {
    display: none;
}

.page-template-template-spherical-2023 .breadcrumbs * {
    font-family: "cabrito-sans", sans-serif !important;
    font-size: 16px;
    line-height: 1.625rem;
    text-transform: none;
}

.page-template-template-spherical-2023 .hero__nav__bottom a {
    font-weight: 600 !important;
}

.page-template-template-spherical-2023 .newsletter-form--spherical .hbspt-form .hs-form .hs_submit .hs-button {
    background-color: #007643;
}

.page-template-template-spherical-2023 .footer-form--spherical ul:not(.not-general) li:before {
    display: none;
}

.page-template-template-spherical-2023 .footer-form--spherical .hs-richtext p {
    font-weight: 600;
    font-size: 13px !important;
}

.page-template-template-spherical-2023 .hero__nav__bottom .current-menu-item a {
    font-weight: 700 !important;
}

.hero .hero__nav .hero__nav__top .hero__nav__bottom>ul>li.current-menu-item>a {
    border-bottom: 2px solid #007643;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
    margin-left: 0 !important;
}

.half-half-sec__text-cont {
    order: 1;
}

.half-half-sec__img-cont {
    order: 2;
}

.half-half-sec--right .half-half-sec__text-cont {
    order: 3;
}