@charset "UTF-8";

/*!
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;
}

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

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

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounce {
  -webkit-animation-name: elxr_bounce;
  animation-name: elxr_bounce;
}

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.elxr_flash {
  -webkit-animation-name: elxr_flash;
  animation-name: elxr_flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_pulse {
  -webkit-animation-name: elxr_pulse;
  animation-name: elxr_pulse;
}

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_rubberBand {
  -webkit-animation-name: elxr_rubberBand;
  animation-name: elxr_rubberBand;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_shake {
  -webkit-animation-name: elxr_shake;
  animation-name: elxr_shake;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

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

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_tada {
  -webkit-animation-name: elxr_tada;
  animation-name: elxr_tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_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 elxr_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%);
  }
}

.elxr_wobble {
  -webkit-animation-name: elxr_wobble;
  animation-name: elxr_wobble;
}

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_bounceIn {
  -webkit-animation-name: elxr_bounceIn;
  animation-name: elxr_bounceIn;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceInDown {
  -webkit-animation-name: elxr_bounceInDown;
  animation-name: elxr_bounceInDown;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceInLeft {
  -webkit-animation-name: elxr_bounceInLeft;
  animation-name: elxr_bounceInLeft;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceInRight {
  -webkit-animation-name: elxr_bounceInRight;
  animation-name: elxr_bounceInRight;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceInUp {
  -webkit-animation-name: elxr_bounceInUp;
  animation-name: elxr_bounceInUp;
}

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.elxr_bounceOut {
  -webkit-animation-name: elxr_bounceOut;
  animation-name: elxr_bounceOut;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceOutDown {
  -webkit-animation-name: elxr_bounceOutDown;
  animation-name: elxr_bounceOutDown;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceOutLeft {
  -webkit-animation-name: elxr_bounceOutLeft;
  animation-name: elxr_bounceOutLeft;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceOutRight {
  -webkit-animation-name: elxr_bounceOutRight;
  animation-name: elxr_bounceOutRight;
}

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_bounceOutUp {
  -webkit-animation-name: elxr_bounceOutUp;
  animation-name: elxr_bounceOutUp;
}

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_fadeIn {
  -webkit-animation-name: elxr_fadeIn;
  animation-name: elxr_fadeIn;
}

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInDown {
  -webkit-animation-name: elxr_fadeInDown;
  animation-name: elxr_fadeInDown;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInDownBig {
  -webkit-animation-name: elxr_fadeInDownBig;
  animation-name: elxr_fadeInDownBig;
}

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInLeft {
  -webkit-animation-name: elxr_fadeInLeft;
  animation-name: elxr_fadeInLeft;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInLeftBig {
  -webkit-animation-name: elxr_fadeInLeftBig;
  animation-name: elxr_fadeInLeftBig;
}

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInRight {
  -webkit-animation-name: elxr_fadeInRight;
  animation-name: elxr_fadeInRight;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInRightBig {
  -webkit-animation-name: elxr_fadeInRightBig;
  animation-name: elxr_fadeInRightBig;
}

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInUp {
  -webkit-animation-name: elxr_fadeInUp;
  animation-name: elxr_fadeInUp;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeInUpBig {
  -webkit-animation-name: elxr_fadeInUpBig;
  animation-name: elxr_fadeInUpBig;
}

@-webkit-keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutDown {
  -webkit-animation-name: elxr_fadeOutDown;
  animation-name: elxr_fadeOutDown;
}

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutDownBig {
  -webkit-animation-name: elxr_fadeOutDownBig;
  animation-name: elxr_fadeOutDownBig;
}

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutLeft {
  -webkit-animation-name: elxr_fadeOutLeft;
  animation-name: elxr_fadeOutLeft;
}

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutLeftBig {
  -webkit-animation-name: elxr_fadeOutLeftBig;
  animation-name: elxr_fadeOutLeftBig;
}

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutRight {
  -webkit-animation-name: elxr_fadeOutRight;
  animation-name: elxr_fadeOutRight;
}

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutRightBig {
  -webkit-animation-name: elxr_fadeOutRightBig;
  animation-name: elxr_fadeOutRightBig;
}

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutUp {
  -webkit-animation-name: elxr_fadeOutUp;
  animation-name: elxr_fadeOutUp;
}

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_fadeOutUpBig {
  -webkit-animation-name: elxr_fadeOutUpBig;
  animation-name: elxr_fadeOutUpBig;
}

@-webkit-keyframes elxr_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(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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 elxr_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(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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.elxr_flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: elxr_flip;
  animation-name: elxr_flip;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

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

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateIn {
  -webkit-animation-name: elxr_rotateIn;
  animation-name: elxr_rotateIn;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateInDownLeft {
  -webkit-animation-name: elxr_rotateInDownLeft;
  animation-name: elxr_rotateInDownLeft;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateInDownRight {
  -webkit-animation-name: elxr_rotateInDownRight;
  animation-name: elxr_rotateInDownRight;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateInUpLeft {
  -webkit-animation-name: elxr_rotateInUpLeft;
  animation-name: elxr_rotateInUpLeft;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateInUpRight {
  -webkit-animation-name: elxr_rotateInUpRight;
  animation-name: elxr_rotateInUpRight;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateOut {
  -webkit-animation-name: elxr_rotateOut;
  animation-name: elxr_rotateOut;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateOutDownLeft {
  -webkit-animation-name: elxr_rotateOutDownLeft;
  animation-name: elxr_rotateOutDownLeft;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateOutDownRight {
  -webkit-animation-name: elxr_rotateOutDownRight;
  animation-name: elxr_rotateOutDownRight;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateOutUpLeft {
  -webkit-animation-name: elxr_rotateOutUpLeft;
  animation-name: elxr_rotateOutUpLeft;
}

@-webkit-keyframes elxr_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 elxr_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;
  }
}

.elxr_rotateOutUpRight {
  -webkit-animation-name: elxr_rotateOutUpRight;
  animation-name: elxr_rotateOutUpRight;
}

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideInDown {
  -webkit-animation-name: elxr_slideInDown;
  animation-name: elxr_slideInDown;
}

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideInLeft {
  -webkit-animation-name: elxr_slideInLeft;
  animation-name: elxr_slideInLeft;
}

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideInRight {
  -webkit-animation-name: elxr_slideInRight;
  animation-name: elxr_slideInRight;
}

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideOutLeft {
  -webkit-animation-name: elxr_slideOutLeft;
  animation-name: elxr_slideOutLeft;
}

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideOutRight {
  -webkit-animation-name: elxr_slideOutRight;
  animation-name: elxr_slideOutRight;
}

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_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);
  }
}

.elxr_slideOutUp {
  -webkit-animation-name: elxr_slideOutUp;
  animation-name: elxr_slideOutUp;
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

.elxr_slideInUp {
  -webkit-animation-name: elxr_slideInUp;
  animation-name: elxr_slideInUp;
}

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

.elxr_slideOutDown {
  -webkit-animation-name: elxr_slideOutDown;
  animation-name: elxr_slideOutDown;
}

@-webkit-keyframes elxr_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);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_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);
    -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;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.elxr_hinge {
  -webkit-animation-name: elxr_hinge;
  animation-name: elxr_hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_rollIn {
  -webkit-animation-name: elxr_rollIn;
  animation-name: elxr_rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_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 elxr_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);
  }
}

.elxr_rollOut {
  -webkit-animation-name: elxr_rollOut;
  animation-name: elxr_rollOut;
}

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.elxr_zoomIn {
  -webkit-animation-name: elxr_zoomIn;
  animation-name: elxr_zoomIn;
}

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInDown {
  -webkit-animation-name: elxr_zoomInDown;
  animation-name: elxr_zoomInDown;
}

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInLeft {
  -webkit-animation-name: elxr_zoomInLeft;
  animation-name: elxr_zoomInLeft;
}

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInRight {
  -webkit-animation-name: elxr_zoomInRight;
  animation-name: elxr_zoomInRight;
}

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInUp {
  -webkit-animation-name: elxr_zoomInUp;
  animation-name: elxr_zoomInUp;
}

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.elxr_zoomOut {
  -webkit-animation-name: elxr_zoomOut;
  animation-name: elxr_zoomOut;
}

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.elxr_zoomOutDown {
  -webkit-animation-name: elxr_zoomOutDown;
  animation-name: elxr_zoomOutDown;
}

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.elxr_zoomOutLeft {
  -webkit-animation-name: elxr_zoomOutLeft;
  animation-name: elxr_zoomOutLeft;
}

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.elxr_zoomOutRight {
  -webkit-animation-name: elxr_zoomOutRight;
  animation-name: elxr_zoomOutRight;
}

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.elxr_zoomOutUp {
  -webkit-animation-name: elxr_zoomOutUp;
  animation-name: elxr_zoomOutUp;
}



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

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.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
.stacks-button{--button-text-color:#ffffff;--button-background-color:#0080ff;--button-background-color-hover:#0059b1;--button-radius:0;text-align:left;position:relative;box-sizing:border-box}.stacks-button > a,.stacks-button > button{color:var(--button-text-color) !important;background-color:var(--button-background-color) !important;display:inline-block;box-sizing:border-box;vertical-align:middle;margin:0 0 1rem 0;padding:.85em 1em;border:1px solid transparent;border-radius:var(--button-radius);transition:background-color .25s ease-out,color .25s ease-out;font-family:inherit;font-size:1rem;-webkit-appearance:none;line-height:1;text-align:center;text-decoration:none;cursor:pointer}.stacks-button > a:hover,.stacks-button > a:active,.stacks-button > button:hover,.stacks-button > button:active{background-color:var(--button-background-color-hover) !important}.stacks-button.button-center{text-align:center}.stacks-button.button-right{text-align:right}.stacks-button.button-fill > a,.stacks-button.button-fill > button{display:block;width:100%}.stacks-button.button-plain{--button-background-color:transparent!important;--button-background-color-hover:transparent!important}.stacks-button.button-round{--button-radius:30px}.stacks-button.button-radius{--button-radius:3px}
.lines{border:0;height:0;width:100%;margin:0;padding:0;opacity:1}.lines-wrapper{position:relative}.lines-wrapper.vertical{height:100%}


#stacks_in_3 { overflow: visible !important }



#section-1 {
    background-repeat: no-repeat;
    background-position: center; 
}#stacks_in_1455 *,
#stacks_in_1455 *:before,
#stacks_in_1455 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1461 *,
#stacks_in_1461 *:before,
#stacks_in_1461 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1476 *,
#stacks_in_1476 *:before,
#stacks_in_1476 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1477 {
	margin: 40px 0px 0px 0px;
}
#stacks_in_1464 *,
#stacks_in_1464 *:before,
#stacks_in_1464 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1465 {
	margin: 80px 0px 0px 0px;
}

#stacks_in_1467 {
	font-weight: bolder;
}
.lines.stacks_in_1609{width:100%;margin:calc(120rem/16) auto calc(0rem/16) auto;border-bottom:1px ridge rgba(34, 34, 34, 0.50);background:rgba(255, 255, 255, 1.00);transform:rotate(0deg)}.lines.stacks_in_1609.vertical{border-left:1px ridge rgba(34, 34, 34, 0.50);border-bottom:none;width:0;height:100%;margin:0 auto;margin-top:calc((100% - 100%)/-2)}


#stacks_in_29 { overflow: visible !important }



#section-2 {
    background-repeat: no-repeat;
    background-position: center; 
}
#stacks_in_59 {
	margin: 20px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_396 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_396 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_396 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_396 .cycledex-item-content {
  text-align: left;
  
  
}

#cycledex_stacks_in_396 .cycledex-item-content .cycledex-item-header {
  font-family: inherit;
  font-weight: 100;
  font-size: 22px;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
  letter-spacing: 0.00px;
  word-spacing: 0.00px;
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_396.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_396 .cycledex-inner-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,300.000000px) 600px minmax(64px,300.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_396.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_396.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_396.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_396 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_396 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_396 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 600px;
  z-index: 0;
  aspect-ratio: 1.500000;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_396 .cycledex {
    padding-top: 66.666702%;
  }
}
#cycledex_stacks_in_396 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_396 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_396 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_396 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_396 .cycledex .cycledex-item,
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_396 .cycledex-overlay,
#cycledex_stacks_in_396 .cycledex-overlay-image,
#cycledex_stacks_in_396 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_396.cycledex_active .cycledex-overlay {
  opacity: 0.100000;
}

#cycledex_stacks_in_396[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_396[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_396[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_396 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_396 .cycledex .cycledex-item,
#cycledex_stacks_in_396 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_396 .cycledex .cycledex-origin,
#cycledex_stacks_in_396 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_396 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_396.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_396:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_396 .cycledex-overlay-image,
#cycledex_stacks_in_396 .cycledex-overlay-image > div,
#cycledex_stacks_in_396 .cycledex-overlay,
#cycledex_stacks_in_396 .cycledex-blur,
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_396 .cycledex-blur,
#cycledex_stacks_in_396 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_396 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_396 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_396 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_396 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_396 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_396 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_396 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_396.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_396 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_396 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_396 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_396 .cycledex-item-content {
  
  left: -32px;
  
  
  bottom: calc(600px/8);transform: translate3d(64px,32px,1px) scale(0.666);transform-origin: center left;
  
  
  
  opacity: 0.5;
}
#cycledex_stacks_in_396 .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
  transform: translate3d(0px,0,100px);
  
  opacity: 1;
}
#cycledex_stacks_in_396 .cycledex div.cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,-100px) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_396 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,0) rotateY(-10deg);
}

#cycledex_stacks_in_396 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(600px/16);
  right: calc(600px/16);
}

  #cycledex_stacks_in_396[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_396[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_396[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((600px - 100%)/-2);
    margin-right: calc((600px - 100%)/-2);
    aspect-ratio: 1.500000;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_396[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 66.666702%;
    }
  }
  #cycledex_stacks_in_396[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  #cycledex_stacks_in_396[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 16.500000px;
    line-height: 18.000000px;
    margin-top: 0.000000px;
    margin-bottom: 9.000000px;
  }
  
  
  /*  */


  #cycledex_stacks_in_396[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_396[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_396[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_396[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_396[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_396[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_396[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.500000;
    }
  }
  #cycledex_stacks_in_396[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_1595 .cycledex-item-background,
