/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
@font-face {
  font-family: font-light;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-Light.otf);
}
@font-face {
  font-family: font-regular;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-Regular.otf);
}
@font-face {
  font-family: font-medium;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-Medium.otf);
}
@font-face {
  font-family: font-semi-bold;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-Semibold.otf);
}
@font-face {
  font-family: font-semi-bold-italic;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-SemiboldItalic.otf);
}
@font-face {
  font-family: font-bold;
  src: url(/wp-content/themes/Avada-Child/assets/fonts/GeneralSans-Bold.otf);
}
#boxed-wrapper .white-color h1, #boxed-wrapper .white-color h2, #boxed-wrapper .white-color h3, #boxed-wrapper .white-color h4, #boxed-wrapper .white-color h5, #boxed-wrapper .white-color h6, #boxed-wrapper .white-color p, #boxed-wrapper .white-color a, #boxed-wrapper .white-color strong, #boxed-wrapper .white-color b {
  color: #ffffff !important;
}
#boxed-wrapper .primary-color h1, #boxed-wrapper .primary-color h2, #boxed-wrapper .primary-color h3, #boxed-wrapper .primary-color h4, #boxed-wrapper .primary-color h5, #boxed-wrapper .primary-color h6, #boxed-wrapper .primary-color p, #boxed-wrapper .primary-color a, #boxed-wrapper .primary-color strong, #boxed-wrapper .primary-color b {
  color: #192542 !important;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 Daniel Eden
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 999999;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

.splitting.animated .char {
  -webkit-animation: fadeIn 2s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 2s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt.animated .char {
  -webkit-animation: fadeIn 2s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 2s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt .whitespace {
  width: 5px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#boxed-wrapper #post-404page {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
  display: flex;
  justify-content: center;
}
#boxed-wrapper #post-404page .error-page {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#boxed-wrapper #post-404page .error-message {
  text-align: center;
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}
#boxed-wrapper #post-404page h2 {
  text-align: center !important;
}
#boxed-wrapper #post-404page .error-button {
  text-align: center;
}
#boxed-wrapper #post-404page .error-button a {
  padding: 15px !important;
}
#boxed-wrapper #post-404page .error-button a.classic:hover {
  color: #ffffff !important;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 Daniel Eden
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 999999;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@media (min-width: 1025px) {
  #boxed-wrapper .banner-row {
    height: 90vh !important;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  #boxed-wrapper .banner-row.standard-row {
    height: 65vh !important;
    overflow: hidden;
  }
}
#boxed-wrapper .banner-row.standard-row .fusion-builder-row .fusion-layout-column.image-column .fusion-imageframe img {
  object-position: center top !important;
}
#boxed-wrapper .banner-row.standard-row .fusion-builder-row .fusion-layout-column.image-column .fusion-imageframe.object-center-center img {
  object-position: center center !important;
}
#boxed-wrapper .banner-row.standard-row .fusion-builder-row .fusion-layout-column.banner-title-column {
  z-index: 3;
  margin: 0 !important;
}
@media (max-width: 1360px) {
  #boxed-wrapper .banner-row.standard-row .fusion-builder-row .fusion-layout-column.banner-title-column {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 1024px) {
  #boxed-wrapper .banner-row.standard-row .fusion-builder-row .fusion-layout-column.banner-title-column {
    margin-bottom: 0 !important;
    margin-top: 45px !important;
  }
}
@media (min-width: 1025px) {
  #boxed-wrapper .banner-row .fusion-builder-row {
    position: static !important;
  }
}
@media (min-width: 1025px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column {
    height: calc(100% + 90px);
    width: 100%;
    left: 0;
    position: absolute;
  }
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column .fusion-column-wrapper {
  position: relative;
  margin: 0 !important;
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column .fusion-column-wrapper:after {
  content: "";
  background: rgba(25, 37, 66, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column .fusion-column-wrapper .fusion-image-element {
  height: 100% !important;
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe {
  height: 100% !important;
  width: 100%;
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.image-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe img {
  height: 100% !important;
  object-fit: cover;
  transition: transform 6s ease;
  width: 100%;
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column {
  z-index: 3;
  margin: 0 0 130px !important;
}
@media (max-width: 1360px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 1024px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column {
    margin-bottom: 0 !important;
    margin-top: 45px !important;
  }
}
@media (min-width: 1025px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column .fusion-column-wrapper .fusion-title {
    margin-bottom: 0 !important;
  }
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column .fusion-column-wrapper .fusion-title h1 {
  font-size: 59px !important;
  color: #ffffff !important;
}
@media (max-width: 1024px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-title-column .fusion-column-wrapper .fusion-title h1 {
    color: #192542 !important;
    font-size: 38px !important;
  }
}
#boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-text-column {
  margin-bottom: 170px !important;
  z-index: 3;
}
@media (max-width: 1360px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-text-column {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 1024px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-text-column {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 1024px) {
  #boxed-wrapper .banner-row .fusion-builder-row .fusion-layout-column.banner-text-column p {
    color: #192542 !important;
  }
}

.image-cropper {
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

div.image-cropper > img {
  height: 100%;
  object-fit: cover;
}

#boxed-wrapper .cta-fixed {
  position: fixed;
  right: 0;
  top: 300px;
  z-index: 22;
  transform: translateX(calc(100% - 65px));
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#boxed-wrapper .cta-fixed.active {
  transform: translateX(0);
}
#boxed-wrapper .cta-fixed .cta-content {
  display: flex;
  position: relative;
}
#boxed-wrapper .cta-fixed .cta-content.active {
  transform: translateX(0);
}
#boxed-wrapper .cta-fixed .cta-content.active .fusion-button {
  background: rgba(60, 181, 161, 0.7) !important;
}
#boxed-wrapper .cta-fixed .fusion-button {
  justify-content: center;
  text-decoration: none !important;
  font-family: font-semi-bold !important;
  padding: 18px !important;
  border-radius: 6px 0 0 6px !important;
  border-right: 0 !important;
  background: #3cb5a1 !important;
  border-color: #3cb5a1 !important;
  color: #ffffff !important;
  text-transform: none !important;
}
#boxed-wrapper .cta-fixed .fusion-button span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
#boxed-wrapper .cta-fixed .fusion-button:after {
  background-color: #3cb5a1 !important;
  display: none !important;
}
#boxed-wrapper .cta-fixed .fusion-button:before {
  background-color: #3cb5a1;
  border-radius: 6px 0 0 6px !important;
}
#boxed-wrapper .cta-fixed .hidden-content {
  background: #3cb5a1;
  display: flex;
  flex-direction: column;
  padding: 15px;
  justify-content: center;
  gap: 15px;
  width: auto;
}
#boxed-wrapper .cta-fixed .hidden-content a {
  color: #ffffff !important;
  font-family: font-medium !important;
}
#boxed-wrapper .cta-fixed .hidden-content a:hover {
  color: #192542 !important;
}

