@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2)
}

.animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3)
}

.animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4)
}

.animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5)
}

.animate__animated.animate__faster {
    animation-duration: .5s;
    animation-duration: calc(var(--animate-duration) / 2)
}

.animate__animated.animate__fast {
    animation-duration: .8s;
    animation-duration: calc(var(--animate-duration) * .8)
}

.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2)
}

.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3)
}

@media print,(prefers-reduced-motion: reduce) {
    .animate__animated {
        animation-duration: 1ms!important;
        transition-duration: 1ms!important;
        animation-iteration-count: 1!important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

@keyframes bounce {
    0%,20%,53%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.animate__flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleZ(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleZ(1)
    }
}

.animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out
}

@keyframes rubberBand {
    0% {
        transform: scaleZ(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scaleZ(1)
    }
}

.animate__rubberBand {
    animation-name: rubberBand
}

@keyframes shakeX {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

.animate__shakeX {
    animation-name: shakeX
}

@keyframes shakeY {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(0,10px,0)
    }
}

.animate__shakeY {
    animation-name: shakeY
}

@keyframes headShake {
    0% {
        transform: translate(0)
    }

    6.5% {
        transform: translate(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translate(5px) rotateY(7deg)
    }

    31.5% {
        transform: translate(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translate(2px) rotateY(3deg)
    }

    50% {
        transform: translate(0)
    }
}

.animate__headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0,0,1,15deg)
    }

    40% {
        transform: rotate3d(0,0,1,-10deg)
    }

    60% {
        transform: rotate3d(0,0,1,5deg)
    }

    80% {
        transform: rotate3d(0,0,1,-5deg)
    }

    to {
        transform: rotate3d(0,0,1,0)
    }
}

.animate__swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleZ(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
    }

    to {
        transform: scaleZ(1)
    }
}

.animate__tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    22.2% {
        transform: skew(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skew(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skew(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skew(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skew(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skew(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skew(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out
}

@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInDown {
    animation-name: backInDown
}

@keyframes backInLeft {
    0% {
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInLeft {
    animation-name: backInLeft
}

@keyframes backInRight {
    0% {
        transform: translate(2000px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInRight {
    animation-name: backInRight
}

@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInUp {
    animation-name: backInUp
}

@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutDown {
    animation-name: backOutDown
}

@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutLeft {
    animation-name: backOutLeft
}

@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translate(2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutRight {
    animation-name: backOutRight
}

@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutUp {
    animation-name: backOutUp
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scaleZ(1)
    }
}

.animate__bounceIn {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0) scaleY(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0) scaleY(.9)
    }

    75% {
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0) scaleX(1)
    }

    75% {
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0) scaleX(1)
    }

    75% {
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0) scaleY(5)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    75% {
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.animate__bounceOut {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0) scaleY(3)
    }
}

.animate__bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0) scaleY(3)
    }
}

.animate__bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    animation-name: fadeInTopRight
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.animate__fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.animate__fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.animate__fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.animate__fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,-100%,0)
    }
}

.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%,-100%,0)
    }
}

.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%,100%,0)
    }
}

.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,100%,0)
    }
}

.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleZ(1) translateZ(0) rotateY(-360deg);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scaleZ(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scaleZ(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scaleZ(1) translateZ(0) rotateY(0);
        animation-timing-function: ease-in
    }
}

.animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInX {
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInY {
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.animate__flipOutX {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: flipOutX;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.animate__flipOutY {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%,0,0) skew(-30deg);
        opacity: 0
    }

    60% {
        transform: skew(20deg);
        opacity: 1
    }

    80% {
        transform: skew(-5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out
}

@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%,0,0) skew(30deg);
        opacity: 0
    }

    60% {
        transform: skew(-20deg);
        opacity: 1
    }

    80% {
        transform: skew(5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skew(30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(-100%,0,0) skew(-30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center
}

@keyframes rotateInDownLeft {
    0% {
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom
}

@keyframes rotateInUpRight {
    0% {
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        transform: rotate3d(0,0,1,200deg);
        opacity: 0
    }
}

.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }
}

.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        transform: rotate3d(0,0,1,90deg);
        opacity: 0
    }
}

.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate3d(0,0,1,80deg);
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate3d(0,0,1,60deg);
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
    }
}