.cycledex > .stacks_in_1595 .cycledex-depth-left:after,
.cycledex > .stacks_in_1595 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1595.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1595 .cycledex-depth-left,
.cycledex > .stacks_in_1595 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1595 .cycledex-item-background:before,
.cycledex > .stacks_in_1595 .cycledex-depth-left:before,
.cycledex > .stacks_in_1595 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1597 {
	font-weight: bold;
}
.stacks_in_397 .cycledex-item-background,
.cycledex > .stacks_in_397 .cycledex-depth-left:after,
.cycledex > .stacks_in_397 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-397.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_397 .cycledex-depth-left,
.cycledex > .stacks_in_397 .cycledex-depth-right {
  position: relative;
}
.stacks_in_397 .cycledex-item-background:before,
.cycledex > .stacks_in_397 .cycledex-depth-left:before,
.cycledex > .stacks_in_397 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_399 {
	font-weight: bold;
}
.stacks_in_403 .cycledex-item-background,
.cycledex > .stacks_in_403 .cycledex-depth-left:after,
.cycledex > .stacks_in_403 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-403.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_403 .cycledex-depth-left,
.cycledex > .stacks_in_403 .cycledex-depth-right {
  position: relative;
}
.stacks_in_403 .cycledex-item-background:before,
.cycledex > .stacks_in_403 .cycledex-depth-left:before,
.cycledex > .stacks_in_403 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_405 {
	font-weight: bold;
}
.stacks_in_406 .cycledex-item-background,
.cycledex > .stacks_in_406 .cycledex-depth-left:after,
.cycledex > .stacks_in_406 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-406.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_406 .cycledex-depth-left,
.cycledex > .stacks_in_406 .cycledex-depth-right {
  position: relative;
}
.stacks_in_406 .cycledex-item-background:before,
.cycledex > .stacks_in_406 .cycledex-depth-left:before,
.cycledex > .stacks_in_406 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_408 {
	font-weight: bold;
}
.stacks_in_937 .cycledex-item-background,
.cycledex > .stacks_in_937 .cycledex-depth-left:after,
.cycledex > .stacks_in_937 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-937.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_937 .cycledex-depth-left,
.cycledex > .stacks_in_937 .cycledex-depth-right {
  position: relative;
}
.stacks_in_937 .cycledex-item-background:before,
.cycledex > .stacks_in_937 .cycledex-depth-left:before,
.cycledex > .stacks_in_937 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_939 {
	font-weight: bold;
}
.stacks_in_427 .cycledex-item-background,
.cycledex > .stacks_in_427 .cycledex-depth-left:after,
.cycledex > .stacks_in_427 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-427.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_427 .cycledex-depth-left,
.cycledex > .stacks_in_427 .cycledex-depth-right {
  position: relative;
}
.stacks_in_427 .cycledex-item-background:before,
.cycledex > .stacks_in_427 .cycledex-depth-left:before,
.cycledex > .stacks_in_427 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_429 {
	font-weight: bold;
}
.stacks_in_940 .cycledex-item-background,
.cycledex > .stacks_in_940 .cycledex-depth-left:after,
.cycledex > .stacks_in_940 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-940.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_940 .cycledex-depth-left,
.cycledex > .stacks_in_940 .cycledex-depth-right {
  position: relative;
}
.stacks_in_940 .cycledex-item-background:before,
.cycledex > .stacks_in_940 .cycledex-depth-left:before,
.cycledex > .stacks_in_940 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_942 {
	font-weight: bold;
}
.stacks_in_944 .cycledex-item-background,
.cycledex > .stacks_in_944 .cycledex-depth-left:after,
.cycledex > .stacks_in_944 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-944.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_944 .cycledex-depth-left,
.cycledex > .stacks_in_944 .cycledex-depth-right {
  position: relative;
}
.stacks_in_944 .cycledex-item-background:before,
.cycledex > .stacks_in_944 .cycledex-depth-left:before,
.cycledex > .stacks_in_944 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_946 {
	font-weight: bold;
}
.stacks_in_412 .cycledex-item-background,
.cycledex > .stacks_in_412 .cycledex-depth-left:after,
.cycledex > .stacks_in_412 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-412.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_412 .cycledex-depth-left,
.cycledex > .stacks_in_412 .cycledex-depth-right {
  position: relative;
}
.stacks_in_412 .cycledex-item-background:before,
.cycledex > .stacks_in_412 .cycledex-depth-left:before,
.cycledex > .stacks_in_412 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_414 {
	font-weight: bold;
}
.stacks_in_400 .cycledex-item-background,
.cycledex > .stacks_in_400 .cycledex-depth-left:after,
.cycledex > .stacks_in_400 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-400.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_400 .cycledex-depth-left,
.cycledex > .stacks_in_400 .cycledex-depth-right {
  position: relative;
}
.stacks_in_400 .cycledex-item-background:before,
.cycledex > .stacks_in_400 .cycledex-depth-left:before,
.cycledex > .stacks_in_400 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_402 {
	font-weight: bold;
}
.stacks_in_1563 .cycledex-item-background,
.cycledex > .stacks_in_1563 .cycledex-depth-left:after,
.cycledex > .stacks_in_1563 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1563.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1563 .cycledex-depth-left,
.cycledex > .stacks_in_1563 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1563 .cycledex-item-background:before,
.cycledex > .stacks_in_1563 .cycledex-depth-left:before,
.cycledex > .stacks_in_1563 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1565 {
	font-weight: bold;
}
.stacks_in_1567 .cycledex-item-background,
.cycledex > .stacks_in_1567 .cycledex-depth-left:after,
.cycledex > .stacks_in_1567 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1567.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1567 .cycledex-depth-left,
.cycledex > .stacks_in_1567 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1567 .cycledex-item-background:before,
.cycledex > .stacks_in_1567 .cycledex-depth-left:before,
.cycledex > .stacks_in_1567 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1569 {
	font-weight: bold;
}
.stacks_in_409 .cycledex-item-background,
.cycledex > .stacks_in_409 .cycledex-depth-left:after,
.cycledex > .stacks_in_409 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-409.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_409 .cycledex-depth-left,
.cycledex > .stacks_in_409 .cycledex-depth-right {
  position: relative;
}
.stacks_in_409 .cycledex-item-background:before,
.cycledex > .stacks_in_409 .cycledex-depth-left:before,
.cycledex > .stacks_in_409 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_411 {
	font-weight: bold;
}