#boxed-wrapper .custom-footer {
  background: #192542;
  padding: 90px 30px 45px;
}
#boxed-wrapper .custom-footer .fusion-row {
  max-width: 1400px !important;
  display: flex;
  flex-wrap: wrap;
}
#boxed-wrapper .custom-footer .fusion-row.first-row {
  position: relative;
  padding-bottom: 45px;
}
#boxed-wrapper .custom-footer .fusion-row.first-row:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3cb5a1;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-logo {
  margin-bottom: 45px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-logo a {
  display: block;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-logo a img {
  width: 300px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-logo a h2 {
  color: #ffffff !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column p {
  font-size: 16px !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-info {
  margin-bottom: 25px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-info p, #boxed-wrapper .custom-footer .fusion-row .footer-column .footer-info a {
  color: #ffffff !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-info a:hover {
  color: #3cb5a1 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-socials {
  display: flex;
  gap: 10px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-socials a {
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-socials a:hover {
  transform: translateY(-10px);
  border-color: #3cb5a1 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-socials a i {
  font-family: "Font Awesome 5 Brands" !important;
  color: #3cb5a1 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.footer-right-column {
  margin-top: 45px;
}
@media (min-width: 768px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.footer-right-column .footer-info {
    text-align: right;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.footer-right-column h4 {
  color: #ffffff !important;
  font-size: 18px !important;
  margin: 0 !important;
}
@media (min-width: 768px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.footer-right-column p {
    margin-top: 0;
    text-align: right;
  }
}
#boxed-wrapper .custom-footer .fusion-row.copy-row {
  padding-top: 45px;
}
#boxed-wrapper .custom-footer .fusion-row.copy-row a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px !important;
}
#boxed-wrapper .custom-footer .fusion-row.copy-row a:hover {
  color: #ffffff;
}
#boxed-wrapper .custom-footer .fusion-row.copy-row ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-footer .fusion-row.copy-row ul {
    flex-direction: column;
  }
}
#boxed-wrapper .custom-footer .fusion-row.copy-row ul li:after {
  content: "|";
  display: inline-block;
  padding: 0 5px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-footer .fusion-row.copy-row ul li:after {
    display: none;
  }
}
#boxed-wrapper .custom-footer .fusion-row.copy-row ul li:last-child:after {
  display: none;
}
#boxed-wrapper .custom-footer .fusion-row.copy-row ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px !important;
}
#boxed-wrapper .custom-footer .fusion-row.copy-row ul li a:hover {
  color: #ffffff;
}
@media (min-width: 993px) {
  #boxed-wrapper .custom-footer .fusion-row.copy-row .footer-content-last {
    text-align: right;
  }
}

.rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.rating-stars ul > li.star {
  display: inline-block;
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size: 1.5em; /* Change the size of the stars */
  color: #ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color: #FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color: #FF912C;
}

@media (min-width: 1025px) {
  #boxed-wrapper header {
    position: absolute;
    width: 100%;
  }
}
#boxed-wrapper header .fusion-header-v1 .fusion-header {
  padding: 0 30px !important;
}
@media (min-width: 1126px) {
  #boxed-wrapper header .fusion-header-v1 .fusion-header {
    background: transparent !important;
  }
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px !important;
  background: #ffffff !important;
  padding: 30px 0 !important;
  border-radius: 175px;
}
@media (min-width: 1126px) {
  #boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row {
    padding: 20px 60px !important;
  }
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .logo-section .fusion-logo {
  margin: 0 !important;
  width: 300px;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}
