@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
}

.animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both
}

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

.animated.repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat)
}

.animated.repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animated.repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animated.delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay)
}

.animated.delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2)
}

.animated.delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3)
}

.animated.delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4)
}

.animated.delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5)
}

.animated.faster {
    animation-duration: .5s;
    animation-duration: calc(var(--animate-duration) / 2)
}

.animated.fast {
    animation-duration: .8s;
    animation-duration: calc(var(--animate-duration) * .8)
}

.animated.slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2)
}

.animated.slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3)
}

@media (prefers-reduced-motion: reduce), print {
    .animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important
    }

    .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)
    }
}

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

@keyframes flash {
    0%, 50%, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out
}

@keyframes rubberBand {
    0% {
        transform: scaleX(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: scaleX(1)
    }
}

.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)
    }
}

.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)
    }
}

.shakeY {
    animation-name: shakeY
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0)
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }
    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: translateZ(0)
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%, 11.1%, to {
        transform: translateZ(0)
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    -ms-transform-origin: center;
    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)
    }
}

.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
    }
}

.backInDown {
    animation-name: backInDown
}

@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
    80% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.backInLeft {
    animation-name: backInLeft
}

@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
    80% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.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
    }
}

.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
    }
}

.backOutDown {
    animation-name: backOutDown
}

@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1
    }
    20% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

.backOutLeft {
    animation-name: backOutLeft
}

@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1
    }
    20% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

.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
    }
}

.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: scaleX(1)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInTopLeft {
    animation-name: fadeInTopLeft
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInTopRight {
    animation-name: fadeInTopRight
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInBottomLeft {
    animation-name: fadeInBottomLeft
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInBottomRight {
    animation-name: fadeInBottomRight
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0)
    }
}

.fadeOutTopLeft {
    animation-name: fadeOutTopLeft
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0)
    }
}

.fadeOutTopRight {
    animation-name: fadeOutTopRight
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0)
    }
}

.fadeOutBottomRight {
    animation-name: fadeOutBottomRight
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0)
    }
}

.fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) scaleX(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) scaleX(1) translateZ(0) rotateY(0);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    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)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    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)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    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
    }
}

.flipOutX {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    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
    }
}

.flipOutY {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg)
    }
    to {
        transform: translateZ(0)
    }
}

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

@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1
    }
    80% {
        transform: skewX(5deg)
    }
    to {
        transform: translateZ(0)
    }
}

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

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

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

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
}

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

@keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

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

@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }
    to {
        transform: rotate(200deg);
        opacity: 0
    }
}

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

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }
    to {
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }
    to {
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }
    to {
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }
    to {
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        transform: rotate(80deg);
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        transform: rotate(60deg);
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    -ms-transform-origin: top left;
    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)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.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)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown;
    -ms-transform-origin: center bottom;
    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)
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
    -ms-transform-origin: left center;
    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)
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
    -ms-transform-origin: right center;
    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)
    }
}

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

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

.slideInDown {
    animation-name: slideInDown
}

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

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

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, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

:root {
    font-size: 16px
}

:focus {
    outline: 0
}

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

body {
    line-height: 1;
    font-family: "Open Sans";
    overflow-x: hidden;
    margin-top: 103px
}

@media screen and (min-width: 992px) {
    body {
        margin-top: 0
    }
}

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
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    -moz-appearance: none
}

input[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: content-box
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical
}

audio, canvas, video {
    display: inline-block;
    max-width: 100%
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden] {
    display: none
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

a:focus {
    outline: thin dotted
}

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

img {
    border: 0;
    -ms-interpolation-mode: bicubic
}

figure {
    margin: 0
}

form {
    margin: 0
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0;
    white-space: normal
}

button, input, select, textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline
}

button, input {
    line-height: normal
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto;
    vertical-align: top
}

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

button, html, input, select, textarea {
    color: #222
}

::selection {
    background: #b3d4fc;
    text-shadow: none
}