#stacks_in_62 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_62 .pullquote:before, #stacks_in_62 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_62 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_62 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_62 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_62 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_62 {
	margin:  20px;
	padding:  20px;
}

#stacks_in_210 {
	font-size: 149%;
}


#stacks_in_1423 { overflow: visible !important }



#section-3 {
    background-repeat: no-repeat;
    background-position: center; 
}#stacks_in_1424 { overflow: visible !important }/* -- EACH CSS Template -- */

 


    
    
    #stacks_in_1426 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }	
	#stacks_in_1426 .HYPE_document { overflow: visible; direction:ltr !important; margin:auto; position:relative; min-width: 200px !important;  min-height: 90px !important; }		
	#stacks_in_1426_default26_hype_container,	#stacks_in_1426 .HYPE_document, #stacks_in_1426 .back_wrapper_26, #stacks_in_1426 .back_wrapper { pointer-events: none !important; }		
	#stacks_in_1426_default26_hype_container { direction:ltr !important; margin:auto; display: block !important; }		
	#stacks_in_1426 .size26 {
	 text-align: center; display: block; position: relative;	padding: 0; margin: 0 auto;
	
	 min-height: 800px !important; 	
	}
	#stacks_in_1426 .back_wrapper_26 { max-width: 2000px; text-align: center; display: block; position: relative; padding: 0; margin: 0 auto; }	
	#stacks_in_1426 .back_wrapper { text-align: center; margin-right: auto; margin-left: auto; display: block; position: relative; 	}	
		
	@media (max-width: 768px) {
	 #stacks_in_1426 .size26 {   min-height: 400px !important;   height:auto; }
	}
	@media (max-width: 500px) {
	 #stacks_in_1426 .size26 {   min-height: 220px !important;   height:auto; }
	} 	
		
	#stacks_in_1426 .hype-26-bg {	
	
	 background-image: url(https://gio591.com/Webdesign.jpg) !important; 
			
	  background-position: 50% 50% !important; background-size: cover !important;
	}	
	
    #stacks_in_1426 .hype-26-overlay {
		
	}
	
	#stacks_in_1426 .hype-26-overlay-anim {	
	
	
	
	
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(96, 92, 87, 1.00)), to(rgba(255, 255, 255, 0.00))) !important;
		background-image: -webkit-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;	
		background-image: -moz-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
		background-image: radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
	
	}
	
	#stacks_in_1426 .hype_text_26, #stacks_in_1426 .hype_text_26_back {	
	font-size: 100px !important; letter-spacing: 0px !important; line-height: 200px !important;
	font-family: "montserratbold", sans-serif !important; 
	
	
			
	
	 	
	
	 	
	
			 
	 
	padding-top: 320px !important;		
	padding-right: 0% !important;
	padding-left: 0% !important;	
	
	 		
	}
	
	#stacks_in_1426 .hype_text_26_back {  color: rgba(0, 0, 0, 0.00) !important; }
	
	#stacks_in_1426 .hype_text_26 {		
		color: #FFFFFF !important;	
		
		   		
	
    	
	
	 
    }	  
  
  	#stacks_in_1426 .hype-26-shape, #stacks_in_1426 .hype-26-circle { background-color: rgba(248, 63, 13, 0.50) !important; 
  	
  	  
     }
	
	#stacks_in_1426 .hype-26-shape { 	
		   		
		   display: block !important;  		
	}
	
	#stacks_in_1426 .hype-26-circle { 
		   display: none !important;  		
		   		
	}
	
	#stacks_in_1426 .hype-link-hover-group, #stacks_in_1426 .hype-link-hover, #stacks_in_1426 .hype-link-hover-blank  {  }
	#stacks_in_1426 .hype-link-hover {  }
	
	#stacks_in_1426 .trigger-1 { margin-top: 150px !important; }	
	#stacks_in_1426 .preview_only { opacity: 0.0 !important; }	
	
	/* @group Built-in Webfonts */
	@font-face {
	font-family: 'rubik_mono_oneregular';
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot');
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff2') format('woff2'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff') format('woff'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.ttf') format('truetype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.svg#rubik_mono_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'montserratbold';
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot');
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'), url('../files/webfonts/montserrat/montserrat-bold-webfont.woff') format('woff'), url('../files/webfonts/montserrat/montserrat-bold-webfont.ttf') format('truetype'), url('../files/webfonts/montserrat/montserrat-bold-webfont.svg#montserratbold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Raleway Bold';
	src: url('../files/webfonts/raleway/Raleway-Bold.eot');
	src: url('../files/webfonts/raleway/Raleway-Bold.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/raleway/Raleway-Bold.woff2') format('woff2'), url('../files/webfonts/raleway/Raleway-Bold.woff') format('woff'), url('../files/webfonts/raleway/Raleway-Bold.ttf') format('truetype'), url('../files/webfonts/raleway/Raleway-Bold.svg#ralewaybold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'fjalla_oneregular';
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot');
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff2') format('woff2'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff') format('woff'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.ttf') format('truetype'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.svg#fjalla_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'archivo_blackregular';
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot');
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff2') format('woff2'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff') format('woff'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.ttf') format('truetype'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.svg#archivo_blackregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Paytone One';
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot');
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff2') format('woff2'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff') format('woff'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.ttf') format('truetype'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.svg#paytone-one') format('svg');
	font-weight: normal; font-style: normal; }
	/* @end */



/* -- End EACH CSS Template -- */
#stacks_in_1635 {
	padding: 60px 20px 0px 20px;
}
.fit-text.stacks_in_1637{--fittext-min:2.000000rem;--fittext-max:8.000000rem;--fittext-slope:0.104348;--fittext-max-target:10.434799vw;--fittext-y-intercept:-1.391357;--fittext-min-target:-0.086960rem;font-size:clamp(var(--fittext-min),calc(var(--fittext-min-target) + var(--fittext-max-target)),var(--fittext-max)) ;line-height:1}


#stacks_in_72 { overflow: visible !important }



#section-4 {
    background-repeat: no-repeat;
    background-position: center; 
}
#stacks_in_76 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_76 .pullquote:before, #stacks_in_76 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_76 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_76 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_76 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_76 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_76 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_517 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_517 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_517 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_517 .cycledex-item-content {
  text-align: left;
  
  
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_517.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_517 .cycledex-inner-wrap {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,350.000000px) 700px minmax(64px,350.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_517.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_517.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_517.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_517 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_517 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_517 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 700px;
  z-index: 0;
  aspect-ratio: 1.356589;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_517 .cycledex {
    padding-top: 73.714294%;
  }
}
#cycledex_stacks_in_517 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_517 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_517 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_517 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_517 .cycledex .cycledex-item,
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_517 .cycledex-overlay,
#cycledex_stacks_in_517 .cycledex-overlay-image,
#cycledex_stacks_in_517 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_517.cycledex_active .cycledex-overlay {
  opacity: 0.000000;
}

#cycledex_stacks_in_517[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_517[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_517[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_517 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_517 .cycledex .cycledex-item,
#cycledex_stacks_in_517 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_517 .cycledex .cycledex-origin,
#cycledex_stacks_in_517 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_517 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_517.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_517:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_517 .cycledex-overlay-image,
#cycledex_stacks_in_517 .cycledex-overlay-image > div,
#cycledex_stacks_in_517 .cycledex-overlay,
#cycledex_stacks_in_517 .cycledex-blur,
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_517 .cycledex-blur,
#cycledex_stacks_in_517 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_517 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_517 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_517 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_517 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_517 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_517 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_517 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_517.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_517 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_517 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_517 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_517 .cycledex-item-content {
  transform: translate3d(0,0,1px);
  
    left: calc(700px/16);
  
  
  
  
  
  bottom: calc(700px/16);
}
#cycledex_stacks_in_517 .cycledex div.cycledex-item.item-has-link[data-r-index="0"] {
  transform: translate3d(0,0,0) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_517 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,100px) rotateY(0deg);
}

