/*
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
*/
#boxed-wrapper .red-color {
  color: #9c1f25 !important;
}
#boxed-wrapper .red-color h1, #boxed-wrapper .red-color h2, #boxed-wrapper .red-color h3, #boxed-wrapper .red-color h4, #boxed-wrapper .red-color h5, #boxed-wrapper .red-color h6, #boxed-wrapper .red-color p, #boxed-wrapper .red-color a, #boxed-wrapper .red-color strong, #boxed-wrapper .red-color li {
  color: #9c1f25 !important;
}
#boxed-wrapper .white-color {
  color: #ffffff !important;
}
#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 li {
  color: #ffffff !important;
}

@font-face {
  font-family: font-light;
}
/*!
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;
  }
}
.unaccepted .wpcf7-validates-as-required, .invalid .wpcf7-validates-as-required {
  border-color: red !important;
}

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

.alert-custom {
  display: none !important;
}
.alert-custom.success {
  display: inline-block !important;
  padding-left: 0 !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 {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  text-transform: none !important;
  position: absolute !important;
  left: 0px;
  bottom: -20px;
  margin-bottom: 0 !important;
  text-align: left !important;
}
@media (max-width: 1024px) {
  .wpcf7-mail-sent-ok,
  .fusion-success {
    right: 30px !important;
  }
}
@media (max-width: 850px) {
  .wpcf7-mail-sent-ok,
  .fusion-success {
    position: relative !important;
    right: auto;
    bottom: auto;
    text-align: center !important;
    width: 100% !important;
  }
}
@media (max-width: 640px) {
  .wpcf7-mail-sent-ok,
  .fusion-success {
    text-align: left !important;
    padding-left: 30px !important;
  }
}
.wpcf7-mail-sent-ok .fusion-alert-content-wrapper,
.fusion-success .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: 18px;
  height: 18px;
  border: 1px solid #ffffff !important;
  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: 18px;
  height: 18px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ffffff;
}
.wpcf7 input[type=checkbox]:checked::before,
.wpcf7 input[type=radio]:checked::before {
  transform: scale(1);
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  -webkit-font-smoothing: antialiased !important;
  font-family: "Open Sans", sans-serif !important;
  color: #191919 !important;
  font-size: 16px !important;
}

#boxed-wrapper p, #boxed-wrapper li, #boxed-wrapper th, #boxed-wrapper td {
  -webkit-font-smoothing: antialiased !important;
  font-family: "Open Sans", sans-serif !important;
  color: #191919 !important;
  font-size: 19px !important;
}
#boxed-wrapper b, #boxed-wrapper strong {
  font-weight: 700 !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-family: "Open Sans", sans-serif !important;
}
#boxed-wrapper a:hover {
  text-decoration: none !important;
}
#boxed-wrapper a.fusion-button {
  padding: 15px !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #9c1f25 !important;
  letter-spacing: 0.8px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  #boxed-wrapper a.fusion-button {
    width: 100% !important;
    text-align: center !important;
  }
}
#boxed-wrapper a.fusion-button .fusion-button-text {
  color: #9c1f25 !important;
  letter-spacing: 0.8px !important;
}
#boxed-wrapper a.fusion-button:hover {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button:hover:after {
  height: 100%;
}
#boxed-wrapper a.fusion-button:hover .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button:after {
  content: "";
  background: #9c1f25;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
#boxed-wrapper a.fusion-button.white-button {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.white-button .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.white-button:after {
  background: #ffffff !important;
}
#boxed-wrapper a.fusion-button.white-button:hover {
  color: #9c1f25 !important;
}
#boxed-wrapper a.fusion-button.white-button:hover .fusion-button-text {
  color: #9c1f25 !important;
}
#boxed-wrapper a.fusion-button.full-red-button {
  background: #9c1f25 !important;
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-red-button .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-red-button:hover {
  background: #3E5264 !important;
}
#boxed-wrapper a.fusion-button.full-red-button:hover .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-red-button:after {
  display: none;
}
#boxed-wrapper a.fusion-button.full-dark-button {
  background: #3E5264 !important;
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-dark-button .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-dark-button:hover {
  background: #9c1f25 !important;
}
#boxed-wrapper a.fusion-button.full-dark-button:hover .fusion-button-text {
  color: #ffffff !important;
}
#boxed-wrapper a.fusion-button.full-dark-button:after {
  display: none;
}
#boxed-wrapper .wpcf7-submit:focus {
  outline: none !important;
  box-shadow: none !important;
}

#boxed-wrapper h1 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 38px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h1 {
    font-size: 100% !important;
  }
}
#boxed-wrapper h1 p {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 38px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h1 p {
    font-size: 100% !important;
  }
}
#boxed-wrapper h2 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 34px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h2 {
    font-size: 100% !important;
  }
}
#boxed-wrapper h2 p {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 34px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h2 p {
    font-size: 100% !important;
  }
}
#boxed-wrapper h3 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 30px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h3 {
    font-size: 100% !important;
  }
}
#boxed-wrapper h3 p {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 30px !important;
}
#boxed-wrapper h4 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 26px !important;
}
#boxed-wrapper h4 p {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
  font-size: 26px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper h4 p {
    font-size: 100% !important;
  }
}
#boxed-wrapper h5 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
}
#boxed-wrapper h6 {
  font-family: "Open Sans", sans-serif !important;
  color: #3E5264 !important;
}

#boxed-wrapper .title-sep-container {
  display: none !important;
}
#boxed-wrapper .fusion-title-center {
  justify-content: center;
}
#boxed-wrapper .w-100 img {
  width: 100% !important;
  object-fit: cover;
}

#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: #9c1f25 !important;
}
#boxed-wrapper .fusion-flyout-menu-toggle .fusion-toggle-icon-line {
  background: #9c1f25 !important;
}
#boxed-wrapper .fusion-flyout-menu-toggle:hover .fusion-toggle-icon-line {
  background: #9c1f25 !important;
}
#boxed-wrapper .fusion-flyout-menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}
#boxed-wrapper .fusion-flyout-menu.active {
  pointer-events: all;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu {
  overflow: auto;
  margin: 0 !important;
  display: block !important;
  border: none !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: #9c1f25 !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.fusion-mobile-current-nav-item a .menu-text span {
  color: #9c1f25 !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li:last-child a .menu-text {
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li lord-icon {
  width: 43px !important;
  height: 43px !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a {
  font-weight: 500;
  font-size: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  z-index: 9 !important;
  color: #ffffff !important;
  padding: 0 !important;
  height: auto !important;
  border: 0 !important;
  width: 100%;
  justify-content: center;
  position: relative;
  line-height: 1.2 !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a .menu-text {
  display: flex;
  flex-direction: column;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a .menu-text span {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li a:hover {
  text-decoration: none;
  color: #9c1f25 !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: #9c1f25;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu {
  border-color: #9c1f25 !important;
  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: #9c1f25 !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;
  color: #ffffff !important;
}
#boxed-wrapper .fusion-flyout-menu .fusion-menu li .sub-menu li a:hover {
  color: #9c1f25 !important;
}
#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 {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  background: rgba(0, 0, 0, 0.85);
}
#boxed-wrapper .fusion-flyout-menu-bg.active-bg {
  pointer-events: all;
}

#boxed-wrapper .static-row .fusion-builder-row {
  position: static !important;
}
#boxed-wrapper .quote-text p {
  color: #9c1f25 !important;
  font-style: italic !important;
  font-size: 28px !important;
  margin-bottom: 30px !important;
}
#boxed-wrapper .quote-text p:last-child {
  margin-bottom: 0 !important;
}
#boxed-wrapper .quote-column {
  position: absolute;
  left: -15px;
  top: 60px;
}
#boxed-wrapper .quote-column .fusion-column-wrapper {
  margin: 0 !important;
}
#boxed-wrapper .quote-column .fusion-column-wrapper .fusion-imageframe {
  width: 380px;
  opacity: 0.07;
}
@media (max-width: 1024px) {
  #boxed-wrapper .quote-column .fusion-column-wrapper .fusion-imageframe {
    width: 250px;
  }
}
#boxed-wrapper .main-color-before .fusion-column-wrapper {
  position: relative;
}
#boxed-wrapper .main-color-before .fusion-column-wrapper:before {
  content: "";
  background: #3E5264;
  width: 500%;
  height: 100%;
  right: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  #boxed-wrapper .main-color-before .fusion-column-wrapper:before {
    width: calc(100% + 60px);
    left: -30px;
    right: -30px;
    z-index: -1;
  }
}
#boxed-wrapper .image-row .fusion-layout-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe {
  width: 100%;
}
#boxed-wrapper .image-row .fusion-layout-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 992px) {
  #boxed-wrapper .image-row .fusion-layout-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe img {
    height: 400px;
  }
}

#boxed-wrapper table {
  border: 0 !important;
  box-shadow: none !important;
  table-layout: fixed;
}
@media (min-width: 641px) {
  #boxed-wrapper table {
    width: 100%;
  }
}
#boxed-wrapper table thead tr {
  border: 0 !important;
  border-bottom: 1px solid rgba(62, 82, 100, 0.3) !important;
}
#boxed-wrapper table thead tr th {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 700 !important;
  color: #3E5264 !important;
  background: rgba(62, 82, 100, 0.05);
  border: 0 !important;
  font-size: 16px !important;
  padding: 10px;
}
#boxed-wrapper table tbody {
  border: 0 !important;
}
#boxed-wrapper table tbody tr {
  position: relative;
  border-bottom: 1px solid rgba(62, 82, 100, 0.3);
}
#boxed-wrapper table tbody tr:nth-of-type(even) {
  background: rgba(62, 82, 100, 0.05) !important;
}
#boxed-wrapper table tbody tr:nth-of-type(even) td {
  background: transparent !important;
}
#boxed-wrapper table tbody tr td {
  background: rgba(62, 82, 100, 0.05) !important;
  font-size: 14px !important;
  border: 0 !important;
  padding: 10px;
}
#boxed-wrapper .table-row {
  background: rgba(62, 82, 100, 0.05);
  border-radius: 120px;
}
#boxed-wrapper .table-layout {
  padding: 20px 20px 40px;
  border-radius: 28px;
  background: rgba(62, 82, 100, 0.03) !important;
  display: none;
}
#boxed-wrapper .table-layout.active {
  display: block;
}
#boxed-wrapper .table-layout.always-active {
  display: block !important;
}
#boxed-wrapper .table-layout thead th {
  background: rgba(62, 82, 100, 0.03) !important;
  font-size: 16px !important;
}
#boxed-wrapper .table-layout thead th.center {
  text-align: center;
}
#boxed-wrapper .table-layout tbody tr:nth-of-type(even) {
  background: rgba(62, 82, 100, 0.03) !important;
}
#boxed-wrapper .table-layout tbody tr:nth-of-type(even) td {
  background: transparent !important;
}
#boxed-wrapper .table-layout tbody td {
  background: rgba(62, 82, 100, 0.03) !important;
}

.fusion-body #insu-cookies-save,
.fusion-body #cookies-agree {
  margin-bottom: 10px !important;
  font-size: 14px !important;
  width: 100%;
  display: none;
}
.fusion-body #insu-cookies-save {
  padding: 15px !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #9c1f25 !important;
  letter-spacing: 0.8px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  position: relative;
  text-align: center;
}
.fusion-body #insu-cookies-save:after {
  content: "";
  background: #9c1f25;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fusion-body 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-family: "Open Sans", sans-serif !important;
}
.fusion-body a:hover {
  text-decoration: none !important;
}
.fusion-body a.fusion-button,
.fusion-body a #cookies-agree {
  padding: 15px !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #9c1f25 !important;
  letter-spacing: 0.8px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  position: relative;
}
@media (max-width: 640px) {
  .fusion-body a.fusion-button,
  .fusion-body a #cookies-agree {
    width: 100% !important;
    text-align: center !important;
  }
}
.fusion-body a.fusion-button .fusion-button-text,
.fusion-body a #cookies-agree .fusion-button-text {
  color: #9c1f25 !important;
  letter-spacing: 0.8px !important;
}
.fusion-body a.fusion-button:after,
.fusion-body a #cookies-agree:after {
  content: "";
  background: #9c1f25;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fusion-body a.fusion-button.white-button,
.fusion-body a #cookies-agree.white-button {
  color: #ffffff !important;
}
.fusion-body a.fusion-button.white-button .fusion-button-text,
.fusion-body a #cookies-agree.white-button .fusion-button-text {
  color: #ffffff !important;
}
.fusion-body a.fusion-button.white-button:after,
.fusion-body a #cookies-agree.white-button:after {
  background: #ffffff !important;
}
.fusion-body a.fusion-button.full-red-button,
.fusion-body a #cookies-agree.full-red-button {
  background: #9c1f25 !important;
  color: #ffffff !important;
}
.fusion-body a.fusion-button.full-red-button .fusion-button-text,
.fusion-body a #cookies-agree.full-red-button .fusion-button-text {
  color: #ffffff !important;
}
.fusion-body a.fusion-button.full-dark-button,
.fusion-body a #cookies-agree.full-dark-button {
  background: #3E5264 !important;
  color: #ffffff !important;
}
.fusion-body a.fusion-button.full-dark-button .fusion-button-text,
.fusion-body a #cookies-agree.full-dark-button .fusion-button-text {
  color: #ffffff !important;
}
.fusion-body a.fusion-button.full-dark-button:after,
.fusion-body a #cookies-agree.full-dark-button:after {
  display: none;
}
.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 .cookie-preferences .content ul {
  border-color: #3E5264 !important;
}
.fusion-body .cookie-popup .main-cookies {
  max-width: 1200px !important;
}
.fusion-body .cookie-popup .main-cookies .cookie-link {
  color: #3E5264 !important;
}
.fusion-body .cookie-popup p {
  font-size: 16px !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}
.fusion-body .cookie-popup .custom-link {
  font-size: 16px !important;
  display: inline-block !important;
  float: left;
  font-weight: 500 !important;
  color: #191919 !important;
}
.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: #3E5264 !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li {
  color: #3E5264 !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
  font-weight: 500 !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li a {
  color: #3E5264 !important;
  text-decoration: none !important;
  font-size: 16px !important;
}
.fusion-body .cookie-popup .cookie-preferences ul li a:hover {
  text-decoration: none;
  color: #3E5264 !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: #9c1f25;
}
.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;
}

#boxed-wrapper #sectorcatalog-loader {
  display: none;
}
#boxed-wrapper #sectorcatalog-bar-inner {
  background: #9c1f25 !important;
}
#boxed-wrapper .sectorcatalog-filters #sectorcatalog-search {
  background-image: none !important;
}
#boxed-wrapper .sectorcatalog-filters select,
#boxed-wrapper .sectorcatalog-filters #sectorcatalog-search {
  width: 100%;
  border: 0 !important;
  border-bottom: 2px solid #E0E0E0 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 18px !important;
  height: 51px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/wp-content/themes/Avada-Child/assets/images/icons/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  padding: 0 !important;
  color: #3E5264 !important;
  font-weight: 600 !important;
  margin-bottom: 10px;
}
#boxed-wrapper .sectorcatalog-filters select::placeholder,
#boxed-wrapper .sectorcatalog-filters #sectorcatalog-search::placeholder {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  color: #3E5264 !important;
}
#boxed-wrapper .sectorcatalog-filters select option,
#boxed-wrapper .sectorcatalog-filters #sectorcatalog-search option {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  color: #3E5264 !important;
}
#boxed-wrapper #sectorcatalog-count,
#boxed-wrapper .sc-loader-text {
  font-size: 13px !important;
  font-weight: 600 !important;
}
#boxed-wrapper .sc-results .sc-accordion {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#boxed-wrapper .sc-results .sc-accordion .sc-category-toggle {
  border: 0 !important;
  border-bottom: 2px solid #E0E0E0 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px !important;
  height: 51px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/wp-content/themes/Avada-Child/assets/images/icons/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  padding: 0 !important;
  color: #3E5264 !important;
  font-weight: 600 !important;
  background: transparent !important;
  width: 100%;
  text-align: left;
}
#boxed-wrapper .sc-category-panel {
  width: 100%;
  padding: 30px 0;
}
#boxed-wrapper .sc-category-panel .sc-folder {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
#boxed-wrapper .sc-category-panel .sc-folder .sc-folder-toggle {
  border: 0 !important;
  border-bottom: 2px solid #E0E0E0 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/wp-content/themes/Avada-Child/assets/images/icons/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  padding: 0 !important;
  color: #191919 !important;
  font-weight: 700 !important;
  background: transparent !important;
  text-align: left;
}
#boxed-wrapper .sc-category-panel .sc-folder .sector-item {
  font-size: 14px !important;
  margin-bottom: 10px;
  padding: 0 15px;
}
#boxed-wrapper .sc-category-panel .sc-folder .sector-item a {
  color: #9c1f25 !important;
}

.page-template-legal_info .fusion-fullwidth {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-template-legal_info .legal-page-content {
  padding: 120px 0 100px;
  overflow: hidden;
}
@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: #000000 !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;
}

#boxed-wrapper .custom-footer {
  background: rgba(62, 82, 100, 0.05);
  padding: 0 15px;
  z-index: 15;
  position: relative;
}
#boxed-wrapper .custom-footer .fusion-row {
  max-width: 1430px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 1200px) {
  #boxed-wrapper .custom-footer .fusion-row {
    flex-direction: column-reverse;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column {
  display: flex;
  gap: 45px;
}
@media (max-width: 767px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column {
    flex-direction: column;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.footer-padding-column {
  padding: 90px 15px 90px;
}
@media (min-width: 1201px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.footer-padding-column {
    padding: 150px 15px 90px;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column {
  margin-top: -60px;
  height: auto;
}
@media (min-width: 1201px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column {
    height: calc(100% + 120px);
    margin-top: 0;
    top: -60px;
    right: 0;
    position: absolute;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content {
  background: #9c1f25;
  padding: 60px;
  flex-direction: column;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content {
    padding: 60px 30px;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content h3 {
  color: #ffffff !important;
  margin: 0 0 10px !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content p {
  color: #ffffff !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .wpcf7 {
  flex-grow: 1;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .wpcf7 .wpcf7-form {
  height: 100%;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row {
  margin-left: -15px;
  margin-right: -15px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row:last-child {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row p {
  margin-bottom: 10px !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control {
  height: 40px;
  font-family: "Open Sans", sans-serif !important;
  font-size: 18px !important;
  color: #3E5264 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control::placeholder {
  color: #979797 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 18px !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-not-valid {
  border-color: red !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-textarea {
  min-height: 90px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-acceptance {
  border-bottom: 0 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-acceptance label {
  display: flex;
  gap: 10px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-acceptance label .wpcf7-list-item-label {
  font-size: 12px !important;
  color: #ffffff !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-acceptance label .wpcf7-list-item-label a {
  font-size: 12px !important;
  color: #ffffff !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-acceptance.wpcf7-not-valid input {
  border-color: red !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-submit {
  padding: 15px !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  letter-spacing: 0.8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  position: relative;
  float: right;
  z-index: 1;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-submit {
    width: 100% !important;
    text-align: center !important;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-submit:after {
  content: "";
  background: #ffffff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-submit:hover {
  color: #9c1f25 !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column.contact-column .footer-content .contact-form .form-row .wpcf7-form-control.wpcf7-submit:hover:after {
  height: 100%;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content {
  width: 100%;
}
@media (min-width: 641px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content {
    display: flex;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 20px;
  display: flex;
}
@media (max-width: 640px) {
  #boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content {
  display: flex;
  flex-direction: column;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .footer-buttons a {
  font-size: 12px !important;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .footer-buttons a:first-child {
  margin-bottom: 10px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays {
  display: block;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #E0E0E0;
  margin-top: 16px;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays .toggle-holidays {
  text-transform: uppercase;
  color: #3E5264 !important;
  font-weight: 600 !important;
  position: relative;
  cursor: pointer;
  display: flex;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays .toggle-holidays:after {
  content: "";
  background: url("/wp-content/themes/Avada-Child/assets/images/icons/select_arrow.svg") no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 15px;
  background-size: contain;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays .list-holidays {
  display: block;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays .list-holidays ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#boxed-wrapper .custom-footer .fusion-row .footer-column .footer-content .footer-inner-content .holidays .list-holidays ul li {
  font-size: 12px !important;
}
#boxed-wrapper .footer-bottom-row {
  padding: 45px 15px;
}
#boxed-wrapper .footer-bottom-row .fusion-row {
  max-width: 1430px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#boxed-wrapper .footer-bottom-row .fusion-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 640px) {
  #boxed-wrapper .footer-bottom-row .fusion-row ul {
    flex-direction: column;
  }
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li {
  line-height: 1.1;
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li:after {
  content: "|";
  display: inline-block;
  padding: 0 5px;
  color: rgba(25, 25, 25, 0.4) !important;
  font-size: 12px !important;
}
@media (max-width: 640px) {
  #boxed-wrapper .footer-bottom-row .fusion-row ul li:after {
    display: none;
  }
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li:last-child:after {
  display: none;
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li.no-pointers {
  pointer-events: none !important;
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li a {
  color: rgba(25, 25, 25, 0.4);
  font-size: 14px !important;
}
#boxed-wrapper .footer-bottom-row .fusion-row ul li a:hover {
  color: #191919 !important;
}

#boxed-wrapper header {
  margin-bottom: 45px;
}
#boxed-wrapper header .fusion-header .fusion-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 640px) {
  #boxed-wrapper header .fusion-header .fusion-row .header-left-column {
    max-width: 50%;
  }
}
#boxed-wrapper header .fusion-header .fusion-row .header-right-column {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 1230px) {
  #boxed-wrapper header .fusion-header .fusion-row .header-right-column {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 30px;
  }
}
#boxed-wrapper header .fusion-header .fusion-row .logo-column {
  display: flex;
}
@media (min-width: 1126px) {
  #boxed-wrapper header .fusion-header .fusion-row .logo-column {
    margin-right: 30px;
  }
}
#boxed-wrapper header .fusion-header .fusion-row .logo-column .fusion-logo {
  width: 250px;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu {
  overflow: visible;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li {
  padding: 0 30px !important;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li:last-child {
  padding-right: 0 !important;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li:last-child:after {
  display: none !important;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li:after {
  content: "";
  width: 1px;
  height: calc(100% + 20px);
  position: absolute;
  right: 0;
  top: -10px;
  background: rgba(62, 82, 100, 0.37);
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li a {
  height: auto !important;
  font-weight: 600 !important;
  color: #9c1f25 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px;
  border: 0 !important;
}
#boxed-wrapper header .fusion-header .fusion-row .menu-column .fusion-main-menu ul li a:hover {
  color: #3E5264 !important;
}
#boxed-wrapper header .fusion-header .fusion-row .openings-column {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  padding-left: 30px;
}
@media (max-width: 700px) {
  #boxed-wrapper header .fusion-header .fusion-row .openings-column {
    display: none !important;
  }
}
#boxed-wrapper header .fusion-header .fusion-row .openings-column .opening-hours {
  display: flex;
  gap: 5px;
  padding: 12px 26px;
  align-items: center;
  background: #9c1f25;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.8px;
}
#boxed-wrapper header .fusion-header .fusion-row .openings-column .opening-hours i {
  font-size: 20px !important;
  margin-right: 10px;
}

#boxed-wrapper .team-column {
  margin-bottom: 20px !important;
}
@media (max-width: 1024px) {
  #boxed-wrapper .team-column {
    margin-bottom: 45px !important;
    width: 50% !important;
  }
}
@media (max-width: 640px) {
  #boxed-wrapper .team-column {
    width: 100% !important;
  }
}
#boxed-wrapper .team-column .fusion-column-wrapper {
  align-items: center;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1025px) {
  #boxed-wrapper .team-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe {
    height: 400px;
  }
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe:hover img {
  scale: 1.1;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-image-element .fusion-imageframe img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-title {
  justify-content: center;
  margin: 20px 0 10px !important;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-title h4 {
  font-size: 22px !important;
  font-weight: 600 !important;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-text p {
  font-size: 16px !important;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-text p:last-child {
  margin-bottom: 0 !important;
}
#boxed-wrapper .team-column .fusion-column-wrapper .fusion-button {
  font-size: 14px !important;
}

#boxed-wrapper .news-overview-row .fusion-row {
  max-width: 1430px !important;
  margin: 0 !important;
}
@media (max-width: 1460px) {
  #boxed-wrapper .news-overview-row .fusion-row {
    max-width: 100% !important;
  }
}
#boxed-wrapper .latest-news-item .latest-news-item-wrapper .title h4 {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0 0 20px !important;
}
#boxed-wrapper .latest-news-item .latest-news-item-wrapper .excerpt p {
  color: #ffffff !important;
  font-size: 16px !important;
}
#boxed-wrapper .latest-news-item .latest-news-item-wrapper .read-more .fusion-button {
  font-size: 14px !important;
}
#boxed-wrapper .latest-news-items {
  margin-bottom: 45px;
}
#boxed-wrapper .latest-news-items a {
  cursor: pointer;
}
#boxed-wrapper .latest-news-items a:hover .news-thumb {
  overflow: hidden;
}
#boxed-wrapper .latest-news-items a:hover .news-thumb img {
  transform: scale(1.1);
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#boxed-wrapper .latest-news-items a .news-thumb {
  height: 220px;
}
@media (max-width: 1200px) {
  #boxed-wrapper .latest-news-items a .news-thumb {
    height: 250px;
  }
}
#boxed-wrapper .latest-news-items a .news-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#boxed-wrapper .latest-news-items .title h4 {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #3E5264 !important;
}

.single #boxed-wrapper #main {
  padding: 0 !important;
}
.single #boxed-wrapper #main .single-banner {
  height: 400px;
  position: relative;
}
.single #boxed-wrapper #main .single-banner:after {
  content: "";
  background: rgba(62, 82, 100, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.single #boxed-wrapper #main .single-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
}
.single #boxed-wrapper #main article {
  margin-bottom: 0 !important;
}
.single #boxed-wrapper #main .post-content {
  padding: 0 30px;
}
.single #boxed-wrapper #main .post-content .content {
  margin: 120px 0 120px;
}
@media (max-width: 1024px) {
  .single #boxed-wrapper #main .post-content .content {
    margin: 90px 0 160px;
  }
}
.single #boxed-wrapper #main .post-content .content h1 {
  margin: 0 0 15px !important;
}
@media (max-width: 640px) {
  .single #boxed-wrapper #main .post-content .content h1 {
    font-size: 30px !important;
  }
}
.single #boxed-wrapper #main .post-content .content h2, .single #boxed-wrapper #main .post-content .content h3, .single #boxed-wrapper #main .post-content .content h4 {
  margin: 0 0 15px !important;
  font-size: 24px !important;
}

#boxed-wrapper .artisteeq-partners-swiper {
  width: 100%;
}
#boxed-wrapper .artisteeq-partners-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
#boxed-wrapper .artisteeq-partners-swiper .swiper-wrapper .swiper-slide a {
  display: flex;
}
#boxed-wrapper .artisteeq-partners-swiper .swiper-wrapper .swiper-slide a img {
  width: 90px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
}
/*# sourceMappingURL=maps/child.css.map */