@media (max-width: 890px) {
  #boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section {
    display: none !important;
  }
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .openings {
  display: flex;
  align-items: center;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .openings p {
  margin-bottom: 0 !important;
  font-family: font-medium !important;
  color: #192542 !important;
  font-size: 18px !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .openings p .hours {
  font-family: font-regular !important;
  color: #192542 !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .actions {
  display: flex;
  gap: 15px;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .actions a {
  font-family: font-medium !important;
  color: #192542 !important;
  padding: 6px 14px !important;
  border: 2px solid #192542;
  border-radius: 48px;
  font-size: 16px !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .extra-section .actions a:last-child {
  color: #ffffff !important;
  background: #192542 !important;
  border-color: #192542 !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu {
  overflow: visible;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li.current-menu-ancestor a, #boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li.current-menu-item a {
  color: #3cb5a1 !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li.fusion-custom-menu-item a:after {
  content: "\f002";
  font-family: "Font Awesome 5 Pro" !important;
  font-style: normal !important;
  color: #3cb5a1 !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li a {
  height: auto !important;
  border: 0 !important;
  font-family: font-semi-bold !important;
  color: #192542 !important;
  font-size: 20px !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li a:hover {
  color: #3cb5a1 !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu {
  width: auto !important;
  border: 0 !important;
  padding: 20px 0 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  top: 100%;
  box-shadow: none !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li.current-menu-item a {
  color: #ffffff !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li.current-menu-item a:after {
  width: 100% !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li a {
  font-size: 14px !important;
  position: relative;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #192542 !important;
  height: auto !important;
  transition: all 0.4s ease-in-out 0.2s;
  font-family: font-semi-bold !important;
  text-transform: none !important;
  padding: 15px !important;
  z-index: 1;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li a:after {
  content: "";
  background: #3cb5a1;
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  z-index: -1;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li a:hover {
  color: #ffffff !important;
}
#boxed-wrapper header .fusion-header-v1 .fusion-header .fusion-row .menu-section .fusion-main-menu .fusion-menu li .sub-menu li a:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

#boxed-wrapper .help-column {
  margin-bottom: 45px !important;
}
#boxed-wrapper .help-column .fusion-column-wrapper {
  padding: 30px;
  box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 35px;
}
#boxed-wrapper .help-column .fusion-column-wrapper .fusion-title h3 {
  color: #192542 !important;
  font-size: 22px !important;
}
#boxed-wrapper .help-column .fusion-column-wrapper .fusion-text ul li {
  font-size: 16px !important;
}
#boxed-wrapper .help-column .fusion-column-wrapper .fusion-text ul li strong {
  font-size: 16px !important;
}
#boxed-wrapper .help-column .fusion-column-wrapper .fusion-text ul li strong a {
  font-size: 16px !important;
  color: #192542 !important;
}
#boxed-wrapper .help-column .fusion-column-wrapper .fusion-text ul li strong a:hover {
  color: #192542 !important;
}

#boxed-wrapper .insurance-buttons {
  text-align: center;
  margin-bottom: 90px;
}
#boxed-wrapper .insurance-buttons .insurance-buttons-wrapper {
  display: inline-flex;
  border-radius: 35px;
}
#boxed-wrapper .insurance-buttons .insurance-buttons-wrapper a {
  padding: 6px 22px !important;
  background: #3cb5a1;
  color: #ffffff;
}
#boxed-wrapper .insurance-buttons .insurance-buttons-wrapper a:first-child {
  border-radius: 35px 0 0 35px;
}
#boxed-wrapper .insurance-buttons .insurance-buttons-wrapper a:last-child {
  border-radius: 0 35px 35px 0;
}
#boxed-wrapper .insurance-buttons .insurance-buttons-wrapper a.active {
  background: #192542;
}
#boxed-wrapper .custom-insurance-row {
  margin-left: -15px !important;
  margin-right: -15px !important;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1201px) {
  #boxed-wrapper .custom-insurance-row {
    justify-content: space-between;
  }
}
@media (min-width: 1201px) {
  #boxed-wrapper .custom-insurance-row .insurance-box {
    width: 12% !important;
  }
}
#boxed-wrapper .custom-insurance-row .insurance-box .insurance-box-wrapper {
  text-align: center;
}
#boxed-wrapper .custom-insurance-row .insurance-box .insurance-box-wrapper .insurance-icon {
  padding: 30px 15px;
  background: #192542;
  border-radius: 25px;
  text-align: center;
}
#boxed-wrapper .custom-insurance-row .insurance-box .insurance-box-wrapper .insurance-icon img {
  width: 90px;
  height: 50px;
  object-fit: contain;
}
#boxed-wrapper .custom-insurance-row .insurance-box .insurance-box-wrapper .insurance-title {
  margin-top: 15px;
}
#boxed-wrapper .custom-insurance-row .insurance-box .insurance-box-wrapper .insurance-title h2 {
  font-size: 20px !important;
}
#boxed-wrapper .custom-insurance-detail-row {
  justify-content: space-between;
  flex-wrap: wrap;
  display: none;
  margin-right: -15px !important;
  margin-left: -15px !important;
}
@media (min-width: 1200px) {
  #boxed-wrapper .custom-insurance-detail-row {
    width: 1050px !important;
  }
}
#boxed-wrapper .custom-insurance-detail-row.active {
  display: flex;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (min-width: 1200px) {
  #boxed-wrapper .custom-insurance-detail-row .insurance-detail {
    width: 48% !important;
  }
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper {
  padding: 30px 45px;
  box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 35px;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper {
    padding: 30px 15px !important;
  }
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  margin-bottom: 30px;
  cursor: pointer;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content .icon {
  padding: 15px;
  background: #192542;
  border-radius: 25px;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content .icon img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content .insurance-title h2 {
  font-size: 20px !important;
  margin: 0 !important;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-top-content i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #192542;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content {
  display: none;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content.active {
  display: block;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content h4 {
  font-size: 22px !important;
  margin-bottom: 12px !important;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content ul li::marker {
  color: #3cb5a1 !important;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content a {
  position: relative;
  color: #3cb5a1 !important;
}
#boxed-wrapper .custom-insurance-detail-row .insurance-detail .insurance-detail-box-wrapper .insurance-bottom-content a:hover {
  padding-left: 5px;
}

#boxed-wrapper .custom-job-row .job-detail {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper {
  padding: 30px 45px;
  box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 35px;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper {
    padding: 30px 15px;
  }
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-title {
  position: relative;
  cursor: pointer;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-title h2 {
  font-size: 24px !important;
  margin: 0 !important;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-title i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #192542;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-content {
  display: none;
  padding-top: 45px;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-content.active {
  display: block;
}
#boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-content h2, #boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-content h3, #boxed-wrapper .custom-job-row .job-detail .job-detail-wrapper .job-content h4 {
  font-size: 20px !important;
  margin-bottom: 12px !important;
}
#boxed-wrapper .job-form .codedropz-upload-inner h3 {
  display: none !important;
}
#boxed-wrapper .job-form .codedropz-upload-handler,
#boxed-wrapper .job-form .codedropz-upload-container {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  visibility: hidden;
}

#boxed-wrapper .news-row {
  justify-content: center;
}
#boxed-wrapper .news-row.news-view .news {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  #boxed-wrapper .news-row.news-view .news:first-child {
    margin-bottom: 120px;
  }
}
#boxed-wrapper .news-row.news-view .news .news-title {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 0;
  margin-top: 0;
}
#boxed-wrapper .news-row.end-view {
  justify-content: flex-end;
}
#boxed-wrapper .news-row .news {
  position: relative;
}
@media (max-width: 767px) {
  #boxed-wrapper .news-row .news {
    padding: 0 !important;
  }
  #boxed-wrapper .news-row .news:first-child {
    margin-bottom: 45px;
  }
}
#boxed-wrapper .news-row .news .news-image {
  width: 100%;
  height: 350px;
  border-radius: 25px;
}
#boxed-wrapper .news-row .news .news-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}
#boxed-wrapper .news-row .news .news-title {
  background: #ffffff !important;
  padding: 25px;
  border-radius: 25px;
  width: 70%;
  margin: 0 auto !important;
  margin-top: -119px !important;
  position: relative;
}
@media (max-width: 640px) {
  #boxed-wrapper .news-row .news .news-title {
    width: 90%;
  }
}
#boxed-wrapper .news-row .news .news-title h2 {
  font-size: 20px !important;
}
#boxed-wrapper .news-row .news .news-title p {
  font-family: font-regular !important;
  font-size: 16px !important;
  height: 60px;
  text-overflow: ellipsis;
}
#boxed-wrapper .news-row .news .news-title a {
  color: #192542 !important;
  display: flex;
  gap: 5px;
  font-size: 16px !important;
}
#boxed-wrapper .news-row .news .news-title a:hover i {
  margin-left: 5px;
}
#boxed-wrapper .news-row .news .news-title a i {
  color: #192542 !important;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.insupartners {
  display: flex;
  flex-wrap: wrap;
}
.insupartners .partner {
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
}
.insupartners .partner .logo {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.insupartners .partner img {
  max-width: 50% !important;
  -webkit-filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
  filter: brightness(104%) contrast(99%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 0.6;
}

.owl-stage {
  display: flex;
}
.owl-stage .owl-item {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.owl-stage .owl-item.active {
  opacity: 1;
}

.owl-nav {
  display: none !important;
}

#boxed-wrapper .reviews-swiper {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 100%;
}
#boxed-wrapper .reviews-swiper .swiper-buttons {
  flex-direction: row-reverse;
  float: left;
  display: flex;
  position: absolute;
  top: 20px;
  z-index: 999;
  right: 0;
}
@media (max-width: 767px) {
  #boxed-wrapper .reviews-swiper .swiper-buttons {
    left: 0;
    right: auto;
    top: 30px;
  }
}
#boxed-wrapper .reviews-swiper .swiper-buttons .swiper-button-next,
#boxed-wrapper .reviews-swiper .swiper-buttons .swiper-button-prev {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  color: #192542 !important;
}
#boxed-wrapper .reviews-swiper .swiper-buttons .swiper-button-next:after,
#boxed-wrapper .reviews-swiper .swiper-buttons .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 700 !important;
}
#boxed-wrapper .reviews-swiper .review {
  border-radius: 12px;
}
@media (max-width: 767px) {
  #boxed-wrapper .reviews-swiper .review {
    height: auto !important;
    padding: 0 !important;
  }
}
#boxed-wrapper .reviews-swiper .review.swiper-slide-active {
  opacity: 1;
}
#boxed-wrapper .reviews-swiper .review .review-wrapper {
  padding: 60px 30px 30px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 12px;
}
#boxed-wrapper .reviews-swiper .review .review-wrapper .review-name p {
  font-family: font-semi-bold-italic !important;
}

