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

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-30px)
    }
    60% {
        transform: translateY(-15px)
    }
}

.bounce {
    animation-name: bounce
}

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

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    to {
        transform: scale(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes shake {
    0%,
    to {
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px)
    }
}

.shake {
    animation-name: shake
}

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

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

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

.tada {
    animation-name: tada
}

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

.wobble {
    animation-name: wobble
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        transform: scale(1.05)
    }
    70% {
        transform: scale(.9)
    }
    to {
        transform: scale(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(30px)
    }
    80% {
        transform: translateY(-10px)
    }
    to {
        transform: translateY(0)
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(30px)
    }
    80% {
        transform: translateX(-10px)
    }
    to {
        transform: translateX(0)
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(-30px)
    }
    80% {
        transform: translateX(10px)
    }
    to {
        transform: translateX(0)
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(-30px)
    }
    80% {
        transform: translateY(10px)
    }
    to {
        transform: translateY(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    0% {
        transform: scale(1)
    }
    25% {
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        transform: scale(1.1)
    }
    to {
        opacity: 0;
        transform: scale(.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        transform: translateY(-20px)
    }
    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        transform: translateX(20px)
    }
    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        transform: translateX(-20px)
    }
    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        transform: translateY(20px)
    }
    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

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

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

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

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

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

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

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

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

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

.fadeInUpBig {
    animation-name: fadeInUpBig
}

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

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(20px)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

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

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

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

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(20px)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

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

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

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

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
    }
    0%,
    40% {
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
    }
    80%,
    to {
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
    }
}

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

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        transform: perspective(400px) rotateX(10deg)
    }
    to {
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

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

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        transform: perspective(400px) rotateY(10deg)
    }
    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

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

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        transform: translateX(0) skewX(-15deg);
        opacity: 1
    }
    to {
        transform: translateX(0) skewX(0);
        opacity: 1
    }
}

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

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0) skewX(0);
        opacity: 1
    }
    to {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

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

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

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-90deg);
        opacity: 0
    }
    0%,
    to {
        transform-origin: left bottom
    }
    to {
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate(90deg);
        opacity: 0
    }
    0%,
    to {
        transform-origin: right bottom
    }
    to {
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate(90deg);
        opacity: 0
    }
    0%,
    to {
        transform-origin: left bottom
    }
    to {
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0
    }
    0%,
    to {
        transform-origin: right bottom
    }
    to {
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

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

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform: rotate(0);
        opacity: 1
    }
    0%,
    to {
        transform-origin: left bottom
    }
    to {
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform: rotate(0);
        opacity: 1
    }
    0%,
    to {
        transform-origin: right bottom
    }
    to {
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform: rotate(0);
        opacity: 1
    }
    0%,
    to {
        transform-origin: left bottom
    }
    to {
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform: rotate(0);
        opacity: 1
    }
    0%,
    to {
        transform-origin: right bottom
    }
    to {
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    to {
        transform: translateY(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    to {
        transform: translateX(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    to {
        transform: translateX(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

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

.hinge {
    animation-name: hinge
}

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

.rollIn {
    animation-name: rollIn
}

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

.rollOut {
    animation-name: rollOut
}

@keyframes ellipse1 {
    0% {
        transform: translate(-50%, 55%) scale(.8);
        opacity: 0
    }
    20% {
        transform: translate(-50%, 55%) scale(.9);
        opacity: 1
    }
    to {
        transform: translate(-50%, 55%) scale(1);
        opacity: 0
    }
}

@keyframes ellipse2 {
    0% {
        transform: scale(.8);
        opacity: 0
    }
    20% {
        transform: scale(.9);
        opacity: 1
    }
    to {
        transform: scale(1);
        opacity: 0
    }
}

@keyframes ellipse3 {
    0% {
        transform: translate(50%, -50%) scale(.8);
        opacity: 0
    }
    20% {
        transform: translate(50%, -50%) scale(.9);
        opacity: 1
    }
    to {
        transform: translate(50%, -50%) scale(1);
        opacity: 0
    }
}

@keyframes ellipse4 {
    0% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }
    20% {
        transform: translate(-50%, -50%) scale(.9);
        opacity: 1
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg) scale(1)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes rotate360rv {
    0% {
        transform: rotate(0deg) scale(1)
    }
    to {
        transform: rotate(-1turn)
    }
}

@keyframes playvideo {
    0% {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(1.3);
        opacity: 0
    }
}

@keyframes loader {
    0% {
        transform: scaleY(.1)
    }
    50% {
        transform: scaleY(1);
        background: #d74d29
    }
    to {
        transform: scaleY(.1);
        background: rgba(0, 0, 0, 0)
    }
}

@keyframes to-left {
    0%,
    to {
        transform: translateX(0);
        transition: all .3s ease
    }
    50% {
        transform: translateX(-15px);
        transition: all .3s ease
    }
}

@keyframes to-right {
    0%,
    to {
        transform: translateX(0);
        transition: all .3s ease
    }
    50% {
        transform: translateX(15px);
        transition: all .3s ease
    }
}

@keyframes to-top {
    0%,
    to {
        transform: translateY(0);
        transition: all .3s ease
    }
    50% {
        transform: translateY(-15px);
        transition: all .3s ease
    }
}

@keyframes to-bottom {
    0%,
    to {
        transform: translateY(0);
        transition: all .3s ease
    }
    50% {
        transform: translateY(15px);
        transition: all .3s ease
    }
}

@keyframes ani-1 {
    0% {
        transform: translate(0) rotate(0deg)
    }
    20% {
        transform: translate(73px, -1px) rotate(36deg)
    }
    40% {
        transform: translate(141px, 72px) rotate(72deg)
    }
    60% {
        transform: translate(83px, 122px) rotate(108deg)
    }
    80% {
        transform: translate(-40px, 72px) rotate(144deg)
    }
    to {
        transform: translate(0) rotate(0deg)
    }
}

@keyframes ani-2 {
    0%,
    to {
        transform: translateX(0) translateY(0) rotate(0)
    }
    25%,
    75% {
        transform: translateX(15px) translateY(20px) rotate(10deg)
    }
    50% {
        transform: translateX(60px) translateY(35px) rotate(15deg)
    }
}

@keyframes tf-buzz-out {
    10% {
        transform: translateY(3%) rotate(2deg)
    }
    20% {
        transform: translateY(-3%) rotate(-2deg)
    }
    30% {
        transform: translateY(3%) rotate(2deg)
    }
    40% {
        transform: translateY(-3%) rotate(-2deg)
    }
    50% {
        transform: translateY(2%) rotate(1deg)
    }
    60% {
        transform: translateY(-2%) rotate(-1deg)
    }
    70% {
        transform: translateY(2%) rotate(1deg)
    }
    80% {
        transform: translateY(-2%) rotate(-1deg)
    }
    90% {
        transform: translateY(1%) rotate(0)
    }
    to {
        transform: translateY(-1%) rotate(0)
    }
}

@keyframes preload {
    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)
    }
}

.animationtext {
    overflow: hidden
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left
}

.cd-words-wrapper .item-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: inherit
}

.cd-words-wrapper .item-text.is-visible {
    position: relative
}

.no-js .cd-words-wrapper .item-text {
    opacity: 0
}

.no-js .cd-words-wrapper .item-text.is-visible {
    opacity: 1
}

.cd-words-wrapper .item-text,
.cd-words-wrapper .item-text i {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #150d22;
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0);
    background-image: linear-gradient(274.33deg, #FE8C45 2.74%, #CA2826 103%)
}

.animationtext.rotate-1 .cd-words-wrapper {
    perspective: 300px
}

.animationtext.rotate-1 .item-text {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: rotateX(180deg)
}

.animationtext.rotate-1 .item-text.is-visible {
    opacity: 1;
    transform: rotateX(0deg);
    animation: cd-rotate-1-in 1.2s
}

.animationtext.rotate-1 .item-text.is-hidden {
    transform: rotateX(180deg);
    animation: cd-rotate-1-out 1.2s
}

@keyframes cd-rotate-1-in {
    0% {
        transform: rotateX(180deg);
        opacity: 0
    }
    35% {
        transform: rotateX(120deg);
        opacity: 0
    }
    65% {
        opacity: 0
    }
    to {
        transform: rotateX(1turn);
        opacity: 1
    }
}

@keyframes cd-rotate-1-out {
    0% {
        transform: rotateX(0deg);
        opacity: 1
    }
    35% {
        transform: rotateX(-40deg);
        opacity: 1
    }
    65% {
        opacity: 0
    }
    to {
        transform: rotateX(180deg);
        opacity: 0
    }
}

.animationtext.type .cd-words-wrapper {
    vertical-align: top;
    overflow: hidden
}

.animationtext.type .cd-words-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #aebcb9
}

.animationtext.type .cd-words-wrapper.waiting:after {
    animation: cd-pulse 1s infinite
}

.animationtext.type .cd-words-wrapper.selected {
    background-color: #aebcb9
}

.animationtext.type .cd-words-wrapper.selected:after {
    visibility: hidden
}

.animationtext.type .cd-words-wrapper.selected .item-text {
    color: #0d0d0d
}

.animationtext.type .item-text {
    visibility: hidden
}

.animationtext.type .item-text.is-visible {
    visibility: visible
}

.animationtext.type i {
    position: absolute;
    visibility: hidden
}

.animationtext.type i.in {
    position: relative;
    visibility: visible
}

@keyframes cd-pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1
    }
    40% {
        transform: translateY(-50%) scale(.9);
        opacity: 0
    }
    to {
        transform: translateY(-50%) scale(0);
        opacity: 0
    }
}

.animationtext.rotate-2 .cd-words-wrapper {
    perspective: 300px
}

.animationtext.rotate-2 em,
.animationtext.rotate-2 i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.animationtext.rotate-2 .item-text {
    opacity: 0
}

.animationtext.rotate-2 i {
    transform-style: preserve-3d;
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0
}

.is-visible .animationtext.rotate-2 i {
    opacity: 1
}

.animationtext.rotate-2 i.in {
    animation: cd-rotate-2-in .4s forwards
}

.animationtext.rotate-2 i.out {
    animation: cd-rotate-2-out .4s forwards
}

.animationtext.rotate-2 em {
    transform: translateZ(20px)
}

.no-csstransitions .animationtext.rotate-2 i {
    transform: rotateX(0deg);
    opacity: 0
}

.no-csstransitions .animationtext.rotate-2 i em {
    transform: scale(1)
}

.no-csstransitions .animationtext.rotate-2 .is-visible i {
    opacity: 1
}

@keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        transform: translateZ(-20px) rotateX(90deg)
    }
    60% {
        opacity: 1;
        transform: translateZ(-20px) rotateX(-10deg)
    }
    to {
        opacity: 1;
        transform: translateZ(-20px) rotateX(0deg)
    }
}

@keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        transform: translateZ(-20px) rotateX(0)
    }
    60% {
        opacity: 0;
        transform: translateZ(-20px) rotateX(-100deg)
    }
    to {
        opacity: 0;
        transform: translateZ(-20px) rotateX(-90deg)
    }
}

.animationtext.loading-bar span {
    display: inline-block;
    padding: .2em 0
}

.animationtext.loading-bar .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top
}

.animationtext.loading-bar .cd-words-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #0096a7;
    z-index: 2;
    transition: width .3s -.1s
}

.animationtext.loading-bar .cd-words-wrapper.is-loading:after {
    width: 100%;
    transition: width 3s
}

.animationtext.loading-bar .item-text {
    top: .2em;
    opacity: 0;
    transition: opacity .3s
}

.animationtext.loading-bar .item-text.is-visible {
    opacity: 1;
    top: 0
}

.animationtext.slide span {
    display: inline-block
}

.animationtext.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top
}

.animationtext.slide .item-text {
    opacity: 0;
    top: .2em;
    -webkit-text-fill-color: #170758
}

.animationtext.slide .item-text.is-visible {
    top: 0;
    opacity: 1;
    animation: slide-in .6s
}

.animationtext.slide .item-text.is-hidden {
    animation: slide-out .6s
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    60% {
        opacity: 1;
        transform: translateY(20%)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    60% {
        opacity: 0;
        transform: translateY(120%)
    }
    to {
        opacity: 0;
        transform: translateY(100%)
    }
}

.animationtext.clip span {
    display: inline-block;
    padding: 0
}

.animationtext.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top
}