#cycledex_stacks_in_517 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(700px/16);
  right: calc(700px/16);
}

  #cycledex_stacks_in_517[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_517[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_517[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((700px - 100%)/-2);
    margin-right: calc((700px - 100%)/-2);
    aspect-ratio: 1.356589;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_517[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 73.714294%;
    }
  }
  #cycledex_stacks_in_517[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_517[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  
  /*  */


  #cycledex_stacks_in_517[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_517[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_517[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_517[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_517[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_517[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_517[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.356589;
    }
  }
  #cycledex_stacks_in_517[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_701 .cycledex-item-background,
.cycledex > .stacks_in_701 .cycledex-depth-left:after,
.cycledex > .stacks_in_701 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-701.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_728[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_729 {
	font-weight: bold;
}

#stacks_in_710 {
	font-weight: bold;
}

#stacks_in_711 {
	font-weight: bold;
}
.stacks_in_1612 .cycledex-item-background,
.cycledex > .stacks_in_1612 .cycledex-depth-left:after,
.cycledex > .stacks_in_1612 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1612.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1615[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_1617 {
	font-weight: bold;
}

#stacks_in_1613 {
	font-weight: bold;
}

#stacks_in_1614 {
	font-weight: bold;
}
.stacks_in_639 .cycledex-item-background,
.cycledex > .stacks_in_639 .cycledex-depth-left:after,
.cycledex > .stacks_in_639 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-639.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_718[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_719 {
	font-weight: bold;
}

#stacks_in_648 {
	font-weight: bold;
}

#stacks_in_645 {
	font-weight: bold;
}
.stacks_in_632 .cycledex-item-background,
.cycledex > .stacks_in_632 .cycledex-depth-left:after,
.cycledex > .stacks_in_632 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-632.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_730[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_731 {
	font-weight: bold;
}

#stacks_in_681 {
	font-weight: bold;
}

#stacks_in_638 {
	font-weight: bold;
}
.stacks_in_1586 .cycledex-item-background,
.cycledex > .stacks_in_1586 .cycledex-depth-left:after,
.cycledex > .stacks_in_1586 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1586.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1591[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_1593 {
	font-weight: bold;
}

#stacks_in_1587 {
	font-weight: bold;
}

#stacks_in_1588 {
	font-weight: bold;
}
.stacks_in_1539 .cycledex-item-background,
.cycledex > .stacks_in_1539 .cycledex-depth-left:after,
.cycledex > .stacks_in_1539 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1539.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1542[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_1544 {
	font-weight: bold;
}

#stacks_in_1540 {
	font-weight: bold;
}

#stacks_in_1541 {
	font-weight: bold;
}
.stacks_in_1523 .cycledex-item-background,
.cycledex > .stacks_in_1523 .cycledex-depth-left:after,
.cycledex > .stacks_in_1523 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1523.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1526[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_1528 {
	font-weight: bold;
}

#stacks_in_1524 {
	font-weight: bold;
}

#stacks_in_1525 {
	font-weight: bold;
}
.stacks_in_1571 .cycledex-item-background,
.cycledex > .stacks_in_1571 .cycledex-depth-left:after,
.cycledex > .stacks_in_1571 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1571.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1574[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_1576 {
	font-weight: bold;
}

#stacks_in_1572 {
	font-weight: bold;
}

#stacks_in_1573 {
	font-weight: bold;
}
.stacks_in_541 .cycledex-item-background,
.cycledex > .stacks_in_541 .cycledex-depth-left:after,
.cycledex > .stacks_in_541 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-541.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_738[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_739 {
	font-weight: bold;
}

#stacks_in_583 {
	font-weight: bold;
}

#stacks_in_584 {
	font-weight: bold;
}
.stacks_in_614 .cycledex-item-background,
.cycledex > .stacks_in_614 .cycledex-depth-left:after,
.cycledex > .stacks_in_614 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-614.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_724[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_725 {
	font-weight: bold;
}

#stacks_in_627 {
	font-weight: bold;
}

#stacks_in_620 {
	font-weight: bold;
}
.stacks_in_659 .cycledex-item-background,
.cycledex > .stacks_in_659 .cycledex-depth-left:after,
.cycledex > .stacks_in_659 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-659.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_736[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_737 {
	font-weight: bold;
}

#stacks_in_667 {
	font-weight: bold;
}

#stacks_in_668 {
	font-weight: bold;
}
.stacks_in_763 .cycledex-item-background,
.cycledex > .stacks_in_763 .cycledex-depth-left:after,
.cycledex > .stacks_in_763 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-763.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_764[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_766 {
	font-weight: bold;
}

#stacks_in_768 {
	font-weight: bold;
}

#stacks_in_769 {
	font-weight: bold;
}
.stacks_in_685 .cycledex-item-background,
.cycledex > .stacks_in_685 .cycledex-depth-left:after,
.cycledex > .stacks_in_685 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-685.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_722[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_723 {
	font-weight: bold;
}

#stacks_in_693 {
	font-weight: bold;
}

#stacks_in_694 {
	font-weight: bold;
}
.stacks_in_669 .cycledex-item-background,
.cycledex > .stacks_in_669 .cycledex-depth-left:after,
.cycledex > .stacks_in_669 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-669.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_740[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_741 {
	font-weight: bold;
}

#stacks_in_684 {
	font-weight: bold;
}

#stacks_in_678 {
	font-weight: bold;
}
.stacks_in_695 .cycledex-item-background,
.cycledex > .stacks_in_695 .cycledex-depth-left:after,
.cycledex > .stacks_in_695 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-695.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_742[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_743 {
	font-weight: bold;
}

#stacks_in_761 {
	font-weight: bold;
}

#stacks_in_707 {
	font-weight: bold;
}
.stacks_in_548 .cycledex-item-background,
.cycledex > .stacks_in_548 .cycledex-depth-left:after,
.cycledex > .stacks_in_548 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-548.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_734[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_735 {
	font-weight: bold;
}

#stacks_in_585 {
	font-weight: bold;
}

#stacks_in_586 {
	font-weight: bold;
}
.stacks_in_712 .cycledex-item-background,
.cycledex > .stacks_in_712 .cycledex-depth-left:after,
.cycledex > .stacks_in_712 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-712.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_720[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_721 {
	font-weight: bold;
}

#stacks_in_747 {
	font-weight: bold;
}

#stacks_in_748 {
	font-weight: bold;
}
.stacks_in_649 .cycledex-item-background,
.cycledex > .stacks_in_649 .cycledex-depth-left:after,
.cycledex > .stacks_in_649 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-649.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_732[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_733 {
	font-weight: bold;
}

#stacks_in_657 {
	font-weight: bold;
}

#stacks_in_658 {
	font-weight: bold;
}
.stacks_in_527 .cycledex-item-background,
.cycledex > .stacks_in_527 .cycledex-depth-left:after,
.cycledex > .stacks_in_527 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-527.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_531[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_532 {
	font-weight: bold;
}

#stacks_in_579 {
	font-weight: bold;
}

#stacks_in_580 {
	font-weight: bold;
}
.stacks_in_1546 .cycledex-item-background,
.cycledex > .stacks_in_1546 .cycledex-depth-left:after,
.cycledex > .stacks_in_1546 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1546.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_1549[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_1551 {
	font-weight: bold;
}

#stacks_in_1547 {
	font-weight: bold;
}

#stacks_in_1548 {
	font-weight: bold;
}

#stacks_in_1438 {
	margin: 100px 0px 160px 0px;
}
#button_stacks_in_1439{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(68, 68, 68, 1.00);--button-background-color-hover:rgba(57, 57, 57, 1.00)}



#stacks_in_1433 { overflow: visible !important }