.animate__rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.animate__slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.animate__slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.animate__slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.animate__slideOutUp {
    animation-name: slideOutUp
}

:root {
    --light-grey: #CCCFCF;
    --red: #FF7D7D;
    --red-transparent: #ffbebe;
    --blue: #4DA1EF;
    --headings: #373433;
    --text: #373433;
    --font-family: FS Albert Pro, HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
    --header-family: Syrup Sans, HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    margin-top: 0;
    margin-bottom: .4em
}

:root {
    --heading-one-font-size: 4rem;
    --heading-one-line-height: 5rem;
    --heading-one-letter-spacing: .041rem;
    --heading-one-font-style: normal;
    --heading-one-font-weight: 800;
    --heading-one-text-transform: uppercase;
    --heading-one-font: var(--heading-one-font-style) var(--heading-one-font-weight) var(--heading-one-font-size) / var(--heading-one-line-height) var(--header-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-one-font-size: 4.4rem;
        --heading-one-line-height: 5.4rem;
        --heading-one-letter-spacing: .037rem;
        --heading-one-font-style: normal;
        --heading-one-font-weight: 800;
        --heading-one-text-transform: uppercase
    }
}

:root {
    --heading-two-font-size: 2.4rem;
    --heading-two-line-height: 3.2rem;
    --heading-two-letter-spacing: .013rem;
    --heading-two-font-style: normal;
    --heading-two-font-weight: 800;
    --heading-two-text-transform: normal;
    --heading-two-font: var(--heading-two-font-style) var(--heading-two-font-weight) var(--heading-two-font-size)/var(--heading-two-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-two-font-size: 3rem;
        --heading-two-line-height: 3.75rem;
        --heading-two-letter-spacing: .013rem;
        --heading-two-font-style: normal;
        --heading-two-font-weight: 800;
        --heading-two-text-transform: normal
    }
}

:root {
    --heading-three-font-size: 1.8rem;
    --heading-three-line-height: 2.2rem;
    --heading-three-letter-spacing: -.03rem;
    --heading-three-font-style: normal;
    --heading-three-font-weight: bold;
    --heading-three-text-transform: normal;
    --heading-three-font: var(--heading-three-font-style) var(--heading-three-font-weight) var(--heading-three-font-size) / var(--heading-three-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-three-font-size: 1.8rem;
        --heading-three-line-height: 2.2rem;
        --heading-three-letter-spacing: -.03rem;
        --heading-three-font-style: normal;
        --heading-three-font-weight: bold;
        --heading-three-text-transform: normal
    }
}

:root {
    --heading-four-font-size: 1.6rem;
    --heading-four-line-height: 1.9rem;
    --heading-four-letter-spacing: -.007rem;
    --heading-four-font-style: normal;
    --heading-four-font-weight: 800;
    --heading-four-text-transform: normal;
    --heading-four-font: var(--heading-four-font-style) var(--heading-four-font-weight) var(--heading-four-font-size) / var(--heading-four-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-four-font-size: 1.6rem;
        --heading-four-line-height: 1.9rem;
        --heading-four-letter-spacing: -.007rem;
        --heading-four-font-style: normal;
        --heading-four-font-weight: 800;
        --heading-four-text-transform: normal
    }
}

:root {
    --heading-five-font-size: 1.6rem;
    --heading-five-line-height: 2rem;
    --heading-five-letter-spacing: .004rem;
    --heading-five-font-style: normal;
    --heading-five-font-weight: 800;
    --heading-five-text-transform: normal;
    --heading-five-font: var(--heading-five-font-style) var(--heading-five-font-weight) var(--heading-five-font-size) / var(--heading-five-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-five-font-size: 1.6rem;
        --heading-five-line-height: 2rem;
        --heading-five-letter-spacing: .004rem;
        --heading-five-font-style: normal;
        --heading-five-font-weight: 800;
        --heading-five-text-transform: normal
    }
}

