/*!
Theme Name: NWLC
Theme URI: http://e11group.com
Author: Eleven11 Group
Author URI: http://e11group.com
Description: Base WordPress theme created by Eleven11 Group.
Version:      99.0.0
*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
[data-animate-css] {
    visibility: hidden
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {

    20%,
    53%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {

    20%,
    53%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {

    50%,
    from,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    50%,
    from,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {

    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {

    11.1%,
    from,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.39062deg) skewY(.39062deg);
        transform: skewX(.39062deg) skewY(.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

@keyframes jello {

    11.1%,
    from,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.39062deg) skewY(.39062deg);
        transform: skewX(.39062deg) skewY(.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {

    20%,
    40%,
    60%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {

    20%,
    40%,
    60%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {

    60%,
    75%,
    90%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }

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

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

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

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }

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

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

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

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }

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

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

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

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }

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

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

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

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

*,
:after,
:before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: 0;
    -webkit-overflow-scrolling: touch
}

html {
    overflow-x: hidden
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
time,
tt,
u,
ul,
var,
video {
    font-size: 100%;
    font: inherit;
    padding: 0;
    border: 0;
    margin: 0;
    vertical-align: baseline
}

table,
tbody,
td,
tfoot,
th,
thead,
tr {
    /* font-size: 100%;
    font: inherit;
    padding: 0;
    border: 0;
    margin: 0;
    vertical-align: baseline COMMENTED OUT BY PENTERA */
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul {
    margin: 0;
    padding: 0
}

button,
input {
    outline: 0;
    border-radius: 0;
    border: 0;
    margin: 0;
    background: 0 0;
    -moz-appearance: none;
    -webkit-appearance: none
}

button {
    cursor: pointer
}

a {
    text-decoration: none
}

.clear {
    clear: both
}

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

.select2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 18px;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-results__option--selectable {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px;
    padding-right: 0
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: 700;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    position: absolute;
    right: 0;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: #f1f1f1;
    color: #333;
    outline: 0
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #000 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: 0 0;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--group {
    padding: 0
}

.select2-container--default .select2-results__option--disabled {
    color: #999
}