#section-5 {
    background-repeat: no-repeat;
    background-position: center; 
}#stacks_in_1434 { overflow: visible !important }/* -- EACH CSS Template -- */

 


    
    
    #stacks_in_1436 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }	
	#stacks_in_1436 .HYPE_document { overflow: visible; direction:ltr !important; margin:auto; position:relative; min-width: 200px !important;  min-height: 90px !important; }		
	#stacks_in_1436_default26_hype_container,	#stacks_in_1436 .HYPE_document, #stacks_in_1436 .back_wrapper_26, #stacks_in_1436 .back_wrapper { pointer-events: none !important; }		
	#stacks_in_1436_default26_hype_container { direction:ltr !important; margin:auto; display: block !important; }		
	#stacks_in_1436 .size26 {
	 text-align: center; display: block; position: relative;	padding: 0; margin: 0 auto;
	
	 min-height: 800px !important; 	
	}
	#stacks_in_1436 .back_wrapper_26 { max-width: 2000px; text-align: center; display: block; position: relative; padding: 0; margin: 0 auto; }	
	#stacks_in_1436 .back_wrapper { text-align: center; margin-right: auto; margin-left: auto; display: block; position: relative; 	}	
		
	@media (max-width: 768px) {
	 #stacks_in_1436 .size26 {   min-height: 400px !important;   height:auto; }
	}
	@media (max-width: 500px) {
	 #stacks_in_1436 .size26 {   min-height: 220px !important;   height:auto; }
	} 	
		
	#stacks_in_1436 .hype-26-bg {	
	
	 background-image: url(https://gio591.com/Photography.jpg) !important; 
			
	  background-position: 50% 50% !important; background-size: cover !important;
	}	
	
    #stacks_in_1436 .hype-26-overlay {
		
	}
	
	#stacks_in_1436 .hype-26-overlay-anim {	
	
	
	
	
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(96, 92, 87, 1.00)), to(rgba(255, 255, 255, 0.00))) !important;
		background-image: -webkit-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;	
		background-image: -moz-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
		background-image: radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
	
	}
	
	#stacks_in_1436 .hype_text_26, #stacks_in_1436 .hype_text_26_back {	
	font-size: 100px !important; letter-spacing: 0px !important; line-height: 200px !important;
	font-family: "montserratbold", sans-serif !important; 
	
	
			
	
	 	
	
	 	
	
			 
	 
	padding-top: 320px !important;		
	padding-right: 0% !important;
	padding-left: 0% !important;	
	
	 		
	}
	
	#stacks_in_1436 .hype_text_26_back {  color: rgba(28, 28, 28, 0.00) !important; }
	
	#stacks_in_1436 .hype_text_26 {		
		color: #FFFFFF !important;	
		
		   		
	
    	
	
	 
    }	  
  
  	#stacks_in_1436 .hype-26-shape, #stacks_in_1436 .hype-26-circle { background-color: rgba(255, 69, 9, 0.50) !important; 
  	
  	  
     }
	
	#stacks_in_1436 .hype-26-shape { 	
		   		
		   display: block !important;  		
	}
	
	#stacks_in_1436 .hype-26-circle { 
		   display: none !important;  		
		   		
	}
	
	#stacks_in_1436 .hype-link-hover-group, #stacks_in_1436 .hype-link-hover, #stacks_in_1436 .hype-link-hover-blank  {  }
	#stacks_in_1436 .hype-link-hover {  }
	
	#stacks_in_1436 .trigger-1 { margin-top: 150px !important; }	
	#stacks_in_1436 .preview_only { opacity: 0.0 !important; }	
	
	/* @group Built-in Webfonts */
	@font-face {
	font-family: 'rubik_mono_oneregular';
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot');
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff2') format('woff2'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff') format('woff'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.ttf') format('truetype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.svg#rubik_mono_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'montserratbold';
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot');
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'), url('../files/webfonts/montserrat/montserrat-bold-webfont.woff') format('woff'), url('../files/webfonts/montserrat/montserrat-bold-webfont.ttf') format('truetype'), url('../files/webfonts/montserrat/montserrat-bold-webfont.svg#montserratbold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Raleway Bold';
	src: url('../files/webfonts/raleway/Raleway-Bold.eot');
	src: url('../files/webfonts/raleway/Raleway-Bold.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/raleway/Raleway-Bold.woff2') format('woff2'), url('../files/webfonts/raleway/Raleway-Bold.woff') format('woff'), url('../files/webfonts/raleway/Raleway-Bold.ttf') format('truetype'), url('../files/webfonts/raleway/Raleway-Bold.svg#ralewaybold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'fjalla_oneregular';
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot');
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff2') format('woff2'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff') format('woff'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.ttf') format('truetype'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.svg#fjalla_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'archivo_blackregular';
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot');
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff2') format('woff2'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff') format('woff'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.ttf') format('truetype'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.svg#archivo_blackregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Paytone One';
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot');
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff2') format('woff2'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff') format('woff'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.ttf') format('truetype'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.svg#paytone-one') format('svg');
	font-weight: normal; font-style: normal; }
	/* @end */



/* -- End EACH CSS Template -- */

#stacks_in_114 { overflow: visible !important }



#section-6 {
    background-repeat: no-repeat;
    background-position: center; 
}
#stacks_in_115 {
	margin: 40px 0px 0px 0px;
}

#stacks_in_118 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_118 .pullquote:before, #stacks_in_118 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_118 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_118 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_118 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_118 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_118 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_770 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_770 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_770 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_770 .cycledex-item-content {
  text-align: left;
  
  
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_770.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_770 .cycledex-inner-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,300.000000px) 600px minmax(64px,300.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_770.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_770.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_770.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_770 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_770 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_770 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 600px;
  z-index: 0;
  aspect-ratio: 1.415094;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_770 .cycledex {
    padding-top: 70.666702%;
  }
}
#cycledex_stacks_in_770 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_770 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_770 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_770 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_770 .cycledex .cycledex-item,
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_770 .cycledex-overlay,
#cycledex_stacks_in_770 .cycledex-overlay-image,
#cycledex_stacks_in_770 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_770.cycledex_active .cycledex-overlay {
  opacity: 0.100000;
}

#cycledex_stacks_in_770[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_770[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_770[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_770 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_770 .cycledex .cycledex-item,
#cycledex_stacks_in_770 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_770 .cycledex .cycledex-origin,
#cycledex_stacks_in_770 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_770 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_770.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_770:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_770 .cycledex-overlay-image,
#cycledex_stacks_in_770 .cycledex-overlay-image > div,
#cycledex_stacks_in_770 .cycledex-overlay,
#cycledex_stacks_in_770 .cycledex-blur,
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_770 .cycledex-blur,
#cycledex_stacks_in_770 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_770 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_770 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_770 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_770 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_770 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_770 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_770 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_770.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_770 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_770 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_770 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_770 .cycledex-item-content {
  
  left: -32px;
  
  
  bottom: calc(600px/8);transform: translate3d(64px,32px,1px) scale(0.666);transform-origin: center left;
  
  
  
  opacity: 0.5;
}
#cycledex_stacks_in_770 .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
  transform: translate3d(0px,0,100px);
  
  opacity: 1;
}
#cycledex_stacks_in_770 .cycledex div.cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,-100px) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_770 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,0) rotateY(-10deg);
}

#cycledex_stacks_in_770 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(600px/16);
  right: calc(600px/16);
}

  #cycledex_stacks_in_770[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_770[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_770[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((600px - 100%)/-2);
    margin-right: calc((600px - 100%)/-2);
    aspect-ratio: 1.415094;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_770[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 70.666702%;
    }
  }
  #cycledex_stacks_in_770[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_770[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  
  /*  */


  #cycledex_stacks_in_770[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_770[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_770[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_770[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_770[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_770[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_770[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.415094;
    }
  }
  #cycledex_stacks_in_770[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_771 .cycledex-item-background,
.cycledex > .stacks_in_771 .cycledex-depth-left:after,
.cycledex > .stacks_in_771 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-771.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_771 .cycledex-depth-left,
.cycledex > .stacks_in_771 .cycledex-depth-right {
  position: relative;
}
.stacks_in_771 .cycledex-item-background:before,
.cycledex > .stacks_in_771 .cycledex-depth-left:before,
.cycledex > .stacks_in_771 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_772 {
	font-size: 70%;
}
.stacks_in_774 .cycledex-item-background,
.cycledex > .stacks_in_774 .cycledex-depth-left:after,
.cycledex > .stacks_in_774 .cycledex-depth-right:after {
  
  
  background-color: rgba(249, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-774.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_774 .cycledex-depth-left,
.cycledex > .stacks_in_774 .cycledex-depth-right {
  position: relative;
}
.stacks_in_774 .cycledex-item-background:before,
.cycledex > .stacks_in_774 .cycledex-depth-left:before,
.cycledex > .stacks_in_774 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_775 {
	font-size: 70%;
}
.stacks_in_777 .cycledex-item-background,
.cycledex > .stacks_in_777 .cycledex-depth-left:after,
.cycledex > .stacks_in_777 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-777.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_777 .cycledex-depth-left,
.cycledex > .stacks_in_777 .cycledex-depth-right {
  position: relative;
}
.stacks_in_777 .cycledex-item-background:before,
.cycledex > .stacks_in_777 .cycledex-depth-left:before,
.cycledex > .stacks_in_777 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_778 {
	font-size: 70%;
}

#stacks_in_779 {
	font-weight: bold;
}
.stacks_in_780 .cycledex-item-background,
.cycledex > .stacks_in_780 .cycledex-depth-left:after,
.cycledex > .stacks_in_780 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-780.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_780 .cycledex-depth-left,
.cycledex > .stacks_in_780 .cycledex-depth-right {
  position: relative;
}
.stacks_in_780 .cycledex-item-background:before,
.cycledex > .stacks_in_780 .cycledex-depth-left:before,
.cycledex > .stacks_in_780 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_781 {
	font-size: 70%;
}

#stacks_in_782 {
	font-weight: bold;
}
.stacks_in_783 .cycledex-item-background,
.cycledex > .stacks_in_783 .cycledex-depth-left:after,
.cycledex > .stacks_in_783 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-783.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_783 .cycledex-depth-left,
.cycledex > .stacks_in_783 .cycledex-depth-right {
  position: relative;
}
.stacks_in_783 .cycledex-item-background:before,
.cycledex > .stacks_in_783 .cycledex-depth-left:before,
.cycledex > .stacks_in_783 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_784 {
	font-size: 70%;
}

#stacks_in_785 {
	font-weight: bold;
}
.stacks_in_786 .cycledex-item-background,
.cycledex > .stacks_in_786 .cycledex-depth-left:after,
.cycledex > .stacks_in_786 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-786.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_786 .cycledex-depth-left,
.cycledex > .stacks_in_786 .cycledex-depth-right {
  position: relative;
}
.stacks_in_786 .cycledex-item-background:before,
.cycledex > .stacks_in_786 .cycledex-depth-left:before,
.cycledex > .stacks_in_786 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_787 {
	font-size: 70%;
}

#stacks_in_788 {
	font-weight: bold;
}
.stacks_in_789 .cycledex-item-background,
.cycledex > .stacks_in_789 .cycledex-depth-left:after,
.cycledex > .stacks_in_789 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-789.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_789 .cycledex-depth-left,
.cycledex > .stacks_in_789 .cycledex-depth-right {
  position: relative;
}
.stacks_in_789 .cycledex-item-background:before,
.cycledex > .stacks_in_789 .cycledex-depth-left:before,
.cycledex > .stacks_in_789 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_790 {
	font-size: 70%;
}