.search-open {
  display: flex !important;
  align-items: center !important;
  position: fixed !important;
  z-index: 100001 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100vh !important;
  background: rgba(0, 0, 0, 0.65) !important;
  justify-content: center !important;
  transition: all 0.3s ease-in-out;
}
.search-open.hide {
  display: none !important;
}
.search-open .searchform {
  width: 80%;
  max-width: 1170px;
  position: relative;
}
.search-open .searchform label {
  width: 100% !important;
}
.search-open .searchform input {
  width: 100% !important;
  font-weight: 400 !important;
  border: none !important;
  border-bottom: 2px solid #eaeaea !important;
  border-radius: 0 !important;
  height: 86px !important;
  color: #9fa4a9 !important;
  font-size: 28px !important;
  padding: 12px 20px 11px 60px !important;
  background: transparent !important;
}
.search-open .searchform .searchsubmit {
  position: absolute !important;
  z-index: 2 !important;
  height: 100% !important;
  width: 56px !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.fusion-main-menu-search-overlay .fusion-main-menu > .fusion-overlay-search {
  transition: none !important;
}

.search-open .fusion-close-search {
  position: absolute !important;
  right: 20px;
  z-index: 100002;
  border-radius: 4px;
  display: flex !important;
  justify-content: center;
  width: 50px !important;
  height: 50px !important;
  font-size: 21px;
  line-height: 0;
  color: #ffffff;
  text-align: center;
  background: inherit;
  cursor: pointer;
  transition: all 0.45s ease-in-out 0s;
  background: #192542;
}
.search-open .fusion-close-search:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 2px;
  content: "";
  width: 2px;
  background: #ffffff;
  z-index: -1;
}
.search-open .fusion-close-search:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 2px;
  content: "";
  width: 2px;
  background: #ffffff;
  z-index: -1;
}

.fusion-flyout-search {
  background: #ffffff !important;
}

.search-results .search-title {
  margin-bottom: 60px !important;
}
.search-results .fusion-rollover {
  display: none !important;
}
.search-results .fusion-image-wrapper {
  max-height: 200px !important;
}
.search-results .fusion-image-wrapper img {
  max-height: 200px !important;
  object-fit: cover !important;
}
.search-results .fusion-post-medium {
  padding: 30px !important;
  margin-bottom: 30px !important;
}
.search-results .fusion-post-medium:nth-child(odd) {
  background: #F1F6FF !important;
}
.search-results .fusion-post-medium .fusion-post-title {
  line-height: 1 !important;
}
.search-results .fusion-post-medium .fusion-post-title a {
  color: #192542 !important;
  font-size: 24px !important;
  font-family: font-medium !important;
}
.search-results .fusion-post-medium .btn-main:after {
  display: none !important;
}
.search-results .fusion-post-medium .fusion-alignleft span {
  font-family: font-light !important;
  color: #192542 !important;
  font-size: 14px !important;
}
.search-results .fusion-post-medium .fusion-meta-info {
  border: 0 !important;
  margin: 30px 0 0 0 !important;
}
@media (max-width: 640px) {
  .search-results .fusion-post-medium .fusion-meta-info .fusion-alignleft {
    margin-bottom: 15px !important;
  }
}
.search-results .fusion-post-medium .fusion-meta-info .fusion-alignleft span {
  padding: 10px 20px;
  background: #192542;
  color: #ffffff !important;
}

.single #boxed-wrapper #main {
  padding: 0 !important;
}
.single #boxed-wrapper #main .standard-row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single #boxed-wrapper #main .standard-row:after {
  content: "";
  background: rgba(26, 37, 65, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (min-width: 1025px) {
  .single #boxed-wrapper #main .standard-row .image-column {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
.single #boxed-wrapper #main .standard-row .image-column img {
  width: 100%;
  transition: transform 6s ease;
}
.single #boxed-wrapper #main .standard-row h1 {
  z-index: 2;
  color: #ffffff !important;
}
@media (max-width: 1024px) {
  .single #boxed-wrapper #main .standard-row h1 {
    position: absolute;
    top: calc(50% - 60px);
    transform: translateY(-50%);
  }
}
.single #boxed-wrapper #main .post {
  border-radius: 35px 35px 0 0;
  margin-top: -60px;
  background: white;
  z-index: 2;
  position: relative;
}
.single #boxed-wrapper #main .post .post-content {
  max-width: 1270px !important;
  margin: 0 auto;
  padding: 90px 0 70px;
}
@media (max-width: 1260px) {
  .single #boxed-wrapper #main .post .post-content {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

#boxed-wrapper .team-row {
  max-width: 1200px !important;
  justify-content: space-evenly;
}
#boxed-wrapper .team-row .teammember {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #boxed-wrapper .team-row .teammember {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
#boxed-wrapper .team-row .teammember .teammember-wrapper .team-image img {
  height: 350px !important;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}
#boxed-wrapper .team-row .teammember .teammember-wrapper .team-info h4 {
  margin-bottom: 0 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  -webkit-font-smoothing: antialiased !important;
  font-family: font-medium !important;
  font-size: 18px !important;
  color: #192542 !important;
}

#boxed-wrapper p {
  -webkit-font-smoothing: antialiased !important;
  font-family: font-medium !important;
  font-size: 18px !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper p {
    font-size: 16px !important;
  }
}
#boxed-wrapper a {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  text-decoration: none !important;
  font-size: 18px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper a {
    font-size: 16px !important;
  }
}
#boxed-wrapper a:hover {
  text-decoration: none !important;
}
#boxed-wrapper a.fusion-button {
  font-family: font-medium !important;
  color: #ffffff !important;
  padding: 6px 22px !important;
  border: 2px solid #192542 !important;
  border-radius: 48px !important;
  background: #192542 !important;
  position: relative;
  z-index: 1;
  text-transform: none !important;
  overflow: hidden;
}
#boxed-wrapper a.fusion-button:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#boxed-wrapper a.fusion-button:hover .fusion-button-text {
  -webkit-animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  color: #192542 !important;
}
@keyframes UpInitial {
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
  }
}
@keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
#boxed-wrapper a.fusion-button:before {
  position: absolute;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  border-radius: 48px !important;
  z-index: -1;
}
#boxed-wrapper a.fusion-button .fusion-button-text {
  font-family: font-medium !important;
  color: #ffffff !important;
  position: relative;
  z-index: 10;
  display: block;
  text-transform: none !important;
}
#boxed-wrapper a.fusion-button.job-button {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  padding: 22px !important;
}
#boxed-wrapper a.fusion-button.job-button .fusion-button-text {
  font-family: font-semi-bold !important;
  color: #192542 !important;
}
#boxed-wrapper a.fusion-button.classic {
  border-color: #192542 !important;
  background: #ffffff !important;
  color: #192542 !important;
}
#boxed-wrapper a.fusion-button.classic:hover .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.classic:hover:before {
  background: #192542 !important;
}
#boxed-wrapper a.fusion-button.classic .fusion-button-text {
  color: #192542 !important;
}
#boxed-wrapper .wpcf7-submit,
#boxed-wrapper .btn-main {
  font-family: font-medium !important;
  color: #ffffff !important;
  padding: 6px 22px !important;
  border: 2px solid #192542 !important;
  border-radius: 48px !important;
  background: #192542 !important;
  position: relative;
  z-index: 1;
  text-transform: none !important;
  overflow: hidden;
  line-height: 27px;
  font-size: 18px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper .wpcf7-submit,
  #boxed-wrapper .btn-main {
    font-size: 16px !important;
  }
}
#boxed-wrapper .wpcf7-submit:hover:before,
#boxed-wrapper .btn-main:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#boxed-wrapper .wpcf7-submit:hover .fusion-button-text,
#boxed-wrapper .btn-main:hover .fusion-button-text {
  -webkit-animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  color: #192542 !important;
}
#boxed-wrapper .wpcf7-submit:before,
#boxed-wrapper .btn-main:before {
  position: absolute;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  border-radius: 48px !important;
  z-index: -1;
}
#boxed-wrapper .wpcf7-submit:focus,
#boxed-wrapper .btn-main:focus {
  outline: none !important;
  box-shadow: none !important;
}
#boxed-wrapper i {
  font-family: "Font Awesome 5 Pro" !important;
  font-style: normal !important;
}