:root {
    --heading-six-font-size: 1.6rem;
    --heading-six-line-height: 1.9rem;
    --heading-six-letter-spacing: -.007rem;
    --heading-six-font-style: normal;
    --heading-six-font-weight: 800;
    --heading-six-text-transform: normal;
    --heading-six-font: var(--heading-six-font-style) var(--heading-six-font-weight) var(--heading-six-font-size) / var(--heading-six-line-height) var(--alt-font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --heading-six-font-size: 1.6rem;
        --heading-six-line-height: 1.9rem;
        --heading-six-letter-spacing: -.007rem;
        --heading-six-font-style: normal;
        --heading-six-font-weight: 800;
        --heading-six-text-transform: normal
    }
}

:root {
    --paragraph-font-size: 1.8rem;
    --paragraph-line-height: 2.1rem;
    --paragraph-letter-spacing: -.03rem;
    --paragraph-font-style: normal;
    --paragraph-font-weight: 500;
    --paragraph-text-transform: normal;
    --paragraph-font: var(--paragraph-font-style) var(--paragraph-font-weight) var(--paragraph-font-size) / var(--paragraph-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --paragraph-font-size: 1.8rem;
        --paragraph-line-height: 2.1rem;
        --paragraph-letter-spacing: -.03rem;
        --paragraph-font-style: normal;
        --paragraph-font-weight: normal;
        --paragraph-text-transform: normal
    }
}

:root {
    --small-paragraph-font-size: 1.2rem;
    --small-paragraph-line-height: 1.4rem;
    --small-paragraph-letter-spacing: -.005rem;
    --small-paragraph-font-style: normal;
    --small-paragraph-font-weight: 300;
    --small-paragraph-text-transform: normal;
    --small-paragraph-font: var(--small-paragraph-font-style) var(--small-paragraph-font-weight) var(--small-paragraph-font-size) / var(--small-paragraph-line-height) var(--font-family)
}

@media screen and (min-width: 768px) {
    :root {
        --small-paragraph-font-size: 1.2rem;
        --small-paragraph-line-height: 1.4rem;
        --small-paragraph-letter-spacing: -.005rem;
        --small-paragraph-font-style: normal;
        --small-paragraph-font-weight: 300;
        --small-paragraph-text-transform: normal
    }
}

:root {
    --reflex-columns: 12;
    --reflex-grid-spacing: 15px;
    --reflex-xs: 576px;
    --reflex-sm: 768px;
    --reflex-md: 992px;
    --reflex-lg: 1200px;
    --reflex-xlg: 1600px;
    --reflex-xxs-max: 575px;
    --reflex-xs-max: 767px;
    --reflex-sm-max: 991px;
    --reflex-md-max: 1199px;
    --reflex-lg-max: 1599px
}

.container,.container-full {
    box-sizing: border-box;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px
}

.container .grid,.container-full .grid {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 576px) {
    .container {
        max-width:576px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:768px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:992px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1200px
    }
}

@media (min-width: 1600px) {
    .container {
        max-width:1600px
    }
}

.grid {
    box-sizing: border-box;
    display: block;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
    position: relative;
    letter-spacing: -.31em;
    *letter-spacing: normal;
    word-spacing: -.43em;
    list-style-type: none
}

.grid:before,.grid:after {
    box-sizing: border-box;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal
}

[class*=col-] {
    box-sizing: border-box;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    position: relative;
    width: 100%;
    vertical-align: top;
    padding: 15px;
    display: inline-block;
    *display: inline;
    zoom:1}

[class*=col-]:before,[class*=col-]:after {
    box-sizing: border-box;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal
}

[class*=col-] .grid {
    flex: 1 1 auto;
    margin: -15px
}

.col-12 {
    *width: 99.9%
}

.col-11 {
    *width: 91.5666666667%
}

.col-10 {
    *width: 83.2333333333%
}

.col-9 {
    *width: 74.9%
}

.col-8 {
    *width: 66.5666666667%
}

.col-7 {
    *width: 58.2333333333%
}

.col-6 {
    *width: 49.9%
}

.col-5 {
    *width: 41.5666666667%
}

.col-4 {
    *width: 33.2333333333%
}

.col-3 {
    *width: 24.9%
}

.col-2 {
    *width: 16.5666666667%
}

.col-1 {
    *width: 8.2333333333%
}