.select2-container--default .select2-results__option--selected {
    background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: #fff
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: 0 0;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -o-linear-gradient(top, #fff 0, #eee 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
    background-image: linear-gradient(to bottom, #fff 0, #eee 50%);
    background-repeat: repeat-x
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x
}

.select2-container--classic .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: 0
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
    padding: 0
}

.select2-container--classic .select2-results__option--disabled {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.btn,
button[type=submit],
input[type=button],
input[type=submit] {
    background: #6026a6;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 13px 62px 10px 13px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    font-family: Graphik-Semibold, sans-serif;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 0;
    text-decoration: none;
    min-width: 200px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-weight: 400
}

.btn:active,
.btn:focus,
.btn:hover,
button[type=submit]:active,
button[type=submit]:focus,
button[type=submit]:hover,
input[type=button]:active,
input[type=button]:focus,
input[type=button]:hover,
input[type=submit]:active,
input[type=submit]:focus,
input[type=submit]:hover {
    padding: 13px 62px 10px 20px
}

.btn:active:before,
.btn:focus:before,
.btn:hover:before,
button[type=submit]:active:before,
button[type=submit]:focus:before,
button[type=submit]:hover:before,
input[type=button]:active:before,
input[type=button]:focus:before,
input[type=button]:hover:before,
input[type=submit]:active:before,
input[type=submit]:focus:before,
input[type=submit]:hover:before {
    right: -70px
}

.btn:active .icon-arrow-right,
.btn:focus .icon-arrow-right,
.btn:hover .icon-arrow-right,
button[type=submit]:active .icon-arrow-right,
button[type=submit]:focus .icon-arrow-right,
button[type=submit]:hover .icon-arrow-right,
input[type=button]:active .icon-arrow-right,
input[type=button]:focus .icon-arrow-right,
input[type=button]:hover .icon-arrow-right,
input[type=submit]:active .icon-arrow-right,
input[type=submit]:focus .icon-arrow-right,
input[type=submit]:hover .icon-arrow-right {
    opacity: 0
}

@media screen and (max-width:1024px) {

    .btn,
    button[type=submit],
    input[type=button],
    input[type=submit] {
        font-size: 14px
    }
}

.btn:before,
button[type=submit]:before,
input[type=button]:before,
input[type=submit]:before {
    content: "";
    width: 50px;
    height: 100%;
    background-color: #ffd600;
    position: absolute;
    right: -20px;
    top: 0;
    -webkit-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.btn .icon-arrow-right,
button[type=submit] .icon-arrow-right,
input[type=button] .icon-arrow-right,
input[type=submit] .icon-arrow-right {
    position: absolute;
    right: 6px;
    top: calc(50% - 8px);
    width: 12px;
    height: 16px;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    fill: #6026a6;
    margin-right: 0 !important
}

.btn--primary {
    background-color: #3cbfaf;
    color: #6026a6
}

.btn--secondary {
    background-color: #292664;
    color: #fff
}

.btn--small {
    min-width: 161px
}

.link {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.link:active,
.link:focus,
.link:hover {
    color: #292664;
    text-underline-offset: -1px
}

.fancy-btn {
    position: relative;
    z-index: 1;
    padding: 20px 40px 19px 50px;
    display: inline-block;
    vertical-align: top;
    font-family: Interstate-BoldCompressed, sans-serif;
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

@media screen and (max-width:1216px) {
    .fancy-btn {
        font-size: 28px;
        padding: 15px 35px 14px 45px
    }
}

.fancy-btn:after {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    -webkit-transform: skewX(-14deg);
    -ms-transform: skewX(-14deg);
    transform: skewX(-14deg)
}

.fancy-btn:focus,
.fancy-btn:hover {
    padding: 20px 41px 19px 55px
}

.fancy-btn:focus .fancy-btn__text,
.fancy-btn:hover .fancy-btn__text {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.fancy-btn__text {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease
}

.fancy-btn__icon {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: -21px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%
}

@media screen and (max-width:1216px) {
    .fancy-btn__icon {
        left: -16px;
        height: 32px;
        width: 32px
    }
}

.fancy-btn__icon .icon {
    height: 25px;
    width: 17px;
    margin-right: 0
}

@media screen and (max-width:1216px) {
    .fancy-btn__icon .icon {
        height: 20px;
        width: 14px
    }
}

.fancy-btn--primary {
    color: #ffd600
}

.fancy-btn--primary .fancy-btn__icon {
    background-color: #ffd600;
    color: #9e005d;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.fancy-btn--primary:after {
    background-color: #9e005d
}

.fancy-btn--primary:focus,
.fancy-btn--primary:hover {
    color: #9e005d
}

.fancy-btn--primary:focus .fancy-btn__icon,
.fancy-btn--primary:hover .fancy-btn__icon {
    color: #ffd600;
    background-color: #9e005d;
    -webkit-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%)
}

.fancy-btn--primary:focus:after,
.fancy-btn--primary:hover:after {
    background-color: #ffd600
}

.fancy-btn--secondary {
    color: #6026a6
}

.fancy-btn--secondary .fancy-btn__icon {
    background-color: #fff;
    color: #6026a6;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.fancy-btn--secondary:after {
    background-color: #ffd600
}

.fancy-btn--secondary:focus,
.fancy-btn--secondary:hover {
    color: #ffd600
}

.fancy-btn--secondary:focus .fancy-btn__icon,
.fancy-btn--secondary:hover .fancy-btn__icon {
    color: #6026a6;
    background-color: #ffd600;
    -webkit-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%)
}

.fancy-btn--secondary:focus:after,
.fancy-btn--secondary:hover:after {
    background-color: #6026a6
}

@font-face {
    font-family: Graphik-Bold;
    src: url(../fonts/Graphik-Bold.woff2) format("woff2"), url(../fonts/Graphik-Bold.woff) format("woff"), url(../fonts/Graphik-Bold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Graphik-Semibold;
    src: url(../fonts/Graphik-Semibold.woff2) format("woff2"), url(../fonts/Graphik-Semibold.woff) format("woff"), url(../fonts/Graphik-Semibold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Graphik-Medium;
    src: url(../fonts/Graphik-Medium.woff2) format("woff2"), url(../fonts/Graphik-Medium.woff) format("woff"), url(../fonts/Graphik-Medium.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Graphik-Regular;
    src: url(../fonts/Graphik-Regular.woff2) format("woff2"), url(../fonts/Graphik-Regular.woff) format("woff"), url(../fonts/Graphik-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Interstate-BoldCompressed;
    src: url(../fonts/Interstate-BoldCompressed.woff2) format("woff2"), url(../fonts/Interstate-BoldCompressed.woff) format("woff"), url(../fonts/Interstate-BoldCompressed.ttf) format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

html {
    font-size: 16px
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-family: Graphik-Regular, sans-serif;
    color: #333
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

h1,
h2,
h3,
h5 {
    font-family: Graphik-Bold, sans-serif
}

h1 {
    font-size: 32px;
    line-height: 1.2
}

@media screen and (max-width:1216px) {
    h1 {
        font-size: 24px
    }
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 21px;
        line-height: 1.19
    }
}

h2 {
    font-size: 28px;
    line-height: 1.321
}

@media screen and (max-width:1216px) {
    h2 {
        font-size: 21px
    }
}

@media screen and (max-width:767px) {
    h2 {
        font-size: 18px;
        line-height: 1.19
    }
}

h3 {
    font-size: 21px;
    line-height: 1.238
}

h4 {
    font-size: 16px;
    line-height: 1.375;
    font-family: Graphik-Semibold, sans-serif
}

h5 {
    font-size: 14px;
    line-height: 1.571
}

h6 {
    font-size: 12px;
    line-height: 1.571;
    text-transform: uppercase
}

small {
    font-size: 70%
}

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

p {
    margin-bottom: 32px
}

p:last-child {
    margin-bottom: 0
}

strong {
    font-weight: 400;
    font-family: Graphik-Bold, sans-serif
}

a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

a:active,
a:focus {
    outline: 0
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden
}

.video-container .video-js,
.video-container>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.accessible-text,
.grid-content--alt .article__thumbnail img,
.hidden_label>.gfield_label,
.hidden_label>label,
.screen-reader-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    top: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.clearfix:after,
.clearfix:before {
    display: table;
    content: "";
    line-height: 0
}

.clearfix:after {
    clear: both
}

.container {
    max-width: 1680px;
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto
}

@media screen and (max-width:1216px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width:767px) {
    .container {
        padding-left: 28px;
        padding-right: 28px
    }
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor
}

.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px
}

.grid.grid--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.gfield {
    width: 100%
}

.column,
.column-12,
.column-3,
.column-4,
.column-6 {
    padding: 0 10px;
    margin-bottom: 20px
}

@media screen and (max-width:767px) {

    .column-12:last-child,
    .column-3:last-child,
    .column-4:last-child,
    .column-6:last-child,
    .column:last-child {
        margin-bottom: 0
    }
}

.column-3 {
    width: 33.33%
}

@media screen and (max-width:767px) {
    .column-3 {
        width: 100%
    }
}

.column-4 {
    width: 25%
}

@media screen and (max-width:1216px) {
    .column-4 {
        width: 33.33%
    }
}

@media screen and (max-width:1024px) {
    .column-4 {
        width: 50%
    }
}

@media screen and (max-width:767px) {
    .column-4 {
        width: 100%
    }
}

.column-6 {
    width: 50%
}

@media screen and (max-width:767px) {
    .column-6 {
        width: 100%
    }
}

.column-12 {
    width: 100%
}

.text-center {
    text-align: center !important
}

#loader {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    font-size: 50px;
    display: none
}

em {
    font-style: italic
}

strong {
    font-weight: 700
}

.entry-content {
    font-size: 16px;
    line-height: 1.625;
    font-family: Graphik-Regular, sans-serif;
    overflow: hidden
}

#container-map .entry-content {
    overflow: inherit
}

#container-map .entry-content .interactivemap-tooltip table.interactivemap-tooltip-data td {
    background: 0 0;
    border: none;
    text-align: left;
    font-size: .875rem
}

#container-map .entry-content .interactivemap-tooltip table.interactivemap-tooltip-data {
    margin: 0
}

.entry-content:not(:last-child) {
    margin-bottom: 24px
}

.entry-content>:first-child {
    margin-top: 0
}

.entry-content>:last-child {
    margin-bottom: 0
}

.entry-content a {
    text-decoration: none;
    color: #6026a6;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400
}

.entry-content a:hover {
    text-decoration: underline;
    color: #292664
}

.entry-content sub,
.entry-content sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

.entry-content sup {
    top: -.5em
}

.entry-content sub {
    bottom: -.25em
}

.entry-content figure {
    float: left;
    margin: 0 20px 20px 0
}

.entry-content .link {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.entry-content .link:active,
.entry-content .link:focus,
.entry-content .link:hover {
    color: #292664;
    text-underline-offset: -1px
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #292664;
    font-weight: 400;
    margin-bottom: 20px
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h5 {
    font-family: Graphik-Bold, sans-serif
}

.entry-content h1 {
    font-size: 2rem;
    line-height: 1.2
}

@media screen and (max-width:1216px) {
    .entry-content h1 {
        font-size: 24px
    }
}

@media screen and (max-width:767px) {
    .entry-content h1 {
        font-size: 21px;
        line-height: 1.19
    }
}

.entry-content h2 {
    font-size: 1.75rem;
    line-height: 1.321
}

@media screen and (max-width:1216px) {
    .entry-content h2 {
        font-size: 21px
    }
}

@media screen and (max-width:767px) {
    .entry-content h2 {
        font-size: 18px;
        line-height: 1.19
    }
}

.entry-content h3 {
    font-size: 1.3125rem;
    line-height: 1.238
}

@media screen and (max-width:1216px) {
    .entry-content h3 {
        font-size: 18px
    }
}

.entry-content h4 {
    font-size: 1rem;
    line-height: 1.375;
    font-family: Graphik-Semibold, sans-serif
}

.entry-content h5 {
    font-size: .875rem;
    line-height: 1.571
}

.entry-content h6 {
    font-size: .75rem;
    line-height: 1.571;
    text-transform: uppercase
}

.entry-content strong {
    font-weight: 400;
    font-family: Graphik-Bold, sans-serif
}

.entry-content em {
    font-style: italic
}

.entry-content p {
    margin-bottom: 0
}

.entry-content p:not(:last-child) {
    margin-bottom: 26px
}

.entry-content ol,
.entry-content ul {
    margin-bottom: 16px;
    padding-left: 24px
}

.entry-content ol li,
.entry-content ul li {
    margin-bottom: 8px
}

.entry-content ol li:last-child,
.entry-content ul li:last-child {
    margin-bottom: 0
}

.entry-content ol li ol,
.entry-content ol li ul,
.entry-content ul li ol,
.entry-content ul li ul {
    margin-top: 10px
}

.entry-content ul {
    list-style-type: disc
}

.entry-content ol {
    list-style-type: decimal
}

.entry-content img {
    max-width: 100%;
    margin-bottom: 16px
}

.entry-content hr {
    margin: 16px 0;
    background-color: rgba(60, 191, 175, .3);
    display: block;
    height: 1px;
    border: none
}

.entry-content .alignleft {
    display: inline;
    float: left;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-top: 16px
}

.entry-content .alignright {
    display: inline;
    float: right;
    margin-left: 16px;
    margin-bottom: 16px;
    margin-top: 16px
}

.entry-content .aligncenter {
    clear: both;
    display: block;
    margin: 16px auto
}

.entry-content img.size-full {
    max-width: 100%;
    width: auto
}

.entry-content figure {
    display: table
}

.entry-content figure img {
    margin-bottom: 0
}

.entry-content figure figcaption {
    background-color: #9e005d;
    font-size: .875rem;
    padding: 14px 18px;
    color: #fff;
    font-family: Graphik-Semibold, sans-serif;
    display: table-caption;
    caption-side: bottom
}

.entry-content .wp-caption {
    display: table;
    width: auto !important
}

.entry-content .wp-caption.alignleft {
    margin: 0 20px 20px 0
}

.entry-content .wp-caption.alignright {
    margin: 0 0 20px 20px
}

.entry-content .wp-caption img {
    display: block;
    margin: 0 !important;
    max-width: 100%
}

.entry-content .wp-caption-text {
    background-color: #9e005d;
    font-size: .875rem;
    padding: 14px 18px;
    color: #fff;
    font-family: Graphik-Semibold, sans-serif;
    display: table-caption;
    caption-side: bottom
}

.entry-content embed,
.entry-content iframe,
.entry-content object {
    max-width: 100%
}

.entry-content table {
    color: #333;
    /* width: 100%; COMMENTED OUT BY PENTERA */
    border-collapse: collapse;
    border-spacing: 0;
    /* margin: 1rem 0 COMMENTED OUT BY PENTERA */
}

.entry-content td,
.entry-content th {
    border: 1px solid transparent;
    /* height: 3rem; COMMENTED OUT BY PENTERA */
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    /* vertical-align: middle COMMENTED OUT BY PENTERA */
}

@media screen and (max-width:767px) {

    .entry-content td,
    .entry-content th {
        height: auto
    }
}

.entry-content th {
    /* background: #dfdfdf;
    font-weight: 700 COMMENTED OUT BY PENTERA */
}

.entry-content td {
    /* background: #fafafa;
    text-align: center COMMENTED OUT BY PENTERA */
}

.entry-content tr:nth-child(even) td {
    /* background: #f1f1f1 COMMENTED OUT BY PENTERA */
}

.entry-content tr:nth-child(odd) td {
    /* background: #fefefe COMMENTED OUT BY PENTERA */
}

.site-footer {
    border-top: 1px solid #d9d9d9;
    font-size: .875rem;
    color: #333
}

.site-footer .container {
    padding: 0;
    max-width: 100%
}

.footer__primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 32px;
    max-width: 1200px;
    margin: 0 auto
}

@media screen and (max-width:1216px) {
    .footer__primary {
        padding: 20px
    }
}

@media screen and (max-width:767px) {
    .footer__primary {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.footer__secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    background-color: #707070;
    padding: 16px 32px 13px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

@media screen and (max-width:767px) {
    .footer__secondary {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.copyright {
    margin-bottom: 0;
    font-size: .8125rem;
    font-family: Barlow, sans-serif
}

@media screen and (max-width:767px) {
    .copyright {
        margin-bottom: 4px
    }
}

.policy__navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.policy__navigation li {
    margin-right: 15px
}

.policy__navigation li a {
    color: #fff;
    font-size: .8125rem;
    font-family: Barlow, sans-serif
}

.policy__navigation li a:active,
.policy__navigation li a:focus,
.policy__navigation li a:hover {
    color: rgba(60, 191, 175, .8)
}

@media screen and (max-width:1216px) {
    .footer__navigation {
        min-width: 115px
    }
}

@media screen and (max-width:767px) {
    .footer__navigation {
        min-width: 100%
    }
}

.footer__navigation li {
    width: 100%
}

.footer__navigation li a {
    font-family: Barlow, sans-serif;
    font-size: .875rem;
    text-transform: uppercase;
    color: #6026a6
}

.footer__navigation li a:active,
.footer__navigation li a:focus,
.footer__navigation li a:hover {
    color: #3cbfaf
}

.footer__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    font-family: Barlow, sans-serif
}

@media screen and (max-width:767px) {
    .footer__address {
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }
}

.footer__address .icon-location {
    height: 36px;
    width: 27px;
    margin-right: 10px;
    color: rgba(0, 0, 0, .4)
}

@media screen and (max-width:767px) {
    .footer__address .icon-location {
        margin: 0 auto 10px
    }
}

.footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    font-family: Barlow, sans-serif
}

@media screen and (max-width:767px) {
    .footer__contact {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.footer__contact .icon-phone {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    color: rgba(0, 0, 0, .4)
}

@media screen and (max-width:767px) {
    .footer__contact .icon-phone {
        margin: 0 auto 10px
    }
}

.footer__contact strong {
    font-family: Barlow, sans-serif;
    font-weight: 700
}

.footer__contact a {
    color: #333
}

.footer__contact a:active,
.footer__contact a:focus,
.footer__contact a:hover {
    color: #3cbfaf
}

.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:767px) {
    .social-icons {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.social-icons a {
    color: #6026a6
}

.social-icons a:not(:last-child) {
    margin-right: 12px
}

@media screen and (max-width:767px) {
    .social-icons a {
        margin-bottom: 10px
    }
}

.social-icons a:last-child {
    margin-right: 0
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #3cbfaf
}

.social-icons svg {
    width: 27px;
    height: 27px
}

.footer__navigation {
    margin-right: 20px
}

@media screen and (max-width:767px) {
    .footer__navigation {
        margin-right: 0;
        margin-bottom: 26px
    }
}

@media screen and (max-width:767px) {
    .footer__navigation .footer-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 -10px
    }
}

.footer__navigation li {
    line-height: 1;
    margin-bottom: 12px
}

@media screen and (max-width:767px) {
    .footer__navigation li {
        padding: 0 10px;
        text-align: center;
        display: block
    }
}

.top-bar {
    padding: 16px 0;
    background-color: #9e005d;
    position: static;
    top: 50px;
    width: 100%;
    left: 0;
    z-index: 9;
    display: none;
    font-size: 1.125rem;
    color: #fff;
    font-family: Graphik-Regular, sans-serif
}

.top-bar .container {
    position: relative;
    text-align: center
}

@media screen and (max-width:767px) {
    .top-bar .container {
        padding-right: 40px;
        padding-left: 16px;
        font-size: .875rem
    }
}

.top-bar .container p {
    margin-bottom: 0;
    margin-right: 8px;
    display: inline-block
}

.top-bar .container .entry-content p {
    font-size: 1rem;
    margin-bottom: 0;
    margin-left: 8px;
    line-height: 1.4
}

.top-bar .container .top-bar__button {
    color: #ffd600;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    font-size: 1rem;
    font-family: Graphik-Semibold, sans-serif;
    border-bottom: 1px solid #ffd600
}

@media screen and (max-width:1024px) {
    .top-bar .container .top-bar__button {
        margin-top: 5px;
        font-size: .875rem;
        padding: 0
    }
}

.top-bar .container .top-bar__button:hover {
    color: #3cbfaf;
    border-bottom: 1px solid #3cbfaf
}

.top-bar .icon-close {
    width: 25px;
    height: 25px;
    fill: #fff;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer
}

.top-bar .icon-close:hover {
    fill: #ffd600
}

.top-bar__link {
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-left: 12px;
    display: inline-block;
    line-height: 1;
    text-decoration: none
}

.top-bar__close {
    color: #fff;
    position: absolute;
    top: 6px;
    right: 30px;
    font-size: 1rem;
    font-family: Graphik-Regular, sans-serif;
    text-decoration: underline
}

@media screen and (max-width:767px) {
    .top-bar__close {
        right: 16px
    }
}

.top-bar__close:focus,
.top-bar__close:hover {
    text-decoration: none
}

.top-bar__close:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 5px;
    border-left-width: 5px;
    border-bottom: 7px solid #fff;
    margin-left: 5px
}

.fancybox-is-open .fancybox-bg {
    opacity: .5
}

.popup-box.fancybox-content {
    padding: 56px 56px 63px
}

@media screen and (max-width:767px) {
    .popup-box.fancybox-content {
        padding: 36px 36px 43px
    }
}

.popup-box.fancybox-content .fancybox-close-small {
    background-color: #3cbfaf;
    color: #fff;
    height: 40px;
    width: 40px;
    padding: 4px;
    opacity: 1
}

.popup-box__description {
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .popup-box__description {
        line-height: 1.5
    }
}

.popup-box__description h2 {
    font-size: 2.375rem;
    margin-bottom: 25px
}

@media screen and (max-width:767px) {
    .popup-box__description h2 {
        font-size: 1.75rem
    }
}

.popmake-overlay.pum-overlay {
    background: rgba(30, 30, 30, .5)
}

.pum-theme-default-theme .pum-container {
    background: #fff !important
}

.at-form header.at-title {
    padding: 0
}

.at-form .at-form-submit .at-submit {
    background: #6026a6;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 13px 22px 10px 23px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    font-family: Graphik-Semibold, sans-serif;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 0;
    text-decoration: none;
    min-width: inherit;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-weight: 400
}

.at-form .at-form-submit .at-submit:active,
.at-form .at-form-submit .at-submit:focus,
.at-form .at-form-submit .at-submit:hover {
    padding: 13px 22px 10px 23px;
    background: #292664
}

.pum-close.popmake-close {
    text-indent: -999em !important;
    width: 40px !important;
    height: 40px !important;
    background: url(../images/close.svg) no-repeat center center #6026a6 !important
}

.pum-close.popmake-close:hover {
    background: url(../images/close.svg) no-repeat center center #292664 !important
}

.site-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media screen and (min-width:1025px) {
    .site-wrapper {
        padding-top: 0 !important
    }
}

@media screen and (max-width:1024px) {
    .site-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.site-wrapper .header {
    width: 250px;
    -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .29);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .29);
    position: relative;
    z-index: 99;
    background-color: rgba(0, 0, 0, .05)
}

@media screen and (max-width:1216px) {
    .site-wrapper .header {
        width: auto
    }
}

@media screen and (max-width:1024px) {
    .site-wrapper .header {
        width: 100%
    }
}

@media screen and (max-width:1024px) {
    .site-wrapper .header.nav__visible {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0
    }
}

.site-wrapper .header .container {
    padding: 0
}

@media screen and (max-width:1216px) {
    .site-wrapper .header .container {
        width: 200px
    }
}

@media screen and (max-width:1024px) {
    .site-wrapper .header .container {
        width: 100%
    }
}

.site-wrapper .header .logo__container {
    padding: 20px 24px 22px;
    border-bottom: 1px solid #d8d8d8
}

@media screen and (max-width:1024px) {
    .site-wrapper .header .logo__container {
        padding: 0;
        max-width: 126px;
        border-bottom: none
    }
}

.site-wrapper .main {
    width: calc(100% - 250px)
}

@media screen and (max-width:1216px) {
    .site-wrapper .main {
        width: calc(100% - 200px)
    }
}

@media screen and (max-width:1024px) {
    .site-wrapper .main {
        width: 100%
    }
}

.site-wrapper .main>main {
    min-height: calc(100vh - 370px)
}

.site-wrapper .main>main>section {
    max-width: 1680px
}

.site-wrapper .main>main .blockquote,
.site-wrapper .main>main .history,
.site-wrapper .main>main .page-banner {
    max-width: inherit
}

.secondaryNav {
    padding: 37px 34px 32px
}

@media screen and (max-width:1024px) {
    .secondaryNav {
        display: none
    }
}

.secondaryNav>li {
    margin-bottom: 15px
}

.secondaryNav>li:last-child {
    margin-top: 30px;
    margin-bottom: 0
}

.secondaryNav li {
    line-height: 1;
    position: relative
}

.secondaryNav li a {
    color: #6026a6;
    font-size: .875rem;
    font-family: Graphik-Semibold, sans-serif
}

.secondaryNav li a:active,
.secondaryNav li a:focus,
.secondaryNav li a:hover {
    color: #3cbfaf
}

.secondaryNav .sub-menu {
    display: none
}

.secondaryNav .menu-item-has-children>a {
    font-family: Graphik-Bold, sans-serif
}

.primaryNav {
    padding: 30px 34px 27px
}

.primaryNav li {
    line-height: 1;
    margin-bottom: 18px;
    position: relative
}

.primaryNav li a {
    color: #6026a6;
    font-size: .875rem;
    font-family: Graphik-Regular, sans-serif;
    display: block
}

.primaryNav li a:active,
.primaryNav li a:focus,
.primaryNav li a:hover {
    color: #3cbfaf
}

.primaryNav .sub-menu {
    display: none
}

.primaryNav>.menu-item-has-children,
.secondaryNav>.menu-item-has-children {
    cursor: pointer
}

.primaryNav>.menu-item-has-children.is-active>a,
.primaryNav>.menu-item-has-children:focus>a,
.primaryNav>.menu-item-has-children:hover>a,
.secondaryNav>.menu-item-has-children.is-active>a,
.secondaryNav>.menu-item-has-children:focus>a,
.secondaryNav>.menu-item-has-children:hover>a {
    color: #3cbfaf;
    pointer-events: none
}

.primaryNav>.menu-item-has-children.is-active .mobileNavDropdownToggle,
.primaryNav>.menu-item-has-children:focus .mobileNavDropdownToggle,
.primaryNav>.menu-item-has-children:hover .mobileNavDropdownToggle,
.secondaryNav>.menu-item-has-children.is-active .mobileNavDropdownToggle,
.secondaryNav>.menu-item-has-children:focus .mobileNavDropdownToggle,
.secondaryNav>.menu-item-has-children:hover .mobileNavDropdownToggle {
    color: #fff
}

.primaryNav>.menu-item-has-children.is-active .mobileNavDropdownToggle:after,
.primaryNav>.menu-item-has-children:focus .mobileNavDropdownToggle:after,
.primaryNav>.menu-item-has-children:hover .mobileNavDropdownToggle:after,
.secondaryNav>.menu-item-has-children.is-active .mobileNavDropdownToggle:after,
.secondaryNav>.menu-item-has-children:focus .mobileNavDropdownToggle:after,
.secondaryNav>.menu-item-has-children:hover .mobileNavDropdownToggle:after {
    opacity: 1
}

.header-primary {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

@media screen and (max-width:1024px) {
    .header-primary {
        padding: 14px 28px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: none
    }
}

.header-secondary {
    position: relative
}

@media screen and (max-width:1024px) {
    .header-secondary {
        display: none
    }
}

.header-secondary .header-search .header__search {
    width: 187px
}

@media screen and (max-width:1216px) {
    .header-secondary .header-search .header__search {
        width: 150px
    }
}

.header-secondary .header-search .header-search__form {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: -5px;
    top: -5px
}

@media screen and (max-width:1216px) {
    .header-secondary .header-search .header-search__form {
        left: -20px
    }
}

.header-secondary .header-search .header-search__form .header-search-close {
    position: absolute;
    color: #000;
    top: 12px;
    left: calc(100% + 8px);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    pointer-events: none;
    cursor: pointer
}

.header-secondary .header-search .header-search__form .header-search-close:focus,
.header-secondary .header-search .header-search__form .header-search-close:hover {
    color: #6026a6
}

.header-secondary .header-search .header-search__form .header-search-close .icon {
    height: 10px;
    width: 10px
}

.header-secondary .header-search .header-search__form .header__search-field {
    height: 40px;
    background-color: transparent;
    border: none;
    padding: 0 0 0 12px
}

.header-secondary .header-search .header-link__item--search.is-active,
.header-secondary .header-search .header-link__item--search:focus,
.header-secondary .header-search .header-link__item--search:hover {
    color: #000
}

.header-secondary .header-search .header-link__item--search.is-active:after,
.header-secondary .header-search .header-link__item--search:focus:after,
.header-secondary .header-search .header-link__item--search:hover:after {
    opacity: 1
}

.header-secondary .header-search .header-link__item--search:after {
    content: '';
    height: 40px;
    width: 40px;
    position: absolute;
    z-index: -1;
    background-color: #3cbfaf;
    display: block;
    top: 50%;
    left: 50%;
    opacity: 0;
    border-radius: 2px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.header-secondary .header-search .header__search-submit {
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    color: #000
}

.header-secondary .header-search .header__search-submit .icon-search {
    height: 16px;
    width: 16px;
    margin: 0
}

.header-secondary .header-search .header__search-submit:focus,
.header-secondary .header-search .header__search-submit:hover {
    background-color: transparent
}

.header-secondary .header-secondary__popup {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-secondary .header-link__item.header-link__item--subscribe {
    position: relative;
    z-index: 1
}

.header-secondary .header-link__item.header-link__item--subscribe .header-link__item-hover {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.header-secondary .header-link__item.header-link__item--subscribe:focus .header-link__item-hover,
.header-secondary .header-link__item.header-link__item--subscribe:hover .header-link__item-hover {
    opacity: 1;
    pointer-events: all
}

.header-secondary .header-link__item.header-link__item--subscribe .header-link__item-hover {
    padding: 6px 12px;
    background-color: #3cbfaf;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    height: 40px;
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px
}

.header-secondary .header-link__item.header-link__item--subscribe .header-link__item-hover .header-link__item--subscribe-text {
    white-space: nowrap;
    font-size: .875rem;
    line-height: 1;
    color: #000;
    margin-left: 8px;
    font-family: Graphik-Semibold, sans-serif
}

.header-secondary__popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 35px
}

.header-search {
    position: relative;
    margin-right: 22px;
    z-index: 9
}

@media screen and (max-width:960px) {
    .header-search {
        width: 100%
    }
}

.header-search__form {
    position: absolute;
    left: 0;
    top: 37px;
    -webkit-box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .14);
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .14);
    border-radius: 2px;
    padding: 12px 16px 14px;
    background-color: #3cbfaf;
    display: none
}

.header-search__form.is-active {
    display: block
}

@media screen and (max-width:960px) {
    .header-search__form {
        width: 100%;
        display: block;
        position: static;
        padding: 0;
        background: 0 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.header__search {
    position: relative;
    width: 200px
}

@media screen and (max-width:960px) {
    .header__search {
        width: 100%
    }
}

.header__search .header-search__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.header__search input[type=email],
.header__search input[type=search],
.header__search input[type=text] {
    background-color: #fff;
    border-radius: 0;
    height: 30px;
    position: relative;
    border: 1px solid #292664;
    width: calc(100% - 35px);
    padding: 4px 7px 4px;
    color: #333;
    font-size: .75rem
}

@media screen and (max-width:960px) {

    .header__search input[type=email],
    .header__search input[type=search],
    .header__search input[type=text] {
        background-color: #e5edf0;
        border-radius: 4px;
        border-color: #e5edf0;
        height: 35px;
        padding: 9px 10px;
        width: calc(100% - 45px)
    }
}

.header__search input[type=email]:focus,
.header__search input[type=search]:focus,
.header__search input[type=text]:focus {
    color: #333
}

.header__search input[type=email]::-webkit-input-placeholder,
.header__search input[type=search]::-webkit-input-placeholder,
.header__search input[type=text]::-webkit-input-placeholder {
    font-family: Graphik-Regular, sans-serif;
    font-size: .75rem;
    line-height: 1.18;
    letter-spacing: -.42;
    color: #000
}

.header__search input[type=email]:-moz-placeholder,
.header__search input[type=search]:-moz-placeholder,
.header__search input[type=text]:-moz-placeholder {
    font-family: Graphik-Regular, sans-serif;
    font-size: .75rem;
    line-height: 1.18;
    letter-spacing: -.42;
    color: #000
}

.header__search input[type=email]::-moz-placeholder,
.header__search input[type=search]::-moz-placeholder,
.header__search input[type=text]::-moz-placeholder {
    font-family: Graphik-Regular, sans-serif;
    font-size: .75rem;
    line-height: 1.18;
    letter-spacing: -.42;
    color: #000
}

.header__search input[type=email]:-ms-input-placeholder,
.header__search input[type=search]:-ms-input-placeholder,
.header__search input[type=text]:-ms-input-placeholder {
    font-family: Graphik-Regular, sans-serif;
    font-size: .75rem;
    line-height: 1.18;
    letter-spacing: -.42;
    color: #000
}

.header__search input[type=email]::-webkit-search-cancel-button,
.header__search input[type=email]::-webkit-search-decoration,
.header__search input[type=email]::-webkit-search-results-button,
.header__search input[type=email]::-webkit-search-results-decoration,
.header__search input[type=search]::-webkit-search-cancel-button,
.header__search input[type=search]::-webkit-search-decoration,
.header__search input[type=search]::-webkit-search-results-button,
.header__search input[type=search]::-webkit-search-results-decoration,
.header__search input[type=text]::-webkit-search-cancel-button,
.header__search input[type=text]::-webkit-search-decoration,
.header__search input[type=text]::-webkit-search-results-button,
.header__search input[type=text]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

.header__search-control {
    position: relative
}

.header__search-control .header__search-submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background: 0 0;
    padding: 0;
    width: 30px;
    height: 30px;
    font-family: Graphik-Regular, sans-serif;
    font-size: .8125rem;
    background-color: #292664;
    min-width: inherit
}

@media screen and (max-width:960px) {
    .header__search-control .header__search-submit {
        height: 35px;
        width: 35px
    }
}

.header__search-control .header__search-submit:before {
    display: none
}

.header__search-control .header__search-submit:active,
.header__search-control .header__search-submit:focus,
.header__search-control .header__search-submit:hover {
    background-color: #0b0a1a
}

.header__search-control .header__search-submit span {
    display: block
}

@media screen and (max-width:960px) {
    .header__search-control .header__search-submit span {
        display: none
    }
}

.header__search-control .header__search-submit .icon-search {
    height: 15px;
    width: 15px;
    margin: 3px auto 0
}

.header__search-control .header__search-icon {
    width: 14px;
    height: 12px;
    color: #292664;
    position: static
}

.header-link__item {
    border: 1px solid #3cbfaf;
    color: #3cbfaf;
    display: block;
    line-height: 1;
    border-radius: 2px;
    width: 30px;
    text-align: center;
    height: 30px;
    padding: 6px 4px
}

.donate-btn {
    font-family: Interstate-BoldCompressed, sans-serif;
    font-size: 2.375rem;
    text-transform: uppercase;
    position: relative;
    padding: 4px 23px 4px 36px;
    display: inline-block;
    line-height: 1;
    margin-bottom: 30px;
    color: #6026a6
}

.donate-btn.donate-btn-alt {
    margin-bottom: 0;
    background-color: #ffd600;
    font-size: .875rem;
    line-height: 1;
    color: #292664;
    padding: 18px 36px 16px;
    font-family: Graphik-Bold, sans-serif
}

.donate-btn.donate-btn-alt:before {
    display: none
}

.donate-btn:before {
    content: "";
    width: calc(100% + 30px);
    height: 100%;
    background-color: #ffd600;
    position: absolute;
    right: -15px;
    top: 0;
    -webkit-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.donate-btn span {
    position: relative;
    z-index: 1
}

.donate-btn:active,
.donate-btn:focus,
.donate-btn:hover {
    background-color: #ffd600
}

.donate-btn:active:before,
.donate-btn:focus:before,
.donate-btn:hover:before {
    background-color: #ffd600;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.donate-btn.is-active:before,
.donate-btn:hover:before {
    width: calc(100% + 150px);
    right: -108px;
    -webkit-transform: skewX(0);
    -ms-transform: skewX(0);
    transform: skewX(0)
}

.donate-popup {
    width: 400px;
    background: #ffd600;
    position: absolute;
    bottom: -30px;
    left: 250px;
    padding: 50px 55px 65px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    z-index: 2
}

.donate-popup.donate-popup-alt {
    bottom: auto;
    top: 100%;
    left: 28px !important;
    padding: 20px 25px;
    max-width: 400px;
    right: 28px;
    width: auto;
    position: absolute
}

.donate-popup.donate-popup-alt:before {
    display: none
}

.donate-popup.is-active {
    opacity: 1;
    visibility: visible
}

.donate-popup:before {
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    background-color: #ffd600;
    position: absolute;
    right: -87px;
    top: 0;
    -webkit-transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    transform: skewX(30deg);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.donate-popup .btn--white {
    text-align: center;
    padding: 10px 35px;
    background-color: #fff;
    font-family: Graphik-Bold, sans-serif;
    text-transform: none;
    font-size: 1.3125rem;
    min-width: inherit;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
    color: #292664;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

@media screen and (max-width:767px) {
    .donate-popup .btn--white {
        font-size: 1.125rem
    }
}

.donate-popup .btn--white:before {
    display: none
}

.donate-popup .btn--white:active,
.donate-popup .btn--white:focus,
.donate-popup .btn--white:hover {
    background-color: #3cbfaf
}

.donate-popup .donate-popup__link-list {
    margin-top: 15px;
    position: relative
}

@media screen and (max-width:767px) {
    .donate-popup .donate-popup__link-list {
        margin-top: 10px
    }
}

.donate-popup .donate-popup__link-list li {
    margin-bottom: 8px
}

@media screen and (max-width:767px) {
    .donate-popup .donate-popup__link-list li {
        margin-bottom: 4px
    }
}

.donate-popup .donate-popup__link-list li a {
    font-family: Graphik-Medium, sans-serif;
    color: #292664;
    font-size: 1.125rem
}

@media screen and (max-width:767px) {
    .donate-popup .donate-popup__link-list li a {
        font-size: .875rem
    }
}

.donate-popup .donate-popup__link-list li a:active,
.donate-popup .donate-popup__link-list li a:focus,
.donate-popup .donate-popup__link-list li a:hover {
    color: #3cbfaf
}

.filter-bar {
    padding: 24px 0
}

.filter-bar+.grid-content {
    padding-top: 20px
}

.select2-container {
    margin-bottom: 4px;
    width: 135px !important;
    margin-right: 4px
}

@media screen and (max-width:1024px) {
    .select2-container {
        width: calc(20% - 4px) !important
    }
}

@media screen and (max-width:767px) {
    .select2-container {
        width: calc(50% - 4px) !important
    }
}

@media screen and (max-width:360px) {
    .select2-container {
        width: 100% !important;
        margin-right: 0 !important
    }
}

.select2-selection {
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 32px;
    background-color: #fff;
    padding: 8px 32px 8px 8px;
    background-image: url(../images/icon-angle-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    border-radius: 0 !important;
    border: none !important
}

.select2-results .select2-results__options .select2-results__option {
    font-size: .8125rem;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
    line-height: 1.14
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: .8125rem;
    color: #000;
    text-transform: capitalize;
    margin-top: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder {
    color: #000
}

.select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
    color: #000
}

.select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder {
    color: #000
}

.select2-container .select2-search--inline .select2-search__field::-ms-input-placeholder {
    color: #000
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
    color: #000
}

.select2-dropdown {
    min-width: 220px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    border: none;
    border-radius: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: .75rem;
    border: none;
    color: #000;
    border-radius: 0;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
    line-height: 1
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3cbfaf
}

.select2-container .select2-search--inline .select2-search__field {
    color: #fff !important;
    pointer-events: none !important;
    cursor: default
}

.select2-selection__clear {
    display: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    position: absolute;
    left: 0;
    right: 25px;
    top: 11px;
    overflow: hidden
}

.staff-nav {
    margin-top: 24px
}

.staff-nav .container {
    margin: 0
}

.menuAlt {
    list-style-type: none;
    background-color: #3cbfaf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.filter-bar--center .menuAlt {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width:480px) {
    .menuAlt li {
        width: 100%;
        text-align: center
    }
}

.menuAlt li.active a {
    color: #fff;
    background-color: #292664
}

.menuAlt li a {
    background-color: transparent;
    padding: 17px 16px 12px;
    font-family: Graphik-Semibold, sans-serif;
    color: #292664;
    display: inline-block;
    vertical-align: top
}

@media screen and (max-width:480px) {
    .menuAlt li a {
        width: 100%;
        padding: 10px 16px 7px
    }
}

.menuAlt li a:focus,
.menuAlt li a:hover {
    color: #fff;
    background-color: #292664
}

.wp-pagenavi {
    text-align: center;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px
}

.wp-pagenavi span {
    border: none
}

.wp-pagenavi .pages {
    display: none
}

.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .page {
    font-size: 1.125rem;
    font-family: Graphik-Regular, sans-serif;
    color: #6026a6;
    line-height: 1;
    padding: 0 8px;
    margin-bottom: 10px !important;
    border: none;
    margin-left: 0;
    margin-right: 0
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    font-family: Graphik-Regular, sans-serif;
    color: #6026a6;
    line-height: 1;
    margin-bottom: 10px !important;
    border: none;
    margin-left: 0;
    margin-right: 0
}

.wp-pagenavi .nextpostslink .icon,
.wp-pagenavi .previouspostslink .icon {
    width: 13px;
    height: 21px
}

.wp-pagenavi .previouspostslink {
    margin-right: 30px
}

.wp-pagenavi .nextpostslink {
    margin-left: 30px
}

.wp-pagenavi .current {
    font-family: Graphik-Semibold, sans-serif;
    color: #3cbfaf;
    border: none
}

.blog--custom .wp-pagenavi {
    width: 100%
}

.page-navi ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px
}

.page-navi ul a,
.page-navi ul li {
    font-size: 1.125rem;
    font-family: Graphik-Regular, sans-serif;
    color: #6026a6;
    line-height: 1
}

.page-navi ul li {
    padding: 0 8px;
    margin-bottom: 10px !important
}

.page-navi ul li:first-child {
    margin-right: 30px
}

.page-navi ul li:last-child {
    margin-left: 30px
}

.page-navi ul li.active a {
    font-family: Graphik-Semibold, sans-serif;
    color: #3cbfaf
}

.page-navi ul li a:focus,
.page-navi ul li a:hover {
    color: #3cbfaf;
    text-decoration: none
}

.page-navi ul li a .icon {
    width: 13px;
    height: 21px
}

.megamenu {
    left: 250px;
    position: absolute;
    background-color: rgba(96, 38, 166, .98);
    z-index: 9;
    top: 0;
    bottom: 0;
    padding: 56px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    min-width: 252px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    box-shadow: 0 0 20px rgba(0, 0, 0, .5)
}

@media screen and (max-width:1024px) {
    .megamenu {
        display: none !important
    }
}

.megamenu.is-active {
    pointer-events: all;
    opacity: 1
}

.megamenu .megamenu__title {
    color: #fff;
    margin-bottom: 24px
}

.megamenu .megamenu__inner {
    position: relative
}

.megamenu .megamenu__inner>.sub-menu li a {
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    display: block;
    margin-bottom: 8px
}

.megamenu .megamenu__inner>.sub-menu li a:focus,
.megamenu .megamenu__inner>.sub-menu li a:hover {
    color: #ffd600
}

.megamenu .megamenu__inner>.sub-menu.hasMultiSubMenu>li {
    margin-bottom: 24px
}

.megamenu .megamenu__inner>.sub-menu.hasMultiSubMenu>li>a {
    color: #3cbfaf;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400
}

.megamenu .megamenu__inner>.sub-menu.hasMultiSubMenu>li>a:focus,
.megamenu .megamenu__inner>.sub-menu.hasMultiSubMenu>li>a:hover {
    color: #ffd600
}

.header-primary .mobileNavDropdownToggle,
.header-secondary .mobileNavDropdownToggle {
    position: absolute;
    right: 0;
    top: 1px;
    color: #6026a6;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    z-index: 1
}

.header-primary .mobileNavDropdownToggle.is-active,
.header-primary .mobileNavDropdownToggle:focus,
.header-primary .mobileNavDropdownToggle:hover,
.header-secondary .mobileNavDropdownToggle.is-active,
.header-secondary .mobileNavDropdownToggle:focus,
.header-secondary .mobileNavDropdownToggle:hover {
    color: #fff
}

.header-primary .mobileNavDropdownToggle.is-active:after,
.header-primary .mobileNavDropdownToggle:focus:after,
.header-primary .mobileNavDropdownToggle:hover:after,
.header-secondary .mobileNavDropdownToggle.is-active:after,
.header-secondary .mobileNavDropdownToggle:focus:after,
.header-secondary .mobileNavDropdownToggle:hover:after {
    opacity: 1
}

.header-primary .mobileNavDropdownToggle .icon,
.header-secondary .mobileNavDropdownToggle .icon {
    position: relative;
    z-index: 1;
    margin-right: 0
}

.header-primary .mobileNavDropdownToggle:after,
.header-secondary .mobileNavDropdownToggle:after {
    content: '';
    opacity: 0;
    background-color: #6026a6;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 24px;
    left: 50%;
    top: 50%;
    width: 24px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    display: block
}

.mobile-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background-color: #6026a6;
    opacity: 0;
    pointer-events: none;
    display: none
}

@media screen and (max-width:1024px) {
    .nav__visible .mobile-nav {
        opacity: 1;
        display: block;
        pointer-events: all
    }
}

.primaryNavMobile {
    background-color: #3cbfaf;
    width: 100%;
    padding: 20px 28px
}

.primaryNavMobile li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0
}

.primaryNavMobile li .icon {
    height: 13px;
    width: 8px
}

.primaryNavMobile li a {
    display: block;
    font-size: 1.125rem;
    font-family: Graphik-Regular, sans-serif;
    color: #6026a6
}

.primaryNavMobile li a:focus,
.primaryNavMobile li a:hover {
    color: #ffd600
}

.primaryNavMobile li.menu-item-has-children.is-active {
    position: absolute;
    z-index: 9;
    background-color: #6026a6;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.primaryNavMobile li.menu-item-has-children.is-active>.sub-menu {
    opacity: 1;
    pointer-events: all
}

.primaryNavMobile li.menu-item-has-children>.sub-menu {
    background-color: #3cbfaf;
    padding: 20px 30px;
    width: 100%;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0
}

li.sub-menu-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Graphik-Bold, sans-serif;
    color: #6026a6;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1rem;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    margin-bottom: 5px;
    cursor: pointer
}

li.sub-menu-heading .icon {
    position: absolute;
    left: -18px;
    top: 4px;
    z-index: 1;
    height: 17px;
    width: 10px;
    color: #6026a6
}

.mobile-nav__secondaryNav {
    padding: 40px 30px
}

.mobile-nav__secondaryNav.is-active {
    height: 80vh;
    overflow: hidden
}

.mobile-nav__secondaryNav .mobile-nav__title {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 12px
}

.secondaryNavMobile .mobileNavDropdownToggle {
    display: none
}

.secondaryNavMobile li {
    line-height: 1;
    margin-bottom: 5px;
    padding: 7px 0
}

.secondaryNavMobile li a {
    color: #3cbfaf;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1
}

.secondaryNavMobile li a:focus,
.secondaryNavMobile li a:hover {
    color: #ffd600
}

.secondaryNavMobile li ul {
    margin: 9px 0 6px
}

.secondaryNavMobile li ul li a {
    font-size: 1rem;
    color: #fff;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400
}

.mobile-nav-secondary {
    display: none;
    background-color: rgba(0, 0, 0, .05);
    padding: 0 28px;
    width: 100%;
    position: relative;
    z-index: 97;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:1024px) {
    .mobile-nav-secondary {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.mobile-nav-secondary .header-search {
    position: static;
    margin-right: 14px
}

.mobile-nav-secondary .header-secondary__popup {
    padding: 0
}

.mobile-nav-secondary .header-search__form {
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-box-shadow: 0 4px 4px rgba(41, 38, 100, .1);
    box-shadow: 0 4px 4px rgba(41, 38, 100, .1);
    padding: 20px 30px;
    left: 0;
    z-index: 9;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.mobile-nav-secondary .header-search__form.is-active {
    pointer-events: all;
    opacity: 1
}

.fancybox-container {
    padding: 60px 0
}

.form {
    background-color: #3cbfaf;
    padding: 32px;
    overflow: visible
}

@media screen and (max-width:767px) {
    .form {
        padding: 32px 20px
    }
}

.form .fancybox-button {
    background-color: #6026a6;
    height: 40px;
    width: 40px;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 1;
    top: -40px;
    right: -40px
}

@media screen and (max-width:767px) {
    .form .fancybox-button {
        top: -1px;
        right: -2px
    }
}

.form .fancybox-button svg {
    height: 34px;
    width: 34px;
    fill: #fff
}

.gform_wrapper {
    background-color: #3cbfaf
}

.form__title {
    font-size: 1.3125rem;
    color: #292664;
    font-family: Graphik-Bold, sans-serif;
    line-height: 1.23;
    margin-bottom: 20px
}

input[type=checkbox],
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=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
    /* display: block; COMMENTED OUT BY PENTERA */
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    padding: 24px 20px 22px;
    color: #161616;
    background: #fff;
    /* height: 56px; COMMENTED OUT BY PENTERA */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: Graphik-Semibold, sans-serif
}

textarea {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    padding: 24px 20px 22px;
    color: #161616;
    background: #fff;
    /* height: 56px; COMMENTED OUT BY PENTERA */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: Graphik-Semibold, sans-serif
}

input[type=checkbox]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
    outline: 0;
    color: #161616
}

.ginput_container_select {
    position: relative
}

.ginput_container_select:after {
    content: '';
    display: block;
    width: 10px;
    height: 8px;
    background: url(../images/down-arrow.svg) no-repeat 0 0;
    position: absolute;
    top: 17px;
    right: 11px;
    background-size: contain;
    z-index: 4;
    pointer-events: none
}

.gfield_select {
    font-size: 1rem;
    font-weight: 500;
    font-family: Graphik-Regular, sans-serif;
    color: #333;
    background: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 56px;
    padding: 18px 20px 17px;
    border: none;
    position: relative;
    z-index: 2;
    border-radius: 0
}

.gfield_select::-ms-expand {
    display: none
}

.ginput_container input.large,
.ginput_container input.medium,
.ginput_container textarea.textarea {
    background: #fff;
    outline: 0;
    width: 100% !important;
    color: #161616;
    padding: 11px 15px;
    font-family: Graphik-Semibold, sans-serif
}

.ginput_container input.large::-webkit-input-placeholder,
.ginput_container input.medium::-webkit-input-placeholder,
.ginput_container textarea.textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large::-moz-placeholder,
.ginput_container input.medium::-moz-placeholder,
.ginput_container textarea.textarea::-moz-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large:-ms-input-placeholder,
.ginput_container input.medium:-ms-input-placeholder,
.ginput_container textarea.textarea:-ms-input-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large::-ms-input-placeholder,
.ginput_container input.medium::-ms-input-placeholder,
.ginput_container textarea.textarea::-ms-input-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large::placeholder,
.ginput_container input.medium::placeholder,
.ginput_container textarea.textarea::placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large::-moz-placeholder,
.ginput_container input.medium::-moz-placeholder,
.ginput_container textarea.textarea::-moz-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large:-ms-input-placeholder,
.ginput_container input.medium:-ms-input-placeholder,
.ginput_container textarea.textarea:-ms-input-placeholder {
    color: #000;
    opacity: 1
}

.ginput_container input.large::-webkit-input-placeholder,
.ginput_container input.medium::-webkit-input-placeholder,
.ginput_container textarea.textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 1
}

.gfield {
    position: relative;
    z-index: 1
}

.gfield.is-active .gfield_label {
    font-size: .625rem;
    height: 23px
}

.gfield .gfield_label {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    pointer-events: none;
    height: 56px;
    left: 10px;
    top: 0;
    z-index: 1;
    position: absolute;
    padding: 0 18px;
    font-size: 1rem;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.ginput_container textarea.textarea {
    width: 100%;
    height: 184px;
    padding: 24px 20px 22px
}

.gfield input[type=file] {
    background: #efefef
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer input[type=submit] {
    padding: 18px 30px;
    min-width: 170px;
    font-size: 12px
}

.gfield_label,
label {
    /* display: inline-block;
    vertical-align: bottom;
    cursor: pointer;
    line-height: 1.3 COMMENTED OUT BY PENTERA */
}

.entry-content ol li.gfield,
.entry-content ul li.gfield,
.gfield {
    margin-bottom: 24px
}

.validation_error {
    display: none
}

.validation_message {
    color: #fff;
    font-size: .875rem;
    padding: 2px 0;
    font-weight: 500;
    line-height: 1
}

.gform_button {
    position: relative;
    min-width: 145px
}

.gform_fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -10px
}

.gform_fields .gfield {
    padding: 0 10px
}

img.gform_ajax_spinner {
    position: absolute;
    top: 7px;
    right: 0
}

.gform_confirmation_message {
    color: #161616;
    font-size: 1.25rem;
    padding: 2em;
    border-left: 5px solid #333;
    background-color: #f5f5f5
}

.gform_validation_container {
    display: none !important;
    position: absolute !important;
    left: -9000px
}

.gform_wrapper .top_label input.medium,
.gform_wrapper .top_label select.medium,
.top_label input.large {
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    padding: 24px 20px 22px;
    background: #fff;
    height: 56px;
    margin-bottom: 3px
}

.gform_wrapper .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
    position: relative
}

.gform_wrapper .gform_footer button,
.gform_wrapper .gform_footer input[type=submit] {
    min-width: 145px;
    font-size: 21px;
    text-align: left;
    text-transform: capitalize
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 16px 20px 17px
}

div.ginput_container {
    margin-top: 2px
}

div.ginput_container.ginput_container_checkbox,
div.ginput_container.ginput_container_radio {
    margin-top: 8px
}

.gform_fields {
    list-style-type: none !important;
    -webkit-padding-start: 0 !important;
    padding-inline-start: 0 !important
}

.ginput_container_select {
    position: relative
}

.ginput_container_select:after {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg height='8' viewBox='0 0 12 8' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m376.35 34-4.6 4.6-4.6-4.6-1.4 1.4 6 6 6-6z' fill='%231c2955' fill-rule='evenodd' transform='translate(-365.75 -34)'/%3E%3C/svg%3E");
    position: absolute;
    top: 25px;
    right: 25px;
    background-size: contain;
    z-index: 4;
    pointer-events: none
}

.entry-content .gfield_checkbox,
.entry-content .gfield_radio,
.gfield_checkbox,
.gfield_radio {
    padding: 0
}

.entry-content .gfield_checkbox>div,
.entry-content .gfield_radio>div,
.gfield_checkbox>div,
.gfield_radio>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px
}

.entry-content .gfield_checkbox>div input[type=checkbox],
.entry-content .gfield_radio>div input[type=checkbox],
.gfield_checkbox>div input[type=checkbox],
.gfield_radio>div input[type=checkbox] {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 2px;
    padding: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px auto;
    cursor: pointer
}

.entry-content .gfield_checkbox>div input[type=checkbox]:checked,
.entry-content .gfield_radio>div input[type=checkbox]:checked,
.gfield_checkbox>div input[type=checkbox]:checked,
.gfield_radio>div input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 24.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cpath d='M9,18c-0.3,0-0.5-0.1-0.7-0.3l-5-5c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0L9,15.6L19.3,5.3c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4 l-11,11C9.5,17.9,9.3,18,9,18z'/%3E%3C/svg%3E%0A")
}

.entry-content .gfield_checkbox>div input[type=radio],
.entry-content .gfield_radio>div input[type=radio],
.gfield_checkbox>div input[type=radio],
.gfield_radio>div input[type=radio] {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px auto;
    cursor: pointer
}

.entry-content .gfield_checkbox>div input[type=radio]:checked,
.entry-content .gfield_radio>div input[type=radio]:checked,
.gfield_checkbox>div input[type=radio]:checked,
.gfield_radio>div input[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 24.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 290.3 290.3' style='enable-background:new 0 0 290.3 290.3;' xml:space='preserve'%3E%3Cg%3E%3Ccircle cx='145.1' cy='145.1' r='144.6'/%3E%3Cpath d='M145.1,290.3C65.1,290.3,0,225.2,0,145.1S65.1,0,145.1,0c80,0,145.1,65.1,145.1,145.1S225.2,290.3,145.1,290.3z M145.1,1 C65.7,1,1,65.7,1,145.1s64.7,144.1,144.1,144.1s144.1-64.7,144.1-144.1S224.6,1,145.1,1z'/%3E%3C/g%3E%3C/svg%3E%0A")
}

.entry-content .gfield_checkbox>div label,
.entry-content .gfield_radio>div label,
.gfield_checkbox>div label,
.gfield_radio>div label {
    display: inline-block;
    vertical-align: middle;
    padding-left: 4px
}

.mobileNav__toggle {
    display: none;
    background-color: #6026a6;
    border-radius: 2px;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 90px;
    padding: 8px 10px;
    line-height: 1;
    text-transform: uppercase;
    font-size: .875rem;
    font-family: Graphik-Semibold, sans-serif
}

@media screen and (max-width:1024px) {
    .mobileNav__toggle {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

.mobileNav__toggle .icon {
    margin-left: 8px
}

.mobileNav__toggle .icon-menu-bar {
    height: 10px;
    width: 15px
}

.mobileNav__toggle .icon-close-alt {
    height: 13px;
    width: 13px
}

.accordion {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.accordion .container {
    max-width: 1216px
}

.accordion__title {
    font-size: 1.75rem;
    color: #292664;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 30px
}

.accordion-item:not(:last-of-type) {
    margin-bottom: 8px
}

.accordion-item__header {
    background-color: #6026a6;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 17px 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.accordion-item__title {
    font-size: 1rem;
    font-family: Graphik-Regular, sans-serif;
    margin-bottom: 0;
    width: calc(100% - 66px);
    line-height: 1.625
}

@media screen and (max-width:1024px) {
    .accordion-item__title {
        width: calc(100% - 32px)
    }
}

.accordion-item__icon {
    width: 16px;
    color: #ffd600;
    height: 16px;
    display: block;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.is-active .accordion-item__icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.accordion-item__icon .icon {
    height: 16px;
    width: 16px
}

.accordion-item__body {
    padding: 24px 50px 32px 40px;
    display: none
}

@media screen and (max-width:1216px) {
    .accordion-item__body {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width:767px) {
    .accordion-item__body {
        padding-left: 0;
        padding-right: 0
    }
}

.blockquote {
    position: relative;
    z-index: 1;
    background-color: #6026a6;
    padding: 59px 32px 51px;
    text-align: center;
    color: #fff;
    margin-bottom: clamp(1.75rem, 3vw, 3rem)
}

@media screen and (max-width:767px) {
    .blockquote {
        padding-left: 28px;
        padding-right: 28px
    }
}

.blockquote.blockquote--alt {
    padding: 40px 32px 37px
}

@media screen and (max-width:767px) {
    .blockquote.blockquote--alt {
        padding-left: 28px;
        padding-right: 28px
    }
}

.blockquote+.side-by-side--alt .container:after {
    display: none !important
}

.blockquote:after,
.blockquote:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: left top
}

.blockquote:after {
    background-image: url(../images/abstract-01.png);
    height: 205px;
    width: 131px;
    right: 0;
    top: 0
}

.blockquote:before {
    bottom: 0;
    left: 0;
    height: 174px;
    width: 382px;
    background-image: url(../images/abstract-02.png)
}

.blockquote__content {
    max-width: 743px;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    font-family: Graphik-Semibold, sans-serif;
    line-height: 1.375
}

.blockquote--alt .blockquote__content {
    font-size: 1.3125rem;
    line-height: 1.71
}

@media screen and (max-width:767px) {
    .blockquote--alt .blockquote__content {
        font-size: 1.125rem
    }
}

.blockquote__content p {
    margin-bottom: 20px
}

.blockquote__icon {
    z-index: 1;
    color: #3cbfaf;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -9px;
    background-color: #6026a6;
    border-radius: 50%
}

.blockquote__icon .icon {
    width: 31px;
    height: 30px
}

.blockquote__link {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under;
    font-family: inherit;
    font-weight: inherit
}

.blockquote__link:active,
.blockquote__link:focus,
.blockquote__link:hover {
    text-underline-offset: 2px
}

.blockquote__meta {
    display: block;
    width: 100%
}

.blockquote__meta .blockquote__meta-designation,
.blockquote__meta .blockquote__meta-name {
    display: block
}

.blockquote__meta .blockquote__meta-name {
    font-family: Graphik-Bold, sans-serif;
    font-size: 1.3125rem;
    color: #3cbfaf;
    line-height: 1.23
}

.blockquote__meta .blockquote__meta-designation {
    font-family: Graphik-Regular, sans-serif;
    font-size: 1rem;
    line-height: 1.375
}

.blog {
    margin-top: 20px
}

@media screen and (max-width:767px) {
    .tax-issue .post-view {
        padding: 10px 0
    }
}

.blog-item--list {
    padding: 48px 0 48px
}

.blog-item--list .blog-item {
    width: 100%;
    margin-bottom: 32px
}

.blog-item--list .blog-item .blog-item__thumbnail {
    display: none
}

.blog-item--grid {
    padding: 48px 0 48px
}

.blog-item--grid .blog__title {
    text-transform: uppercase;
    font-size: 2rem;
    color: #292664
}

@media screen and (max-width:1216px) {
    .blog-item--grid .blog__title {
        font-size: 24px
    }
}

@media screen and (max-width:767px) {
    .blog-item--grid .blog__title {
        font-size: 21px;
        line-height: 1.19
    }
}

.blog-item--grid .page-navi {
    padding: 38px 0
}

.blog__header {
    margin-bottom: 40px
}

.page__default>.blog {
    margin-top: 40px
}

.blog__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -10px
}

.btn-wrap {
    text-align: center;
    margin: clamp(1.5rem, 5vw, 2.5rem) 0
}

.blog-item {
    width: 25%;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding: 0 10px
}

@media screen and (max-width:1216px) {
    .blog-item {
        width: 33.33%
    }
}

@media screen and (max-width:1024px) {
    .blog-item {
        width: 50%
    }
}

@media screen and (max-width:767px) {
    .blog-item {
        width: 100%
    }
}

.blog-item.blog-item--list {
    width: 100%;
    margin-bottom: 32px
}

.blog-item.blog-item--list .blog-item__thumbnail {
    display: none
}

.blog-item__footer a:focus,
.blog-item__footer a:hover {
    color: #292664
}

.blog-item__thumbnail {
    background-size: cover;
    margin-bottom: 16px;
    padding-bottom: 56%;
    position: relative;
    background-position: center center
}

.blog-item__thumbnail a {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

.blog-item__thumbnail img {
    display: none
}

.fancy-post__thumbnail {
    background-size: cover;
    margin-bottom: 16px;
    padding-bottom: 56%;
    position: relative;
    background-position: center center
}

.fancy-post__thumbnail a {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

.fancy-post__thumbnail img {
    display: none
}

.blog-item__title {
    font-size: 1rem;
    line-height: 1.375;
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    margin-bottom: 8px
}

.blog-item__title a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block
}

.blog-item__title a:focus,
.blog-item__title a:hover {
    color: #3cbfaf
}

.blog-item__category,
.blog-item__date {
    font-size: .875rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 400;
    font-family: Graphik-Regular, sans-serif
}

.blog-item__category:focus:after,
.blog-item__category:hover:after {
    text-decoration: none !important
}

.blog-item__cat {
    display: inline-block
}

.blog-item__cat:after {
    content: '|';
    pointer-events: none;
    cursor: default;
    display: inline-block;
    color: #333;
    margin: 0 4px
}

.blog-item__cat a {
    font-size: .875rem;
    color: #6026a6;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.blog-item__cat a:active,
.blog-item__cat a:focus,
.blog-item__cat a:hover {
    color: #292664;
    text-underline-offset: -1px
}

.blog__btn-holder {
    text-align: center;
    padding: 40px 0
}

.filter-action {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:1024px) {
    .filter-action {
        width: 100%;
        padding: 12px 0 10px
    }
}

.ajax-filter-bar {
    background-color: #3cbfaf;
    padding: 12px 12px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ajax-filter-bar .custom-select {
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 32px;
    background-color: #fff;
    padding: 8px 32px 8px 8px;
    border: none;
    width: 135px;
    margin-right: 4px;
    background-image: url(../images/icon-angle-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    margin-bottom: 4px;
    border-radius: 0
}

@media screen and (max-width:1024px) {
    .ajax-filter-bar .custom-select {
        width: calc(20% - 4px)
    }
}

@media screen and (max-width:767px) {
    .ajax-filter-bar .custom-select {
        width: calc(50% - 4px)
    }
}

@media screen and (max-width:360px) {
    .ajax-filter-bar .custom-select {
        width: 100%;
        margin-right: 0
    }
}

.ajax-filter-bar .apply-button,
.ajax-filter-bar .apply-button-search {
    text-transform: uppercase;
    color: #6026a6;
    background-color: #ffd600;
    font-size: 1rem;
    line-height: 1;
    padding: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .21);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .21);
    min-width: auto;
    margin-bottom: 4px;
    margin-right: 41px
}

@media screen and (max-width:1439px) {

    .ajax-filter-bar .apply-button,
    .ajax-filter-bar .apply-button-search {
        margin-right: 15px
    }
}

.ajax-filter-bar .apply-button-search:focus,
.ajax-filter-bar .apply-button-search:hover,
.ajax-filter-bar .apply-button:focus,
.ajax-filter-bar .apply-button:hover {
    background-color: #6026a6;
    color: #ffd600;
    padding: 8px
}

.ajax-filter-bar .post-view {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 25px;
    margin-bottom: 4px
}

@media screen and (max-width:1024px) {
    .ajax-filter-bar .post-view {
        margin-right: 10px
    }
}

@media screen and (max-width:360px) {
    .ajax-filter-bar .post-view {
        margin-right: 0
    }
}

.ajax-filter-bar .post-view li {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Graphik-Semibold, sans-serif;
    font-size: .875rem;
    line-height: 1;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.ajax-filter-bar .post-view li:not(:last-child) {
    margin-right: 10px
}

.ajax-filter-bar .post-view li.is-active .icon {
    color: #292664
}

.ajax-filter-bar .post-view .icon-grid {
    height: 18px;
    width: 18px;
    color: rgba(41, 38, 100, .4)
}

.ajax-filter-bar .post-view .icon-list {
    width: 21px;
    height: 17px;
    color: rgba(41, 38, 100, .4)
}

.ajax-filter-bar .custom-search {
    height: 32px;
    width: 173px;
    border: none;
    border-radius: 0;
    padding: 0 28px 0 11px;
    background-color: #fff;
    color: #000;
    font-size: .875rem;
    margin-bottom: 4px;
    margin-left: auto
}

@media screen and (max-width:1368px) {
    .ajax-filter-bar .custom-search {
        width: 136px
    }
}

@media screen and (max-width:1024px) {
    .ajax-filter-bar .custom-search {
        width: 100%
    }
}

.ajax-filter-bar .custom-search::-webkit-input-placeholder {
    color: #000
}

.ajax-filter-bar .custom-search::-moz-placeholder {
    color: #000
}

.ajax-filter-bar .custom-search:-ms-input-placeholder {
    color: #000
}

.ajax-filter-bar .custom-search::-ms-input-placeholder {
    color: #000
}

.ajax-filter-bar .custom-search::placeholder {
    color: #000
}

.ajax-filter-bar .search-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 173px;
    margin-right: 4px;
    position: relative
}

@media screen and (max-width:1368px) {
    .ajax-filter-bar .search-wrap {
        width: 136px
    }
}

@media screen and (max-width:1024px) {
    .ajax-filter-bar .search-wrap {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
        margin-right: 0
    }
}

.ajax-filter-bar .search-wrap #search-submit {
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(../images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    text-indent: -999em;
    padding: 0;
    min-width: inherit;
    background-color: transparent;
    top: 0;
    right: 0
}

.page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.page-numbers li {
    padding: 0 8px;
    margin-bottom: 10px !important
}

.page-numbers li a.current {
    font-family: Graphik-Semibold, sans-serif;
    color: #3cbfaf
}

.page-numbers li a {
    font-size: 1.125rem;
    font-family: Graphik-Regular, sans-serif;
    color: #6026a6;
    line-height: 1
}

.page-numbers li a:focus,
.page-numbers li a:hover {
    color: #3cbfaf;
    text-decoration: none
}

.page-numbers .next .icon,
.page-numbers .prev .icon {
    width: 13px;
    height: 21px
}

.page-numbers .prev {
    margin-right: 30px
}

.page-numbers .next {
    margin-left: 30px
}

.ajax-pagination {
    width: 100%
}

.archive-grid {
    margin-top: 40px
}

.box-grid {
    padding: clamp(1.75rem, 3vw, 3rem) 0 28px
}

.box-grid .grid {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit
}

.text-card {
    padding: 40px
}

@media screen and (max-width:1024px) {
    .text-card {
        padding: 30px 20px
    }
}

.text-card p {
    margin-bottom: 10px
}

.text-card__outer {
    background-color: rgba(111, 98, 89, .08);
    height: 100%
}

.text-card__category {
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    font-family: Graphik-Regular, sans-serif;
    color: #333;
    margin-bottom: 6px
}

.text-card__title {
    font-size: 1.3125rem;
    line-height: 1.23;
    color: #2babe2;
    font-family: Graphik-Bold, sans-serif;
    border-bottom: 4px solid #2babe2;
    padding-bottom: 13px;
    margin-bottom: 16px
}

@media screen and (max-width:767px) {
    .text-card__title {
        font-size: 1.125rem
    }
}

.text-card__thumbnail {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 56.25%
}

.content-column {
    background-color: #3cbfaf;
    padding: 74px 0 42px;
    color: #fff;
    width: 100%;
    max-width: inherit !important;
    margin-bottom: 40px
}

.content-column .container {
    margin: 0
}

.content-column__state-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    max-width: 120px;
    margin: 0 auto 50px
}

.content-column__state-map img {
    width: 100%;
    height: auto
}

.content-column__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.content-column__column {
    width: 33.33%;
    padding: 0 16px;
    max-width: 420px;
    margin-bottom: 32px
}

@media screen and (max-width:767px) {
    .content-column__column {
        width: 100%
    }
}

.content-column__title {
    text-align: center;
    font-size: 1.625rem;
    padding-bottom: 25px;
    position: relative;
    z-index: 1
}

.content-column__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background-color: #fff;
    opacity: .5;
    display: block;
    z-index: -1
}

.content-column__subtitle {
    padding: 25px 0;
    text-align: center;
    font-family: Graphik-Regular, sans-serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.content-column__subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background-color: #fff;
    opacity: .5;
    display: block;
    z-index: -1
}

.content-column__description {
    font-size: .875rem
}

@media screen and (max-width:767px) {
    .content-column__description {
        text-align: center
    }
}

.content-column__description.entry-content p:not(:last-child) {
    margin-bottom: 12px
}

.content-slider {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.content-items {
    padding: 0 80px
}

@media screen and (max-width:640px) {
    .content-items {
        padding: 0 20px
    }
}

.content-items .slick-arrow {
    position: absolute;
    z-index: 9;
    color: #9e005d;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.content-items .slick-arrow:focus,
.content-items .slick-arrow:hover {
    color: #6026a6
}

.content-items .slick-arrow .icon {
    height: 30px;
    width: 20px
}

.content-items .slick-arrow.slick-prev {
    left: 0
}

@media screen and (max-width:640px) {
    .content-items .slick-arrow.slick-prev {
        left: -20px
    }
}

.content-items .slick-arrow.slick-next {
    right: 0
}

@media screen and (max-width:640px) {
    .content-items .slick-arrow.slick-next {
        right: -20px
    }
}

.content-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.content-item__image {
    width: calc(49.211% - 11px)
}

@media screen and (max-width:767px) {
    .content-item__image {
        width: 100%;
        margin-bottom: 30px
    }
}

.content-item__content {
    width: calc(50.789% - 11px)
}

@media screen and (max-width:767px) {
    .content-item__content {
        width: 100%
    }
}

.content-item__content p {
    margin-bottom: 20px
}

.content-item__title {
    color: #292664;
    font-size: 1.3125rem;
    margin-bottom: 16px
}

.cta {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.cta .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0
}

@media screen and (max-width:767px) {
    .cta .container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.cta__image {
    width: 66.63%;
    white-space: nowrap
}

@media screen and (max-width:767px) {
    .cta__image {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.cta__content {
    max-width: 564px;
    width: 100%;
    margin-left: -146px
}

@media screen and (max-width:1024px) {
    .cta__content {
        max-width: 490px
    }
}

@media screen and (max-width:767px) {
    .cta__content {
        max-width: 100%;
        margin-left: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding: 0 28px
    }
}

.cta__title {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: #292664;
    margin-bottom: 45px;
    line-height: 1;
    text-align: center
}

@media screen and (max-width:767px) {
    .cta__title {
        text-align: left;
        margin-bottom: 30px
    }
}

.cta__content-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 28px
}

@media screen and (max-width:560px) {
    .cta__content-list li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.cta__content-list li .fancy-btn {
    white-space: nowrap;
    margin-right: 26px
}

@media screen and (max-width:560px) {
    .cta__content-list li .fancy-btn {
        margin-right: 0;
        margin-top: 20px
    }
}

.cta__content-list .cta__info {
    max-width: 242px;
    margin-bottom: 0;
    width: 100%
}

@media screen and (max-width:767px) {
    .cta__content-list .cta__info {
        max-width: 100%
    }
}

.text-block+.donate {
    padding-top: 0
}

.donate {
    margin-bottom: 48px
}

body.page-template-template-smtr header#header {
    border-bottom: 0
}

body.page-template-template-smtr header#header .page__title {
    color: #65c8c0
}

.content__smtr {
    background-color: #3cbfaf;
    position: relative;
    z-index: 99
}

.smtr__nav {
    background-color: #7c5940;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .26);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .26);
    position: relative
}

.smtr__nav .container {
    padding: 0
}

.smtr__nav .smtr__pattern {
    position: absolute;
    width: 75px;
    height: 100%
}

@media (max-width:767px) {
    .smtr__nav .smtr__pattern {
        display: none
    }
}

.smtr__navList {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: auto
}

.smtr__navItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.smtr__navLink {
    white-space: nowrap;
    color: #fff;
    padding: 10px 20px;
    display: block;
    font-size: 18px;
    background-color: #7c5940
}

@media (max-width:767px) {
    .smtr__navLink {
        font-size: 16px
    }
}

.smtr__navLink--active,
.smtr__navLink:active,
.smtr__navLink:focus,
.smtr__navLink:hover {
    background-color: #4c2a0a;
    color: #fff
}

.smtr__slides .slick-next,
.smtr__slides .slick-prev {
    height: 100px;
    position: absolute;
    display: block;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: 0 0;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: 0
}

.smtr__slides .slick-next:before,
.smtr__slides .slick-prev:before {
    display: none
}

.smtr__slides .slick-prev {
    left: -1.5rem
}

@media (max-width:767px) {
    .smtr__slides .slick-prev {
        left: -1rem
    }
}

.smtr__slides .slick-next {
    right: -1.5rem
}

@media (max-width:767px) {
    .smtr__slides .slick-next {
        right: -1rem
    }
}

.smtr__slide {
    padding: 40px 0
}

.smtr__slide.smtr__slide--fullHeight-img {
    padding: 0
}

@media (max-width:767px) {
    .smtr__slide.smtr__slide--fullHeight-img {
        padding-top: 40px
    }
}

.smtr-video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden
}

.smtr-video-container .video-js,
.smtr-video-container img,
.smtr-video-container>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.smtr__slideContent {
    padding: 0 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
    opacity: 0;
    -webkit-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease
}

.smtr__slideInner--content-right .smtr__slideContent {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0)
}

.slick-active .smtr__slideContent {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

@media (max-width:767px) {
    .smtr__slideContent {
        padding: 0 20px 20px
    }
}

.smtr__slideContent a {
    color: #000;
    font-weight: 700
}

.smtr__slideContent a:hover {
    text-decoration: underline
}

.smtr__slideContent p {
    font-size: 20px;
    line-height: 1.6
}

.smtr__slideContent h1,
.smtr__slideContent h2,
.smtr__slideContent h3,
.smtr__slideContent h4,
.smtr__slideContent h5,
.smtr__slideContent h6 {
    margin-bottom: 1.5em
}

.smtr__slideContent h2 {
    color: #fff;
    font-size: 38px
}

@media (max-width:767px) {
    .smtr__slideContent h2 {
        font-size: 28px
    }
}

.smtr__slideContent h3 {
    color: #000;
    font-size: 26px
}

@media (max-width:767px) {
    .smtr__slideContent h3 {
        font-size: 22px
    }
}

.smtr__visual {
    width: 50%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
    opacity: 0;
    -webkit-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease
}

.smtr__slideInner--content-right .smtr__visual {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0)
}

.slick-active .smtr__visual {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

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

.smtr__visual--img {
    background-color: #000;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 450px
}

@media (max-width:1090px) {
    .smtr__visual--img {
        height: calc(450/1090 * 100vw)
    }
}

@media (max-width:767px) {
    .smtr__visual--img {
        height: 50vh
    }
}

.smtr__slide--fullHeight-img .smtr__visual--img {
    display: block;
    background: 0 0;
    max-width: 100%;
    height: auto
}

@media (max-width:767px) {
    .smtr__slide--fullHeight-img .smtr__visual--img {
        max-height: 50vh;
        height: auto
    }
}

.smtr__slideInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:767px) {
    .smtr__slideInner {
        display: block
    }
}

.smtr__slideInner--content-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.smtr__footer {
    background-color: #725641;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin: 0 0 clamp(1.75rem, 3vw, 3rem)
}

.smtr__footerImg {
    max-height: 119px;
    height: 100%;
    width: auto;
    display: block
}

.smtr__sectionIntro {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    position: absolute;
    -webkit-transition: opacity .5s ease-in-out, -webkit-transform .3s;
    transition: opacity .5s ease-in-out, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .5s ease-in-out;
    transition: transform .3s, opacity .5s ease-in-out;
    transition: transform .3s, opacity .5s ease-in-out, -webkit-transform .3s;
    background-color: #4c2a0a;
    padding: 20px 0;
    color: #fff
}

.smtr__sectionIntro--active {
    visibility: visible;
    opacity: 1;
    z-index: 10;
    position: relative;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.smtr__sectionIntro .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.smtr__introContent {
    padding: 0 20px;
    font-size: 17px;
    line-height: 1.3
}

.fancy-content-grid {
    padding: clamp(1.75rem, 3vw, 3rem) 0 0
}

.fancy-content-grid [class*=column-] {
    margin-bottom: clamp(1.75rem, 3vw, 3rem)
}

.fancy-content-grid__header {
    text-align: center;
    margin-bottom: clamp(2rem, 3vw, 3.5rem)
}

.fancy-content-grid__title {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: #292664
}

.fancy-content p {
    margin-bottom: 13px
}

.fancy-content__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 29px
}

.fancy-content__image:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-color: rgba(60, 191, 175, .4)
}

.fancy-content__image:before {
    content: '';
    z-index: 2;
    bottom: 0;
    left: 0;
    background-image: url(../images/abstract-02-alt.png);
    height: 229px;
    width: 459px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left
}

.fancy-content-grid--three-column .fancy-content__image:before {
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7)
}

.fancy-content-grid--four-column .fancy-content__image:before {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5)
}

.fancy-content__title {
    font-size: 1.75rem;
    text-transform: capitalize;
    line-height: 1;
    position: absolute;
    z-index: 3;
    bottom: 0;
    padding: 24px 73px 22px 33px;
    left: 0;
    display: block;
    color: #fff;
    font-family: Graphik-Bold, sans-serif
}

@media screen and (max-width:1216px) {
    .fancy-content__title {
        font-size: 21px;
        padding: 16px 53px 14px 23px
    }
}

@media screen and (max-width:767px) {
    .fancy-content__title {
        font-size: 18px;
        line-height: 1.19
    }
}

.fancy-content__title:after {
    content: '';
    -webkit-transform: skewX(40deg);
    -ms-transform: skewX(40deg);
    transform: skewX(40deg);
    background-color: #6026a6;
    bottom: 0;
    top: 0;
    right: 0;
    left: -100px;
    position: absolute;
    z-index: -1
}

.fancy-content-grid--three-column .fancy-content__title {
    font-size: 1.3125rem;
    padding: 18px 53px 16px 23px
}

.fancy-content-grid--four-column .fancy-content__title {
    font-size: 1.125rem;
    padding: 14px 40px 13px 15px
}

.fancy-post {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.fancy-post__thumbnail {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 17px
}

.fancy-post__category {
    font-size: .8125rem;
    text-transform: uppercase;
    color: #000;
    position: absolute;
    z-index: 1;
    left: 0;
    font-family: Graphik-Bold, sans-serif;
    bottom: 0;
    padding: 1px 14px 0 10px
}

.fancy-post__category:after {
    content: '';
    left: -100px;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: -1;
    position: absolute;
    display: block;
    background-color: #3cbfaf;
    -webkit-transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    transform: skewX(30deg)
}

.fancy-post__title {
    font-size: 1.125rem;
    line-height: 1.277;
    color: #000;
    margin-bottom: 3px
}

.fancy-post__title a {
    color: inherit;
    font-family: inherit;
    text-transform: inherit;
    font-weight: inherit
}

.fancy-post__title a:focus,
.fancy-post__title a:hover {
    color: #9e005d
}

.fancy-post__date {
    font-size: .875rem;
    color: #707070;
    text-transform: capitalize
}

.fancy-post__main-title {
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase
}

.gallery {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.gallery .container {
    max-width: 1216px
}

@media screen and (max-width:680px) {
    .gallery .container {
        padding: 0
    }
}

.gallery--alt .container {
    margin: 0
}

.gallery-card {
    position: relative;
    z-index: 1;
    background-color: #3cbfaf;
    padding: 48px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:1024px) {
    .gallery-card {
        padding: 30px
    }
}

.gallery-card:after,
.gallery-card:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: left top
}

.gallery-card:after {
    background-image: url(../images/pattern-top.png);
    height: 205px;
    width: 131px;
    right: 0;
    top: 0
}

.gallery-card:before {
    bottom: 0;
    left: 0;
    height: 174px;
    width: 382px;
    background-image: url(../images/pattern-bottom.png)
}

.gallery-carousel--thumbnail {
    width: calc(100% - 242px)
}

@media screen and (max-width:680px) {
    .gallery-carousel--thumbnail {
        width: 100%;
        margin-bottom: 30px
    }
}

.gallery-carousel--list {
    width: 222px;
    overflow: hidden;
    margin-top: -4px
}

@media screen and (max-width:680px) {
    .gallery-carousel--list {
        width: 100%
    }
}

.gallery-carousel--list .slick-list {
    margin: -10px 0;
    padding: 2px
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-list {
        margin: 0 -10px
    }
}

.gallery-carousel--list .slick-arrow {
    position: absolute;
    z-index: 1;
    height: 50px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow {
        height: 100%;
        width: 50px;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }
}

.gallery-carousel--list .slick-arrow:after,
.gallery-carousel--list .slick-arrow:before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: -1
}

.gallery-carousel--list .slick-arrow:before {
    height: 4px
}

.gallery-carousel--list .slick-arrow.slick-next {
    bottom: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 6px
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow.slick-next {
        top: 0;
        bottom: 0;
        right: 0
    }
}

.gallery-carousel--list .slick-arrow.slick-next:after {
    background: #3cbfaf;
    background: -webkit-gradient(linear, left bottom, left top, from(#3cbfaf), to(rgba(0, 212, 255, 0)));
    background: -o-linear-gradient(bottom, #3cbfaf 0, rgba(0, 212, 255, 0) 100%);
    background: linear-gradient(0deg, #3cbfaf 0, rgba(0, 212, 255, 0) 100%)
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow.slick-next:after {
        background: -webkit-gradient(linear, right top, left top, from(#3cbfaf), to(rgba(0, 212, 255, 0)));
        background: -o-linear-gradient(right, #3cbfaf 0, rgba(0, 212, 255, 0) 100%);
        background: linear-gradient(270deg, #3cbfaf 0, rgba(0, 212, 255, 0) 100%)
    }
}

.gallery-carousel--list .slick-arrow.slick-next:before {
    top: auto;
    bottom: -4px
}

.gallery-carousel--list .slick-arrow.slick-prev {
    top: 0;
    padding-top: 6px
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow.slick-prev {
        bottom: 0;
        left: 0
    }
}

.gallery-carousel--list .slick-arrow.slick-prev:after {
    background: #3cbfaf;
    background: -webkit-gradient(linear, left top, left bottom, from(#3cbfaf), to(rgba(0, 212, 255, 0)));
    background: -o-linear-gradient(top, #3cbfaf 0, rgba(0, 212, 255, 0) 100%);
    background: linear-gradient(180deg, #3cbfaf 0, rgba(0, 212, 255, 0) 100%)
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow.slick-prev:after {
        background: -webkit-gradient(linear, left top, right top, from(#3cbfaf), to(rgba(0, 212, 255, 0)));
        background: -o-linear-gradient(left, #3cbfaf 0, rgba(0, 212, 255, 0) 100%);
        background: linear-gradient(90deg, #3cbfaf 0, rgba(0, 212, 255, 0) 100%)
    }
}

.gallery-carousel--list .slick-arrow.slick-prev:before {
    top: -4px;
    bottom: auto
}

.gallery-carousel--list .slick-arrow .icon {
    height: 11px;
    width: 17px
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .slick-arrow .icon {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
}

.gallery-carousel--list .slick-arrow.slick-disabled {
    pointer-events: none;
    opacity: 0
}

.gallery-carousel--list .gallery-carousel__img {
    margin: 10px 0;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer
}

@media screen and (max-width:680px) {
    .gallery-carousel--list .gallery-carousel__img {
        margin: 0 10px
    }
}

.gallery-carousel--list .gallery-carousel__img:after {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    right: -2px;
    left: -2px;
    z-index: 1;
    border: 2px solid #fff;
    background-color: transparent;
    display: block;
    opacity: 0;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.gallery-carousel--list .gallery-carousel__img.slick-current:after {
    opacity: 1
}

.gallery-carousel__caption {
    background-color: #fff;
    text-transform: capitalize;
    display: block;
    padding: 31px 27px 20px;
    color: #333;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.gallery-carousel__caption:after {
    z-index: -1;
    content: "";
    width: 86px;
    height: 100%;
    background-color: #ffd600;
    position: absolute;
    right: -26px;
    top: 0;
    -webkit-transform: skewX(-35deg);
    -ms-transform: skewX(-35deg);
    transform: skewX(-35deg)
}

.general {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.general+.blockquote {
    margin-top: clamp(1.75rem, 3vw, 3rem)
}

@media screen and (max-width:767px) {
    .general+.blockquote {
        display: none
    }
}

.general+.blog,
.general+.grid-content {
    padding-top: 0
}

.general .general__content>:last-child {
    margin-bottom: 0
}

.general--fancy .general__title {
    color: #6026a6;
    margin-bottom: 14px;
    display: inline-block;
    vertical-align: top;
    font-size: 1.75rem;
    line-height: 1.2
}

@media screen and (max-width:767px) {
    .general--fancy .general__title {
        font-size: 1.25rem
    }
}

.general--grid .general__title {
    text-transform: capitalize
}

.general__title a {
    font-size: 1.75rem;
    color: #6026a6;
    font-family: Graphik-Bold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 4px;
    text-underline-offset: -2px;
    text-underline-position: under
}

@media screen and (max-width:767px) {
    .general__title a {
        font-size: 1.25rem
    }
}

.general__title a:active,
.general__title a:focus,
.general__title a:hover {
    color: #292664;
    text-underline-offset: -1px
}

.general--grid .column-6 {
    margin-bottom: 28px
}

.general__content {
    max-width: 935px
}

.general--center .general__content {
    margin: 0 auto;
    text-align: center
}

.general__content h1,
.general__content h2,
.general__content h3,
.general__content h4,
.general__content h5,
.general__content h6 {
    color: #292664;
    font-weight: 400;
    margin-bottom: 32px
}

.general__content h1,
.general__content h2,
.general__content h3,
.general__content h5 {
    font-family: Graphik-Bold, sans-serif
}

.general__content h1 {
    font-size: 2rem;
    line-height: 1.2
}

@media screen and (max-width:1216px) {
    .general__content h1 {
        font-size: 1.5rem
    }
}

@media screen and (max-width:767px) {
    .general__content h1 {
        font-size: 1.25rem;
        line-height: 1.19
    }
}

.general__content h2 {
    font-size: 1.75rem;
    line-height: 1.321
}

@media screen and (max-width:1216px) {
    .general__content h2 {
        font-size: 1.25rem
    }
}

@media screen and (max-width:767px) {
    .general__content h2 {
        font-size: 1.125rem;
        line-height: 1.19
    }
}

.general__content h3 {
    font-size: 1.3125rem;
    line-height: 1.238
}

@media screen and (max-width:1216px) {
    .general__content h3 {
        font-size: 1.125rem
    }
}

.general__content h4 {
    font-size: 1rem;
    line-height: 1.375;
    font-family: Graphik-Semibold, sans-serif
}

.general__content h5 {
    font-size: .875rem;
    line-height: 1.571
}

.general__content ol,
.general__content ul {
    margin-bottom: 32px
}

.general__content ol li,
.general__content ul li {
    margin-bottom: 24px
}

.general__content ol li a,
.general__content ul li a {
    color: #6026a6;
    font-family: Graphik-Bold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 3px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.general__content ol li a:active,
.general__content ol li a:focus,
.general__content ol li a:hover,
.general__content ul li a:active,
.general__content ul li a:focus,
.general__content ul li a:hover {
    color: #292664;
    text-underline-offset: -1px
}

.general__content p {
    margin-bottom: 30px
}

.general__content blockquote {
    background-color: #f5f5f5;
    padding: 2em 2em 1em;
    margin: 2em 0;
    border-left: 5px solid #9e005d
}

.general__content .btn:not(:last-child) {
    margin-bottom: 15px
}

.btn-list li {
    margin-bottom: 15px
}

.grid-content {
    padding: clamp(1.75rem, 3vw, 3rem) 0 28px
}

.grid-content .grid-content__title {
    font-size: 1.75rem;
    color: #292664;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 30px
}

@media screen and (max-width:1216px) {
    .grid-content .grid-content__title {
        font-size: 21px
    }
}

@media screen and (max-width:767px) {
    .grid-content .grid-content__title {
        font-size: 18px
    }
}

.article__title,
.testimonial__title {
    font-size: 1.3125rem;
    color: #292664;
    line-height: 1.238;
    margin-bottom: 8px
}

@media screen and (max-width:1216px) {

    .article__title,
    .testimonial__title {
        font-size: 1.125rem
    }
}

@media screen and (max-width:1024px) {

    .article__title,
    .testimonial__title {
        font-size: 1.3125rem
    }
}

@media screen and (max-width:767px) {

    .article__title,
    .testimonial__title {
        font-size: 1.125rem
    }
}

.article__thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 11px
}

.article__thumbnail a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.testimonial__thumbnail {
    margin-bottom: 26px
}

.testimonial__thumbnail img {
    width: 100%
}

.article__body p,
.testimonial__body p {
    margin-bottom: 8px
}

.testimonial__body p {
    height: 207px;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .testimonial__body p {
        height: 155px
    }
}

@media screen and (max-width:767px) {
    .testimonial__body p {
        height: inherit;
        margin-bottom: 20px
    }
}

.testimonial__header {
    display: block;
    margin-bottom: 19px
}

.testimonial__designation {
    font-size: .875rem;
    color: #2babe2;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    line-height: 1.285;
    margin-bottom: 18px
}

.testimonial .link {
    margin-bottom: 17px
}

.testimonial__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.testimonial__social li:not(:last-of-type) {
    margin-right: 16px
}

.testimonial__social li a {
    color: #6026a6;
    font-size: 1rem;
    display: inline-block;
    vertical-align: top;
    line-height: 1
}

.testimonial__social li a .icon-twitter {
    height: 12px;
    width: 15px
}

.testimonial__social li a .icon-envelope {
    height: 12px;
    width: 17px
}

.testimonial__social li a:focus,
.testimonial__social li a:hover {
    color: #3cbfaf
}

.grid-content--alt .grid-content__title {
    margin-bottom: 15px
}

.grid-content--alt .article__thumbnail {
    margin-bottom: 0
}

.grid-content--alt .article__body {
    min-height: 155px;
    padding-top: 18px;
    padding-bottom: 20px;
    background-color: #3cbfaf;
    position: relative;
    overflow: hidden
}

.grid-content--alt .article__body:after {
    content: "";
    display: block;
    width: 286px;
    height: 157px;
    background: url(../images/news-card-pattern.png) no-repeat 0 0;
    position: absolute;
    bottom: 0;
    left: 0
}

.grid-content--alt .article__title {
    font-size: 1rem;
    color: #2babe2;
    font-family: Graphik-Semibold, sans-serif;
    padding-left: 15px;
    position: relative;
    z-index: 1
}

.grid-content--alt .article__title:hover a {
    background-color: #292664;
    border-top: 4px solid #292664;
    border-bottom: 4px solid #292664
}

.grid-content--alt .article__title:hover a:before {
    background-color: #292664
}

.grid-content--alt .article__title a {
    background-color: #6026a6;
    color: #fff;
    border-top: 4px solid #6026a6;
    border-bottom: 4px solid #6026a6;
    padding-right: 15px;
    position: relative
}

.grid-content--alt .article__title a:before {
    content: "";
    width: 16px;
    position: absolute;
    top: -4px;
    left: -15px;
    height: calc(100% + 8px);
    background-color: #6026a6;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.grid-content--alt .article__date {
    color: #6f6259;
    font-size: .875rem
}

.hero {
    padding-top: 30px;
    padding-bottom: 40px
}

.hero+.grid-content {
    padding-top: 8px
}

.hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.hero__featured {
    width: 66%;
    position: relative
}

@media screen and (max-width:767px) {
    .hero__featured {
        width: 100%
    }
}

.hero__featured:before {
    content: "";
    display: block;
    width: 100%;
    height: 233px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, #000 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
    z-index: 1
}

@media screen and (max-width:767px) {
    .hero__featured:before {
        height: 100%
    }
}

.hero__featured-image {
    position: relative
}

.hero__featured-image:before {
    content: "";
    display: block;
    width: 379px;
    height: 189px;
    background: url(../images/pattern-top.png) no-repeat 0 0;
    position: absolute;
    top: 0;
    right: 0
}

@media screen and (max-width:767px) {
    .hero__featured-image:before {
        -webkit-transform: scale(.6);
        -ms-transform: scale(.6);
        transform: scale(.6);
        -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
        transform-origin: right top
    }
}

.hero__featured-image:after {
    content: "";
    display: block;
    width: 379px;
    height: 189px;
    background: url(../images/pattern-bottom.png) no-repeat 0 0;
    position: absolute;
    bottom: 0;
    left: 0
}

@media screen and (max-width:767px) {
    .hero__featured-image:after {
        display: none
    }
}

.hero__news {
    width: calc(34% - 20px)
}

@media screen and (max-width:767px) {
    .hero__news {
        width: 100%;
        margin-top: 20px
    }
}

.hero__news-item {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width:1216px) {
    .hero__news-item {
        margin-bottom: 15px
    }
}

.hero__news-item:first-child .hero__news-image:before {
    content: "";
    display: block;
    width: 84px;
    height: 169px;
    background: url(../images/decoration.svg) no-repeat 0 0;
    position: absolute;
    top: -10px;
    left: -10px
}

@media screen and (max-width:767px) {
    .hero__news-item:first-child .hero__news-image:before {
        display: none
    }
}

.hero__news-image {
    width: 55%;
    margin-right: 10px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width:767px) {
    .hero__news-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 11px
    }
}

.hero__news-image img {
    width: 100%
}

.hero__news-title {
    width: calc(45% - 10px);
    font-family: Graphik-Semibold, sans-serif;
    font-size: 1rem;
    line-height: 1.4
}

@media screen and (max-width:1216px) {
    .hero__news-title {
        font-size: .75rem
    }
}

@media screen and (max-width:960px) {
    .hero__news-title {
        font-size: .625rem
    }
}

@media screen and (max-width:767px) {
    .hero__news-title {
        width: 100%;
        font-size: 1rem;
        line-height: 1.1785
    }
}

.hero__news-title a {
    color: #6026a6
}

.hero__news-title a:active,
.hero__news-title a:focus,
.hero__news-title a:hover {
    color: #3cbfaf
}

.hero__featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 1
}

@media screen and (max-width:767px) {
    .hero__featured-content {
        padding: 15px
    }
}

.hero__featured-tag {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: Graphik-Semibold, sans-serif;
    font-size: .9375rem;
    background-color: #9e005d;
    display: inline-block;
    padding: 5px 12px 3px;
    color: #fff;
    line-height: 1
}

@media screen and (max-width:767px) {
    .hero__featured-tag {
        margin-bottom: 0
    }
}

.hero__featured-title {
    line-height: 1.5
}

@media screen and (max-width:767px) {
    .hero__featured-title.hero__featured-title--large {
        display: none
    }
}

.hero__featured-title.hero__featured-title--large a {
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
    background-image: -o-linear-gradient(left, #fff, #fff);
    background-image: linear-gradient(to right, #fff, #fff);
    background-size: 100% .12em, 0 .12em;
    background-position: 100% calc(100% - 4px), 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    color: #fff;
    padding-bottom: 5px
}

.hero__featured-title.hero__featured-title--large a:active,
.hero__featured-title.hero__featured-title--large a:focus,
.hero__featured-title.hero__featured-title--large a:hover {
    color: #fff;
    text-decoration: none;
    background-position: 100% calc(100% - 1px), 0 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffd600), to(#ffd600));
    background-image: -o-linear-gradient(left, #ffd600, #ffd600);
    background-image: linear-gradient(to right, #ffd600, #ffd600)
}

.hero__featured-title.hero__featured-title--small {
    display: none
}

@media screen and (max-width:767px) {
    .hero__featured-title.hero__featured-title--small {
        display: block;
        margin-top: 8px
    }
}

.hero__featured-title.hero__featured-title--small a {
    color: #6026a6
}

.hero__featured-title.hero__featured-title--small a:active,
.hero__featured-title.hero__featured-title--small a:focus,
.hero__featured-title.hero__featured-title--small a:hover {
    color: #3cbfaf
}

.page-banner .container {
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: inherit
}

.page-banner__title {
    text-transform: uppercase;
    padding: 43px 33px;
    background-color: #6026a6;
    color: #fff;
    position: relative
}

.page-banner--language-button .page-banner__title {
    padding: 43px 107px 43px 33px
}

@media screen and (max-width:767px) {
    .page-banner--language-button .page-banner__title {
        padding-left: 28px
    }
}

.page-banner__title strong {
    z-index: 1;
    position: relative
}

.page-banner__title:before {
    content: "";
    display: block;
    width: 153px;
    height: 120px;
    background: url(../images/title-pattern-top.png) no-repeat 0 0;
    position: absolute;
    top: 0;
    right: 0
}

.page-banner__title:after {
    content: "";
    display: block;
    width: 365px;
    height: 120px;
    background: url(../images/title-pattern-bottom.png) no-repeat 0 0;
    position: absolute;
    bottom: 0;
    left: 0
}

.page-banner__image {
    min-height: 240px;
    background-size: cover;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .page-banner__image {
        background-image: none !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        min-height: auto
    }
}

.page-banner__image .page-banner__mobile-image {
    display: none
}

@media screen and (max-width:767px) {
    .page-banner__image .page-banner__mobile-image {
        display: block
    }
}

.page-banner__content {
    width: 295px;
    position: relative;
    min-height: 320px;
    padding: 70px 58px 60px 0;
    background-color: #3cbfaf
}

@media screen and (max-width:1024px) {
    .page-banner__content {
        padding: 40px 28px 40px 0
    }
}

@media screen and (max-width:767px) {
    .page-banner__content {
        width: 100%;
        min-height: 100%;
        padding: 40px 28px
    }
}

.page-banner__content p {
    position: relative;
    z-index: 1
}

.page-banner__content:before {
    content: "";
    background-color: #3cbfaf;
    width: 620px;
    height: 100%;
    position: absolute;
    left: -95px;
    top: 0;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg)
}

@media screen and (max-width:767px) {
    .page-banner__content:before {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        left: 0
    }
}

.page-banner--alt .container {
    position: relative
}

.page-banner--alt .page-banner__subtitle {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: Graphik-Semibold, sans-serif;
    font-size: .9375rem;
    background-color: #9e005d;
    display: inline-block;
    padding: 5px 12px 3px;
    color: #fff;
    line-height: 1;
    z-index: 1;
    position: relative
}

.page-banner--alt .page-banner__title {
    background: 0 0;
    padding: 0;
    font-size: 2.5rem
}

@media screen and (max-width:1216px) {
    .page-banner--alt .page-banner__title {
        font-size: 1.75rem
    }
}

@media screen and (max-width:767px) {
    .page-banner--alt .page-banner__title {
        font-size: 1.3125rem
    }
}

.page-banner--alt .page-banner__title:after,
.page-banner--alt .page-banner__title:before {
    display: none
}

.page-banner--alt .page-banner__image {
    min-height: 670px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

@media screen and (max-width:1216px) {
    .page-banner--alt .page-banner__image {
        min-height: 540px
    }
}

@media screen and (max-width:1024px) {
    .page-banner--alt .page-banner__image {
        min-height: 620px
    }
}

@media screen and (max-width:767px) {
    .page-banner--alt .page-banner__image {
        min-height: auto
    }
}

.page-banner--alt .page-banner__heading {
    text-transform: uppercase;
    padding: 43px 33px 50px;
    background-color: rgba(41, 38, 100, .7);
    color: #fff;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0
}

@media screen and (max-width:767px) {
    .page-banner--alt .page-banner__heading {
        padding: 30px 28px
    }
}

.page-banner--alt .page-banner__heading:before {
    content: "";
    display: block;
    width: 382px;
    height: 174px;
    background: url(../images/title-blue-pattern.png) no-repeat 0 0;
    position: absolute;
    bottom: 0;
    left: 0
}

.page-banner__language {
    position: absolute;
    right: 0;
    top: 42px;
    z-index: 1;
    font-size: .875rem;
    color: #6026a6;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    padding: 7px 21px 7px 27px;
    border-radius: 50px 0 0 50px;
    font-family: Graphik-Semibold, sans-serif
}

.page-banner__language:focus,
.page-banner__language:hover {
    background-color: #ffd600
}

.page-banner--simple {
    text-align: center
}

.page-banner--simple .page-banner__title:after,
.page-banner--simple .page-banner__title:before {
    display: none !important
}

.page-banner--simple .pageBack-navigation {
    position: absolute;
    z-index: 2;
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    font-size: 1.125rem;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 500;
    left: 43px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media screen and (max-width:767px) {
    .page-banner--simple .pageBack-navigation {
        font-size: 1rem;
        top: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.page-banner--simple .pageBack-navigation:focus,
.page-banner--simple .pageBack-navigation:hover {
    color: #3cbfaf
}

.page-banner--simple .pageBack-navigation .icon {
    height: 17px;
    width: 20px;
    margin-right: 10px
}

@media screen and (max-width:767px) {
    .page-banner--simple .pageBack-navigation .icon {
        height: 14px;
        width: 17px;
        margin-right: 7px
    }
}

.page-banner--simple .pageBack-navigation+.page-banner__title {
    padding-left: 165px;
    padding-right: 165px
}

@media screen and (max-width:767px) {
    .page-banner--simple .pageBack-navigation+.page-banner__title {
        padding: 60px 28px 30px 28px
    }
}

.highlight-block {
    background-color: #9e005d
}

.highlight-block .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    position: relative;
    overflow: hidden
}

@media screen and (max-width:670px) {
    .highlight-block .container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 0
    }
}

.highlight-block .highlight-block__title {
    font-size: 1.75rem;
    margin-bottom: 10px;
    max-width: 370px;
    line-height: 1
}

.highlight-block .highlight-block__content {
    padding-top: 32px;
    padding-bottom: 32px;
    color: #fff;
    width: 54%;
    position: relative;
    z-index: 2
}

@media screen and (max-width:670px) {
    .highlight-block .highlight-block__content {
        width: 100%;
        padding-left: 28px;
        padding-right: 28px
    }
}

.highlight-block .highlight-block__content:after {
    content: '';
    left: -100%;
    right: 60px;
    bottom: 0;
    top: 0;
    z-index: -1;
    display: block;
    position: absolute;
    -webkit-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-color: #9e005d
}

@media screen and (max-width:1216px) {
    .highlight-block .highlight-block__content:after {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        right: 100px
    }
}

.highlight-block .highlight-block__content .entry-content {
    max-width: 470px
}

@media screen and (max-width:670px) {
    .highlight-block .highlight-block__content .entry-content {
        max-width: 100%
    }
}

.highlight-block .entry-content {
    line-height: 1.6
}

.highlight-block .highlight-block__issue {
    margin-top: 34px
}

.highlight-block .highlight-block__issue-title {
    font-size: 1.25rem;
    margin-bottom: 13px
}

.highlight-block .highlight-block__image {
    background-size: cover;
    background-position: right top;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    z-index: 1
}

@media screen and (max-width:670px) {
    .highlight-block .highlight-block__image {
        background-image: none !important;
        position: relative;
        width: 100%
    }
}

.highlight-block .highlight-block__image:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(158, 0, 93, .37)
}

.highlight-block .highlight-block__image:after {
    content: "";
    display: block;
    width: 405px;
    height: 210px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/pattern-bottom.png) no-repeat 0 0
}

@media screen and (max-width:767px) {
    .highlight-block .highlight-block__image:after {
        opacity: .6;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        transform: scale(.7);
        -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        transform-origin: bottom left
    }
}

.highlight-block .highlight-block__image img {
    display: none
}

@media screen and (max-width:670px) {
    .highlight-block .highlight-block__image img {
        display: block
    }
}

.highlight-block .fancy-btn--secondary {
    position: absolute;
    z-index: 1;
    left: calc(100% + 53px);
    bottom: 48px;
    white-space: nowrap
}

@media screen and (max-width:670px) {
    .highlight-block .fancy-btn--secondary {
        position: relative;
        white-space: normal;
        bottom: auto;
        left: auto;
        margin-top: 20px
    }
}

.highlight-block__issue-list li {
    background-color: #fff;
    color: #9e005d;
    font-size: 1.3125rem;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    padding: 10px 10px 7px;
    margin-bottom: 16px;
    line-height: 1;
    margin-right: 15px
}

@media screen and (max-width:1216px) {
    .highlight-block__issue-list li {
        font-size: 1.125rem
    }
}

@media screen and (max-width:767px) {
    .highlight-block__issue-list li {
        padding: 5px 10px 7px;
        margin-bottom: 12px
    }
}

.highlight-block__issue-list li a {
    color: #9e005d
}

.highlight-block__issue-list li a:hover {
    opacity: .6
}

.history {
    background-color: #3cbfaf;
    padding: clamp(2rem, 3vw, 3.5rem) 0;
    z-index: 1;
    position: relative
}

.history .history {
    max-width: inherit
}

.history .container {
    max-width: 1080px;
    position: relative;
    z-index: 1;
    padding: 0 60px
}

.history:after {
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    background-image: url(../images/abstract-02-alt.png);
    background-repeat: no-repeat;
    height: 229px;
    width: 459px;
    opacity: .3;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.history__tabNav {
    margin-bottom: 80px
}

.history__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.history__tab li {
    padding: 0 8px;
    margin-bottom: 16px
}

.history__tab a {
    font-size: 1.3125rem;
    color: #3cbfaf;
    background-color: #292664;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    display: inline-block;
    padding: 15px 32px 13px;
    line-height: 1;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

@media screen and (max-width:1024px) {
    .history__tab a {
        padding: 12px 22px 9px;
        font-size: 1rem
    }
}

.history__tab a.is-active,
.history__tab a:focus,
.history__tab a:hover {
    color: #6026a6;
    background-color: #fff
}

.history-carousel {
    padding-bottom: 85px;
    opacity: 0;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    pointer-events: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
    width: 100%
}

.history-carousel.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
    opacity: 1
}

.history-carousel .slick-list {
    width: 100%
}

.history-carousel .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 0 -28px;
    padding-bottom: 85px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width:1024px) {
    .history-carousel .slick-track {
        margin: 0 -14px
    }
}

.history-carousel .slick-track:after {
    content: '';
    left: 0;
    right: 0;
    bottom: 14px;
    border-bottom: 2px solid #6026a6;
    position: absolute;
    z-index: -1;
    display: block
}

.history-carousel .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    list-style-type: none;
    margin: 0 -4px;
    width: 100%
}

.history-carousel .slick-dots li {
    padding: 0 4px
}

.history-carousel .slick-dots li.slick-active button,
.history-carousel .slick-dots li:focus button,
.history-carousel .slick-dots li:hover button {
    background-color: #fff
}

.history-carousel .slick-dots li button {
    padding: 0;
    font-size: 0;
    height: 8px;
    width: 8px;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    background-color: #6026a6
}

.history-carousel .slick-arrow {
    position: absolute;
    z-index: 9;
    bottom: 83px;
    color: #6026a6;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    padding: 0;
    background-color: transparent
}

.history-carousel .slick-arrow:focus,
.history-carousel .slick-arrow:hover {
    color: #481d7d
}

.history-carousel .slick-arrow.slick-next {
    left: calc(100% + 32px)
}

.history-carousel .slick-arrow.slick-prev {
    right: calc(100% + 32px)
}

.history-carousel .slick-arrow .icon {
    height: 30px;
    width: 20px
}

.history-carousel .timeline__date {
    position: absolute;
    z-index: 1;
    bottom: 0
}

.history-carousel__item {
    padding: 0 28px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: auto !important;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 33.33%
}

@media screen and (max-width:1024px) {
    .history-carousel__item {
        padding: 0 14px
    }
}

.timeline {
    color: #000
}

.timeline.timeline--style-1 {
    color: #292664
}

@media screen and (max-width:767px) {
    .timeline.timeline--style-1 h3 {
        font-size: 1rem
    }
}

.timeline.timeline--style-2 {
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.285
}

.timeline.timeline--style-3 {
    font-size: 1.3125rem;
    line-height: 1.52
}

@media screen and (max-width:767px) {
    .timeline.timeline--style-3 {
        font-size: 1rem
    }
}

.timeline p {
    margin-bottom: 0
}

.timeline p:not(:last-of-type) {
    margin-bottom: 20px
}

.timeline__thumbnail {
    display: inline-block;
    vertical-align: top;
    border-bottom: 4px solid #9e005d;
    margin-bottom: 15px
}

.slick-active .timeline__thumbnail {
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, .39);
    box-shadow: 0 6px 6px rgba(0, 0, 0, .39)
}

.timeline__date {
    font-size: 1.3125rem;
    line-height: 1;
    color: #fff;
    display: inline-block;
    vertical-align: top;
    font-family: Graphik-Bold, sans-serif;
    background-color: #9e005d;
    padding: 6px 16px 4px
}

.icon-content-grid {
    padding: clamp(2rem, 3vw, 3.635rem) 0 12px
}

.icon-content-grid .column-3 {
    margin-bottom: clamp(1.75rem, 3vw, 3rem)
}

.icon-content-grid__title {
    font-size: 1.75rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 56px;
    color: #292664
}

.icon-content .icon-content__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 16px
}

@media screen and (max-width:767px) {
    .icon-content .icon-content__icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.icon-content .icon-content__icon img {
    max-height: 50px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.icon-content p {
    margin-bottom: 2px
}

.icon-content .icon-content__title {
    font-size: 1.3125rem;
    font-family: Graphik-Bold, sans-serif;
    color: #292664;
    margin-bottom: 9px
}

.image-grid {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.image-grid__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -10px
}

.image-grid__item {
    width: 33.33%;
    padding: 0 10px
}

.page-banner+.logos {
    padding: clamp(1.8rem, 3vw, 3.15rem) 0 0
}

.logos {
    padding: clamp(1.8rem, 3vw, 3.15rem) 0 clamp(2rem, 3vw, 3.5rem)
}

.logos+.fancy-content-grid {
    padding-top: 22px
}

.logos--border-bottom {
    padding: 0
}

.logos--border-bottom .container {
    padding: 51px 32px 56px;
    position: relative;
    z-index: 1
}

.logos--border-bottom .container:after {
    content: '';
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background-color: rgba(60, 191, 175, .3);
    display: block;
    position: absolute;
    z-index: -1;
    height: 1px;
    max-width: 967px;
    width: 100%
}

.logos__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.logo__item {
    padding: 0 34px;
    margin-bottom: 34px
}

.logo__item img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.modal-box {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none
}

.modal-box .modal-box__overlay {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(30, 30, 30, .5);
    display: none
}

.modal-box .modal-box__overflow {
    min-height: 100%;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.modal-box .modal-box__inner {
    max-width: 776px;
    padding: 46px 56px 63px;
    position: relative;
    background-color: #fff;
    width: 100%;
    z-index: 1;
    max-height: calc(100vh - 80px)
}

@media screen and (max-width:767px) {
    .modal-box .modal-box__inner {
        padding: 36px 36px 43px;
        overflow-y: auto;
        overflow-x: hidden
    }
}

.modal-box .modal-box__inner .modal-close {
    background-color: #6026a6;
    height: 40px;
    width: 40px;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0
}

@media screen and (max-width:767px) {
    .modal-box .modal-box__inner .modal-close {
        top: -1px;
        right: -2px
    }
}

.modal-box .modal-box__inner .modal-close svg {
    height: 34px;
    width: 34px;
    fill: #fff
}

.modal-box .modal-box__body {
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .modal-box .modal-box__body {
        line-height: 1.5
    }
}

.modal-box .modal-box__body p {
    margin-bottom: 24px
}

.modal-box .modal-box__body h2 {
    font-size: 1.75rem;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 25px;
    color: #292664
}

@media screen and (max-width:767px) {
    .modal-box .modal-box__body h2 {
        font-size: 1.25rem
    }
}

.post-meta {
    background-color: rgba(216, 216, 216, .26);
    padding: 19px 0 17px
}

.post-meta .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0
}

@media screen and (max-width:560px) {
    .post-meta .container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.post-meta__btn-holder {
    margin-left: auto;
    position: relative;
    z-index: 1
}

@media screen and (max-width:560px) {
    .post-meta__btn-holder {
        margin-top: 20px;
        margin-left: 0
    }
}

.post-meta__btn-holder:hover .download-btn {
    background-color: #292664
}

.post-meta__btn-holder:hover .download-dropdown {
    opacity: 1;
    pointer-events: all
}

.download-btn {
    background-color: #9e005d;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: 266px;
    border-radius: 6px;
    color: #fff;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    padding: 13px 54px 10px;
    white-space: nowrap
}

.download-btn .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.download-btn .icon-download {
    left: 20px;
    width: 20px;
    height: 22px
}

.download-btn .icon-angle-down-circle {
    right: 14px;
    color: #ffd600;
    height: 25px;
    width: 25px
}

.download-btn:focus {
    color: #fff;
    background-color: #292664
}

.download-btn:focus+.download-dropdown {
    opacity: 1;
    pointer-events: all
}

.download-dropdown {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    list-style-type: none;
    position: absolute;
    z-index: 1;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    line-height: 1.2
}

.download-dropdown li {
    width: 100%
}

.download-dropdown li:not(:last-of-type) {
    border-bottom: 1px solid rgba(41, 38, 100, .1)
}

.download-dropdown li a {
    padding: 10px 20px;
    color: #292664;
    font-family: Graphik-Semibold, sans-serif;
    text-transform: capitalize;
    display: block
}

.download-dropdown li a:focus,
.download-dropdown li a:hover {
    color: #fff;
    background-color: #9e005d
}

.post-meta__date {
    font-size: .75rem;
    font-family: Graphik-Regular, sans-serif;
    line-height: 1;
    color: #6f6259;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.post-meta__date .icon {
    color: #a2a2a2;
    height: 15px;
    width: 15px;
    margin-right: 9px !important
}

.post-meta__tags {
    font-size: .875rem;
    color: #6f6259
}

.post-meta__tags a {
    font-size: .75rem;
    color: #6026a6;
    display: inline-block;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.post-meta__tags a:active,
.post-meta__tags a:focus,
.post-meta__tags a:hover {
    color: #292664;
    text-underline-offset: 0
}

.post-content {
    padding: 32px 0;
    color: #000
}

.post-content .container {
    max-width: 1216px;
    margin: 0
}

.post-content.entry-content h1,
.post-content.entry-content h2,
.post-content.entry-content h3,
.post-content.entry-content h4,
.post-content.entry-content h5,
.post-content.entry-content h6 {
    margin-bottom: 32px
}

.post-authors {
    width: 100%;
    float: left
}

.post-authors .post-authors__title {
    font-size: 1.3125rem;
    color: #2babe2;
    line-height: 1.23;
    border-bottom: 4px solid #2babe2
}

.post-authors__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -8px;
    padding: 0 !important
}

.post-authors__list .post-author {
    padding: 0 8px;
    margin-bottom: 36px;
    width: 30%
}

@media screen and (max-width:1024px) {
    .post-authors__list .post-author {
        width: 50%
    }
}

@media screen and (max-width:767px) {
    .post-authors__list .post-author {
        width: 100%
    }
}

.post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.post-author .post-author__image {
    margin-bottom: 0
}

.post-author .post-author__detail .post-author__name {
    margin-bottom: 0
}

.post-author .post-author__detail .post-author__designation {
    margin-bottom: 0;
    font-family: Graphik-Regular, sans-serif;
    font-size: .75rem;
    color: #6f6259
}

.post-author__image {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0
}

.post-author__detail {
    width: calc(100% - 40px);
    padding-left: 12px
}

.post-author__name {
    font-size: 1rem;
    color: #6026a6;
    display: inline-block;
    margin-bottom: 0;
    text-transform: capitalize
}

.post-author__name a {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.post-author__name a:active,
.post-author__name a:focus,
.post-author__name a:hover {
    text-underline-offset: 1px
}

.text-block+.press-article {
    padding-top: 0
}

.press-article {
    font-size: .875rem;
    line-height: 1.71;
    padding: 56px 0 48px;
    color: #6f6259
}

.press-article .container {
    margin: 0;
    max-width: 980px
}

.press-article .grid {
    margin: 0 -15px
}

.press-article .column-6 {
    padding: 0 15px;
    margin-bottom: 40px
}

.press-article .page-navi {
    margin: 48px 0
}

.press-article__title {
    font-size: 1rem;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    color: #6026a6;
    line-height: 1.375;
    margin-bottom: 8px
}

.press-article__title a {
    color: inherit;
    font-size: inherit;
    line-height: inherit
}

.press-article__title a:focus,
.press-article__title a:hover {
    color: #3cbfaf
}

.press-article__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px
}

.press-article__meta li {
    font-size: .875rem;
    color: #2babe2;
    font-family: Graphik-Semibold, sans-serif
}

.press-article__meta li:before {
    content: '|';
    display: none;
    vertical-align: top;
    margin: 0 4px 0 6px
}

.press-article__meta li>* {
    color: inherit;
    font-style: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit
}

.press-article__meta li:not(:first-child):before {
    display: inline-block
}

.outlet-meta {
    margin-top: 30px;
    color: #6f6259
}

.outlet-meta a {
    color: #2babe2;
    font-family: Graphik-Semibold, sans-serif
}

.side-by-side {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.side-by-side:not(.side-by-side--alt) .container {
    max-width: 1216px
}

.side-by-side .grid {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0
}

.side-by-side--alt {
    padding-top: 0
}

.side-by-side--alt .container {
    position: relative;
    z-index: 1;
    padding-top: 56px
}

.side-by-side--alt .container:after {
    content: '';
    left: 32px;
    right: 32px;
    top: 0;
    background-color: rgba(60, 191, 175, .3);
    height: 1px;
    z-index: 1;
    position: absolute
}

.side-by-side__inner {
    max-width: 935px
}

.side-by-side__header {
    width: 100%;
    text-align: center
}

.side-by-side__title {
    font-size: 1.75rem;
    color: #292664;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 30px
}

.side-by-side__content,
.side-by-side__thumbnail {
    width: calc(50% - 10px)
}

@media screen and (max-width:767px) {

    .side-by-side__content,
    .side-by-side__thumbnail {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .side-by-side__thumbnail {
        margin-bottom: 30px
    }
}

.side-by-side__content h3 {
    font-size: 1.3125rem;
    color: #292664;
    line-height: 1.238;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 24px
}

.side-by-side__description {
    margin-bottom: 23px
}

.side-by-side__description strong {
    font-family: Graphik-Bold, sans-serif;
    font-weight: 400
}

.side-by-side__btn-holder .btn:not(:last-child) {
    margin-right: 24px
}

.side-by-side__inner {
    max-width: 935px
}

.side-by-side__additional-content {
    margin: 0 auto;
    max-width: 743px;
    text-align: center;
    padding-top: 56px
}

@media screen and (max-width:767px) {
    .side-by-side__additional-content {
        padding-top: 35px
    }
}

.side-by-side--form {
    padding: 0
}

.side-by-side--form .grid {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.side-by-side--form .container {
    max-width: inherit !important;
    padding: 0
}

.side-by-side--form .side-by-side__content {
    background-color: #3cbfaf;
    width: 50%;
    position: relative
}

@media (max-width:1080px) {
    .side-by-side--form .side-by-side__content {
        width: 100%
    }
}

.side-by-side--form .side-by-side__content:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 3000px;
    height: 100%;
    background-color: #3cbfaf;
    right: -3000px;
    margin-left: -3000px
}

.side-by-side--form .at-inner,
.side-by-side--form .fastAction {
    background: 0 0
}

.side-by-side--form .side-by-side__thumbnail {
    background-size: cover;
    background-position: center center;
    width: 50%
}

@media (max-width:1080px) {
    .side-by-side--form .side-by-side__thumbnail {
        width: 100%;
        margin-bottom: 0
    }
}

.side-by-side--form .side-by-side__thumbnail img {
    opacity: 0
}

.side-by-side--form .at .at-steps {
    margin: 0 30px;
    padding: 0
}

.side-by-side--form .at .at-steps li {
    margin: 0;
    padding: 4px
}

.side-by-side--form header.at-title {
    text-align: left;
    padding: 0 30px;
    font-family: Graphik-Bold, sans-serif;
    margin-bottom: 10px
}

.side-by-side--form .multistep-layout .HeaderHtml p {
    padding: 0;
    margin-bottom: 15px;
    font-size: .9375rem;
    line-height: 1.4
}

.side-by-side--form .multistep-layout .HeaderHtml {
    padding: 0 30px 0
}

.side-by-side--form .multistep-layout .HeaderHtml a {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.side-by-side--form .multistep-layout .HeaderHtml a:active,
.side-by-side--form .multistep-layout .HeaderHtml a:focus,
.side-by-side--form .multistep-layout .HeaderHtml a:hover {
    color: #292664;
    text-underline-offset: -1px
}

.side-by-side--form .side-by-side__title {
    padding: 20px 30px 10px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 1.125rem
}

.side-by-side--form .side-by-side__title+p {
    margin-bottom: 0
}

.side-by-side--form .at .at-fieldset {
    padding: 8px 20px !important
}

.side-by-side--form .at form .label-amount {
    font-family: Graphik-Bold, sans-serif;
    color: #fff;
    font-size: 1.3125rem;
    padding: 7px 5px 5px
}

.side-by-side--form .at form .label-amount>a {
    background-color: transparent;
    border: 2px solid #292664;
    color: #292664;
    border-radius: 0;
    height: 42px
}

.side-by-side--form .at form .label-amount:hover>a {
    border: 2px solid #292664;
    color: #fff;
    background-color: #292664
}

.side-by-side--form .at form .label-amount input[type=radio]:checked+a {
    border-color: #292664;
    background-color: #292664
}

.side-by-side--form .at form .label-amount input {
    height: 42px;
    font-size: 1.3125rem;
    padding-left: 30px;
    border-radius: 0;
    border: 2px solid #292664;
    background-color: transparent;
    color: #292664
}

.side-by-side--form .at form .label-amount input::-webkit-input-placeholder {
    color: #292664
}

.side-by-side--form .at form .label-amount input:-ms-input-placeholder {
    color: #292664
}

.side-by-side--form .at form .label-amount input::-moz-placeholder {
    color: #292664
}

.side-by-side--form .at form .label-amount input::-ms-input-placeholder {
    color: #292664
}

.side-by-side--form .at form .label-amount input::placeholder {
    color: #292664
}

.side-by-side--form .at form .label-amount input+.label-otheramount-prefix {
    color: #292664;
    font-size: 1.3125rem;
    padding-top: 7px
}

.side-by-side--form .at-checkbox-title {
    font-size: 1rem;
    color: #333
}

.side-by-side--form .at label {
    color: #333
}

.side-by-side--form .at label small {
    color: #333
}

.side-by-side--form .at .at-radio-set-buttons .at-btn-radio-wrapper label.at-btn-radio {
    border-color: #6026a6;
    background-color: #6026a6;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 13px 15px 10px 15px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    font-family: Graphik-Semibold, sans-serif;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 0;
    text-decoration: none;
    min-width: 200px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-weight: 400
}

.side-by-side--form .at .at-radio-set-buttons.at-align-flex-right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.side-by-side--form .at input[type=color],
.side-by-side--form .at input[type=date],
.side-by-side--form .at input[type=datetime-local],
.side-by-side--form .at input[type=datetime],
.side-by-side--form .at input[type=email],
.side-by-side--form .at input[type=month],
.side-by-side--form .at input[type=number],
.side-by-side--form .at input[type=password],
.side-by-side--form .at input[type=search],
.side-by-side--form .at input[type=tel],
.side-by-side--form .at input[type=text],
.side-by-side--form .at input[type=time],
.side-by-side--form .at input[type=url],
.side-by-side--form .at input[type=week],
.side-by-side--form .at textarea {
    border-radius: 0;
    background-color: transparent;
    border: 2px solid #6026a6
}

.side-by-side--form .at input[type=checkbox]+span:before {
    border: 2px solid #6026a6;
    border-radius: 0
}

.side-by-side--form .at .at-radio-set-buttons .at-btn-radio-wrapper label.at-btn-radio.large {
    min-width: inherit
}

.side-by-side--form .at .at-steps {
    border: 2px solid #6026a6;
    border-radius: 0;
    background-color: transparent
}

.side-by-side--form .at .at-step.active {
    border-bottom-color: #6026a6
}

.side-by-side--form .at .at-step>:before {
    background-color: #6026a6
}

.side-by-side--form input[type=radio] {
    outline: 0;
    border-radius: 0;
    border: 0;
    margin: 0;
    background: 0 0;
    -moz-appearance: radio;
    -webkit-appearance: radio
}

.side-by-side--form .step-prevNext {
    padding: 0;
    margin: 0
}

.side-by-side--form .at .btn-at-link,
.side-by-side--form .at .btn-at-primary {
    border-color: #6026a6;
    background-color: #6026a6;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 13px 10px 10px 10px;
    margin: 10px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    font-family: Graphik-Semibold, sans-serif;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 0;
    text-decoration: none;
    min-width: 180px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-weight: 400
}

.side-by-side--form .at .btn-at-link:focus,
.side-by-side--form .at .btn-at-link:hover,
.side-by-side--form .at .btn-at-primary:focus,
.side-by-side--form .at .btn-at-primary:hover {
    background-color: #f1f3f5;
    color: #333
}

.side-by-side--form .form-item-inhonororinmemoryof input[type=radio] {
    margin-bottom: 0
}

.side-by-side--form .multistep-layout .FooterHtml {
    padding: 0;
    margin: 0
}

.alignleft {
    float: left
}

.alignright {
    float: right
}

.textleft {
    text-align: left
}

.textright {
    text-align: right
}

.clear {
    clear: both
}

.staff {
    padding: 28px 0 clamp(2.5rem, 5vw, 5.12rem)
}

.staff .staff__header {
    display: block;
    margin-bottom: 36px
}

.staff .staff__title {
    margin-bottom: 5px
}

.staff .staff__designation {
    font-size: .875rem;
    line-height: 1.285;
    color: #2babe2;
    font-family: Graphik-Semibold, sans-serif
}

.staff .staff__body {
    overflow: hidden
}

.staff .staff__body p {
    margin-bottom: 33px
}

.staff .staff__body .staff__highlight-text {
    font-family: Graphik-Semibold, sans-serif;
    color: #6026a6;
    text-align: center;
    margin-bottom: clamp(1.25rem, 4vw, 3.125rem)
}

.staff .staff__body .staff__highlight-text a {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -3px;
    text-underline-position: under
}

.staff .staff__body .staff__highlight-text a:active,
.staff .staff__body .staff__highlight-text a:focus,
.staff .staff__body .staff__highlight-text a:hover {
    color: #292664;
    text-underline-offset: -1px
}

.staff .staff__thumbnail {
    float: left;
    margin: 0 25px 10px 0;
    height: auto;
    max-width: 266px;
    width: 100%
}

@media screen and (max-width:640px) {
    .staff .staff__thumbnail {
        float: none;
        margin-bottom: 20px
    }
}

.staff .staff__thumbnail img {
    width: 100%
}

.staff .staff__inner {
    max-width: 935px
}

.staff__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -14px;
    padding: 10px 0 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style-type: none !important
}

.staff__socials li {
    padding: 0 14px;
    line-height: 1
}

.staff__socials li a {
    color: #6026a6;
    font-size: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none
}

.staff__socials li a .icon {
    margin-right: 7px
}

.staff__socials li a .icon-twitter {
    height: 12px;
    width: 15px
}

.staff__socials li a .icon-envelope {
    height: 12px;
    width: 17px
}

.staff__socials li a:focus,
.staff__socials li a:hover {
    text-decoration: none
}

.staff__btn-holder {
    text-align: center
}

.staff__btn-holder a {
    color: #fff
}

.staff__btn-holder a:focus,
.staff__btn-holder a:hover {
    color: #fff;
    text-decoration: none
}

.staff-work {
    margin-top: 64px;
    border-top: 1px solid #3cbfaf;
    padding-top: 59px;
    margin-bottom: 50px
}

.staff-work .staff-work__main-title {
    margin-bottom: clamp(1.75rem, 3vw, 3rem)
}

.staff-work .staff-work__title {
    font-size: 1rem;
    font-family: Graphik-Semibold, sans-serif;
    font-weight: 400;
    color: #6026a6;
    margin-bottom: 3px
}

.staff-work .staff-work__title a {
    color: inherit;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}

.staff-work .staff-work__title a:focus,
.staff-work .staff-work__title a:hover {
    color: #3cbfaf
}

.staff-work .staff-work__subtitle {
    font-size: .875rem;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400;
    color: #6026a6
}

.staff-work .staff-work__subtitle a {
    color: #6026a6
}

.staff-work .staff-work__subtitle a:focus,
.staff-work .staff-work__subtitle a:hover {
    color: #3cbfaf
}

.staff-work .staff-work__time {
    font-size: .875rem;
    font-family: Graphik-Regular, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #6f6259
}

.staff-work .column-6 {
    margin-bottom: 56px
}

.stats {
    padding: clamp(1.75rem, 3vw, 3rem) 0;
    position: relative;
    z-index: 1
}

@media screen and (max-width:767px) {
    .stats .container {
        padding: 0
    }
}

.stats .grid {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    list-style-type: none
}

.stats .grid .slick-list {
    width: 100%
}

.stats .grid .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    z-index: 9;
    color: #292664
}

.stats .grid .slick-arrow:focus,
.stats .grid .slick-arrow:hover {
    color: #3cbfaf
}

.stats .grid .slick-arrow.slick-disabled {
    display: none !important
}

.stats .grid .slick-arrow.slick-prev {
    left: 20px
}

.stats .grid .slick-arrow.slick-next {
    right: 20px
}

.stats__item {
    padding: 6px 57px 3px;
    position: relative;
    z-index: 1;
    text-align: center;
    display: block
}

@media screen and (max-width:1024px) {
    .stats__item {
        padding: 6px 40px 3px
    }
}

.stats__item:last-child:after {
    display: none
}

.stats__item:after {
    content: '';
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #3cbfaf;
    position: absolute;
    display: block;
    width: 1px
}

@media screen and (max-width:480px) {
    .stats__item:after {
        display: none
    }
}

.stats__number {
    font-size: 3.125rem;
    font-family: Graphik-Semibold, sans-serif;
    color: #9e005d;
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: 15px
}

.stats__title {
    color: #6026a6;
    font-family: Graphik-Semibold, sans-serif;
    display: inline-block;
    font-size: 1.3125rem;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-color: #ffd600;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 2px;
    text-underline-offset: -2px;
    text-underline-position: under
}

.highlight-block+.text-block {
    padding-top: clamp(3rem, 3vw, 6rem)
}

.page__tax-issue>.page-banner+.text-block+.general--fancy {
    padding-top: 0;
    margin-top: -20px
}

@media screen and (max-width:767px) {
    .page__tax-issue>.page-banner+.text-block+.general--fancy {
        margin-top: 0
    }
}

.text-block {
    padding: clamp(1.75rem, 3vw, 3rem) 0
}

.text-block+.grid-content,
.text-block+.stats {
    padding-top: 0
}

.text-block .container {
    max-width: 1216px
}

.text-block .entry-content h1,
.text-block .entry-content h2,
.text-block .entry-content h3,
.text-block .entry-content h4,
.text-block .entry-content h5,
.text-block .entry-content h6 {
    color: #292664;
    font-weight: 400
}

.text-block .entry-content h1:not(:last-child),
.text-block .entry-content h2:not(:last-child),
.text-block .entry-content h3:not(:last-child),
.text-block .entry-content h4:not(:last-child),
.text-block .entry-content h5:not(:last-child),
.text-block .entry-content h6:not(:last-child) {
    margin-bottom: 15px
}

.text-block .entry-content h1,
.text-block .entry-content h2,
.text-block .entry-content h3,
.text-block .entry-content h5 {
    font-family: Graphik-Bold, sans-serif
}

.text-block .entry-content p:not(:last-child) {
    margin-bottom: 20px
}

.text-block .entry-content blockquote {
    background-color: #f5f5f5;
    padding: 2em 2em 1em;
    margin: 2em 0;
    border-left: 5px solid #9e005d
}

.text-block .entry-content a:not([class]) {
    font-family: Graphik-Semibold, sans-serif;
    color: inherit
}

.text-block .entry-content a:not([class]):focus,
.text-block .entry-content a:not([class]):hover {
    color: #6026a6
}

.text-block .column:not(:last-child) {
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .text-block .column {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto
    }
}

.text-block__title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.75rem;
    line-height: 1.321;
    color: #292664;
    text-transform: uppercase
}

@media screen and (max-width:1216px) {
    .text-block__title {
        font-size: 21px
    }
}

@media screen and (max-width:767px) {
    .text-block__title {
        font-size: 18px;
        line-height: 1.19
    }
}

.text-block__btn-holder {
    margin-top: 32px
}

.text-block--primary .text-block__btn-holder {
    text-align: center
}

@media screen and (max-width:767px) {
    .text-block--primary .text-block__btn-holder {
        text-align: left
    }
}

.text-block__btn-holder .btn:not(:last-child) {
    margin-right: 24px
}

.text-block--align-left .container {
    margin: 0
}

.page__404 {
    padding: 10vh 0;
    text-align: center
}

.page__404 .btn--primary {
    margin: 0 20px 20px
}

.page__404 h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .page__404 h4 {
        font-size: 1.25rem;
        margin-bottom: 10px
    }
}

.page__404 p {
    margin-bottom: 30px
}

@media (max-width: 1024px) {
    #menu-primary-menu {
        display: none;
    }
}