/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	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;
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@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-name: headShake;
	animation-timing-function: ease-in-out;
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.swing {
	animation-name: swing;
	transform-origin: top center;
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.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(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@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-duration: 1.3s;
	animation-name: heartBeat;
	animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	animation-duration: 0.75s;
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	animation-duration: 0.75s;
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.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 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 flip {
	0% {
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	}
	40% {
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	}
	50% {
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	}
	80% {
		animation-timing-function: ease-in;
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
	}
	to {
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	}
}
.animated.flip {
	animation-name: flip;
	backface-visibility: visible;
}
@keyframes flipInX {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg);
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	animation-name: flipInX;
	backface-visibility: visible !important;
}
@keyframes flipInY {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg);
	}
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateY(10deg);
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	animation-name: flipInY;
	backface-visibility: visible !important;
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
}
.flipOutX {
	animation-duration: 0.75s;
	animation-name: flipOutX;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg);
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg);
	}
}
.flipOutY {
	animation-duration: 0.75s;
	animation-name: flipOutY;
	backface-visibility: visible !important;
}
@keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60% {
		opacity: 1;
		transform: skewX(20deg);
	}
	80% {
		transform: skewX(-5deg);
	}
	to {
		transform: translateZ(0);
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: center;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: right bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	0% {
		opacity: 1;
		transform-origin: center;
	}
	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform-origin: left bottom;
	}
	to {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform-origin: right bottom;
	}
	to {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: right bottom;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform-origin: left bottom;
	}
	to {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform-origin: right bottom;
	}
	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		animation-timing-function: ease-in-out;
		transform-origin: top left;
	}
	20%,
	60% {
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left;
	}
	40%,
	80% {
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg);
		transform-origin: top left;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 700px, 0);
	}
}
.hinge {
	animation-duration: 2s;
	animation-name: hinge;
}
@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(0.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(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomInDown {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}
@keyframes zoomInLeft {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}
@keyframes zoomInRight {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@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 {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}
.animated {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.delay-1s {
	animation-delay: 1s;
}
.animated.delay-2s {
	animation-delay: 2s;
}
.animated.delay-3s {
	animation-delay: 3s;
}
.animated.delay-4s {
	animation-delay: 4s;
}
.animated.delay-5s {
	animation-delay: 5s;
}
.animated.fast {
	animation-duration: 0.8s;
}
.animated.faster {
	animation-duration: 0.5s;
}
@media (prefers-reduced-motion: reduce), (print) {
	.animated {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}
}
.bold {
	font-family: Ubuntu-Bold;
}
.light {
	font-family: Ubuntu-Light;
}
.medium {
	font-family: Ubuntu-Medium;
}
.italic {
	font-family: Ubuntu-Italic;
}
.light-italic {
	font-family: Ubuntu-LightItalic;
}
.bold-italic {
	font-family: Ubuntu-BoldItalic;
}
.regular {
	font-family: Ubuntu-Regular;
}
.calgary-regular {
	font-family: Calgary-Regular;
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Italic;
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/Ubuntu-Italic.eot);
	src: url(../fonts/Ubuntu-Italic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Italic.woff2) format('woff2'),
		url(../fonts/Ubuntu-Italic.woff) format('woff'),
		url(../fonts/Ubuntu-Italic.ttf) format('truetype'),
		url(../images/Ubuntu-Italic.svg#Ubuntu-Italic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-MediumItalic;
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/Ubuntu-MediumItalic.eot);
	src: url(../fonts/Ubuntu-MediumItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-MediumItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-MediumItalic.woff) format('woff'),
		url(../fonts/Ubuntu-MediumItalic.ttf) format('truetype'),
		url(../images/Ubuntu-MediumItalic.svg#Ubuntu-MediumItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-LightItalic;
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/Ubuntu-LightItalic.eot);
	src: url(../fonts/Ubuntu-LightItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-LightItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-LightItalic.woff) format('woff'),
		url(../fonts/Ubuntu-LightItalic.ttf) format('truetype'),
		url(../images/Ubuntu-LightItalic.svg#Ubuntu-LightItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Light;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/Ubuntu-Light.eot);
	src: url(../fonts/Ubuntu-Light.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Light.woff2) format('woff2'),
		url(../fonts/Ubuntu-Light.woff) format('woff'),
		url(../fonts/Ubuntu-Light.ttf) format('truetype'),
		url(../images/Ubuntu-Light.svg#Ubuntu-Light) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Medium;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Ubuntu-Medium.eot);
	src: url(../fonts/Ubuntu-Medium.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Medium.woff2) format('woff2'),
		url(../fonts/Ubuntu-Medium.woff) format('woff'),
		url(../fonts/Ubuntu-Medium.ttf) format('truetype'),
		url(../images/Ubuntu-Medium.svg#Ubuntu-Medium) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Ubuntu-Regular.eot);
	src: url(../fonts/Ubuntu-Regular.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Regular.woff2) format('woff2'),
		url(../fonts/Ubuntu-Regular.woff) format('woff'),
		url(../fonts/Ubuntu-Regular.ttf) format('truetype'),
		url(../images/Ubuntu-Regular.svg#Ubuntu-Regular) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-BoldItalic;
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/Ubuntu-BoldItalic.eot);
	src: url(../fonts/Ubuntu-BoldItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-BoldItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-BoldItalic.woff) format('woff'),
		url(../fonts/Ubuntu-BoldItalic.ttf) format('truetype'),
		url(../images/Ubuntu-BoldItalic.svg#Ubuntu-BoldItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Bold;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Ubuntu-Bold.eot);
	src: url(../fonts/Ubuntu-Bold.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Bold.woff2) format('woff2'),
		url(../fonts/Ubuntu-Bold.woff) format('woff'),
		url(../fonts/Ubuntu-Bold.ttf) format('truetype'),
		url(../images/Ubuntu-Bold.svg#Ubuntu-Bold) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Calgary-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/CalgaryScript-Regular.eot);
	src: url(../fonts/CalgaryScript-Regular.eot#iefix) format('embedded-opentype'),
		url(../fonts/CalgaryScript-Regular.woff2) format('woff2'),
		url(../fonts/CalgaryScript-Regular.woff) format('woff'),
		url(../fonts/CalgaryScript-Regular.ttf) format('truetype'),
		url(../images/CalgaryScript-Regular.svg#CalgaryScript-Regular) format('svg');
}
/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
.fa-star:before {
	content: '\f005';
}
.fa-check:before {
	content: '\f00c';
}
.fa-times:before {
	content: '\f00d';
}
.fa-long-arrow-left:before {
	content: '\f177';
}
.fa-bullhorn:before {
	content: '\f0a1';
}
.fa-home:after {
	content: '\f015';
}
.fa-home-alt:after {
	content: '\f80a';
}
.fa-star-half:after {
	content: '\f089';
}
.fa-star-half-alt:after {
	content: '\f5c0';
}
.fa-search:before {
	content: '\f002';
}
.fa-chevron-circle-left:after {
	content: '\f137';
}
.fa-chevron-circle-right:after {
	content: '\f138';
}
.fa-file-pdf:before {
	content: '\f1c1';
}
.fa-plus:before {
	content: '\f067';
}
@font-face {
	font-display: swap;
	font-family: Font Awesome\5 Pro;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/fa-regular-400.eot);
	src: url(../fonts/fa-regular-400.eot#iefix) format('embedded-opentype'),
		url(../fonts/fa-regular-400.woff2) format('woff2'),
		url(../fonts/fa-regular-400.woff) format('woff'),
		url(../fonts/fa-regular-400.ttf) format('truetype'),
		url(../images/fa-regular-400.svg#fontawesome) format('svg');
}
.far {
	font-weight: 400;
}
@font-face {
	font-display: swap;
	font-family: Font Awesome\5 Pro;
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/fa-solid-900.eot);
	src: url(../fonts/fa-solid-900.eot#iefix) format('embedded-opentype'),
		url(../fonts/fa-solid-900.woff2) format('woff2'),
		url(../fonts/fa-solid-900.woff) format('woff'),
		url(../fonts/fa-solid-900.ttf) format('truetype'),
		url(../images/fa-solid-900.svg#fontawesome) format('svg');
}
.fa,
.far,
.fas {
	font-family: Font Awesome\5 Pro;
}
.fa,
.fas {
	font-weight: 900;
}
.fa-lightbulb:before {
	content: '\f0eb';
}
.fa-lightbulb-dollar:before {
	content: '\f670';
}
.fa-lightbulb-exclamation:before {
	content: '\f671';
}
.fa-lightbulb-on:before {
	content: '\f672';
}
.fa-lightbulb-slash:before {
	content: '\f673';
}
.fad.fa-lightbulb:after {
	content: '\10f0eb';
}
.fad.fa-lightbulb-dollar:after {
	content: '\10f670';
}
.fad.fa-lightbulb-exclamation:after {
	content: '\10f671';
}
.fad.fa-lightbulb-on:after {
	content: '\10f672';
}
.fad.fa-lightbulb-slash:after {
	content: '\10f673';
}
#hamburgermenu {
	background: #fff;
	border: none;
	bottom: 0;
	height: calc(100% - 4.375rem);
	left: 0;
	overflow-x: hidden;
	padding: 0;
	pointer-events: none;
	position: fixed;
	transform: translateY(100%);
	transition: 0.3s ease-in;
	visibility: hidden;
	width: 100%;
}
#hamburgermenu ul {
	display: none;
}
#hamburgermenu.is-active {
	pointer-events: all;
	transform: translateY(0);
	visibility: visible;
}
#hamburgermenu.is-active ul {
	display: block;
}
#hamburgermenu ul li a {
	color: #238bfc;
	display: block;
	font-family: Ubuntu-Bold;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 24px 0;
	position: relative;
	width: 100%;
}
#hamburgermenu ul li a:after {
	background-color: #e5e0e8;
	bottom: 0;
	content: '';
	height: 1px;
	left: -100vw;
	position: absolute;
	width: 200vw;
}
#hamburgermenu ul li a:before {
	background-color: #f23f2d;
	bottom: 0;
	content: '';
	height: 50%;
	left: -1.5625rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s ease-in-out;
	width: 0;
}
#hamburgermenu ul li a.is-active:before,
#hamburgermenu ul li a:hover:before {
	width: 4px;
}
#hamburgermenu ul li details {
	border: 0;
	border-bottom: unset;
	margin: 0;
	position: relative;
	transition: 0.3s ease-in-out;
}
#hamburgermenu ul li details:hover {
	border-color: purple;
}
#hamburgermenu ul li details:hover summary {
	color: purple;
}
#hamburgermenu ul li details:hover svg path {
	fill: red;
}
#hamburgermenu ul li details[open] {
	border-color: red;
}
#hamburgermenu ul li details[open] summary {
	color: red;
}
#hamburgermenu ul li details[open] summary svg {
	animation: rotate_up 0.3s ease-in-out 0s;
	transform: rotate(0deg);
}
#hamburgermenu ul li details[open] summary svg path {
	fill: red;
}
#hamburgermenu ul li details > summary {
	align-items: center;
	color: red;
	cursor: pointer;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	gap: 10px;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	position: relative;
	transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#hamburgermenu ul li details > summary::-webkit-details-marker {
	display: none;
}
#hamburgermenu ul li details > summary svg {
	animation: rotate_down 0.3s ease-in-out 0s;
	height: 1.5rem;
	min-width: 1.5rem;
	transform: rotate(180deg);
	transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#hamburgermenu ul li details > summary svg path {
	fill: red;
}
@keyframes rotate_down {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(180deg);
	}
}
@keyframes rotate_up {
	0% {
		transform: rotate(180deg);
	}
	to {
		transform: rotate(0deg);
	}
}
#hamburgermenu ul li details details > summary > * {
	display: inline;
}
#hamburgermenu ul li details > .faq__item {
	background-color: #238bfc;
	box-shadow: 0 0 0 100vmax #238bfc;
	-webkit-clip-path: inset(0 -100vmax);
	clip-path: inset(0 -100vmax);
}
#hamburgermenu ul li .faq__body {
	display: flex;
	flex-direction: column;
}
#hamburgermenu ul li .faq__body a {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
}
#hamburgermenu ul li .faq__body a:not(:last-child) {
	border-bottom: 1px solid #da3e5a;
}
#hamburgermenu ul li .faq__body a:before {
	background-color: #fff;
}
#hamburgermenu ul li .faq__body a:after {
	display: none;
}
#hamburger {
	border: 0;
	padding: 0;
}
#hamburger #bars {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 7px;
	height: 33px;
	justify-content: center;
	margin: auto;
	transition: 0.5s ease-in-out;
	width: 100%;
}
#hamburger #bars,
#hamburger #bars span {
	position: relative;
	transform: rotate(0deg);
}
#hamburger #bars span {
	background: #238bfc;
	border-radius: 100%;
	border-radius: 9px;
	display: block;
	height: 3px;
	left: 0;
	opacity: 1;
	top: 0;
	transition: 0.25s ease-in-out;
	width: 28px;
}
.mmenu-open #hamburger #bars {
	top: 4px;
}
.mmenu-open #hamburger #bars span:first-child {
	top: 7px;
	transform: rotate(45deg);
}
.mmenu-open #hamburger #bars span:nth-child(2) {
	opacity: 0;
}
.mmenu-open #hamburger #bars span:nth-child(3) {
	top: -13px;
	transform: rotate(-45deg);
}
#mainnav {
	display: flex;
	flex-direction: row;
	gap: 5px 28px;
	justify-content: flex-end;
}
#mainnav > li {
	margin: 0;
	padding: 0;
}
#mainnav > li > a {
	color: #238bfc;
	font-family: Ubuntu-Bold;
	font-size: 20px;
	position: relative;
}
#mainnav > li > a:after {
	background: #238bfc;
	border-radius: 100px;
	bottom: 9px;
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.3s ease-in-out;
	width: 0;
}
#mainnav > li > a.active:after {
	content: '';
	width: 100%;
}
#mainnav > li > a:hover:after {
	width: 100%;
}
@media (max-width: 767.98px) {
	#mainnav > li > a {
		font-size: 20px;
		padding: 0 10px;
	}
}
@media only screen and (max-width: 400px) {
	#mainnav > li > a {
		font-size: 17px;
	}
	#mainnav > li > a:first-of-type {
		margin-left: 0;
	}
}
#navbar-header .navbar-header .nav-item.dropdown {
	position: relative;
}
#navbar-header
	.navbar-header
	.nav-item.dropdown:focus-within
	.nav-link.dropdown:after,