@media (min-width: 576px) {
    .col-xs-12 {
        *width: 99.9%
    }

    .col-xs-11 {
        *width: 91.5666666667%
    }

    .col-xs-10 {
        *width: 83.2333333333%
    }

    .col-xs-9 {
        *width: 74.9%
    }

    .col-xs-8 {
        *width: 66.5666666667%
    }

    .col-xs-7 {
        *width: 58.2333333333%
    }

    .col-xs-6 {
        *width: 49.9%
    }

    .col-xs-5 {
        *width: 41.5666666667%
    }

    .col-xs-4 {
        *width: 33.2333333333%
    }

    .col-xs-3 {
        *width: 24.9%
    }

    .col-xs-2 {
        *width: 16.5666666667%
    }

    .col-xs-1 {
        *width: 8.2333333333%
    }
}

@media (min-width: 768px) {
    .col-sm-12 {
        *width: 99.9%
    }

    .col-sm-11 {
        *width: 91.5666666667%
    }

    .col-sm-10 {
        *width: 83.2333333333%
    }

    .col-sm-9 {
        *width: 74.9%
    }

    .col-sm-8 {
        *width: 66.5666666667%
    }

    .col-sm-7 {
        *width: 58.2333333333%
    }

    .col-sm-6 {
        *width: 49.9%
    }

    .col-sm-5 {
        *width: 41.5666666667%
    }

    .col-sm-4 {
        *width: 33.2333333333%
    }

    .col-sm-3 {
        *width: 24.9%
    }

    .col-sm-2 {
        *width: 16.5666666667%
    }

    .col-sm-1 {
        *width: 8.2333333333%
    }
}

@media (min-width: 992px) {
    .col-md-12 {
        *width: 99.9%
    }

    .col-md-11 {
        *width: 91.5666666667%
    }

    .col-md-10 {
        *width: 83.2333333333%
    }

    .col-md-9 {
        *width: 74.9%
    }

    .col-md-8 {
        *width: 66.5666666667%
    }

    .col-md-7 {
        *width: 58.2333333333%
    }

    .col-md-6 {
        *width: 49.9%
    }

    .col-md-5 {
        *width: 41.5666666667%
    }

    .col-md-4 {
        *width: 33.2333333333%
    }

    .col-md-3 {
        *width: 24.9%
    }

    .col-md-2 {
        *width: 16.5666666667%
    }

    .col-md-1 {
        *width: 8.2333333333%
    }
}

@media (min-width: 1200px) {
    .col-lg-12 {
        *width: 99.9%
    }

    .col-lg-11 {
        *width: 91.5666666667%
    }

    .col-lg-10 {
        *width: 83.2333333333%
    }

    .col-lg-9 {
        *width: 74.9%
    }

    .col-lg-8 {
        *width: 66.5666666667%
    }

    .col-lg-7 {
        *width: 58.2333333333%
    }

    .col-lg-6 {
        *width: 49.9%
    }

    .col-lg-5 {
        *width: 41.5666666667%
    }

    .col-lg-4 {
        *width: 33.2333333333%
    }

    .col-lg-3 {
        *width: 24.9%
    }

    .col-lg-2 {
        *width: 16.5666666667%
    }

    .col-lg-1 {
        *width: 8.2333333333%
    }
}

@media (min-width: 1600px) {
    .col-xlg-12 {
        *width: 99.9%
    }

    .col-xlg-11 {
        *width: 91.5666666667%
    }

    .col-xlg-10 {
        *width: 83.2333333333%
    }

    .col-xlg-9 {
        *width: 74.9%
    }

    .col-xlg-8 {
        *width: 66.5666666667%
    }

    .col-xlg-7 {
        *width: 58.2333333333%
    }

    .col-xlg-6 {
        *width: 49.9%
    }

    .col-xlg-5 {
        *width: 41.5666666667%
    }

    .col-xlg-4 {
        *width: 33.2333333333%
    }

    .col-xlg-3 {
        *width: 24.9%
    }

    .col-xlg-2 {
        *width: 16.5666666667%
    }

    .col-xlg-1 {
        *width: 8.2333333333%
    }
}

.col-auto {
    flex: 1 0 0px;
    width: auto
}

@media (min-width: 576px) {
    .col-xs-auto {
        flex:1 0 0px;
        width: auto
    }
}