#boxed-wrapper h1 {
  font-family: font-bold !important;
  font-size: 36px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h1 {
    font-size: 32px !important;
  }
}
#boxed-wrapper h1 p {
  font-family: font-bold !important;
  font-size: 36px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h1 p {
    font-size: 32px !important;
  }
}
#boxed-wrapper h2 {
  font-family: font-semi-bold !important;
  font-size: 34px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h2 {
    font-size: 28px !important;
  }
}
#boxed-wrapper h2 p {
  font-family: font-semi-bold !important;
  font-size: 34px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h2 p {
    font-size: 28px !important;
  }
}
#boxed-wrapper h3 {
  font-family: font-semi-bold !important;
  font-size: 30px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h3 {
    font-size: 26px !important;
  }
}
#boxed-wrapper h3 p {
  font-family: font-semi-bold !important;
  font-size: 30px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h3 p {
    font-size: 26px !important;
  }
}
#boxed-wrapper h4 {
  font-family: font-semi-bold !important;
  font-size: 26px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h4 {
    font-size: 24px !important;
  }
}
#boxed-wrapper h4 p {
  font-family: font-semi-bold !important;
  font-size: 26px !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h4 p {
    font-size: 24px !important;
  }
}
#boxed-wrapper h5 {
  font-family: font-semi-bold !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}
#boxed-wrapper h6 {
  font-family: font-semi-bold !important;
  line-height: 1.1 !important;
  color: #192542 !important;
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5); /* Adjust the scale factor as needed */
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
#boxed-wrapper .fusion-mobile-menu-design-flyout.fusion-flyout-active .fusion-header {
  top: 0 !important;
  position: relative !important;
}
#boxed-wrapper .fusion-header-has-flyout-menu .fusion-flyout-menu-icons .fusion-toggle-icon-line {
  background: #000000 !important;
}
#boxed-wrapper .fusion-flyout-menu {
  margin-top: 0 !important;
  height: 100vh !important;
  animation-delay: 1s !important;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
  border: 0 !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu.fly {
  opacity: 1 !important;
  transition: all 1.8s ease-in-out !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li {
  padding: 14px !important;
  position: relative;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li.fusion-mobile-current-nav-item a {
  color: #ffffff !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li.fusion-mobile-current-nav-item a:before {
  transform: scale3d(1, 1, 1);
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  z-index: 9 !important;
  padding: 0 !important;
  height: auto !important;
  border: 0 !important;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a:hover {
  text-decoration: none;
  color: #ffffff !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .custom-caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
  animation-delay: 0.3s;
  display: inline-block;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .custom-caret.rotate {
  transform: rotate(90deg);
  background: #ffffff;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu {
  height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu.open {
  padding-top: 14px !important;
  display: flex !important;
  height: auto !important;
  opacity: 1 !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li.fusion-mobile-current-nav-item a {
  color: #ffffff !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li.fusion-mobile-current-nav-item a:before {
  transform: scale3d(1, 1, 1);
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li a {
  font-size: 14px !important;
  position: relative;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li a:before {
  transform: scale3d(0, 1, 1);
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li a .custom-caret {
  display: none !important;
}
#boxed-wrapper .change .fusion-flyout-menu-toggle .fusion-toggle-icon-line {
  background: #ffffff !important;
  color: #ffffff !important;
  z-index: 99999;
}
#boxed-wrapper .fusion-flyout-menu-bg {
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  -webkit-transform: translateY(101%) !important;
  -ms-transform: translateY(101%) !important;
  transform: translateY(101%) !important;
  transition: all 900ms ease !important;
  -moz-transition: all 900ms ease !important;
  -webkit-transition: all 900ms ease !important;
  -ms-transition: all 900ms ease !important;
  -o-transition: all 900ms ease !important;
}
#boxed-wrapper .fusion-flyout-menu-bg.active-bg {
  background: rgba(0, 0, 0, 0.85) !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transition: all 0.7s ease !important;
  -moz-transition: all 0.7s ease !important;
  -ms-transition: all 0.7s ease !important;
  -o-transition: all 0.7s ease !important;
  transition: all 0.7s ease !important;
  -webkit-transform: translateY(0%) !important;
  -ms-transform: translateY(0%) !important;
  transform: translateY(0%) !important;
}

#boxed-wrapper .top-rounded {
  border-radius: 35px 35px 0 0 !important;
}
#boxed-wrapper .border-radius-column {
  border-radius: 35px !important;
}
#boxed-wrapper .border-radius-column .fusion-column-wrapper {
  border-radius: 35px !important;
}
#boxed-wrapper #main .no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#boxed-wrapper #main .custom-row-width .fusion-builder-row {
  max-width: 1300px !important;
}
@media (min-width: 1025px) {
  #boxed-wrapper #main .custom-padding-left .fusion-builder-row {
    padding-left: 60px !important;
  }
}
@media (max-width: 1024px) {
  #boxed-wrapper #main .flex-reverse .fusion-builder-row {
    flex-direction: column-reverse !important;
  }
}
#boxed-wrapper #main .title-sep-container {
  display: none !important;
}
#boxed-wrapper #main .custom-center .fusion-layout-column .fusion-column-wrapper {
  align-items: center !important;
}
#boxed-wrapper #main .fusion-title-center {
  justify-content: center;
}
@media (max-width: 1024px) {
  #boxed-wrapper #main .fusion-title-center.custom-fusion-title-center {
    justify-content: flex-start !important;
  }
}
#boxed-wrapper #main .team-image-row img {
  max-height: 500px !important;
  object-fit: cover;
}
@media (max-width: 640px) {
  #boxed-wrapper #main .team-image-row img {
    height: 250px;
  }
}
#boxed-wrapper .scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  z-index: 999;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  background: #3cb5a1;
  transition: 1s ease;
  border: none;
}
@media (max-width: 640px) {
  #boxed-wrapper .scroll-top {
    right: 20px;
  }
}
#boxed-wrapper .scroll-top.open {
  bottom: 80px;
}

#boxed-wrapper .custom-image-position .fusion-image-element {
  height: 100%;
}
#boxed-wrapper .custom-image-position .fusion-image-element .fusion-imageframe {
  height: 100%;
}
#boxed-wrapper .custom-image-position .fusion-image-element .fusion-imageframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 641px) {
  #boxed-wrapper .fusion-checklist {
    padding: 0 45px;
    margin-top: 45px;
  }
}
#boxed-wrapper .fusion-checklist li .icon-wrapper {
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/Avada-Child/assets/images/icons/plus.png");
  background-size: contain;
}
#boxed-wrapper .fusion-checklist li .icon-wrapper i {
  display: none;
}
#boxed-wrapper .fusion-checklist li .fusion-li-item-content {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-left: 45px;
}
#boxed-wrapper .fusion-checklist li .fusion-li-item-content:after {
  content: "";
  background: #192542;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#boxed-wrapper .fusion-checklist li .fusion-li-item-content p {
  margin-bottom: 0 !important;
  font-size: 20px !important;
}