.animationtext.clip .cd-words-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9
}

.animationtext.clip .item-text {
    opacity: 0
}

.animationtext.clip .item-text.is-visible {
    opacity: 1
}

.animationtext.zoom .cd-words-wrapper {
    perspective: 300px
}

.animationtext.zoom .item-text {
    opacity: 0
}

.animationtext.zoom .item-text.is-visible {
    opacity: 1;
    animation: zoom-in .8s
}

.animationtext.zoom .item-text.is-hidden {
    animation: zoom-out .8s
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: translateZ(100px)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        transform: translateZ(-100px)
    }
}

.animationtext.rotate-3 .cd-words-wrapper {
    perspective: 300px
}

.animationtext.rotate-3 .item-text {
    opacity: 0
}

.animationtext.rotate-3 i {
    font-style: normal !important;
    display: inline-block;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .75) 13.41%, rgba(255, 255, 255, 0)), linear-gradient(180deg, #ffcb52, #ff7b02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px hsla(0, 0%, 100%, .2);
    background-clip: text
}

.is-visible .animationtext.rotate-3 i {
    transform: rotateY(0deg)
}

.animationtext.rotate-3 i.in {
    animation: cd-rotate-3-in .6s forwards
}

.animationtext.rotate-3 i.out {
    animation: cd-rotate-3-out .6s forwards
}