@media (min-width: 768px) {
    .col-sm-auto {
        flex:1 0 0px;
        width: auto
    }
}

@media (min-width: 992px) {
    .col-md-auto {
        flex:1 0 0px;
        width: auto
    }
}

@media (min-width: 1200px) {
    .col-lg-auto {
        flex:1 0 0px;
        width: auto
    }
}

@media (min-width: 1600px) {
    .col-xlg-auto {
        flex:1 0 0px;
        width: auto
    }
}

.order-12 {
    order: 12
}

.order-11 {
    order: 11
}

.order-10 {
    order: 10
}

.order-9 {
    order: 9
}

.order-8 {
    order: 8
}

.order-7 {
    order: 7
}

.order-6 {
    order: 6
}

.order-5 {
    order: 5
}

.order-4 {
    order: 4
}

.order-3 {
    order: 3
}

.order-2 {
    order: 2
}

.order-1 {
    order: 1
}

.order-0 {
    order: 0
}

@media (min-width: 576px) {
    .order-xs-12 {
        order:12
    }

    .order-xs-11 {
        order: 11
    }

    .order-xs-10 {
        order: 10
    }

    .order-xs-9 {
        order: 9
    }

    .order-xs-8 {
        order: 8
    }

    .order-xs-7 {
        order: 7
    }

    .order-xs-6 {
        order: 6
    }

    .order-xs-5 {
        order: 5
    }

    .order-xs-4 {
        order: 4
    }

    .order-xs-3 {
        order: 3
    }

    .order-xs-2 {
        order: 2
    }

    .order-xs-1 {
        order: 1
    }

    .order-xs-0 {
        order: 0
    }
}