.fusion-body #cookies-agree {
  margin-bottom: 10px !important;
  font-size: 12px !important;
  display: none;
}
.fusion-body .fusion-button {
  font-family: font-medium !important;
  color: #ffffff !important;
  padding: 6px 22px !important;
  border: 2px solid #192542 !important;
  border-radius: 48px !important;
  background: #192542 !important;
  position: relative;
  z-index: 1;
  text-transform: none !important;
  overflow: hidden;
}
.fusion-body .fusion-button:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.fusion-body .fusion-button:hover .fusion-button-text {
  -webkit-animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  color: #192542 !important;
}
@keyframes UpInitial {
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
  }
}
@keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fusion-body .fusion-button:before {
  position: absolute;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  border-radius: 48px !important;
  z-index: -1;
}
.fusion-body .fusion-button .fusion-button-text {
  font-family: font-medium !important;
  color: #ffffff !important;
  position: relative;
  z-index: 10;
  display: block;
  text-transform: none !important;
}
.fusion-body .cookie-options {
  font-size: 14px;
}
.fusion-body .cookie-popup {
  z-index: 9999 !important;
  max-width: 400px !important;
  right: 30px;
  bottom: 30px;
  left: auto;
}
@media (max-width: 500px) {
  .fusion-body .cookie-popup {
    max-width: 100% !important;
    left: 30px;
  }
}
.fusion-body .cookie-popup img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  position: absolute;
  right: 15px;
  top: 30px;
}
.fusion-body .cookie-popup .content {
  display: none;
}
.fusion-body .cookie-popup .title {
  font-size: 16px !important;
  font-weight: 600 !important;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.fusion-body .cookie-popup .title:after {
  content: "";
  background: rgba(25, 37, 66, 0.2);
  height: 30px;
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -10px;
  width: calc(100% + 10px);
  z-index: -1;
}
.fusion-body .cookie-popup .main-cookies {
  max-width: 1200px !important;
}
.fusion-body .cookie-popup p {
  font-size: 16px !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}
.fusion-body .cookie-popup .custom-link {
  font-size: 16px !important;
  display: inline-block !important;
  float: left;
}
.fusion-body .cookie-popup .custom-link:focus {
  outline: none !important;
}
.fusion-body .cookie-popup .save-cookies {
  display: flex;
  flex-direction: column-reverse;
}
.fusion-body .cookie-popup .cookie-preferences {
  width: 100% !important;
}
.fusion-body .cookie-popup .cookie-preferences ul {
  list-style: none;
  border-radius: 0;
  background: #ffffff;
  flex-direction: column !important;
  border-color: #192542 !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li {
  color: #000000 !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li a {
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 16px !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li a:hover {
  text-decoration: none;
  color: black !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li a:after {
  display: none;
}
.fusion-body .cookie-popup .cookie-preferences ul li .css-checkbox {
  background: #eeeeee;
}
.fusion-body .cookie-popup .cookie-preferences ul li .css-checkbox:focus {
  outline: none !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li .css-checkbox:after {
  background: #eeeeee;
}
.fusion-body .cookie-popup .cookie-preferences ul li .css-checkbox:checked {
  background: #192542;
}
.fusion-body .cookie-popup .cookie-preferences ul li .css-checkbox:checked:after {
  background: #eeeeee;
}
.fusion-body .vb-show {
  display: block !important;
}
.fusion-body .vb-hidden {
  display: none !important;
}
.fusion-body .cookie-reload {
  padding: 0 !important;
}

#documentcenter .documentcenter_searchitem {
  margin-bottom: 30px;
  position: relative;
}
#documentcenter label {
  color: #192542 !important;
  font-weight: 700 !important;
  font-size: 24px;
  display: block;
}
#documentcenter #partner,
#documentcenter #category,
#documentcenter #free-search {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #192542;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: gray;
  transition: all 0.5s ease;
  appearance: none;
  font-family: font-medium !important;
}
#documentcenter .arrow-span {
  position: absolute;
  right: 15px;
  top: calc(50% + 30px);
  transform: translateY(calc(50% - 30px));
  display: flex;
  pointer-events: none !important;
}
#documentcenter .arrow-span i {
  font-size: 20px !important;
}
#documentcenter .arrow-span i:before {
  color: #192542 !important;
}
#documentcenter #nrresults {
  color: #192542 !important;
  display: inline-block;
}
#documentcenter #results {
  margin-top: 30px;
}
#documentcenter #results ul {
  list-style: none;
  padding: 0;
}
#documentcenter #results ul li a {
  color: #192542;
  align-items: center;
}
#documentcenter #results ul li a:hover {
  text-decoration: none;
  color: #3cb5a1;
}

@media (max-width: 1024px) {
  #boxed-wrapper .legal-content {
    margin-top: 90px !important;
  }
}
#boxed-wrapper .legal-content h1 {
  font-size: 32px !important;
}
#boxed-wrapper .legal-content h2 {
  color: #3cb5a1 !important;
  font-size: 28px !important;
  margin: 30px 0 !important;
}
#boxed-wrapper .legal-content h3 {
  margin: 30px 0 !important;
  font-size: 24px !important;
}

.page-template-legal_info .fusion-fullwidth {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-template-legal_info .legal-page-content {
  padding: 200px 0 100px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page-template-legal_info .legal-page-content {
    padding: 50px 0 70px;
  }
}
@media (max-width: 1200px) {
  .page-template-legal_info .legal-page-content .grid-fix {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.page-template-legal_info .legal-page-content .legal-menu ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}
@media (max-width: 1200px) {
  .page-template-legal_info .legal-page-content .legal-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .page-template-legal_info .legal-page-content .legal-menu ul {
    flex-direction: column !important;
  }
}
.page-template-legal_info .legal-page-content .legal-menu ul li {
  padding: 15px 0;
}
.page-template-legal_info .legal-page-content .legal-menu ul li a {
  font-weight: 600 !important;
  text-transform: uppercase;
  position: relative;
}
.page-template-legal_info .legal-page-content .legal-menu ul li a.active {
  color: #192542 !important;
}
.page-template-legal_info .legal-page-content .legal-content {
  opacity: 0;
  height: 0;
}
.page-template-legal_info .legal-page-content .legal-content.active {
  opacity: 1;
  height: auto;
}
.page-template-legal_info .legal-page-content .legal-content h2 {
  color: #000000 !important;
}
.page-template-legal_info .legal-page-content .legal-content h2:after {
  left: 0 !important;
  transform: none !important;
  bottom: -14px !important;
}

.unaccepted .wpcf7-validates-as-required, .invalid .wpcf7-validates-as-required {
  border-color: red !important;
}

.screen-reader-response {
  display: none !important;
}

.alert-custom .close {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-validation-errors {
  display: none !important;
}

.wpcf7-acceptance-missing {
  display: none !important;
}

.alert-icon {
  display: none !important;
}

.your-consent .wpcf7-not-valid input {
  border-color: red !important;
}

.wpcf7 {
  position: relative !important;
}

.wpcf7-mail-sent-ok,
.fusion-success,
.wpcf7-response-output,
.custom-success-message {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  text-transform: none !important;
  font-family: font-medium !important;
  position: absolute !important;
  right: 0px;
  bottom: -20px;
  margin-bottom: 0 !important;
  color: #192542 !important;
  text-align: left !important;
}
@media (max-width: 1024px) {
  .wpcf7-mail-sent-ok,
  .fusion-success,
  .wpcf7-response-output,
  .custom-success-message {
    position: relative !important;
    right: auto;
    bottom: auto;
    text-align: left !important;
    width: 100% !important;
    margin-top: 30px;
  }
}
.wpcf7-mail-sent-ok .fusion-alert-content-wrapper,
.fusion-success .fusion-alert-content-wrapper,
.wpcf7-response-output .fusion-alert-content-wrapper,
.custom-success-message .fusion-alert-content-wrapper {
  line-height: 1 !important;
}

.loading-spinner {
  width: 40px !important;
  height: 40px !important;
  position: absolute;
  bottom: 0;
  right: 0;
}
.loading-spinner img {
  object-fit: contain !important;
  width: 40px !important;
  height: 40px !important;
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid #192542 !important;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  /* ...existing styles */
  display: grid;
  place-content: center;
}
.wpcf7 input[type=checkbox]::before,
.wpcf7 input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #192542;
}
.wpcf7 input[type=checkbox]:checked::before,
.wpcf7 input[type=radio]:checked::before {
  transform: scale(1);
}

@media (max-width: 1024px) {
  #boxed-wrapper .contact-box-column .fusion-column-wrapper {
    flex-direction: row !important;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  #boxed-wrapper .contact-box-column .fusion-column-wrapper {
    flex-direction: column !important;
  }
}
#boxed-wrapper .contact-box {
  margin-bottom: 30px;
}
#boxed-wrapper .contact-box:last-child {
  margin-bottom: 0;
}
#boxed-wrapper .contact-box h4 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  font-size: 22px !important;
}