#navbar-header
	.navbar-header
	.nav-item.dropdown:hover
	.nav-link.dropdown:after {
	width: 100%;
}
#navbar-header .navbar-header .nav-item.dropdown:focus-within a.dropdown:before,
#navbar-header .navbar-header .nav-item.dropdown:hover a.dropdown:before {
	transform: rotate(-180deg);
}
#navbar-header .navbar-header .nav-item.dropdown a.dropdown {
	align-items: center;
	display: flex;
	gap: 10px;
	position: relative;
}
#navbar-header .navbar-header .nav-item.dropdown a.dropdown:before {
	font-family: Font Awesome\5 Pro;
	font-size: 1.5rem;
	font-weight: 900;
	order: 2;
	transition: transform 0.3s ease-in-out 0s;
}
#navbar-header .navbar-header .nav-item.dropdown:focus-within .dropdown-menu,
#navbar-header .navbar-header .nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}
#navbar-header .navbar-header .nav-item.dropdown .dropdown-menu {
	border: none;
	border-radius: 0;
	display: block;
	height: auto;
	left: 50%;
	opacity: 0;
	padding-top: 30px;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
	visibility: hidden;
}
#navbar-header .navbar-header .nav-item.dropdown .dropdown-menu__inner {
	background-color: #fff;
	border-radius: 33px;
	box-shadow: 0 42px 49px 0 hsla(0, 0%, 55%, 0.36);
	min-width: 386px;
	padding: 0.5rem 1.75rem;
}
#navbar-header .navbar-header .nav-item.dropdown .dropdown-menu__inner ul {
	display: flex;
	flex-direction: column;
	padding: 0;
}
#navbar-header .navbar-header .nav-item.dropdown .dropdown-menu__inner li {
	align-items: baseline;
	border-bottom: 1px solid #e5e0e8;
	display: inline-flex;
	justify-content: flex-start;
	margin-left: 0 !important;
	width: 100%;
}
#navbar-header
	.navbar-header
	.nav-item.dropdown
	.dropdown-menu__inner
	li:last-child {
	border-bottom: none;
}
#navbar-header .navbar-header .nav-item.dropdown .dropdown-menu__inner li a {
	align-items: center;
	color: #4e2b62;
	display: flex;
	flex-direction: row;
	font-family: Ubuntu-Bold;
	font-size: 1.125rem;
	font-weight: 500;
	gap: 8px;
	letter-spacing: 0.025em;
	line-height: normal;
	padding: 20px;
	position: relative;
	transition: 0.3s ease-in 0s;
	width: 100%;
}
#navbar-header
	.navbar-header
	.nav-item.dropdown
	.dropdown-menu__inner
	li
	a.active,
#navbar-header
	.navbar-header
	.nav-item.dropdown
	.dropdown-menu__inner
	li
	a:hover {
	color: #238bfc;
}