@media (min-width: 768px) {
    .order-sm-12 {
        order:12
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-0 {
        order: 0
    }
}

@media (min-width: 992px) {
    .order-md-12 {
        order:12
    }

    .order-md-11 {
        order: 11
    }

    .order-md-10 {
        order: 10
    }

    .order-md-9 {
        order: 9
    }

    .order-md-8 {
        order: 8
    }

    .order-md-7 {
        order: 7
    }

    .order-md-6 {
        order: 6
    }

    .order-md-5 {
        order: 5
    }

    .order-md-4 {
        order: 4
    }

    .order-md-3 {
        order: 3
    }

    .order-md-2 {
        order: 2
    }

    .order-md-1 {
        order: 1
    }

    .order-md-0 {
        order: 0
    }
}

@media (min-width: 1200px) {
    .order-lg-12 {
        order:12
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-0 {
        order: 0
    }
}

@media (min-width: 1600px) {
    .order-xlg-12 {
        order:12
    }

    .order-xlg-11 {
        order: 11
    }

    .order-xlg-10 {
        order: 10
    }

    .order-xlg-9 {
        order: 9
    }

    .order-xlg-8 {
        order: 8
    }

    .order-xlg-7 {
        order: 7
    }

    .order-xlg-6 {
        order: 6
    }

    .order-xlg-5 {
        order: 5
    }

    .order-xlg-4 {
        order: 4
    }

    .order-xlg-3 {
        order: 3
    }

    .order-xlg-2 {
        order: 2
    }

    .order-xlg-1 {
        order: 1
    }

    .order-xlg-0 {
        order: 0
    }
}

.offset-11 {
    *margin-left: 91.5666666667%
}

.offset-10 {
    *margin-left: 83.2333333333%
}

.offset-9 {
    *margin-left: 74.9%
}

.offset-8 {
    *margin-left: 66.5666666667%
}

.offset-7 {
    *margin-left: 58.2333333333%
}

.offset-6 {
    *margin-left: 49.9%
}

.offset-5 {
    *margin-left: 41.5666666667%
}

.offset-4 {
    *margin-left: 33.2333333333%
}

.offset-3 {
    *margin-left: 24.9%
}

.offset-2 {
    *margin-left: 16.5666666667%
}

.offset-1 {
    *margin-left: 8.2333333333%
}

@media (min-width: 576px) {
    .offset-xs-11 {
        *margin-left: 91.5666666667%
    }

    .offset-xs-10 {
        *margin-left: 83.2333333333%
    }

    .offset-xs-9 {
        *margin-left: 74.9%
    }

    .offset-xs-8 {
        *margin-left: 66.5666666667%
    }

    .offset-xs-7 {
        *margin-left: 58.2333333333%
    }

    .offset-xs-6 {
        *margin-left: 49.9%
    }

    .offset-xs-5 {
        *margin-left: 41.5666666667%
    }

    .offset-xs-4 {
        *margin-left: 33.2333333333%
    }

    .offset-xs-3 {
        *margin-left: 24.9%
    }

    .offset-xs-2 {
        *margin-left: 16.5666666667%
    }

    .offset-xs-1 {
        *margin-left: 8.2333333333%
    }

    .offset-xs-0 {
        margin-left: 0;
        *margin-left: -.1%
    }
}

@media (min-width: 768px) {
    .offset-sm-11 {
        *margin-left: 91.5666666667%
    }

    .offset-sm-10 {
        *margin-left: 83.2333333333%
    }

    .offset-sm-9 {
        *margin-left: 74.9%
    }

    .offset-sm-8 {
        *margin-left: 66.5666666667%
    }

    .offset-sm-7 {
        *margin-left: 58.2333333333%
    }

    .offset-sm-6 {
        *margin-left: 49.9%
    }

    .offset-sm-5 {
        *margin-left: 41.5666666667%
    }

    .offset-sm-4 {
        *margin-left: 33.2333333333%
    }

    .offset-sm-3 {
        *margin-left: 24.9%
    }

    .offset-sm-2 {
        *margin-left: 16.5666666667%
    }

    .offset-sm-1 {
        *margin-left: 8.2333333333%
    }

    .offset-sm-0 {
        margin-left: 0;
        *margin-left: -.1%
    }
}

@media (min-width: 992px) {
    .offset-md-11 {
        *margin-left: 91.5666666667%
    }

    .offset-md-10 {
        *margin-left: 83.2333333333%
    }

    .offset-md-9 {
        *margin-left: 74.9%
    }

    .offset-md-8 {
        *margin-left: 66.5666666667%
    }

    .offset-md-7 {
        *margin-left: 58.2333333333%
    }

    .offset-md-6 {
        *margin-left: 49.9%
    }

    .offset-md-5 {
        *margin-left: 41.5666666667%
    }

    .offset-md-4 {
        *margin-left: 33.2333333333%
    }

    .offset-md-3 {
        *margin-left: 24.9%
    }

    .offset-md-2 {
        *margin-left: 16.5666666667%
    }

    .offset-md-1 {
        *margin-left: 8.2333333333%
    }

    .offset-md-0 {
        margin-left: 0;
        *margin-left: -.1%
    }
}

@media (min-width: 1200px) {
    .offset-lg-11 {
        *margin-left: 91.5666666667%
    }

    .offset-lg-10 {
        *margin-left: 83.2333333333%
    }

    .offset-lg-9 {
        *margin-left: 74.9%
    }

    .offset-lg-8 {
        *margin-left: 66.5666666667%
    }

    .offset-lg-7 {
        *margin-left: 58.2333333333%
    }

    .offset-lg-6 {
        *margin-left: 49.9%
    }

    .offset-lg-5 {
        *margin-left: 41.5666666667%
    }

    .offset-lg-4 {
        *margin-left: 33.2333333333%
    }

    .offset-lg-3 {
        *margin-left: 24.9%
    }

    .offset-lg-2 {
        *margin-left: 16.5666666667%
    }

    .offset-lg-1 {
        *margin-left: 8.2333333333%
    }

    .offset-lg-0 {
        margin-left: 0;
        *margin-left: -.1%
    }
}

@media (min-width: 1600px) {
    .offset-xlg-11 {
        *margin-left: 91.5666666667%
    }

    .offset-xlg-10 {
        *margin-left: 83.2333333333%
    }

    .offset-xlg-9 {
        *margin-left: 74.9%
    }

    .offset-xlg-8 {
        *margin-left: 66.5666666667%
    }

    .offset-xlg-7 {
        *margin-left: 58.2333333333%
    }

    .offset-xlg-6 {
        *margin-left: 49.9%
    }

    .offset-xlg-5 {
        *margin-left: 41.5666666667%
    }

    .offset-xlg-4 {
        *margin-left: 33.2333333333%
    }

    .offset-xlg-3 {
        *margin-left: 24.9%
    }

    .offset-xlg-2 {
        *margin-left: 16.5666666667%
    }

    .offset-xlg-1 {
        *margin-left: 8.2333333333%
    }

    .offset-xlg-0 {
        margin-left: 0;
        *margin-left: -.1%
    }
}

.wrap {
    flex-wrap: wrap
}

.no-wrap {
    flex-wrap: nowrap
}

.no-wrap [class*=col-] {
    flex-shrink: 1
}

.wrap-reverse {
    flex-wrap: wrap-reverse
}

.direction-row {
    flex-direction: row
}

.direction-row-reverse {
    flex-direction: row-reverse
}

.direction-column {
    flex-direction: column
}

.direction-column-reverse {
    flex-direction: column-reverse
}

.align-start {
    align-items: flex-start
}

.align-end {
    align-items: flex-end
}

.align-end [class*=col-] {
    vertical-align: bottom
}

.align-center {
    align-items: center
}

.align-center [class*=col-] {
    vertical-align: middle
}

.align-baseline {
    align-items: baseline
}

.align-content-start {
    align-content: flex-start
}

.align-content-end {
    align-content: flex-end
}

.align-content-end [class*=col-] {
    vertical-align: bottom
}

.align-content-center {
    align-content: center
}

.align-content-space-between {
    align-content: space-between
}

.align-content-space-around {
    align-content: space-around
}

.align-self-stretch {
    align-self: stretch
}

.align-self-start {
    align-self: flex-start
}

.align-self-end {
    align-self: flex-end;
    vertical-align: bottom
}

.align-self-center {
    align-self: center;
    vertical-align: middle
}

.align-self-baseline {
    align-self: baseline;
    vertical-align: baseline
}

.justify-start {
    justify-content: flex-start
}

.justify-start.grid {
    text-align: left
}

.justify-end {
    justify-content: flex-end
}

.justify-end.grid {
    text-align: right;
    -moz-text-align-last: right;
    text-align-last: right
}

.justify-end.grid [class*=col-] {
    text-align: left;
    text-align: start;
    -moz-text-align-last: left;
    -moz-text-align-last: start;
    text-align-last: left;
    text-align-last: start
}

.justify-center {
    justify-content: center
}

.justify-center.grid {
    text-align: center;
    -moz-text-align-last: center;
    text-align-last: center
}

.justify-center.grid [class*=col-] {
    text-align: left;
    text-align: start;
    -moz-text-align-last: left;
    -moz-text-align-last: start;
    text-align-last: left;
    text-align-last: start
}

.justify-space-between {
    justify-content: space-between
}

.justify-space-between.grid {
    text-align: justify;
    -moz-text-align-last: justify;
    text-align-last: justify
}

.justify-space-between.grid [class*=col-] {
    text-align: left;
    text-align: start;
    -moz-text-align-last: left;
    -moz-text-align-last: start;
    text-align-last: left;
    text-align-last: start
}

.justify-space-around {
    justify-content: space-around
}

.justify-space-around.grid {
    text-align: justify;
    -moz-text-align-last: justify;
    text-align-last: justify
}

.justify-space-around.grid [class*=col-] {
    text-align: left;
    text-align: start;
    -moz-text-align-last: left;
    -moz-text-align-last: start;
    text-align-last: left;
    text-align-last: start
}

.grid-bleed [class*=col-] {
    padding: 0
}

.col-grid {
    display: flex;
    flex-direction: column
}

.col-grid.direction-row {
    flex-direction: row
}

.col-bleed {
    padding: 0
}

.col-bleed-x {
    padding: 15px 0
}

.col-bleed-y {
    padding: 0 15px
}

.flex-img {
    display: block;
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
    width: 100%;
    *width: auto
}

.flex-footer {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0
}

.flex-footer>:last-child {
    margin-bottom: 0
}

@media (min-width: 0px) and (max-width: 575px) {
    .hidden-xxs {
        display:none
    }
}

@media (min-width: 576px) {
    .hidden-xs-up {
        display:none
    }
}

@media (max-width: 767px) {
    .hidden-xs-down {
        display:none
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hidden-xs {
        display:none
    }
}

@media (min-width: 768px) {
    .hidden-sm-up {
        display:none
    }
}

@media (max-width: 991px) {
    .hidden-sm-down {
        display:none
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display:none
    }
}

@media (min-width: 992px) {
    .hidden-md-up {
        display:none
    }
}

@media (max-width: 1199px) {
    .hidden-md-down {
        display:none
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display:none
    }
}

@media (min-width: 1200px) {
    .hidden-lg-up {
        display:none
    }
}

@media (max-width: 1599px) {
    .hidden-lg-down {
        display:none
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .hidden-lg {
        display:none
    }
}

@media (min-width: 1600px) {
    .hidden-xlg {
        display:none
    }
}

html {
    font-size: .625em;
    overflow-x: hidden;
    background-color: #f6f4f4
}

body {
    font-size: 1.4em;
    line-height: 1.5;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    margin: 0
}

main {
    padding-bottom: 6rem
}

p {
    margin-bottom: .5em
}

* {
    box-sizing: border-box
}

@media screen and (max-width: 992px) {
    .scroll-md-down {
        flex-wrap:nowrap;
        justify-content: flex-start;
        overflow: scroll
    }
}

@media screen and (max-width: 1200px) {
    .scroll-lg-down {
        flex-wrap:nowrap;
        justify-content: flex-start;
        overflow: scroll
    }
}

@media screen and (max-width: 768px) {
    .scroll-sm-down {
        flex-wrap:nowrap;
        justify-content: flex-start;
        overflow: scroll
    }
}

@font-face {
    font-family: Syrup Sans;
    src: url(/build/assets/SyrupSans-Bold-CmHwSrxU.woff2) format("woff2"),url(/build/assets/SyrupSans-Bold-CiicFT3T.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: FS Albert Pro;
    src: url(/build/assets/FSAlbertPro-B_TsE22c.woff2) format("woff2"),url(/build/assets/FSAlbertPro--uN20ONt.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: FS Albert Pro;
    src: url(/build/assets/FSAlbertPro-Bold-DWBpH3MJ.woff2) format("woff2"),url(/build/assets/FSAlbertPro-Bold-BSizfG2q.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

h1,.heading-1,.h1 {
    color: var(--headings, #373433);
    font: var(--heading-one-font);
    letter-spacing: var(--heading-one-letter-spacing);
    text-transform: var(--heading-one-text-transform)
}

h2,.heading-2,.h2,label,legend {
    color: var(--headings, #373433);
    font: var(--heading-two-font);
    letter-spacing: var(--heading-two-letter-spacing);
    text-transform: var(--heading-two-text-transform)
}

h3,.heading-3,.h3,a,.a {
    color: var(--headings, #373433);
    font: var(--heading-three-font);
    letter-spacing: var(--heading-three-letter-spacing);
    text-transform: var(--heading-three-text-transform)
}

h4,.heading-4,.h4 {
    color: var(--headings, #373433);
    font: var(--heading-four-font);
    letter-spacing: var(--heading-four-letter-spacing);
    text-transform: var(--heading-four-text-transform)
}

h5,.heading-5,.h5 {
    color: var(--headings, #373433);
    font: var(--heading-five-font);
    letter-spacing: var(--heading-five-letter-spacing);
    text-transform: var(--heading-five-text-transform)
}

h6,.heading-6,.h6 {
    color: var(--headings, #373433);
    font: var(--heading-six-font);
    letter-spacing: var(--heading-six-letter-spacing);
    text-transform: var(--heading-six-text-transform)
}

p,.p {
    margin-top: 0;
    margin-bottom: .5em;
    color: var(--text);
    font: var(--paragraph-font);
    letter-spacing: var(--paragraph-letter-spacing);
    text-transform: var(--paragraph-text-transform)
}

p:last-child,.p:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 992px) {
    p,.p {
        margin-bottom:1em
    }
}

a,.a {
    color: var(--blue);
    text-decoration: none
}

a:hover,.a:hover {
    text-decoration: underline
}

button.a {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer
}

.admin {
    font-size: 1.2rem
}

.admin input,.admin a,.admin button {
    font-size: 1.4rem
}