@media (max-width: 640px) {
  #boxed-wrapper .contact-form {
    margin-top: 60px;
  }
}
#boxed-wrapper .contact-form .form-row {
  margin-bottom: 30px;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 640px) {
  #boxed-wrapper .contact-form .form-row {
    flex-direction: column;
    margin-bottom: 0;
  }
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 0 !important;
  border-bottom: 1px solid #192542 !important;
  padding: 0 !important;
  color: #192542 !important;
  font-family: font-medium !important;
  font-size: 16px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control {
    margin-bottom: 30px;
  }
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control::placeholder {
  font-size: 16px !important;
  color: #192542 !important;
  font-family: font-medium !important;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance {
  border-bottom: 0 !important;
  margin: 15px 0;
  display: block;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0 !important;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  font-size: 13px !important;
  line-height: 1 !important;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label p, #boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label a {
  font-size: 13px !important;
  color: #192542 !important;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label a {
  position: relative;
}
#boxed-wrapper .contact-form .form-row .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input {
  margin-right: 10px !important;
}

#boxed-wrapper .insurance-checkup-form #form-message {
  font-size: 14px !important;
  position: absolute;
  bottom: 0;
}
#boxed-wrapper .insurance-checkup-form form {
  margin-bottom: 60px;
}
#boxed-wrapper .insurance-checkup-form form input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  width: 1.15em;
  height: 1.15em;
  border: 2px solid #3cb5a1 !important;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