#stacks_in_791 {
	font-weight: bold;
}
.stacks_in_792 .cycledex-item-background,
.cycledex > .stacks_in_792 .cycledex-depth-left:after,
.cycledex > .stacks_in_792 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-792.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_792 .cycledex-depth-left,
.cycledex > .stacks_in_792 .cycledex-depth-right {
  position: relative;
}
.stacks_in_792 .cycledex-item-background:before,
.cycledex > .stacks_in_792 .cycledex-depth-left:before,
.cycledex > .stacks_in_792 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_793 {
	font-size: 70%;
}

#stacks_in_794 {
	font-weight: bold;
}
.stacks_in_795 .cycledex-item-background,
.cycledex > .stacks_in_795 .cycledex-depth-left:after,
.cycledex > .stacks_in_795 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-795.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_795 .cycledex-depth-left,
.cycledex > .stacks_in_795 .cycledex-depth-right {
  position: relative;
}
.stacks_in_795 .cycledex-item-background:before,
.cycledex > .stacks_in_795 .cycledex-depth-left:before,
.cycledex > .stacks_in_795 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_796 {
	font-size: 70%;
}

#stacks_in_797 {
	font-weight: bold;
}
.stacks_in_798 .cycledex-item-background,
.cycledex > .stacks_in_798 .cycledex-depth-left:after,
.cycledex > .stacks_in_798 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-798.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_798 .cycledex-depth-left,
.cycledex > .stacks_in_798 .cycledex-depth-right {
  position: relative;
}
.stacks_in_798 .cycledex-item-background:before,
.cycledex > .stacks_in_798 .cycledex-depth-left:before,
.cycledex > .stacks_in_798 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_799 {
	font-size: 70%;
}

#stacks_in_800 {
	font-weight: bold;
}
.stacks_in_801 .cycledex-item-background,
.cycledex > .stacks_in_801 .cycledex-depth-left:after,
.cycledex > .stacks_in_801 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-801.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_801 .cycledex-depth-left,
.cycledex > .stacks_in_801 .cycledex-depth-right {
  position: relative;
}
.stacks_in_801 .cycledex-item-background:before,
.cycledex > .stacks_in_801 .cycledex-depth-left:before,
.cycledex > .stacks_in_801 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_802 {
	font-size: 70%;
}

#stacks_in_803 {
	font-weight: bold;
}
.stacks_in_1291 .cycledex-item-background,
.cycledex > .stacks_in_1291 .cycledex-depth-left:after,
.cycledex > .stacks_in_1291 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1291.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1291 .cycledex-depth-left,
.cycledex > .stacks_in_1291 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1291 .cycledex-item-background:before,
.cycledex > .stacks_in_1291 .cycledex-depth-left:before,
.cycledex > .stacks_in_1291 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1296 {
	font-size: 70%;
}

#stacks_in_1293 {
	font-weight: bold;
}

#stacks_in_1442 {
	margin: 100px 0px 160px 0px;
}
#button_stacks_in_1443{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(68, 68, 68, 1.00);--button-background-color-hover:rgba(57, 57, 57, 1.00)}



#stacks_in_1428 { overflow: visible !important }



#section-7 {
    background-repeat: no-repeat;
    background-position: center; 
}#stacks_in_1429 { overflow: visible !important }/* -- EACH CSS Template -- */

 


    
    
    #stacks_in_1431 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }	
	#stacks_in_1431 .HYPE_document { overflow: visible; direction:ltr !important; margin:auto; position:relative; min-width: 200px !important;  min-height: 90px !important; }		
	#stacks_in_1431_default26_hype_container,	#stacks_in_1431 .HYPE_document, #stacks_in_1431 .back_wrapper_26, #stacks_in_1431 .back_wrapper { pointer-events: none !important; }		
	#stacks_in_1431_default26_hype_container { direction:ltr !important; margin:auto; display: block !important; }		
	#stacks_in_1431 .size26 {
	 text-align: center; display: block; position: relative;	padding: 0; margin: 0 auto;
	
	 min-height: 800px !important; 	
	}
	#stacks_in_1431 .back_wrapper_26 { max-width: 2000px; text-align: center; display: block; position: relative; padding: 0; margin: 0 auto; }	
	#stacks_in_1431 .back_wrapper { text-align: center; margin-right: auto; margin-left: auto; display: block; position: relative; 	}	
		
	@media (max-width: 768px) {
	 #stacks_in_1431 .size26 {   min-height: 400px !important;   height:auto; }
	}
	@media (max-width: 500px) {
	 #stacks_in_1431 .size26 {   min-height: 220px !important;   height:auto; }
	} 	
		
	#stacks_in_1431 .hype-26-bg {	
	
	 background-image: url(https://gio591.com/Publications.jpg) !important; 
			
	  background-position: 50% 50% !important; background-size: cover !important;
	}	
	
    #stacks_in_1431 .hype-26-overlay {
		
	}
	
	#stacks_in_1431 .hype-26-overlay-anim {	
	
	
	
	
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(96, 92, 87, 1.00)), to(rgba(255, 255, 255, 0.00))) !important;
		background-image: -webkit-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;	
		background-image: -moz-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
		background-image: radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
	
	}
	
	#stacks_in_1431 .hype_text_26, #stacks_in_1431 .hype_text_26_back {	
	font-size: 100px !important; letter-spacing: 0px !important; line-height: 200px !important;
	font-family: "montserratbold", sans-serif !important; 
	
	
			
	
	 	
	
	 	
	
			 
	 
	padding-top: 320px !important;		
	padding-right: 0% !important;
	padding-left: 0% !important;	
	
	 		
	}
	
	#stacks_in_1431 .hype_text_26_back {  color: rgba(28, 28, 28, 0.00) !important; }
	
	#stacks_in_1431 .hype_text_26 {		
		color: #FFFFFF !important;	
		
		   		
	
    	
	
	 
    }	  
  
  	#stacks_in_1431 .hype-26-shape, #stacks_in_1431 .hype-26-circle { background-color: rgba(255, 69, 9, 0.50) !important; 
  	
  	  
     }
	
	#stacks_in_1431 .hype-26-shape { 	
		   		
		   display: block !important;  		
	}
	
	#stacks_in_1431 .hype-26-circle { 
		   display: none !important;  		
		   		
	}
	
	#stacks_in_1431 .hype-link-hover-group, #stacks_in_1431 .hype-link-hover, #stacks_in_1431 .hype-link-hover-blank  {  }
	#stacks_in_1431 .hype-link-hover {  }
	
	#stacks_in_1431 .trigger-1 { margin-top: 150px !important; }	
	#stacks_in_1431 .preview_only { opacity: 0.0 !important; }	
	
	/* @group Built-in Webfonts */
	@font-face {
	font-family: 'rubik_mono_oneregular';
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot');
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff2') format('woff2'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff') format('woff'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.ttf') format('truetype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.svg#rubik_mono_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'montserratbold';
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot');
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'), url('../files/webfonts/montserrat/montserrat-bold-webfont.woff') format('woff'), url('../files/webfonts/montserrat/montserrat-bold-webfont.ttf') format('truetype'), url('../files/webfonts/montserrat/montserrat-bold-webfont.svg#montserratbold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Raleway Bold';
	src: url('../files/webfonts/raleway/Raleway-Bold.eot');
	src: url('../files/webfonts/raleway/Raleway-Bold.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/raleway/Raleway-Bold.woff2') format('woff2'), url('../files/webfonts/raleway/Raleway-Bold.woff') format('woff'), url('../files/webfonts/raleway/Raleway-Bold.ttf') format('truetype'), url('../files/webfonts/raleway/Raleway-Bold.svg#ralewaybold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'fjalla_oneregular';
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot');
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff2') format('woff2'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff') format('woff'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.ttf') format('truetype'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.svg#fjalla_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'archivo_blackregular';
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot');
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff2') format('woff2'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff') format('woff'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.ttf') format('truetype'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.svg#archivo_blackregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Paytone One';
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot');
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff2') format('woff2'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff') format('woff'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.ttf') format('truetype'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.svg#paytone-one') format('svg');
	font-weight: normal; font-style: normal; }
	/* @end */



/* -- End EACH CSS Template -- */

#stacks_in_156 { overflow: visible !important }



#section-8 {
    background-repeat: no-repeat;
    background-position: center; 
}
#stacks_in_157 {
	margin: 40px 0px 0px 0px;
}

#stacks_in_160 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_160 .pullquote:before, #stacks_in_160 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_160 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_160 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_160 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_160 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_160 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 20px 20px 0px 20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_1479 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_1479 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_1479 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_1479 .cycledex-item-content {
  text-align: left;
  
  
}

#cycledex_stacks_in_1479 .cycledex-item-content .cycledex-item-header {
  font-family: inherit;
  font-weight: 100;
  font-size: 22px;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
  letter-spacing: 0.00px;
  word-spacing: 0.00px;
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_1479.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_1479 .cycledex-inner-wrap {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,275.000000px) 550px minmax(64px,275.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_1479.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_1479.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_1479.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_1479 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_1479 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_1479 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 550px;
  z-index: 0;
  aspect-ratio: 1.000000;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_1479 .cycledex {
    padding-top: 100.000000%;
  }
}
#cycledex_stacks_in_1479 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_1479 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_1479 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_1479 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_1479 .cycledex .cycledex-item,
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_1479 .cycledex-overlay,
#cycledex_stacks_in_1479 .cycledex-overlay-image,
#cycledex_stacks_in_1479 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_1479.cycledex_active .cycledex-overlay {
  opacity: 0.100000;
}