.no-csstransitions .animationtext.rotate-3 i {
    transform: rotateY(0deg);
    opacity: 0
}

.no-csstransitions .animationtext.rotate-3 .is-visible i {
    opacity: 1
}

@keyframes cd-rotate-3-in {
    0% {
        transform: rotateY(180deg)
    }
    to {
        transform: rotateY(0deg)
    }
}

@keyframes cd-rotate-3-out {
    0% {
        transform: rotateY(0)
    }
    to {
        transform: rotateY(-180deg)
    }
}

.animationtext.scale .item-text {
    opacity: 0
}

.animationtext.scale .item-text.is-visible {
    opacity: 1
}

.animationtext.scale i {
    display: inline-block;
    opacity: 0;
    transform: scale(0)
}

.animationtext.scale .item-text.is-visible {
    animation: scale-up .6s forwards
}

.animationtext.scale .item-text {
    animation: scale-down .6s forwards
}

.no-csstransitions .animationtext.scale .item-text {
    transform: scale(1);
    opacity: 0
}

.no-csstransitions .animationtext.scale .is-visible i {
    opacity: 1
}

@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0
    }
    60% {
        transform: scale(1.2);
        opacity: 1
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-down {
    0% {
        transform: scale(1);
        opacity: 1
    }
    60% {
        transform: scale(0);
        opacity: 0
    }
}

.animationtext.push .item-text {
    opacity: 0
}

.animationtext.push .item-text.is-visible {
    opacity: 1;
    animation: push-in .6s
}

.animationtext.push .item-text.is-hidden {
    animation: push-out .6s
}

@keyframes push-in {
    0% {
        opacity: 0;
        transform: translateX(-100%)
    }
    60% {
        opacity: 1;
        transform: translateX(10%)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes push-out {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    60% {
        opacity: 0;
        transform: translateX(110%)
    }
    to {
        opacity: 0;
        transform: translateX(100%)
    }
}

.type-color-1 i {
    background-image: linear-gradient(180deg, #ffffff 68.51%, rgb(39, 47, 121) 93%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0) !important;
    -webkit-text-stroke: unset !important;
    background-clip: text !important;
    text-shadow: 0 3px 8px rgba(76, 43, 159, .5) !important
}