#boxed-wrapper .insurance-checkup-form form input[type=radio] {
  /* ...existing styles */
  display: grid;
  place-content: center;
}
#boxed-wrapper .insurance-checkup-form form input[type=radio]::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #3cb5a1;
  border-radius: 50%;
}
#boxed-wrapper .insurance-checkup-form form input[type=radio]:checked::before {
  transform: scale(1);
}
#boxed-wrapper .insurance-checkup-form form #req-message {
  color: red !important;
  font-size: 14px !important;
  position: absolute;
  bottom: 0;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons.one-button {
  justify-content: flex-start;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button {
  font-family: font-medium !important;
  color: #ffffff !important;
  padding: 6px 22px !important;
  border: 2px solid #192542 !important;
  border-radius: 48px !important;
  background: #192542 !important;
  position: relative;
  z-index: 10;
  text-transform: none !important;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button.submit-form {
  background: #3cb5a1 !important;
  border-color: #3cb5a1 !important;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button .fusion-button-text {
  font-family: font-medium !important;
  color: #ffffff !important;
  position: relative;
  z-index: 10;
  display: block;
  text-transform: none !important;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button:hover .fusion-button-text {
  -webkit-animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  animation: UpInitial 0.3s, UpEnd 0.3s 0.3s;
  color: #192542 !important;
}
#boxed-wrapper .insurance-checkup-form form .step .form-buttons .form-button:before {
  position: absolute;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  border-radius: 48px !important;
  z-index: -1;
}
#boxed-wrapper .insurance-checkup-form form .step#step1 .step-content .form-elements {
  margin-bottom: 30px;
  width: 100%;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content {
  margin-bottom: 30px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content h2 {
  font-size: 28px !important;
  color: #3cb5a1 !important;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .show-elements {
  display: flex;
  justify-content: flex-end;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .show-elements .show-element-wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 70%;
  margin-bottom: 60px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .show-elements .show-element-wrapper label {
  font-family: font-semi-bold !important;
  font-size: 16px !important;
  color: #192542 !important;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .multiple-radio {
  display: flex;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .multiple-radio h2 {
  font-size: 18px !important;
  color: #192542 !important;
  width: 30%;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content textarea {
  width: 100%;
  min-height: 150px;
  margin-top: 15px;
  border: 1px solid #192542;
  padding: 10px;
  color: #192542 !important;
  font-family: font-medium !important;
  font-size: 16px !important;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements {
  margin-bottom: 30px;
  width: 70%;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements:last-child {
  margin-bottom: 0;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements .form-element {
  margin-bottom: 15px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements .form-element label {
  font-family: font-semi-bold !important;
  font-size: 16px !important;
  color: #192542 !important;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.user-type {
  display: flex;
  gap: 30px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.user-type .form-element {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.text-elements.spinning {
  opacity: 0.5;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.text-elements .form-element input {
  border: 0 !important;
  border-bottom: 1px solid #192542 !important;
  padding: 0 !important;
  color: #192542 !important;
  font-family: font-medium !important;
  font-size: 16px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.text-elements .form-element input {
    margin-bottom: 30px;
  }
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.text-elements .form-element input::placeholder {
  font-size: 16px !important;
  color: #192542 !important;
  font-family: font-medium !important;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.radio-elements:not(.user-type) {
  display: flex;
  gap: 30px;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.radio-elements:not(.user-type) .form-element {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#boxed-wrapper .insurance-checkup-form form .step .step-content .form-elements.radio-elements:not(.user-type) .form-element label {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.insurance-checkup-form #req-message {
  display: none;
}

#boxed-wrapper .contact-form.schade {
  display: none !important;
}
#boxed-wrapper .contact-form.schade.active, #boxed-wrapper .contact-form.schade.schade-option {
  display: block !important;
}
#boxed-wrapper .contact-form.schade .cform {
  display: none;
}
#boxed-wrapper .contact-form.schade .cform.one {
  display: block;
}
#boxed-wrapper .contact-form.schade .red-border {
  border: 1px solid red !important;
}
#boxed-wrapper .contact-form.schade .form-row {
  margin-bottom: 30px !important;
  display: flex;
  flex-wrap: wrap;
}
#boxed-wrapper .contact-form.schade .form-row .title {
  display: block;
  width: 100% !important;
  margin-bottom: 10px !important;
  font-weight: 600 !important;
}
#boxed-wrapper .contact-form.schade .form-row .small {
  color: #192542 !important;
  font-size: 14px !important;
}
#boxed-wrapper .contact-form.schade .form-row .ademtest .wpcf7-form-control {
  height: auto !important;
}
#boxed-wrapper .contact-form.schade .form-row .ademtest .wpcf7-form-control.wpcf7-radio {
  padding-left: 0 !important;
  display: block !important;
}
#boxed-wrapper .contact-form.schade .form-row .ademtest .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: block !important;
}
#boxed-wrapper .contact-form.schade .form-row .ademtest .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  color: rgba(25, 37, 66, 0.4) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  display: flex;
  align-items: center;
}
#boxed-wrapper .contact-form.schade .form-row .ademtest .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label input {
  margin-right: 5px !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control {
  transition: all 0.3s ease-in-out;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control:focus {
  border-color: #192542 !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-date, #boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-select, #boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-radio {
  color: rgba(25, 37, 66, 0.4) !important;
  font-weight: 300 !important;
  font-size: 12px !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-date #boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-text {
  height: 50px;
  border-radius: 5px;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-radio {
  border: 0 !important;
  padding-left: 0 !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-radio label {
  display: flex;
  align-items: center;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-radio label input {
  margin-right: 5px !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin-right: 10px;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control.wpcf7-textarea {
  min-height: 90px !important;
}
#boxed-wrapper .contact-form.schade .form-row .wpcf7-form-control::-webkit-input-placeholder {
  color: rgba(25, 37, 66, 0.4) !important;
  font-size: 12px !important;
}
#boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter {
  font-size: 12px !important;
  color: rgba(25, 37, 66, 0.4) !important;
  font-weight: 300 !important;
}
#boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container h3, #boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container span, #boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container a,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter h3,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter span,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter a {
  font-size: 18px !important;
  color: rgba(25, 37, 66, 0.4) !important;
  font-weight: 500 !important;
}
#boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container span, #boxed-wrapper .contact-form.schade .form-row .codedropz-upload-container a,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter span,
#boxed-wrapper .contact-form.schade .form-row .dnd-upload-counter a {
  font-size: 12px !important;
}
#boxed-wrapper .schade-form {
  background: #ffffff !important;
  position: relative;
  z-index: 1;
  height: 100%;
}
#boxed-wrapper .schade-form h3 {
  font-weight: 300 !important;
  color: #192542 !important;
}
#boxed-wrapper .schade-form .schade-option {
  width: 100%;
  position: relative;
  padding: 0;
}
#boxed-wrapper .schade-form .schade-option .loading-spinner {
  display: none !important;
}
#boxed-wrapper .schade-form .schade-option .select-wrapper {
  position: relative;
  margin-bottom: 30px;
}
#boxed-wrapper .schade-form .schade-option .select-wrapper select {
  border-radius: 5px !important;
  font-size: 16px !important;
  font-family: font-medium !important;
}
#boxed-wrapper .schade-form .schade-option .select-wrapper .arrow-span {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  pointer-events: none !important;
}
#boxed-wrapper .schade-form .schade-option .select-wrapper .arrow-span i {
  font-size: 20px !important;
}
#boxed-wrapper .schade-form .schade-option .select-wrapper .arrow-span i:before {
  color: #192542 !important;
}
#boxed-wrapper .schade-form .schade-option select {
  padding-right: 15px !important;
  padding-left: 15px !important;
  border: 1px solid #7c7c7c !important;
  width: 100%;
  appearance: none !important;
  height: 45px !important;
  color: rgba(25, 37, 66, 0.4) !important;
  font-weight: 300 !important;
  font-size: 12px !important;
}
#boxed-wrapper .schade-form .contact-form {
  padding: 0 !important;
}
@media (max-width: 640px) {
  #boxed-wrapper .schade-form .contact-form {
    margin-top: 0 !important;
  }
}
#boxed-wrapper .schade-form .contact-form .loading-spinner {
  right: 0;
  bottom: 75px;
}
@media (max-width: 500px) {
  #boxed-wrapper .schade-form .contact-form .loading-spinner {
    bottom: -45px;
  }
}
#boxed-wrapper .schade-form .cform {
  position: relative;
}
@media (max-width: 640px) {
  #boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-submit {
    width: 100%;
    margin-bottom: 30px;
  }
}
#boxed-wrapper .schade-form .cform .wpcf7-form-control.red-border {
  border-bottom: 1px solid red !important;
}
#boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-acceptance {
  border: 0 !important;
  padding: 0 !important;
  display: block;
}
#boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-acceptance.wpcf7-not-valid label input, #boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-acceptance.wpcf7-not-valid label .wpcf7-list-item-label {
  border-color: red !important;
  color: red !important;
}
#boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-acceptance.wpcf7-not-valid label input a, #boxed-wrapper .schade-form .cform .wpcf7-form-control.wpcf7-acceptance.wpcf7-not-valid label .wpcf7-list-item-label a {
  color: red !important;
}
#boxed-wrapper .schade-form .cform .p-flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #boxed-wrapper .schade-form .cform .p-flex {
    flex-direction: column;
  }
}
#boxed-wrapper .schade-form .cform .fusion-button .icon {
  display: none;
}
#boxed-wrapper .schade-form .cform .fusion-button.back i {
  margin-right: 10px;
  margin-left: 0 !important;
}
#boxed-wrapper .schade-form .cform .fusion-button.wpcf7-submit {
  font-size: 18px !important;
  line-height: 27px !important;
}
#boxed-wrapper .schade-form .cform .form-row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
#boxed-wrapper .schade-form .cform .form-row .title,
#boxed-wrapper .schade-form .cform .form-row .small {
  padding-left: 15px !important;
  padding-right: 15px !important;
  display: block;
  width: 100%;
}
#boxed-wrapper .schade-form .cform .form-row .title {
  color: #192542 !important;
}
#boxed-wrapper .schade-form .cform .form-row p {
  margin-bottom: 0 !important;
}
#boxed-wrapper .schade-form .cform .form-row p.small {
  margin-bottom: 10px !important;
  color: #192542 !important;
}
#boxed-wrapper .schade-form .cform .form-row .wpcf7-select-parent:after {
  content: "";
  width: 25px !important;
  height: 25px !important;
  background: url("/wp-content/themes/Avada-Child/assets/images/arrow_down.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 200;
  pointer-events: none !important;
}
#boxed-wrapper .schade-form .cform .form-row .wpcf7-select-parent .select-arrow {
  border: 0 !important;
  display: none !important;
}
#boxed-wrapper .schade-form .cform .form-row .wpcf7-select-parent .wpcf7-select {
  height: 45px !important;
  border: 1px solid #7c7c7c !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
#boxed-wrapper .schade-form .cform .form-row .wpcf7-select-parent .wpcf7-select.red-border {
  border: 1px solid red !important;
}
#boxed-wrapper .percent-bar {
  width: 100%;
  height: 8px;
  background: #3cb5a1;
  margin: 0 0 30px;
}
#boxed-wrapper .percent-bar .percent {
  background: #192542;
  display: block;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
#boxed-wrapper #autoverzekering .percent {
  width: 16.6667%;
}
#boxed-wrapper .percent {
  position: relative;
}
#boxed-wrapper .percent:after {
  content: "";
  background: url("/wp-content/themes/Avada-Child/assets/images/schade_marker.png") no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -10px;
  top: -15px;
}
#boxed-wrapper .reset-button {
  position: absolute;
}
#boxed-wrapper .reset-button > p {
  margin: 0 !important;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/*# sourceMappingURL=maps/child.css.map */