#cycledex_stacks_in_1479[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_1479[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_1479[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_1479 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_1479 .cycledex .cycledex-item,
#cycledex_stacks_in_1479 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_1479 .cycledex .cycledex-origin,
#cycledex_stacks_in_1479 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_1479 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_1479.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_1479:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_1479 .cycledex-overlay-image,
#cycledex_stacks_in_1479 .cycledex-overlay-image > div,
#cycledex_stacks_in_1479 .cycledex-overlay,
#cycledex_stacks_in_1479 .cycledex-blur,
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_1479 .cycledex-blur,
#cycledex_stacks_in_1479 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_1479 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_1479 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_1479 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_1479 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_1479 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_1479 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_1479 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_1479.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_1479 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_1479 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_1479 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_1479 .cycledex-item-content {
  
  left: -32px;
  
  
  bottom: calc(550px/8);transform: translate3d(64px,32px,1px) scale(0.666);transform-origin: center left;
  
  
  
  opacity: 0.5;
}
#cycledex_stacks_in_1479 .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
  transform: translate3d(0px,0,100px);
  
  opacity: 1;
}
#cycledex_stacks_in_1479 .cycledex div.cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,-100px) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_1479 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,0) rotateY(-10deg);
}

#cycledex_stacks_in_1479 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(550px/16);
  right: calc(550px/16);
}

  #cycledex_stacks_in_1479[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_1479[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((550px - 100%)/-2);
    margin-right: calc((550px - 100%)/-2);
    aspect-ratio: 1.000000;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_1479[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 100.000000%;
    }
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  #cycledex_stacks_in_1479[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 16.500000px;
    line-height: 18.000000px;
    margin-top: 0.000000px;
    margin-bottom: 9.000000px;
  }
  
  
  /*  */


  #cycledex_stacks_in_1479[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_1479[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_1479[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_1479[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_1479[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_1479[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_1479[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.000000;
    }
  }
  #cycledex_stacks_in_1479[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_1486 .cycledex-item-background,
.cycledex > .stacks_in_1486 .cycledex-depth-left:after,
.cycledex > .stacks_in_1486 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1486.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1486 .cycledex-depth-left,
.cycledex > .stacks_in_1486 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1486 .cycledex-item-background:before,
.cycledex > .stacks_in_1486 .cycledex-depth-left:before,
.cycledex > .stacks_in_1486 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1488 {
	font-weight: bold;
}
.stacks_in_1483 .cycledex-item-background,
.cycledex > .stacks_in_1483 .cycledex-depth-left:after,
.cycledex > .stacks_in_1483 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1483.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1483 .cycledex-depth-left,
.cycledex > .stacks_in_1483 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1483 .cycledex-item-background:before,
.cycledex > .stacks_in_1483 .cycledex-depth-left:before,
.cycledex > .stacks_in_1483 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1485 {
	font-weight: bold;
}
.stacks_in_1489 .cycledex-item-background,
.cycledex > .stacks_in_1489 .cycledex-depth-left:after,
.cycledex > .stacks_in_1489 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1489.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1489 .cycledex-depth-left,
.cycledex > .stacks_in_1489 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1489 .cycledex-item-background:before,
.cycledex > .stacks_in_1489 .cycledex-depth-left:before,
.cycledex > .stacks_in_1489 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1491 {
	font-weight: bold;
}
.stacks_in_1480 .cycledex-item-background,
.cycledex > .stacks_in_1480 .cycledex-depth-left:after,
.cycledex > .stacks_in_1480 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1480.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1480 .cycledex-depth-left,
.cycledex > .stacks_in_1480 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1480 .cycledex-item-background:before,
.cycledex > .stacks_in_1480 .cycledex-depth-left:before,
.cycledex > .stacks_in_1480 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1482 {
	font-weight: bold;
}

#stacks_in_1446 {
	margin: 100px 0px 160px 0px;
}
#button_stacks_in_1447{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(68, 68, 68, 1.00);--button-background-color-hover:rgba(57, 57, 57, 1.00)}

.lines.stacks_in_1604{width:100%;margin:calc(0rem/16) auto calc(80rem/16) auto;border-bottom:1px ridge rgba(34, 34, 34, 0.50);background:rgba(255, 255, 255, 1.00);transform:rotate(0deg)}.lines.stacks_in_1604.vertical{border-left:1px ridge rgba(34, 34, 34, 0.50);border-bottom:none;width:0;height:100%;margin:0 auto;margin-top:calc((100% - 100%)/-2)}


#stacks_in_1414 { overflow: visible !important }