img {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

.chromeframe {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

@font-face {
    font-family: notfound;
    src: url(../fonts/Courgette-Regular.eot);
    src: url(../fonts/Courgette-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Courgette-Regular.ttf) format("truetype"), url(../fonts/Courgette-Regular.svg#notfound) format("svg")
}

@font-face {
    font-family: nexa-light;
    src: url(../fonts/NexaLight.eot);
    src: url(../fonts/NexaLight.eot?#iefix) format("embedded-opentype"), url(../fonts/NexaLight.ttf) format("truetype"), url(../fonts/NexaLight.svg#nexa-light) format("svg")
}

@font-face {
    font-family: nexa-bold;
    src: url(../fonts/NexaBold.eot);
    src: url(../fonts/NexaBold.eot?#iefix) format("embedded-opentype"), url(../fonts/NexaBold.ttf) format("truetype"), url(../fonts/NexaBold.svg#nexa-bold) format("svg")
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

.button {
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s ease-in-out
}

.button.button-primary {
    background-color: #6b2e87;
    color: #fff
}

.button.button-primary:hover {
    background-color: #893bad
}

.button.button-md {
    padding: 12px 48px
}

.button.is-rounded {
    border-radius: 32px
}

.page-header {
    min-height: 200px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat
}

@media screen and (min-width: 992px) {
    .page-header {
        min-height: 640px
    }
}

.page-header.home-page {
    min-height: 200px
}

@media screen and (min-width: 992px) {
    .page-header.home-page {
        min-height: 800px
    }
}

.page-header .content {
    max-width: 60%
}

@media screen and (min-width: 992px) {
    .page-header .content {
        max-width: 100%
    }
}

.page-header .page-header-title {
    font-size: 1.3125em;
    color: #6b2e87;
    font-weight: 700;
    line-height: 1.2;
    font-family: nexa-bold;
    text-align: left;
    padding: 0 16px
}

@media screen and (min-width: 768px) {
    .page-header .page-header-title {
        font-size: 2.375em;
        max-width: 50%;
        padding: 0
    }
}

@media screen and (min-width: 992px) {
    .page-header .page-header-title {
        font-size: 3em
    }
}

.page-header .page-header-slogan {
    font-size: 2.375em;
    color: #282828;
    font-weight: 700;
    margin-top: 32px;
    font-family: nexa-bold;
    display: none
}

@media screen and (min-width: 992px) {
    .page-header .page-header-slogan {
        display: block
    }
}

.page-header .page-header-slogan span {
    color: #6b2e87
}

.header {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .3)
}

@media screen and (min-width: 992px) {
    .header {
        position: absolute;
        padding: 32px 0;
        background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0) 70%);
        box-shadow: none
    }
}

.header .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap
}

@media screen and (min-width: 992px) {
    .header .wrapper {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.header .logo-image {
    display: block;
    margin-bottom: 16px
}

@media screen and (min-width: 768px) {
    .header .logo-image {
        display: inline-block;
        margin-bottom: 0
    }
}

.header .logo-slogan {
    font-size: .875em;
    font-weight: 300;
    color: #282828;
    text-transform: uppercase;
    display: none;
    font-family: nexa-light
}

@media screen and (min-width: 992px) {
    .header .logo-slogan {
        display: inline-block
    }
}

@media screen and (min-width: 1200px) {
    .header .logo-slogan {
        margin-left: 16px
    }
}

.header .header-navbar {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header .header-navbar .navbar-link {
    font-size: .8125em;
    font-weight: 700;
    color: #282828;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease-in-out;
    position: relative;
    font-family: nexa-bold
}

@media screen and (min-width: 768px) {
    .header .header-navbar .navbar-link {
        font-size: 1em
    }
}

.header .header-navbar .navbar-link:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6b2e87;
    transition: .2s ease-in-out
}

.header .header-navbar .navbar-link.is-active, .header .header-navbar .navbar-link:hover {
    color: #6b2e87
}

.header .header-navbar .navbar-link.is-active:after, .header .header-navbar .navbar-link:hover:after {
    width: 100%
}

.header .header-navbar .navbar-link:not(:first-child) {
    margin-left: 16px
}

.footer {
    background-color: #6b2e87;
    padding-top: 32px;
    height: auto
}

@media screen and (min-width: 992px) {
    .footer {
        padding-top: 210px;
        height: 573px;
        background-size: initial;
        background-image: url(../img/footer-background.png);
        background-repeat: no-repeat;
        background-position: top center;
        box-sizing: border-box;
        background-color: #fff
    }
}

.footer[data-page=home] {
    background-color: #6b2e87
}

@media screen and (min-width: 992px) {
    .footer[data-page=home] {
        background-color: #f5f5f5
    }
}

.footer .footer-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 48px;
    margin-bottom: 48px
}

@media screen and (min-width: 768px) {
    .footer .footer-content {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        text-align: left
    }
}

.footer .footer-item {
    width: 100%
}

@media screen and (min-width: 768px) {
    .footer .footer-item {
        width: calc(100% / 5)
    }
}

@media screen and (max-width: 425px) {
    .footer .footer-item:not(:first-child) {
        margin-top: 32px
    }
}

.footer .footer-item.footer-item-social {
    text-align: center
}

@media screen and (min-width: 768px) {
    .footer .footer-item.footer-item-social {
        text-align: right
    }
}

.footer .footer-item .footer-title {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase
}

.footer .footer-item .footer-navbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    margin-top: 24px
}

.footer .footer-item .footer-navbar .footer-navbar-item {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    text-decoration: none;
    display: inline-block
}

.footer .footer-item .footer-navbar .footer-navbar-item:not(:first-child) {
    margin-top: 16px
}

.footer .footer-item .footer-social-item {
    font-size: 1.5em;
    color: #fff;
    text-decoration: none
}

.footer .footer-item .footer-social-item:not(:first-child) {
    margin-left: 24px
}

.footer .footer-sidebar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 32px
}

@media screen and (min-width: 768px) {
    .footer .footer-sidebar {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media screen and (min-width: 992px) {
    .footer .footer-sidebar {
        padding-bottom: 0
    }
}

.footer .footer-sidebar .footer-mail {
    display: inline-block;
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 16px
}

@media screen and (min-width: 768px) {
    .footer .footer-sidebar .footer-mail {
        margin-bottom: 0
    }
}

.footer .footer-sidebar .footer-copyright {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    text-align: center
}

@media screen and (min-width: 768px) {
    .footer .footer-sidebar .footer-copyright {
        margin-left: 86px;
        text-align: left
    }
}

.footer .footer-sidebar .footer-copyright strong {
    font-weight: 700;
    display: block;
    margin-bottom: 8px
}

.advised-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .advised-list {
        height: 700px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-top: 80px
    }
}

.advised-list .advised-item {
    width: 100%;
    background-color: #f5f5f5;
    padding: 32px 16px;
    text-align: center;
    border-radius: 30px;
    margin: 16px
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item {
        width: calc(50% - 8px);
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 5;
        background-repeat: no-repeat;
        padding: 0;
        text-align: left;
        border-radius: 0;
        margin: 0;
        padding: 0
    }
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item[data-type=companies] {
        background-image: url(../img/advised-companies-close.png);
        background-position: top right;
        left: 0;
        transition: .2s ease-in-out;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px
    }

    .advised-list .advised-item[data-type=companies]:hover {
        width: 100%;
        z-index: 10;
        background-image: url(../img/advised-companies.png)
    }

    .advised-list .advised-item[data-type=companies]:hover .advised-content .advised-more {
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        height: 0
    }

    .advised-list .advised-item[data-type=companies]:hover .advised-content .advised-long-text {
        opacity: 1;
        visibility: visible;
        height: auto
    }

    .advised-list .advised-item[data-type=companies] .advised-content {
        top: 100px;
        left: 226px
    }
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item[data-type=candidates] {
        background-image: url(../img/advised-candidates-close.png);
        background-position: bottom left;
        right: 0;
        transition: .2s ease-in-out;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px
    }

    .advised-list .advised-item[data-type=candidates]:hover {
        width: 100%;
        z-index: 10;
        background-image: url(../img/advised-candidates.png)
    }

    .advised-list .advised-item[data-type=candidates]:hover .advised-content {
        bottom: auto;
        top: 64px
    }

    .advised-list .advised-item[data-type=candidates]:hover .advised-content .advised-more {
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        height: 0
    }

    .advised-list .advised-item[data-type=candidates]:hover .advised-content .advised-long-text {
        opacity: 1;
        visibility: visible;
        height: auto
    }

    .advised-list .advised-item[data-type=candidates] .advised-content {
        left: 98px;
        bottom: 64px;
        transition: .2s ease-in-out
    }
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item .advised-content {
        max-width: 373px;
        position: absolute
    }
}

.advised-list .advised-item .advised-content .advised-title {
    color: #6b2e87;
    font-weight: 300;
    font-size: 1.25em;
    margin-bottom: 24px
}

@media screen and (min-width: 768px) {
    .advised-list .advised-item .advised-content .advised-title {
        font-size: 1.5em
    }
}

.advised-list .advised-item .advised-content .advised-title strong {
    display: block;
    font-weight: 700;
    font-size: 1.75rem;
    margin-left: -2px
}

@media screen and (min-width: 768px) {
    .advised-list .advised-item .advised-content .advised-title strong {
        font-size: 2rem
    }
}

.advised-list .advised-item .advised-content .advised-long-text, .advised-list .advised-item .advised-content .advised-short-text {
    color: #282828;
    line-height: 1.3
}

.advised-list .advised-item .advised-content .advised-short-text {
    font-size: 1.25em
}

.advised-list .advised-item .advised-content .advised-long-text {
    font-size: 1em;
    margin-top: 16px
}

@media screen and (max-width: 425px) {
    .advised-list .advised-item .advised-content .advised-long-text, .advised-list .advised-item .advised-content .advised-short-text {
        font-size: 1.125em
    }

    .advised-list .advised-item .advised-content .advised-more {
        text-decoration: underline;
        margin-top: 16px
    }
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item .advised-content .advised-short-text {
        transition: .2s ease-in-out
    }
}

@media screen and (min-width: 992px) {
    .advised-list .advised-item .advised-content .advised-long-text {
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        height: 0;
        transition: .2s ease-in-out
    }
}

@media screen and (max-width: 768px) {
    .advised-list .advised-item .advised-content .advised-long-text {
        display: none
    }
}

.advised-list .advised-item .advised-content .advised-more {
    font-size: 1em;
    color: #282828;
    font-weight: 300;
    opacity: .7;
    text-decoration: underline;
    margin-top: 16px;
    transition: .2s ease-in-out
}

.advised-list .advised-item .advised-content .button {
    margin-top: 38px
}

.advised-list .advised-item .advised-content .advised-donwload-app {
    display: -ms-flexbox;
    display: flex;
    margin-left: -6px;
    margin-top: 24px;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap
}

@media screen and (min-width: 990px) {
    .advised-list .advised-item .advised-content .advised-donwload-app {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.tempjob-numbers {
    text-align: center;
    padding: 86px 0
}

.tempjob-numbers .tempjob-numbers-title {
    font-size: 2em;
    color: #282828;
    font-weight: 700
}

.tempjob-numbers .tempjob-numbers-list {
    margin-top: 56px
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item {
    font-size: 3em;
    color: #6b2e87;
    font-weight: 700;
    width: 200px;
    height: 200px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat
}

@media screen and (min-width: 768px) {
    .tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item {
        width: 276px;
        height: 285px;
        background-size: 100%
    }
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item:not(:first-child) {
    margin-top: 24px
}

@media screen and (min-width: 768px) {
    .tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item:not(:first-child) {
        margin-left: 64px;
        margin-top: 0
    }
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item:nth-child(1) {
    background-image: url(../img/tempjob-numbers-1.png)
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item:nth-child(2) {
    background-image: url(../img/tempjob-numbers-2.png)
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item:nth-child(3) {
    background-image: url(../img/tempjob-numbers-3.png)
}

.tempjob-numbers .tempjob-numbers-list .tempjob-numbers-item .tempjob-numbers-description {
    color: #282828;
    font-size: 1rem;
    text-transform: uppercase;
    max-width: 165px;
    margin-top: 16px;
    line-height: 1.4
}

.hire-tempjob {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    text-align: center;
    padding: 0 16px
}

@media screen and (min-width: 990px) {
    .hire-tempjob {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        text-align: left;
        padding: 0
    }
}

.hire-tempjob > .content {
    -ms-flex-order: 2;
    order: 2
}

@media screen and (min-width: 992px) {
    .hire-tempjob > .content {
        -ms-flex-order: 1;
        order: 1;
        margin-left: 170px
    }
}

.hire-tempjob > .content .content-title {
    color: #6b2e87;
    font-size: 1.75em;
    font-weight: 300;
    line-height: 1.4
}

@media screen and (min-width: 992px) {
    .hire-tempjob > .content .content-title {
        font-size: 2.5em;
        line-height: 1.2
    }
}

.hire-tempjob > .content .content-title strong {
    font-weight: 700
}

.hire-tempjob > .content .button {
    margin-top: 38px
}

@media screen and (min-width: 992px) {
    .hire-tempjob > .content .button {
        margin-top: 82px
    }
}

.hire-tempjob > .picture {
    -ms-flex-order: 1;
    order: 1;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 32px
}

@media screen and (min-width: 992px) {
    .hire-tempjob > .picture {
        -ms-flex-order: 2;
        order: 2;
        margin-left: 86px;
        margin-bottom: 0;
        max-width: 640px;
        object-fit: initial
    }
}

.hire-tempjob .hire-tempjob-overlay {
    position: absolute;
    width: 590px;
    height: 590px;
    object-fit: cover;
    left: -47px;
    top: 140px;
    z-index: -1;
    display: none
}

@media screen and (min-width: 992px) {
    .hire-tempjob .hire-tempjob-overlay {
        display: block
    }
}

.tempjob-benefits {
    text-align: center;
    margin: 68px 0;
    position: relative;
    z-index: 5
}

@media screen and (min-width: 768px) {
    .tempjob-benefits {
        margin: 32px 0
    }
}

@media screen and (min-width: 768px) {
    .tempjob-benefits {
        padding: 68px 0
    }
}

.tempjob-benefits .section-title {
    font-weight: 700;
    color: #282828;
    font-size: 2.5em;
    position: relative;
    display: inline-block;
    padding-bottom: 24px
}

@media screen and (min-width: 768px) {
    .tempjob-benefits .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: -30px;
        width: 50%;
        height: 8px;
        background-color: #ebc0ff;
        border-radius: 8px
    }
}

.tempjob-benefits .benefits-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 28px;
    overflow-x: auto;
    padding-right: 16px;
    max-width: calc(100% - 32px)
}

@media screen and (min-width: 768px) {
    .tempjob-benefits .benefits-list {
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (min-width: 992px) {
    .tempjob-benefits .benefits-list {
        margin-top: 48px;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: -16px;
        max-width: 100%;
        overflow: visible;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.tempjob-benefits .benefits-list .benefits-item {
    min-width: calc(100% - 32px);
    min-height: 259px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-left: 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    transition: .4s ease-in-out;
    overflow: hidden;
    box-sizing: border-box;
    padding: 16px
}

@media screen and (min-width: 768px) {
    .tempjob-benefits .benefits-list .benefits-item {
        min-width: calc((100% / 2) - 32px);
        padding: 32px
    }
}

@media screen and (min-width: 992px) {
    .tempjob-benefits .benefits-list .benefits-item {
        width: calc((100% / 4) - 16px);
        min-width: auto;
        padding: 0
    }
}

.tempjob-benefits .benefits-list .benefits-item.is-open {
    min-height: 170px
}

.tempjob-benefits .benefits-list .benefits-item.is-open .benefits-description {
    font-size: 1em
}

.tempjob-benefits .benefits-list .benefits-item.item-active {
    min-width: 0;
    width: 0;
    margin-left: 0
}

.tempjob-benefits .benefits-list .benefits-item .benefits-description {
    font-size: 1.5em;
    font-weight: 700;
    color: #282828;
    line-height: 1.2;
    margin-top: 16px;
    transition: .4s ease-in-out
}

.tempjob-benefits .benefits-list .benefits-item .benefits-link {
    font-size: 1em;
    color: #282828;
    font-weight: 400;
    opacity: .7;
    margin-top: 16px;
    display: inline-block
}

.tempjob-benefits .benefits-list .benefits-item .benefits-text {
    display: none;
    margin-top: 16px;
    padding: 0 24px
}

@media screen and (min-width: 768px) {
    .tempjob-benefits .benefits-list .benefits-item .benefits-text {
        padding: 0
    }
}

.tempjob-benefits .benefits-list .benefits-item.benefits-item-big {
    width: 0;
    height: 0;
    text-align: left;
    padding: 16px 0;
    display: none
}

@media screen and (min-width: 992px) {
    .tempjob-benefits .benefits-list .benefits-item.benefits-item-big {
        display: -ms-flexbox;
        display: flex
    }
}

.tempjob-benefits .benefits-list .benefits-item.benefits-item-big .benefits-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box
}

.tempjob-benefits .benefits-list .benefits-item.benefits-item-big .benefits-heading .benefits-close-button {
    text-decoration: none;
    color: #282828;
    font-weight: 300
}

.tempjob-benefits .benefits-list .benefits-item.benefits-item-big .benefits-description {
    text-align: left;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box
}

.tempjob-benefits .benefits-list .benefits-item.benefits-item-big .benefits-text {
    padding: 0 32px;
    box-sizing: border-box;
    margin-top: 16px;
    color: #282828;
    line-height: 1.3;
    display: block
}

.tempjob-jobs {
    background: #f5f5f5;
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative
}

@media screen and (min-width: 768px) {
    .tempjob-jobs {
        padding-bottom: 0
    }
}

@media screen and (min-width: 990px) {
    .tempjob-jobs:after {
        content: "";
        position: absolute;
        width: 760px;
        height: 700px;
        top: -350px;
        right: -150px;
        background-image: url(../img/overlay-jobs-section.png);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100%;
        display: none
    }
}

.tempjob-jobs .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 5
}

.tempjob-jobs .wrapper img {
    display: none
}

@media screen and (min-width: 768px) {
    .tempjob-jobs .wrapper img {
        display: inline-block
    }
}

.tempjob-jobs .jobs-content {
    text-align: center
}

@media screen and (min-width: 992px) {
    .tempjob-jobs .jobs-content {
        text-align: left
    }
}

.tempjob-jobs .jobs-content .section-title {
    color: #6b2e87;
    font-weight: 700;
    font-size: 2.5em
}

.tempjob-jobs .jobs-content .jobs-list {
    margin-top: 48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    padding: 0 32px
}

@media screen and (min-width: 992px) {
    .tempjob-jobs .jobs-content .jobs-list {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0
    }
}

.tempjob-jobs .jobs-content .jobs-list .jobs-item {
    color: #282828;
    font-size: 1.375em;
    font-weight: 300;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 38px;
    text-align: left
}

@media screen and (min-width: 992px) {
    .tempjob-jobs .jobs-content .jobs-list .jobs-item {
        width: 50%
    }
}

.tempjob-jobs .jobs-content .jobs-list .jobs-item:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #6b2e87;
    margin-right: 8px
}

.tempjob-jobs .button {
    padding: 16px 18px
}

.tempjob-jobs .overlay-jobs-section {
    position: absolute;
    width: 760px;
    height: 700px;
    top: -337px;
    right: -150px;
    display: none
}

@media screen and (min-width: 992px) {
    .tempjob-jobs .overlay-jobs-section {
        display: block
    }
}

.tempjob-information {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    padding-top: 0;
    padding-bottom: 32px
}

@media screen and (min-width: 768px) {
    .tempjob-information {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        padding: 82px 0
    }
}

.tempjob-information .tempjob-information-picture {
    max-width: 100%;
    height: auto;
    object-fit: cover
}

@media screen and (min-width: 768px) {
    .tempjob-information .tempjob-information-picture {
        max-width: 50%;
        object-fit: initial
    }
}

.tempjob-information .tempjob-information-content {
    max-width: 100%;
    text-align: center;
    padding: 0 16px;
    margin-top: 24px
}

@media screen and (min-width: 768px) {
    .tempjob-information .tempjob-information-content {
        max-width: 470px;
        margin-left: 86px;
        text-align: left;
        padding: 0;
        margin-top: 0
    }
}

.tempjob-information .content-title {
    color: #6b2e87;
    font-size: 1.875em;
    font-weight: 300;
    line-height: 1.3
}

@media screen and (min-width: 768px) {
    .tempjob-information .content-title {
        max-width: 300px;
        font-size: 2.5em
    }
}

.tempjob-information .content-description {
    color: #282828;
    font-size: 1.25em;
    font-weight: 300;
    margin-top: 32px;
    line-height: 1.3
}

@media screen and (min-width: 768px) {
    .tempjob-information .content-description {
        font-size: 1.5em
    }
}

.tempjob-information .content-description strong {
    font-weight: 700
}

.tempjob-plans {
    background-color: #f5f5f5;
    padding: 80px 0
}

.tempjob-plans .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center
}

.tempjob-plans .section-title {
    font-size: 2.5em;
    color: #6b2e87;
    font-weight: 700;
    text-align: center
}

.tempjob-plans .plans-actions {
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #6b2e87;
    border-radius: 4px;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-top: 48px
}

.tempjob-plans .plans-actions .plans-duration {
    padding: 12px 0;
    width: 85px;
    text-align: center;
    color: #6b2e87;
    transition: color .2s ease-in-out;
    font-weight: 300;
    font-size: 1em;
    cursor: pointer;
    position: relative;
    z-index: 5
}

.tempjob-plans .plans-actions .plans-duration.is-selected {
    color: #fff
}

.tempjob-plans .plans-actions .plans-duration-overlay {
    height: 40px;
    background: #6b2e87;
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    border-radius: 4px;
    transition: .2s ease-in-out
}

.tempjob-plans .plans-actions .plans-duration-label {
    position: absolute;
    display: block;
    font-size: .875em;
    color: #282828;
    opacity: .7;
    left: 50%;
    bottom: -25px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto
}

@media screen and (min-width: 768px) {
    .tempjob-plans .plans-actions .plans-duration-label {
        left: 100%;
        bottom: auto;
        margin-left: 16px;
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: 100px
    }
}

.tempjob-plans .plans-list {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    margin-left: -16px;
    margin-top: 72px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-top: 52px
    }
}

.tempjob-plans .plans-list .plans-item {
    width: 100%;
    box-shadow: 0 2px 8px 0 rgba(107, 46, 135, .16);
    padding: 16px;
    margin-left: 16px;
    border-radius: 16px;
    border: 2px solid transparent;
    box-sizing: border-box;
    text-align: center;
    margin-top: 16px;
    transition: .2s ease-in-out
}

@media screen and (min-width: 768px) {
    .tempjob-plans .plans-list .plans-item {
        width: calc((100% / 2) - 16px);
        padding: 40px 8px
    }
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item {
        width: calc((100% / 4) - 16px);
        margin-top: 0
    }
}

.tempjob-plans .plans-list .plans-item:hover {
    border-color: #6b2e87
}

.tempjob-plans .plans-list .plans-item:hover .plans-action {
    background-color: #2db336;
    color: #fff
}

.tempjob-plans .plans-list .plans-item.is-highlighted {
    position: relative;
    margin-top: 32px;
    padding-top: 32px
}

@media screen and (min-width: 768px) {
    .tempjob-plans .plans-list .plans-item.is-highlighted {
        padding-top: 40px
    }
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item.is-highlighted {
        margin-top: 0
    }
}

.tempjob-plans .plans-list .plans-item.is-highlighted:before {
    content: attr(data-label);
    position: absolute;
    top: -20px;
    left: 15px;
    background-color: #e89d48;
    border-radius: 9999px;
    padding: 12px 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    font-size: 1em
}

.tempjob-plans .plans-list .plans-item .plans-title {
    font-size: 1em;
    color: #282828;
    text-transform: uppercase;
    font-weight: 300
}

.tempjob-plans .plans-list .plans-item .plans-price {
    color: #6b2e87;
    font-size: 1.125em;
    line-height: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px;
    font-weight: 300
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item .plans-price {
        font-size: 1.5em
    }
}

.tempjob-plans .plans-list .plans-item .plans-price .plans-currency {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-bottom: 5px
}

.tempjob-plans .plans-list .plans-item .plans-price .plans-value {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item .plans-price .plans-value {
        font-size: 3rem
    }
}

.tempjob-plans .plans-list .plans-item .plans-price .plans-cents {
    margin-top: 4px
}

.tempjob-plans .plans-list .plans-item .plans-economy {
    color: #999;
    font-size: 1 pxem;
    font-weight: 300;
    margin-top: 8px
}

.tempjob-plans .plans-list .plans-item .plans-posts {
    margin-top: 24px;
    font-size: 1.25em;
    color: #282828;
    font-weight: 300;
    line-height: 1.3
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item .plans-posts {
        margin-top: 48px;
        font-size: 1.5em
    }
}

.tempjob-plans .plans-list .plans-item .plans-posts strong {
    font-weight: 700;
    display: block;
    font-size: 1.5rem
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item .plans-posts strong {
        font-size: 1.75rem
    }
}

.tempjob-plans .plans-list .plans-item .plans-action {
    border: 2px solid #2db336;
    text-decoration: none;
    text-transform: uppercase;
    color: #2db336;
    font-size: 1em;
    font-weight: 700;
    border-radius: 32px;
    width: 178px;
    display: inline-block;
    padding: 16px;
    margin-top: 24px;
    transition: .2s ease-in-out
}

@media screen and (min-width: 992px) {
    .tempjob-plans .plans-list .plans-item .plans-action {
        margin-top: 48px
    }
}

.tempjob-plans .plans-footer {
    margin-top: 32px;
    font-weight: 300;
    color: #282828;
    text-align: center;
    padding: 0 32px
}

@media screen and (min-width: 768px) {
    .tempjob-plans .plans-footer {
        padding: 0
    }
}

.tempjob-plans .plans-footer strong {
    font-weight: 700
}

.tempjob-plans .plans-footer a {
    color: #6b2e87;
    font-weight: 700
}

.about-heading {
    text-align: center;
    padding: 32px 16px;
    font-size: 1.5em;
    color: #6b2e87;
    line-height: 1.3
}

@media screen and (min-width: 768px) {
    .about-heading {
        font-size: 2.5em;
        padding: 68px 0
    }
}

.section-about-us {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f2f2f2;
    position: relative;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    padding-bottom: 24px
}

@media screen and (min-width: 768px) {
    .section-about-us {
        padding: 32px 16px;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

@media screen and (min-width: 992px) {
    .section-about-us {
        padding: 0
    }
}

.section-about-us .section-content {
    max-width: 100%;
    text-align: center;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 16px
}

@media screen and (min-width: 768px) {
    .section-about-us .section-content {
        max-width: 500px;
        margin-right: 56px;
        text-align: right;
        margin-top: 0;
        -ms-flex-order: 1;
        order: 1
    }
}

.section-about-us .section-content .about-description {
    font-size: 1.125em;
    color: #282828;
    font-weight: 300;
    line-height: 1.3;
    padding: 0 24px
}

@media screen and (min-width: 768px) {
    .section-about-us .section-content .about-description {
        font-size: 1.375em;
        padding: 0
    }
}

.section-about-us .section-content .about-slogan {
    color: #6b2e87;
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 56px;
    display: block;
    margin-top: 24px;
    line-height: 35px
}

@media screen and (min-width: 768px) {
    .section-about-us .section-content .about-slogan {
        font-size: 1.75em
    }
}

.section-about-us .section-content .about-slogan strong {
    font-weight: 700
}

.section-about-us .about-picture {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    -ms-flex-order: 1;
    order: 1
}

@media screen and (min-width: 768px) {
    .section-about-us .about-picture {
        max-width: 50%;
        -ms-flex-order: 2;
        order: 2
    }
}

.section-about-us .about-section-overlay {
    width: 325px;
    height: 325px;
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: -162px;
    display: none
}

@media screen and (min-width: 992px) {
    .section-about-us .about-section-overlay {
        display: block
    }
}

.section-mission {
    padding: 32px 24px
}

@media screen and (min-width: 768px) {
    .section-mission {
        padding: 82px 0
    }
}

.section-mission .mission-content {
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.25em;
    color: #282828;
    font-weight: 300;
    text-align: center;
    line-height: 1.3
}

@media screen and (min-width: 768px) {
    .section-mission .mission-content {
        font-size: 1.375em;
        max-width: 700px;
        text-align: left
    }
}

.section-mission .mission-content strong {
    font-weight: 700;
    background-color: #ebc0ff
}

.about-text {
    position: relative;
    border-top: 3px solid #6b2e87;
    padding: 24px 0 0;
    margin: 0 24px
}

@media screen and (min-width: 992px) {
    .about-text {
        margin: 0;
        border: none
    }
}

.about-text .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    padding: 0 0 32px
}

@media screen and (min-width: 992px) {
    .about-text .wrapper {
        padding: 46px 0 128px;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.about-text .content-left {
    color: #282828;
    font-size: 1em;
    font-weight: 300;
    max-width: 100%;
    text-align: center;
    line-height: 1.4
}

@media screen and (min-width: 992px) {
    .about-text .content-left {
        max-width: 50%;
        text-align: left
    }
}

.about-text .content-right {
    color: #6b2e87;
    font-size: 1.375em;
    font-weight: 300;
    max-width: 100%;
    text-align: center;
    margin-top: 24px;
    line-height: 1.3
}

@media screen and (min-width: 992px) {
    .about-text .content-right {
        max-width: 50%;
        text-align: right;
        margin-left: 106px;
        font-size: 2em;
        margin-top: 0
    }
}

.about-text .content-right strong {
    font-weight: 700
}

.about-text .about-text-overlay {
    position: absolute;
    width: 485px;
    height: 448px;
    object-fit: cover;
    top: 45px;
    right: -138px;
    display: none;
    z-index: -1
}

@media screen and (min-width: 992px) {
    .about-text .about-text-overlay {
        display: block
    }
}

.tempjob-values {
    margin-bottom: 48px;
    margin-top: 48px
}

@media screen and (min-width: 992px) {
    .tempjob-values {
        padding-bottom: 128px;
        margin-bottom: 0
    }
}

.tempjob-values .section-title {
    font-size: 2.5em;
    color: #6b2e87;
    font-weight: 700;
    text-align: center
}

.tempjob-values .values-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 16px
}

@media screen and (min-width: 768px) {
    .tempjob-values .values-list {
        margin-top: 16px;
        margin-left: -32px;
        padding-right: 0
    }
}

.tempjob-values .values-list .values-item {
    width: calc((100% / 2) - 16px);
    height: 150px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 16px;
    margin-top: 32px;
    padding: 0 16px;
    box-sizing: border-box
}

@media screen and (min-width: 768px) {
    .tempjob-values .values-list .values-item {
        width: calc((100% / 3) - 16px);
        padding: 0;
        height: 185px
    }
}

.tempjob-values .values-list .values-item .values-title {
    font-size: 1em;
    font-weight: 700;
    margin-top: 16px;
    word-break: break-word
}

@media screen and (min-width: 768px) {
    .tempjob-values .values-list .values-item .values-title {
        font-size: 1.25em;
        word-break: initial
    }
}

.tempjob-testimony {
    margin-bottom: 82px;
    display: none
}

@media screen and (min-width: 992px) {
    .tempjob-testimony {
        display: block
    }
}

.tempjob-testimony .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.tempjob-testimony .testimony-content {
    width: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 48px;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent
}

.tempjob-testimony .testimony-content::-webkit-scrollbar {
    width: 1px
}

.tempjob-testimony .testimony-content::-webkit-scrollbar-track {
    background: 0 0
}

.tempjob-testimony .testimony-content::-webkit-scrollbar-thumb {
    background-color: transparent
}

.tempjob-testimony .testimony-content .testimony-content-item {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%
}

.tempjob-testimony .testimony-content .testimony-content-item span {
    margin: 0 16px
}

.tempjob-testimony .testimony-content .testimony-content-item:after, .tempjob-testimony .testimony-content .testimony-content-item:before {
    content: '"';
    font-size: 40px;
    color: #6b2e87;
    font-weight: 700;
    line-height: 1
}

.tempjob-testimony .testimony-content .testimony-content-item:before {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.tempjob-testimony .testimony-content .testimony-content-item:after {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.tempjob-testimony .testimony-owner {
    width: 50%;
    height: 337px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-pack: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 0 58px;
    position: relative
}

.tempjob-testimony .testimony-owner:after {
    content: "";
    position: absolute;
    top: 0;
    right: -200%;
    width: 200%;
    height: 100%;
    background-color: #f5f5f5
}

.tempjob-testimony .testimony-owner .testimony-owner-list {
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent
}

.tempjob-testimony .testimony-owner .testimony-owner-list::-webkit-scrollbar {
    width: 1px
}

.tempjob-testimony .testimony-owner .testimony-owner-list::-webkit-scrollbar-track {
    background: 0 0
}

.tempjob-testimony .testimony-owner .testimony-owner-list::-webkit-scrollbar-thumb {
    background-color: transparent
}

.tempjob-testimony .testimony-owner .testimony-owner-list .testimony-owner-item {
    min-width: 100%
}

.tempjob-testimony .testimony-owner .testimony-owner-list .testimony-owner-item .owner-name {
    font-size: 24px;
    font-weight: 300
}

.tempjob-testimony .testimony-owner .testimony-owner-list .testimony-owner-item .owner-company {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase
}

.tempjob-testimony .testimony-owner .testimony-nav {
    margin-top: 38px
}

.tempjob-testimony .testimony-owner .testimony-nav .testimony-nav-item {
    background: 0 0;
    border: none;
    box-shadow: none;
    cursor: pointer;
    font-size: 24px
}

.tempjob-testimony .testimony-owner .testimony-nav .testimony-nav-item:not(:first-child) {
    margin-left: 16px
}

.tempjob-solutions {
    margin-top: 58px
}

.tempjob-solutions .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center
}

.tempjob-solutions .solutions-tabs {
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid rgba(153, 153, 153, .3);
    position: relative;
    width: 100%
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-tabs {
        width: auto
    }
}

.tempjob-solutions .solutions-tabs .tabs-item {
    width: 50%;
    text-align: center;
    cursor: pointer;
    padding: 24px 0;
    font-weight: 700;
    transition: color .2s ease-in-out
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-tabs .tabs-item {
        width: 276px
    }
}

.tempjob-solutions .solutions-tabs .tabs-item.is-selected {
    color: #6b2e87
}

.tempjob-solutions .solutions-tabs .tabs-selected {
    width: 50%;
    height: 2px;
    background-color: #6b2e87;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .4s ease-in-out
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-tabs .tabs-selected {
        width: 276px
    }
}

.tempjob-solutions .solutions-tabs .tabs-selected[tab-selected=empresas] {
    left: 0
}

.tempjob-solutions .solutions-tabs .tabs-selected[tab-selected=candidatos] {
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-tabs .tabs-selected[tab-selected=candidatos] {
        -ms-transform: translateX(276px);
        transform: translateX(276px)
    }
}

.tempjob-solutions .solutions-content {
    margin-top: 32px;
    margin-bottom: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content {
        margin-top: 82px;
        margin-bottom: 82px
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-title {
    color: #6b2e87;
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-title {
        font-size: 2.5em;
        max-width: 80%;
        padding: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content {
    margin-top: 48px;
    margin-bottom: 48px
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content {
        margin-top: 82px;
        margin-bottom: 82px
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item {
        width: auto;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item:not(:first-child) {
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item:not(:first-child) {
        margin-top: 128px
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=left].no-image {
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=left].no-image .tab-item-text {
        margin-left: 58px;
        margin-right: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=left] .tab-item-text {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 16px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=left] .tab-item-text {
        margin-right: 98px;
        margin-bottom: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=left] .tab-item-picture {
    -ms-flex-order: 2;
    order: 2
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=right].no-image {
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=right].no-image .tab-item-text {
        margin-right: 48px;
        margin-left: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=right] .tab-item-text {
    -ms-flex-order: 2;
    order: 2;
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=right] .tab-item-text {
        margin-left: 98px;
        margin-top: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item[content-alignment=right] .tab-item-picture {
    -ms-flex-order: 1;
    order: 1
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-text {
    padding: 0 24px;
    text-align: center
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-text {
        max-width: 50%;
        padding: 0;
        text-align: left
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-text .tab-item-title {
    color: #6b2e87;
    font-size: 2em;
    font-weight: 300;
    max-width: 470px
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-text .tab-item-description {
    margin-top: 24px;
    color: #282828;
    font-size: 1em;
    font-weight: 300;
    line-height: 2;
    max-width: 470px
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-picture {
    max-width: 100%;
    height: auto;
    object-fit: cover
}

.tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-picture.hide-mobile {
    display: none
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-content-item .tab-item-picture.hide-mobile {
        display: inline-block
    }
}

.tempjob-solutions .solutions-content .solutions-item .solutions-call-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 32px 16px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .solutions-call-bar {
        height: 365px;
        position: relative;
        padding: 0
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .solutions-call-bar:before {
        content: "";
        position: absolute;
        width: 200vw;
        height: 100%;
        top: 0;
        left: -100%;
        z-index: -1
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .solutions-call-bar:after {
        content: "";
        position: absolute;
        width: 100vw;
        height: 100%;
        top: 0;
        left: -200px;
        background-image: url(../img/empresas-junto.png);
        background-repeat: no-repeat;
        background-position: top center;
        z-index:-1 !important;
    }
}

.tempjob-solutions .solutions-content .solutions-item .solutions-call-bar .call-bar-title {
    font-size: 1.75em;
    font-weight: 700;
    position: relative;
    z-index: 5
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-content .solutions-item .solutions-call-bar .call-bar-title {
        font-size: 2.5em
    }
}

.tempjob-solutions .solutions-content .solutions-item .solutions-call-bar .button {
    margin-top: 24px;
    width: 90%;
    height: 56px;
    text-align: center;
    background-color: #fff;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1em;
    color: #6b2e87;
    line-height: 56px;
    position: relative;
    z-index: 5
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-content .solutions-item .solutions-call-bar .button {
        width: 372px;
        margin-top: 56px
    }
}

.tempjob-solutions .solutions-content .solutions-item .solutions-call-bar .help-text {
    margin-top: 16px;
    color: #ebc0ff;
    font-size: 1em;
    font-weight: 300;
    position: relative;
    z-index: 5
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    position: relative;
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider {
        margin-top: 162px;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }

    .tempjob-solutions .solutions-content .solutions-item .tab-slider:before {
        content: "";
        position: absolute;
        width: 568px;
        height: 568px;
        top: -288px;
        left: -200px;
        background-image: url(../img/overlay-register-section.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
        z-index: -2
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image {
    max-width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image {
        max-width: 70%
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image::-webkit-scrollbar {
    width: 1px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image::-webkit-scrollbar-track {
    background: 0 0
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image::-webkit-scrollbar-thumb {
    background-color: transparent
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image .slider-image-item {
    min-width: 100%
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-image img {
    max-width: 100%
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-title {
    font-weight: 700;
    font-size: 40px;
    color: #6b2e87;
    margin-left: 0;
    text-align: center
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-title {
        margin-left: 44px;
        text-align: left
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list {
    margin-top: 32px;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list::-webkit-scrollbar {
    width: 1px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list::-webkit-scrollbar-track {
    background: 0 0
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list::-webkit-scrollbar-thumb {
    background-color: transparent
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list .slider-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: 100%;
    padding-bottom: 6px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list .slider-item .slider-step {
    font-size: 48px;
    font-weight: 700;
    color: #6b2e87;
    line-height: 1;
    display: none
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list .slider-item .slider-step {
        display: inline-block
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list .slider-item .slider-text {
    font-size: 16px;
    font-weight: 300;
    color: #282828;
    line-height: 1.5;
    word-break: break-word;
    text-align: center;
    padding: 0 16px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-list .slider-item .slider-text {
        font-size: 22px;
        margin-left: 16px;
        text-align: left;
        padding: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav-buttons {
        display: none
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav-buttons .slider-nav-button {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #6b2e87;
    font-size: 30px;
    line-height: 40px;
    border-radius: 9999px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav-buttons .slider-nav-button + .slider-nav-button {
    margin-left: 16px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav {
    display: none;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 27px;
    margin-top: 16px;
    position: relative
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav {
        display: -ms-flexbox;
        display: flex;
        margin-left: 44px;
        margin-top: 42px
    }
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav .slider-nav-item {
    width: 48px;
    height: 4px;
    background-color: #999;
    cursor: pointer
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav .slider-nav-item:not(:first-child) {
    margin-left: 8px
}

.tempjob-solutions .solutions-content .solutions-item .tab-slider .slider-content .slider-nav .slider-nav-selected {
    position: absolute;
    width: 48px;
    height: 4px;
    top: 0;
    left: 0;
    background-color: #6b2e87;
    transition: .2s ease-in-out
}

.tempjob-solutions .solutions-content .solutions-item#empresas .solutions-call-bar {
    background-color: #6b2e87
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#empresas .solutions-call-bar:after {
        background-image: url(../img/empresas-junto.png)
    }
}

@media screen and (min-width: 768px) {
    .tempjob-solutions .solutions-content .solutions-item#empresas .solutions-call-bar:before {
        background-color: #6b2e87
    }
}

.tempjob-solutions .solutions-content .solutions-item#empresas .solutions-call-bar .call-bar-title {
    color: #fff
}

.tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav {
    margin-left: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav {
        margin-left: 44px
    }
}

.tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav .slider-nav-item {
    width: 36px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav .slider-nav-item {
        width: 48px
    }
}

.tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav .slider-nav-selected {
    width: 36px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#empresas .tab-slider .slider-nav .slider-nav-selected {
        width: 48px
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item:nth-child(1):after {
        content: "";
        position: absolute;
        width: 956px;
        height: 883px;
        top: 134px;
        right: -600px;
        background-image: url(../img/tab-candidatos-item-1-overlay.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: -1
    }

    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item:nth-child(4):before {
        content: "";
        position: absolute;
        width: 956px;
        height: 883px;
        bottom: 131px;
        left: -568px;
        background-image: url(../img/tab-candidatos-item-4-overlay.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: -1
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar:before {
    background-color: #f5f5f5
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar:after {
        background-image: url(../img/candidatos-junto.png)
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar .call-bar-title {
    color: #282828;
    font-weight: 300;
    text-align: center;
    line-height: 1.4
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar .call-bar-title strong {
    display: block;
    font-weight: 700
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar .download-links {
    margin-top: 48px
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .solutions-call-bar .download-links .download-item:not(:first-child) {
    margin-left: 16px
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item[content-alignment=right] .tab-item-text {
    -ms-flex-order: 1;
    order: 1
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item[content-alignment=right] .tab-item-text {
        -ms-flex-order: 2;
        order: 2
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item[content-alignment=right] .tab-item-picture {
    -ms-flex-order: 2;
    order: 2
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item[content-alignment=right] .tab-item-picture {
        -ms-flex-order: 1;
        order: 1
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item .tab-item-picture {
    max-width: 50%
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item .tab-item-picture {
        max-width: 100%
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .tab-content-item .tab-item-picture.tab-item-picture-mt {
    max-width: 100%;
    margin-top: 16px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-slider:before {
        left: 0
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-slider .slider-image {
        max-width: 70%;
        margin-right: 0
    }
}

.tempjob-solutions .solutions-content .solutions-item#candidatos .tab-slider .slider-image img {
    max-width: 70%
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .solutions-item#candidatos .tab-slider .slider-image img {
        max-width: 100%
    }
}

.tempjob-solutions .solutions-content .tab-slide-content {
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content {
        margin-top: 128px
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section .slide-content-left {
    -ms-flex-order: 2;
    order: 2;
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section .slide-content-left {
        padding-top: 142px;
        margin-right: 98px;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 0
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section .slide-content-left .slide-content-item {
        max-width: 470px
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section .slide-content-right {
    -ms-flex-order: 1;
    order: 1
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section .slide-content-right {
        -ms-flex-order: 2;
        order: 2
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 32px 0
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section {
        margin: 128px 0
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section .slide-content-right {
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section .slide-content-right {
        margin-left: 98px;
        padding-top: 142px;
        margin-top: 0
    }
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section .slide-content-right .slide-content-item {
        max-width: 470px
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section, .tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section {
    -ms-flex-flow: column wrap;
    flex-flow: column wrap
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-first-section, .tempjob-solutions .solutions-content .tab-slide-content .slide-content-second-section {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-item {
    text-align: center;
    padding: 0 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-item {
        text-align: left;
        padding: 0
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-item + .slide-content-item {
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-item + .slide-content-item {
        margin-top: 300px
    }
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-item .tab-item-title {
    color: #6b2e87;
    font-size: 2em;
    font-weight: 300
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-item .tab-item-description {
    margin-top: 24px;
    color: #282828;
    font-size: 1em;
    font-weight: 300;
    line-height: 2
}

.tempjob-solutions .solutions-content .tab-slide-content .slide-content-picture {
    max-width: 100%;
    height: auto
}

.tempjob-solutions .solutions-content .solutions-item .register-link{
    text-decoration: none;
    font-weight: bold;
    color: #6b2e87;
}

@media screen and (min-width: 992px) {
    .tempjob-solutions .solutions-content .tab-slide-content .slide-content-picture {
        position: -webkit-sticky;
        position: sticky;
        top: 24px
    }
}

.page-contact {
    padding: 32px 0
}

@media screen and (min-width: 768px) {
    .page-contact {
        padding: 128px 0
    }
}

.page-contact .contact-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap
}

@media screen and (min-width: 768px) {
    .page-contact .contact-section {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.page-contact .contact-section:not(:last-child) {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 2px solid #ebc0ff
}

.page-contact .contact-section .contact-item {
    width: 100%;
    text-align: center;
    padding: 0 32px;
    box-sizing: border-box
}

@media screen and (min-width: 768px) {
    .page-contact .contact-section .contact-item {
        width: calc((100% / 3) - 48px);
        text-align: left;
        padding: 0
    }
}

.page-contact .contact-section .contact-item:not(:first-child) {
    margin-top: 48px
}

@media screen and (min-width: 768px) {
    .page-contact .contact-section .contact-item:not(:first-child) {
        margin-left: 48px;
        margin-top: 0
    }
}

.page-contact .contact-section .contact-item .contact-title {
    font-size: 2em;
    color: #6b2e87;
    font-weight: 700;
    margin-top: 16px
}

.page-contact .contact-section .contact-item .contact-description {
    font-size: 1em;
    color: #282828;
    font-weight: 300;
    line-height: 1.3;
    margin-top: 16px
}

.page-contact .contact-section .contact-item .contact-link {
    font-size: 1em;
    color: #6b2e87;
    text-decoration: none;
    margin-top: 24px;
    display: inline-block
}

.page-contact .contact-section .contact-item .contact-link + .contact-link {
    margin-top: 12px
}

.page-contact .contact-section .contact-item .social-link {
    font-size: 28px;
    color: #6b2e87;
    text-decoration: none;
    margin-top: 24px;
    display: inline-block;
    margin-right: 16px
}


.cookie-popup {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgb(107 46 135);
    z-index: 100000;
    padding: 20px 0;
    font-family: Poppins,sans-serif;
}
.cookie-popup__content {
    margin: 0 auto;
    line-height: 20px;
    position: relative;
    max-width: 1310px;
    width: 100%;
    padding: 8px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cookie-popup__info {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
}
.cookie-popup__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cookie-popup__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
}
.cookie-popup__text {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    float: left;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cookie-popup__text a{
    color:#fff !Important;
}
#btn-accept-cookies{
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out , background-color .15s ease-in-out , border-color .15s ease-in-out , -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out , background-color .15s ease-in-out , border-color .15s ease-in-out , -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out , background-color .15s ease-in-out , border-color .15s ease-in-out , box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out , background-color .15s ease-in-out , border-color .15s ease-in-out , box-shadow .15s ease-in-out , -webkit-box-shadow .15s ease-in-out;
}
@media only screen and (max-width: 600px){ 
    #container-visao{ 
        margin-top:15px !important; 
    } 
    .header-navbar{ 
        text-align: center; 
    } 
}