#section-9 {
    background-repeat: no-repeat;
    background-position: center; 
}
#stacks_in_1414 {
	margin: 60px 0px 0px 0px;
}
#stacks_in_1415 { overflow: visible !important }/* -- EACH CSS Template -- */

 


    
    
    #stacks_in_1422 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }	
	#stacks_in_1422 .HYPE_document { overflow: visible; direction:ltr !important; margin:auto; position:relative; min-width: 200px !important;  min-height: 90px !important; }		
	#stacks_in_1422_default26_hype_container,	#stacks_in_1422 .HYPE_document, #stacks_in_1422 .back_wrapper_26, #stacks_in_1422 .back_wrapper { pointer-events: none !important; }		
	#stacks_in_1422_default26_hype_container { direction:ltr !important; margin:auto; display: block !important; }		
	#stacks_in_1422 .size26 {
	 text-align: center; display: block; position: relative;	padding: 0; margin: 0 auto;
	
	 min-height: 800px !important; 	
	}
	#stacks_in_1422 .back_wrapper_26 { max-width: 2000px; text-align: center; display: block; position: relative; padding: 0; margin: 0 auto; }	
	#stacks_in_1422 .back_wrapper { text-align: center; margin-right: auto; margin-left: auto; display: block; position: relative; 	}	
		
	@media (max-width: 768px) {
	 #stacks_in_1422 .size26 {   min-height: 400px !important;   height:auto; }
	}
	@media (max-width: 500px) {
	 #stacks_in_1422 .size26 {   min-height: 220px !important;   height:auto; }
	} 	
		
	#stacks_in_1422 .hype-26-bg {	
	
	 background-image: url(https://gio591.com/gio591-Contact-Pages.jpg) !important; 
			
	  background-position: 50% 50% !important; background-size: cover !important;
	}	
	
    #stacks_in_1422 .hype-26-overlay {
		
	}
	
	#stacks_in_1422 .hype-26-overlay-anim {	
	
	
	
	
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(96, 92, 87, 1.00)), to(rgba(255, 255, 255, 0.00))) !important;
		background-image: -webkit-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;	
		background-image: -moz-radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
		background-image: radial-gradient(50% 50%, rgba(96, 92, 87, 1.00), rgba(255, 255, 255, 0.00)) !important;
	
	}
	
	#stacks_in_1422 .hype_text_26, #stacks_in_1422 .hype_text_26_back {	
	font-size: 100px !important; letter-spacing: 0px !important; line-height: 200px !important;
	font-family: "montserratbold", sans-serif !important; 
	
	
			
	
	 	
	
	 	
	
			 
	 
	padding-top: 320px !important;		
	padding-right: 0% !important;
	padding-left: 0% !important;	
	
	 		
	}
	
	#stacks_in_1422 .hype_text_26_back {  color: rgba(28, 28, 28, 0.00) !important; }
	
	#stacks_in_1422 .hype_text_26 {		
		color: #FFFFFF !important;	
		
		   		
	
    	
	
	 
    }	  
  
  	#stacks_in_1422 .hype-26-shape, #stacks_in_1422 .hype-26-circle { background-color: rgba(255, 69, 9, 0.50) !important; 
  	
  	  
     }
	
	#stacks_in_1422 .hype-26-shape { 	
		   display: none !important;  		
		   		
	}
	
	#stacks_in_1422 .hype-26-circle { 
		   		
		   display: block !important;  		
	}
	
	#stacks_in_1422 .hype-link-hover-group, #stacks_in_1422 .hype-link-hover, #stacks_in_1422 .hype-link-hover-blank  {  }
	#stacks_in_1422 .hype-link-hover {  }
	
	#stacks_in_1422 .trigger-1 { margin-top: 150px !important; }	
	#stacks_in_1422 .preview_only { opacity: 0.0 !important; }	
	
	/* @group Built-in Webfonts */
	@font-face {
	font-family: 'rubik_mono_oneregular';
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot');
	src: url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff2') format('woff2'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff') format('woff'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.ttf') format('truetype'),
	url('../files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.svg#rubik_mono_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'montserratbold';
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot');
	src: url('../files/webfonts/montserrat/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'), url('../files/webfonts/montserrat/montserrat-bold-webfont.woff') format('woff'), url('../files/webfonts/montserrat/montserrat-bold-webfont.ttf') format('truetype'), url('../files/webfonts/montserrat/montserrat-bold-webfont.svg#montserratbold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Raleway Bold';
	src: url('../files/webfonts/raleway/Raleway-Bold.eot');
	src: url('../files/webfonts/raleway/Raleway-Bold.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/raleway/Raleway-Bold.woff2') format('woff2'), url('../files/webfonts/raleway/Raleway-Bold.woff') format('woff'), url('../files/webfonts/raleway/Raleway-Bold.ttf') format('truetype'), url('../files/webfonts/raleway/Raleway-Bold.svg#ralewaybold') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'fjalla_oneregular';
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot');
	src: url('../files/webfonts/fjallaone/fjallaone-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff2') format('woff2'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.woff') format('woff'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.ttf') format('truetype'), url('../files/webfonts/fjallaone/fjallaone-regular-webfont.svg#fjalla_oneregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'archivo_blackregular';
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot');
	src: url('../files/webfonts/archivoblack/archivoblack-regular-webfont.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff2') format('woff2'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.woff') format('woff'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.ttf') format('truetype'), url('../files/webfonts/archivoblack/archivoblack-regular-webfont.svg#archivo_blackregular') format('svg');
	font-weight: normal; font-style: normal; }
	
	@font-face {
	font-family: 'Paytone One';
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot');
	src: url('../files/webfonts/paytoneone/PaytoneOne-Regular.eot?#iefix') format('embedded-opentype'), 
	url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff2') format('woff2'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.woff') format('woff'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.ttf') format('truetype'), url('../files/webfonts/paytoneone/PaytoneOne-Regular.svg#paytone-one') format('svg');
	font-weight: normal; font-style: normal; }
	/* @end */



/* -- End EACH CSS Template -- */

#stacks_in_234 { overflow: visible !important }



#section-10 {
    background-repeat: no-repeat;
    background-position: center; 
}/* -- Start Skyward Each css Template -- */

.stacks_in_1419skyward, .stacks_in_1419skywardInner, .stacks_in_1419wrapper {
	position: relative;
	z-index: 1;
	overflow: visible;
}


.stacks_in_1419skywardInner {
	top: -50px;
	margin-bottom: -50px;
}
	
		@media (max-width: 61.9em) {
			.stacks_in_1419skywardInner {
				top: -50px;
				margin-bottom: -50px;
			}
		}
		
		@media (max-width: 47.9em) {
			.stacks_in_1419skywardInner {
				top: -50px;
				margin-bottom: -50px;
			}
		}
	





.skywardClearing:after{
	content: "";
    display: table;
    clear: both;
}


/* -- End Skyward Each css Template -- */#stacks_in_1341{
	clear:both;padding: 0;margin: 0;
	counter-reset: section;
	
	-webkit-animation: opLoad 1s ease-out;
	-moz-animation: opLoad 1s ease-out;
	-o-animation: opLoad 1s ease-out;
	animation: opLoad 1s ease-out;
	
}


#stacks_in_1341 img{opacity: 0;-webkit-transition:opacity 1s ease-out;-moz-transition:opacity 1s ease-out;-o-animation: opLoad 1s ease-out;transition:opacity 1s ease-out;}
#stacks_in_1341 img.show{opacity: 1;}


.ncp img{height:auto; width:auto;}
.ncp .count{font-size: 11px;padding: 1px 5px 2px;margin-bottom:.5em;border:1px solid #cfcfcf;color:#aaa;border-radius:2px;display: inline-block;-webkit-font-smoothing: antialiased;
}
#stacks_in_1341 .c+.c .count{margin-left: 16px;}
#stacks_in_1341.s3 .c.s2_3 .count,#stacks_in_1341.s4 .c.s2_4 .count,#stacks_in_1341.s4 .c.s3_4 .count{ margin-left: 8px;}
.ncp .count:before{counter-increment: section;content: 'Column 'counter(section) '';}

.ncp .g:before,.ncp .g:after{content:"";display:table;}
.ncp .g:after{clear:both;}
.ncp .c{display: block;float:left;margin: 1% 0 1% 1.6%;}
.s1_1,.s1_2,.s1_3,.s1_4{margin: 1% 0;}

.ncp .c:first-child { margin-left: 0; }

#stacks_in_1341.s2 .c.s1_2 .c-pad,#stacks_in_1341.s3 .c.s1_3 .c-pad,#stacks_in_1341.s4 .c.s1_4 .c-pad{padding: 0 16px 0 0;}
#stacks_in_1341.s3 .c.s2_3 .c-pad,#stacks_in_1341.s4 .c.s2_4 .c-pad,#stacks_in_1341.s4 .c.s3_4 .c-pad{ padding: 0 8px;}
#stacks_in_1341.s2 .c.s2_2 .c-pad,#stacks_in_1341.s3 .c.s3_3 .c-pad,#stacks_in_1341.s4 .c.s4_4 .c-pad{ padding: 0 0 0 16px;}
.ncp.s1>.c{width: 100%;}.ncp.s2>.c{width: 49.2%;}.ncp.s3>.c{width: 32.26%;}.ncp.s4>.c{width: 23.8%;}

@media only screen and (max-width: 600px) {

	#stacks_in_1341 .c+.c .count,
	#stacks_in_1341.s3 .c.s2_3 .count,
	#stacks_in_1341.s4 .c.s3_4 .count{margin-left: 0;}
	#stacks_in_1341 .c{margin: 1% 0;padding: 0 0;width: 100%;}
	#stacks_in_1341 .c:first-child,#stacks_in_1341.s4 .c.s1_4,#stacks_in_1341.s4 .c.s2_4{ padding: 0 0 0;}
	#stacks_in_1341 .c:last-child,#stacks_in_1341.s4 .c.s3_4,#stacks_in_1341.s4 .c.s4_4{ padding: 0 0 0;}

	#stacks_in_1341.s2 .c-pad,#stacks_in_1341.s3 .c-pad{ padding: 0 !important;}

	#stacks_in_1341.s4 .c.s2_4 .count,
	#stacks_in_1341.s4 .c.s4_4 .count{ margin-left: 16px;}
	#stacks_in_1341.s4 .c {width: 49.2%;}
	#stacks_in_1341.s4 .c.s1_4 .c-pad,#stacks_in_1341.s4 .c.s3_4 .c-pad{ padding: 0 16px 0 0;}
	#stacks_in_1341.s4 .c.s2_4 .c-pad,#stacks_in_1341.s4 .c.s4_4 .c-pad{ padding: 0 0 0 16px;}
}

@media only screen and (max-width: 300px) {
	#stacks_in_1341 .count{ margin-left: 0 !important;}
	#stacks_in_1341 .c .c-pad{padding: 0 !important;}
	#stacks_in_1341.s4 .c{width: 100%;}
}

@-webkit-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

#stacks_in_1341 {
	margin: 40px 0px 0px 0px;
}

#stacks_in_1345 {
	margin: 7px 0px 0px 0px;
}

#stacks_in_1395 {
	padding: 40px 0px 20px 0px;
}
/* Start Contact Form stack CSS code */.stacks_in_1352formwrap{	margin: 0;}#stacks_in_1352comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_1352mail{padding: 0;}.stacks_in_1352fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_1352formail{}.stacks_in_1352fieldset{	padding: 0 20px 0 3px;}#stacks_in_1352 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_1352 label *{display: inline;}#stacks_in_1352 .stacks_in_1352input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF !important;color: #200101 !important;margin: 0;border: 1px solid #D8D8D8 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_1352 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8 !important;background: #FFFFFF !important;color: #200101 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_1352sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #200101 !important;border: 1px solid #D8D8D8 !important;background-color: #FFFFFF !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_1352response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_1352loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_1352autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_1352 textarea{	color: #200101 !important;}/* End Contact Form stack CSS code *//* -- Start Skyward Each css Template -- */

.stacks_in_1357skyward, .stacks_in_1357skywardInner, .stacks_in_1357wrapper {
	position: relative;
	z-index: 1;
	overflow: visible;
}


.stacks_in_1357skywardInner {
	top: -48px;
	margin-bottom: -48px;
}
	
		@media (max-width: 61.9em) {
			.stacks_in_1357skywardInner {
				top: -48px;
				margin-bottom: -48px;
			}
		}
		
		@media (max-width: 47.9em) {
			.stacks_in_1357skywardInner {
				top: -48px;
				margin-bottom: -48px;
			}
		}
	





.skywardClearing:after{
	content: "";
    display: table;
    clear: both;
}


/* -- End Skyward Each css Template -- */
#stacks_out_1357 {
	width: 180px;
	margin-right:0;
}
.lines.stacks_in_1603{width:100%;margin:calc(20rem/16) auto calc(0rem/16) auto;border-bottom:1px ridge rgba(34, 34, 34, 0.50);background:rgba(255, 255, 255, 1.00);transform:rotate(0deg)}.lines.stacks_in_1603.vertical{border-left:1px ridge rgba(34, 34, 34, 0.50);border-bottom:none;width:0;height:100%;margin:0 auto;margin-top:calc((100% - 100%)/-2)}
#elevator-to-top{--elevator-width:50px;--elevator-height:50px;--elevator-color:rgba(252, 255, 255, 0.80);--elevator-radius:5px;--elevator-fill:rgba(68, 68, 68, 1.00);--elevator-border-color:rgba(255, 255, 255, 1.00);--elevator-border-width:0px;--elevator-icon-width:24px;--elevator-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-appearance:none;appearance:none;display:none;overflow:hidden;justify-content:center;align-items:center;padding:0;margin:0;cursor:pointer;transition:all 200ms ease-in-out;position:fixed;bottom:10px;right:10px;z-index:9999;width:var(--elevator-width);height:var(--elevator-height);border-color:var(--elevator-border-color);border-width:var(--elevator-border-width);border-style:solid;background-color:var(--elevator-color);color:var(--elevator-fill);box-shadow:var(--elevator-shadow);border-radius:var(--elevator-radius)}#elevator-to-top svg{width:var(--elevator-icon-width);fill:var(--elevator-fill)}#elevator-to-top:active,#elevator-to-top:focus{outline:none}#elevator-to-top:hover{scale:1.05}
