@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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

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

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

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

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

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

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

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

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

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

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

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

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

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

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

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

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

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  80% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

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

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  80% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

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

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

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

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

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

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

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

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

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

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

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

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

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

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

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

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

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

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

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg)
      scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg)
      scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg)
      scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg)
      scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg)
      scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg)
      scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(10%) skewX(-30deg);
    transform: translateX(10%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

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

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(10%) skewX(-30deg);
    -ms-transform: translateX(10%) skewX(-30deg);
    transform: translateX(10%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

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

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

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

  100% {
    -webkit-transform: translateX(10%) skewX(-30deg);
    transform: translateX(10%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(10%) skewX(-30deg);
    -ms-transform: translateX(10%) skewX(-30deg);
    transform: translateX(10%) skewX(-30deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

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

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  animation-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

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

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
  }

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  animation-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    -ms-transform: translateX(10%);
    transform: translateX(10%);
  }

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  animation-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
  }

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

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    -ms-transform: translateX(10%);
    transform: translateX(10%);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%) rotate(-120deg);
    transform: translateX(-10%) rotate(-120deg);
  }

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

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%) rotate(-120deg);
    -ms-transform: translateX(-10%) rotate(-120deg);
    transform: translateX(-10%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(10%) rotate(120deg);
    transform: translateX(10%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(10%) rotate(120deg);
    -ms-transform: translateX(10%) rotate(120deg);
    transform: translateX(10%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*www.jq22.com*/
@font-face {
  font-family: "iconfont"; /* Project id 3904812 */
  src: url(data:font/woff2;base64,d09GMgABAAAAAAZYAAsAAAAADcwAAAYLAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACETAqMIIl9ATYCJAMwCxoABCAFhGcHgT8bzAvIjtJc9BqZSoAkn/93y+57CSFEZgijdaSmglQswCOTkWQkVDTsOuw6dLpuVpW/7YEAuNz9f8UpRBN8TuC2vScWRRC1aY3/ud+rP1dJ451rzwY6hZ8dtkyxD7SookixBEvECfgsRldzYnXkPoCrgAAkwzEVNDN3cRQVXd2x0BU8Pp1AFUu6pqFDNMX4iVZC5AnULRMgMTxAl/RTANdmb09eGElEgPJE4PtZXp+TxpsHcPQ6zi27wB2QkNdXoCxNAR4ABxi8Z1KymVY/Da5gDs7Y0lAy7zIA9fCbAeIVB/gDyWcoHVAPRA6MOqAf2nOYO3pduQzK89mJevEvHuDBI2SUD0fgJZKApAC2ouKLHhkOIELAAwd4FjKOCCEIOBLIVI4KISg4EQjhA2cUhODA0YGAAIf2IOCFw5wSonuLgqGQ9mmLegD9APKHFsEb1lNLyBVlC/eWiqARL60GEiGgqj6PmDPgUVWlp89XJ0kKBJXd1S/Fy3t3Fl4D3FclKf86Ibk3ZLX5l9PU55F3+kllfFAqPzD+cO6NwoCY8UjhNbd/+sFEvja+L9dZqImV3KKR35erq+sslNzq6qKZH8oslYpd824hN6CBc1HbPHWJXJ2xzAuq00UpHk0Y8diKMFFswhQtsgpdJFcufW1bC33u/v57Kf/t9DfhznhqSTTR576a++RC3e0k98MP8cJD7oP5h3OPRGNSzdiSm/n23I3nf/it+913cqFfZ79Y/IthTySnWLLOlwvxTr/O0vTurF6zY1BmX/5Bt4ali+5DhTrDJG6CAOJxMB8yhKy05Y7aTLpoqtvpFA8As5W5bRBdJPq/WFiXGBCthH9TJSpGEpRAMvyRAd1i3eyIe0+Gb8PfVd/WXdX9zPAWtUafje1e3R3bHdt9IEes/bHaMD40gB94e6n0G+7Uu4b+vxAYPWd0+Isvr7omPHr2GO2lV0P4Zz+nMRYSZgsBlg4Io0Z+y5UK7dOQRkyCwhOIsFUWDmnrCl7kzK8arMtNMtYZuVzh5tC+V1H/iROasAZiTCg2Ay01hPfsCR88uHZd3zu5PskoId3z39O4WUJo5aqQMFrQVq3Ucp1/cLO8szjtqUZ5R6GzQsUna/RLxi1adfXs/C3zp/B/PdhzXdPowHd/pWrVU3GvmXOsrdPWr9Rmh2f3fi707LuLAowZaaxxydlJs0LbJs2e/9mjc9g2eZ6tE+dX33jmh+iQ2kX8y7+viSvhurCizayfsV8uNpO1lfUrMJXe+aYa7hpW1TEp08J18UfytzvueLX3Fb0/SaaSyU/y9/cq3t0bibwSviL8SiTCzoQpI6+dNCmmfaqxiZOY9nHV+FM/LVrMAp9oscUpse+m8bD+9NO/lYq3D+Lx3M/FpuKN2fu+W/jdfQumY+8foPwt9wA3EAC4MfVm7St6W/uMXjjMmv5bLsOjF6D8HS1zQ111hx5F+44+2z6ltdos/fXzvRR2dh69Y1Pl5POi/JW3/dnjg0MKo8zVWx7r8YgokMmfZs36BLZWytcCyju8XDRquTxEXrpTcT1kJwVIYgjw8dUH8Ps2uFVkJ0CIDYoBlFc34IjCaB4/EDxkI0EgmgKSQZizvawKrTgk4QPQFxczIPx4CKgKLwHHjw/QPP4H8KjFQRD4cQEk8UDdm6wvSc1qZ7rD0sHk9qCZsq2M5DlZpSuZkW3W2/sccdbeYcIWHDF0eNs3j1msfRXrdGwxRjpOJphpt1uCc/XjseZmO9jabjeylDO0wXFaJw4blhna99CU3YJZ2jE6B5MWRNL2pKspxWbJ9Ow0P95KjCGrma6diI4r23WoJKXyIEZgKIYT0PPYFqnkniR32MIwEo6izAhGzHaF2VJw5/pKplm4bUG0Di/WiElxDEXDEs5WEzFM6SlDZQ/dPrfl5qb9E5ThT64ElHCEJx4iEC8RiY9IRCYKUeFrm1nDtgyDBRpN3XLs7KY2kzVkdWu7nRXSWbNBt4W2wfmSprCVmdtMS2mobaPbKd1M65Z/m6k360sRnVRb3p7dblpGdjaTW7Sn6jUm7sjam2wlo1s1oZmeZUpmAQ==)
      format("woff2"),
    url(data:font/woff;base64,d09GRgABAAAAAAhAAAsAAAAADcwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAARAAAAGA8FU5gY21hcAAAAYgAAACoAAACTO/p0HJnbHlmAAACMAAAA6cAAAYg78/yxmhlYWQAAAXYAAAAMQAAADYjWdPPaGhlYQAABgwAAAAgAAAAJAfdA41obXR4AAAGLAAAABMAAAAwMAD//2xvY2EAAAZAAAAAGgAAABoMRgp6bWF4cAAABlwAAAAfAAAAIAEhAJ1uYW1lAAAGfAAAAUAAAAJnEKM8sHBvc3QAAAe8AAAAgwAAAL8zz9AGeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGFhYJzAwMrAwNTJdIaBgaEfQjO+ZjBi5ACKMrAyM2AFAWmuKQwHnjG8nsDc8L+BgYH5DgOQZGBEUcQEAHMnDPV4nOWSMQ6DMBAE17FDHBOklOlp0/EiPkKZmiIvSZUXrUA8Ata+lPCCnDWWbm2dT7cGcAbgxVMEwH3hkOMj1RXdIxU94KX8gbuUSDAwMrFhy479NMx+GdcVOD7ZDaeKeyt3FnRa44SrXqxwQSydVAeV/iluZX//sjpP3ch+MhjZT0Yje8lklPuNoemCraE5g52R/wR7Q7PHNBhyAbM35AeW0UDaAD0HOO94nLVUTWwbVRCeec/71ql3m9rP3iWJu9Gu7V0lkRJw1l6EExL+QlSCQEoRohSBUhGBWikKp3AKKgoHpBIOJSqCVI1Q4cCNoJ57oFd+BDlAIxGJHipx4MLRfmHeBrdUKHBArN7Om3nzzTfreTOGIwD7P/DP+DD0wiCMwRQ8Ay/DEqzCOrwPgHXnOBbFCAbhJMbNcf9f7P8Z30JkA2E4sKQFfqLlcqpupWo5DMvK/q+AZT70p/8Qob6hTSMPDv6mqa//OR7oQS3428wEgwy/4UcJP99us8sbHg4Nb3h3MR+xTcgD1IIxDONmfRCxWXeKJgrc6pedQi2W3+IFGdcKakYuFJSMQ/kdrstao6AeK0Au5XiHdcCCPggggvuhAU/CHLwAi/AGQHKH1ykKKnM8lfL3Ymo06x6KKCjWYze1CJNaRhBOYZzgQRx9TCUyE4zcv5KZ95D5Ol7fZ1Hc4myRG4ItsgyOc4PZXGRI4EMim81lMSsyWU9ke3JZrbVvcgMjhr8xHcBUHtlCZRVvvxhxTZCy/MINPq9JTjI83/G5YXD2M89kPiSnMPir5MIdSmhrvM07itLQKmRpdTVL8AsMKY2O0WleX63g7dNb2sykYpqCTzKimWfqtYyZoQUg0vp+wW7BcQhpfmbgWTil58YdZZVAmKJUdB3XTEg44/UkbMQPY6SLoMthdmtqxNEoVgLzKBY9JFgzcaNm0qylNdOA8Tsau2Tn7VNrT82/NzTsD7YGzxW8Xtexjx2ZWXkpXypVy+UbhXK5UiqxtVrlzcdnJ1szMyuzxf5j3nPuA2VPfWpJaRHwUk7KXN5xWC9OLDz4RGtidrJRHzrd4IJuxR98dGl6vhSUHL80Ry9pv7fi+oR3fHFlsZXh2dG52sjY89KV8r7CgdRl2N8HyADbo65zoaL7+u6l88P0vfa0LaXNr2t5iM6uyH5JS12/d09nZH+H7fNROEpGgmEgim4PiqJTT9iep16xqn02nlGbdl/VwjMeXtGK+lhtakd3xs6yX2EAoCdtXgpPJ6xHN3EQERl9bYI31K7VF1hYxaoV9Flql3ay1S6dk41vHXJePYijNCzN9RP7Mq0PdIl1MuMgV5qff9/5SuRtk7XMvN1exjnTzgu1TZKtk4cMNiFy8ke1LQqWwKcJ2/0da8zRHSkT1/RL/ufb3ga73G7jwrb3wUg3/wm2Cxzof18SBCslv1HBa+xi5xy7eFVdu4on2M2z6t2dHXyE0H8ApEYQsAB4nGNgZGBgAOLu7DXz4/ltvjJwszCAwAPZ4y9g9P///6+wMDDrAbkcDEwgUQBriw1aAAAAeJxjYGRgYG7438AQw8Lw/z8DAwsDA1AEBfAAAHXjBHN4nGNhYGBgwYr//8cmDgAv5QIvAAAAAAAAvADOAPABoAImAmACgAK2AuQC9gMQAAB4nGNgZGBg4GGYyMDNAAJMQMwFhAwM/8F8BgAYtAG/AHichZE9bsJAEIWfwZAElChKpDRpVikoEsn8lEipUKCnoAez5ke211ovSNQ5TY6QE+QI6Whzikh52EMDRbza2W/evpkdyQDusIeH8rvnLtnDJbOSK7jAo3CV+pOwT34WrqGJnnCd+qtwAy94E26yY8YOnn/FrIV3YQ+3+BCu4AafwlXqX8I++Vu4hgf8CNep/wo3MPGuhZtoeeHA6qnTczXbqVVo0sik7niO9WITT+2pPNE2X5lUdYPOURrpVNtjm3y76DkXqciaRA15q+PYqMyatQ5dsHQu67fbkehBaBIMYKExhWOcQ2GGHeMKIQxSREV0Z/mY7gU2iFlp/3VP6LbIqR9yhS4CdM5cI7rSwnk6TY4tX+tRdXQrbsuahDSUWs1JYrLiDzzcramE1AMsi6oMfbS5ohN/UMyQ/AHYk29XeJxtjFELwjAMhJNNq9sqiPj/RmZrmyEJA4Orv96KPon3dMfdd9DARz38l8cGW9zgFh3ucI8d9jigxwN0M1tSSSmeZia5q40Lx2wkRc0F40zqltpM7B6RVxafayC9EAeS48p0oy9ZvQ7FCkuyN9BW/Pzz+jQd1V9JsnGow8kAXmE5MrUA)
      format("woff"),
    url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzI8FU5gAAABjAAAAGBjbWFw7+nQcgAAAhwAAAJMZ2x5Zu/P8sYAAASEAAAGIGhlYWQjWdPPAAAA4AAAADZoaGVhB90DjQAAALwAAAAkaG10eDAA//8AAAHsAAAAMGxvY2EMRgp6AAAEaAAAABptYXhwASEAnQAAARgAAAAgbmFtZRCjPLAAAAqkAAACZ3Bvc3Qzz9AGAAANDAAAAL8AAQAAA4D/gABcBAD//wAABAAAAQAAAAAAAAAAAAAAAAAAAAwAAQAAAAEAAItrrJ9fDzz1AAsEAAAAAADgHcfoAAAAAOAdx+j////UBAADLgAAAAgAAgAAAAAAAAABAAAADACRAAsAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwOYA65ADgP+AAAAD3ACAAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAAAABAAAAAQAAAAEAAAAAAAABQAAAAMAAAAsAAAABAAAAbgAAQAAAAAAsgADAAEAAAAsAAMACgAAAbgABACGAAAAGAAQAAMACOYA5gTmCOYK5g3mI+Yz5mHofukD65D//wAA5gDmBOYI5grmDeYj5jPmYeh+6QPrkP//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABABgAGAAYABgAGAAYABgAGAAYABgAGAAAAAUABAABAAsAAgAJAAMABgAHAAgACgAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAlAAAAAAAAAALAADmAAAA5gAAAAAFAADmBAAA5gQAAAAEAADmCAAA5ggAAAABAADmCgAA5goAAAALAADmDQAA5g0AAAACAADmIwAA5iMAAAAJAADmMwAA5jMAAAADAADmYQAA5mEAAAAGAADofgAA6H4AAAAHAADpAwAA6QMAAAAIAADrkAAA65AAAAAKAAAAAAC8AM4A8AGgAiYCYAKAArYC5AL2AxAAAAAKAAD/1AOnAyoADwAfAC8APwBPAF8AbwB/AI8AkAAAATIWHQEUBisBIiY9ATQ2MyEyFh0BFAYrASImPQE0NjMhMhYdARQGKwEiJj0BNDYzATIWHQEUBisBIiY9ATQ2MyEyFh0BFAYrASImPQE0NjMhMhYdARQGKwEiJj0BNDYzATIWHQEUBisBIiY9ATQ2MyEyFh0BFAYrASImPQE0NjMhMhYdARQGKwEiJj0BNDY7AQECGyYmG28bJiYbAaMbJiYbcRsmJhsBoRsmJhtxHCYmHP4NGyYmG28bJiYbAaMbJiYbcRsmJhsBoRsmJhtxHCYmHP4NGyYmG28bJiYbAaMbJiYbcRsmJhsBoRsmJhtxHCYmHHEDKSYbbxsmJhtvGyYmG28bJiYbbxsmJhtvGyYmG28bJv7PJhtvHCYmHG8bJiYbbxwmJhxvGyYmG28cJiYcbxsm/s4mG28bJiYbbxsmJhtvGyYmG28bJiYbbxsmJhtvGyYAAAAAAQAAAAADgwIHAAUAAAEhNSEnNwOC/PwCnpYeASkqlh4AAAAAAQAAAAADmwKdABEAACUiLwEmNDYyHwEBNjIWFAcBBgGhGhP9EiU0E9ABjRM0JRL+RhNiEv4TNCYT0QGPEyU1Ev5DEgALAAAAAAOGAv0ADAAZACIAJwAwADUARwBMAFkAZgByAAA3Ii8BJjQ2Mh8BFhQGASImND8BNjIWFA8BBgEiJjQ2Mh4BBiciFDI0FyImNDYyFhQGJyIUMjQFIiY/ATQ3ATYyHwEWFAcBBiMnBzcBJxciLwEmNDYyHwEWFAYHIiY0PwE2MhYUDwEGASEiJjQ2MyEyFhQG5AMCZgMFBgJmAgQBMwMFAg0DBgQCDQMBOgYICAsIAQgGBAgeBggJCwgIBgQI/NsDBQEnAgHvAgYCZgIC/hEBAmIjfwHoWycDAmYCBAYCZgIE4wMFA1MDBgQCVAIBgv0hAwUFAwLfAwQEmQJmAgYFA2UDBgQB1QUGAg0CBAYCDQP9/ggLCAgLCBIICBIICwgICwgSCAgMBgONAgEB7wICZgIGAv4RAWl/IwHoXKECZgIGBAJmAgYEQAQGAlQCBQYCUwL+aAQHBAQHBAAABgAAAAADsgLkAB0AJgAvAEYAUABaAAABMhcuAiMiBgcGFRQXFhcHNxcWFxYzMjcmNTQ+AScyFhQGIiY0NgciJjQ2MhYUBgU0Jy4BIyIHDgEUHgEzMjc2NxcnNjc2JSImNDYzMhYUBjMiJjQ2MzIWFAYCmA0RDVqFS1OOKSohHzsfbBIeDxcWDRAKRnhdERUVJBwcxRIcHCMVFQKFJSN5REg9O0ZGeEgUGhAeVRcxHB7+pgwTEwwRFRWYCxMTCxEWFgIPATxiOEU7PEg9NTIpXDUDBgIEASEfQm9AUxUiFRYhFUwWIRUVIhX0OzQyPB4dZnhmOwQDCC5MJSsvVxMXExMYEhMXExMYEgAAAAP//wAABAAC4AALABcAIwAAASEiJjQ2MyEyFhQGAyEiJjQ2MyEyFhQGAyEiJjQ2MyEyFhQGA+D8QA0TEw0DwA0TEw38QA0TEw0DwA0TEw38QA0TEw0DwA0TEwKgExoTExoT/sATGhMTGhP+wBMaExMaEwAAAQAA/9UC/wMuAA4AAAE3ASYiBhQXCQEGFBYyNwLgHv5gDCQZDQFj/p0NGSQMAWMeAaANGSQM/pz+nQwkGQ0AAAEAAAAAA2sC6wAbAAAJASY0NjIXCQE2MhYUBwkBFhQGIicJAQYiJjQ3AcX+3AwZIgwBJAEkDCIZDP7cASQMGSIM/tz+3AwiGQwBgAEkDCIZDP7cASQMGSIM/tz+3AwiGQwBJP7cDBkiDAAAAAIAAAAAA9oCtAALABcAAAkBBiImNDcBNjIWFAUBFhQGIicBJjQ2MgPT/cQGEQ0HAjsHEQ38cQFMBw0RBv6zBw0RAo/9xAYNEQYCPAYLE9n+swYSDAYBTQYRDQAAAQAAAAADhQIWAAYAABM3FwchFSGrsx6WAp78/AFisx6VKwAAAgAAAAADSgLcAAMACgAAEyEVIQEjFSE1IwG2ApT9bAKUpf62pQFKAttr/orV1QFBAAAAAAAAEgDeAAEAAAAAAAAAEwAAAAEAAAAAAAEACAATAAEAAAAAAAIABwAbAAEAAAAAAAMACAAiAAEAAAAAAAQACAAqAAEAAAAAAAUACwAyAAEAAAAAAAYACAA9AAEAAAAAAAoAKwBFAAEAAAAAAAsAEwBwAAMAAQQJAAAAJgCDAAMAAQQJAAEAEACpAAMAAQQJAAIADgC5AAMAAQQJAAMAEADHAAMAAQQJAAQAEADXAAMAAQQJAAUAFgDnAAMAAQQJAAYAEAD9AAMAAQQJAAoAVgENAAMAAQQJAAsAJgFjQ3JlYXRlZCBieSBpY29uZm9udGljb25mb250UmVndWxhcmljb25mb250aWNvbmZvbnRWZXJzaW9uIDEuMGljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdABpAGMAbwBuAGYAbwBuAHQAUgBlAGcAdQBsAGEAcgBpAGMAbwBuAGYAbwBuAHQAaQBjAG8AbgBmAG8AbgB0AFYAZQByAHMAaQBvAG4AIAAxAC4AMABpAGMAbwBuAGYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0ACWppdWdvbmdnZRJqaWFudG91X3FpZWh1YW55b3UGZHVpaGFvBnFpYW5iaQZ3ZWl4aW4MaGFuYmFvY2FpZGFuEHhpYWxhamlhbnRvdXhpYW8LeXV5aW5ndWFuYmkDZHVpFGppYW50b3VfcWllaHVhbnp1b19vDGZhbmh1aWRpbmdidQAAAA==)
      format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-jiugongge:before {
  content: "\e608";
}

.icon-jiantou_qiehuanyou:before {
  content: "\e60d";
}

.icon-duihao:before {
  content: "\e633";
}

.icon-qianbi:before {
  content: "\e604";
}

.icon-weixin:before {
  content: "\e600";
}

.icon-hanbaocaidan:before {
  content: "\e661";
}

.icon-xialajiantouxiao:before {
  content: "\e87e";
}

.icon-yuyinguanbi:before {
  content: "\e903";
}

.icon-dui:before {
  content: "\e623";
}

.icon-jiantou_qiehuanzuo_o:before {
  content: "\eb90";
}

.icon-fanhuidingbu:before {
  content: "\e60a";
}

.common-ny-nav .ny-nav .mycontainer .nav ul:after,
.common-ny-nav .ny-nav .mycontainer:after,
.pro-common-advantage .advantage-img ul li:after,
.pro-common-advantage .advantage-text ul:after,
.pro-common-function .mycontainer .funtion-list ul:after,
.pro-common-intro .cont:after,
.solution-common-case .cont:after,
.solution-common-points .mycontainer .cont:after {
  content: "";
  display: block;
  clear: both;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
main {
  display: block;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
body,
dd,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: inherit;
}
input::-webkit-input-placeholder {
  line-height: normal;
}
textarea {
  resize: none;
}
.hamburger {
  display: block;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  overflow: visible;
  position: relative;
  width: 28px;
  height: 29px;
}
.hamburger > div,
.hamburger > view {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger > div,
.hamburger > div:after,
.hamburger > div:before,
.hamburger > view,
.hamburger > view:after,
.hamburger > view:before {
  width: 28px;
  height: 3px;
  background-color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: absolute;
  -webkit-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.hamburger > div:after,
.hamburger > div:before,
.hamburger > view:after,
.hamburger > view:before {
  content: "";
  display: block;
}
.hamburger > div:before,
.hamburger > view:before {
  top: -13px;
}
.hamburger > div:after,
.hamburger > view:after {
  bottom: -13px;
}
.hamburger.hamburger-1 > div,
.hamburger.hamburger-1 > view {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-1 > div:after,
.hamburger.hamburger-1 > view:after {
  top: -26px;
  -webkit-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  -o-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  -moz-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
}
.hamburger.hamburger-1 > div:before,
.hamburger.hamburger-1 > view:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -o-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -moz-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -moz-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -o-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-1.active > div,
.hamburger.hamburger-1.active view {
  -webkit-transform: translate3d(0, -13px, 0) rotate(-45deg);
  -moz-transform: translate3d(0, -13px, 0) rotate(-45deg);
  transform: translate3d(0, -13px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.32s;
  -moz-transition-delay: 0.32s;
  -o-transition-delay: 0.32s;
  transition-delay: 0.32s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.hamburger-1.active > div:after,
.hamburger.hamburger-1.active view:after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  -o-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  -moz-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
}
.hamburger.hamburger-1.active > div:before,
.hamburger.hamburger-1.active view:before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  -o-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -o-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  -moz-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear,
    -moz-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    -moz-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    -o-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
}
.hamburger.hamburger-2 > div,
.hamburger.hamburger-2 > view {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-2 > div:after,
.hamburger.hamburger-2 > view:after {
  top: -26px;
  -webkit-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  -o-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  -moz-transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    opacity 0.1s linear, background-color 0.3s linear;
}
.hamburger.hamburger-2 > div:before,
.hamburger.hamburger-2 > view:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    background-color 0.3s linear,
    -o-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -moz-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s,
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -moz-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -o-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-2.active > div,
.hamburger.hamburger-2.active > view {
  -webkit-transform: translate3d(0, -13px, 0) rotate(45deg);
  -moz-transform: translate3d(0, -13px, 0) rotate(45deg);
  transform: translate3d(0, -13px, 0) rotate(45deg);
  -webkit-transition-delay: 0.32s;
  -moz-transition-delay: 0.32s;
  -o-transition-delay: 0.32s;
  transition-delay: 0.32s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.hamburger-2.active > div:after,
.hamburger.hamburger-2.active > view:after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  -o-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  -moz-transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s linear 0.27s, background-color 0.3s linear;
}
.hamburger.hamburger-2.active > div:before,
.hamburger.hamburger-2.active > view:before {
  top: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  -o-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    background-color 0.3s linear,
    -o-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  -moz-transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear,
    -moz-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s,
    transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    background-color 0.3s linear,
    -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    -moz-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s,
    -o-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
}
.hamburger.hamburger-3 > div,
.hamburger.hamburger-3 > view {
  top: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 0;
}
.hamburger.hamburger-3 > div:before,
.hamburger.hamburger-3 > view:before {
  top: 13px;
  -webkit-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  -o-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  -moz-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
}
.hamburger.hamburger-3 > div:after,
.hamburger.hamburger-3 > view:after {
  top: 26px;
  -webkit-transition: background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: background-color 0.3s linear,
    -o-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear,
    -moz-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -moz-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -o-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger.hamburger-3.active > div,
.hamburger.hamburger-3.active > view {
  -webkit-transform: translate3d(0, 13px, 0) rotate(135deg);
  -moz-transform: translate3d(0, 13px, 0) rotate(135deg);
  transform: translate3d(0, 13px, 0) rotate(135deg);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.hamburger.hamburger-3.active > div:before,
.hamburger.hamburger-3.active > view:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}
.hamburger.hamburger-3.active > div:after,
.hamburger.hamburger-3.active > view:after {
  -webkit-transform: translate3d(0, -26px, 0) rotate(-270deg);
  -moz-transform: translate3d(0, -26px, 0) rotate(-270deg);
  transform: translate3d(0, -26px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.hamburger.hamburger-4 > div,
.hamburger.hamburger-4 > view {
  top: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 0;
}
.hamburger.hamburger-4 > div:before,
.hamburger.hamburger-4 > view:before {
  top: 13px;
  -webkit-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  -o-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  -moz-transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
  transition: opacity 0.15s ease 0.4s, background-color 0.3s linear;
}
.hamburger.hamburger-4 > div:after,
.hamburger.hamburger-4 > view:after {
  top: 26px;
  -webkit-transition: background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: background-color 0.3s linear,
    -o-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear,
    -moz-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background-color 0.3s linear,
    -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -moz-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -o-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger.hamburger-4.active > div,
.hamburger.hamburger-4.active > view {
  -webkit-transform: translate3d(0, 13px, 0) rotate(-135deg);
  -moz-transform: translate3d(0, 13px, 0) rotate(-135deg);
  transform: translate3d(0, 13px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.hamburger.hamburger-4.active > div:before,
.hamburger.hamburger-4.active > view:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}
.hamburger.hamburger-4.active > div:after,
.hamburger.hamburger-4.active > view:after {
  -webkit-transform: translate3d(0, -26px, 0) rotate(270deg);
  -moz-transform: translate3d(0, -26px, 0) rotate(270deg);
  transform: translate3d(0, -26px, 0) rotate(270deg);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.hamburger.hamburger-5 > div,
.hamburger.hamburger-5 > view {
  margin-top: -2px;
  -webkit-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  -o-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  -moz-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  transition: background-color 0.2s ease-in 0.25s, background-color 0.3s linear;
}
.hamburger.hamburger-5 > div:before,
.hamburger.hamburger-5 > view:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -moz-transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger.hamburger-5 > div:after,
.hamburger.hamburger-5 > view:after {
  top: 13px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -moz-transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger.hamburger-5.active > div,
.hamburger.hamburger-5.active > view {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: rgba(0, 0, 0, 0);
}
.hamburger.hamburger-5.active > div:before,
.hamburger.hamburger-5.active > view:before {
  left: -56px;
  top: -56px;
  -webkit-transform: translate3d(56px, 56px, 0) rotate(45deg);
  -moz-transform: translate3d(56px, 56px, 0) rotate(45deg);
  transform: translate3d(56px, 56px, 0) rotate(45deg);
  -webkit-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -o-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -moz-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}
.hamburger.hamburger-5.active > div:after,
.hamburger.hamburger-5.active > view:after {
  right: -56px;
  top: -56px;
  -webkit-transform: translate3d(-56px, 56px, 0) rotate(-45deg);
  -moz-transform: translate3d(-56px, 56px, 0) rotate(-45deg);
  transform: translate3d(-56px, 56px, 0) rotate(-45deg);
  -webkit-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -o-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -moz-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}
.hamburger.hamburger-6 > div,
.hamburger.hamburger-6 > view {
  margin-top: -2px;
  -webkit-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  -o-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  -moz-transition: background-color 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  transition: background-color 0.2s ease-in 0.25s, background-color 0.3s linear;
}
.hamburger.hamburger-6 > div:before,
.hamburger.hamburger-6 > view:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s linear 0.2s, left 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -moz-transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, left 0.2s ease-in 0.25s, background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger.hamburger-6 > div:after,
.hamburger.hamburger-6 > view:after {
  top: 13px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -moz-transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s linear 0.2s, right 0.2s ease-in 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -moz-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    -o-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger.hamburger-6.active > div,
.hamburger.hamburger-6.active > view {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: rgba(0, 0, 0, 0);
}
.hamburger.hamburger-6.active > div:before,
.hamburger.hamburger-6.active > view:before {
  left: -56px;
  top: 56px;
  -webkit-transform: translate3d(56px, -56px, 0) rotate(-45deg);
  -moz-transform: translate3d(56px, -56px, 0) rotate(-45deg);
  transform: translate3d(56px, -56px, 0) rotate(-45deg);
  -webkit-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -o-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -moz-transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}
.hamburger.hamburger-6.active > div:after,
.hamburger.hamburger-6.active > view:after {
  right: -56px;
  top: 56px;
  -webkit-transform: translate3d(-56px, -56px, 0) rotate(45deg);
  -moz-transform: translate3d(-56px, -56px, 0) rotate(45deg);
  transform: translate3d(-56px, -56px, 0) rotate(45deg);
  -webkit-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -o-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    background-color 0.3s linear,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  -moz-transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s,
    transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    background-color 0.3s linear,
    -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -moz-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s,
    -o-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
}
.hamburger.hamburger-7 > div,
.hamburger.hamburger-7 > view {
  top: 0;
  margin-top: 0;
}
.hamburger.hamburger-7 > div:before,
.hamburger.hamburger-7 > view:before {
  top: 13px;
  -webkit-transition-property: opacity, background-color, -webkit-transform;
  transition-property: opacity, background-color, -webkit-transform;
  -o-transition-property: opacity, background-color, -o-transform;
  -moz-transition-property: transform, opacity, background-color, -moz-transform;
  transition-property: transform, opacity, background-color;
  transition-property: transform, opacity, background-color, -webkit-transform,
    -moz-transform, -o-transform;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.hamburger.hamburger-7 > div:after,
.hamburger.hamburger-7 > view:after {
  top: 26px;
}
.hamburger.hamburger-7.active > div,
.hamburger.hamburger-7.active > view {
  -webkit-transform: translate3d(0, 13px, 0) rotate(45deg);
  -moz-transform: translate3d(0, 13px, 0) rotate(45deg);
  transform: translate3d(0, 13px, 0) rotate(45deg);
}
.hamburger.hamburger-7.active > div:before,
.hamburger.hamburger-7.active > view:before {
  -webkit-transform: rotate(-45deg) translate3d(-4px, -10px, 0);
  -moz-transform: rotate(-45deg) translate3d(-4px, -10px, 0);
  transform: rotate(-45deg) translate3d(-4px, -10px, 0);
  opacity: 0;
}
.hamburger.hamburger-7.active > div:after,
.hamburger.hamburger-7.active > view:after {
  -webkit-transform: translate3d(0, -26px, 0) rotate(-90deg);
  -moz-transform: translate3d(0, -26px, 0) rotate(-90deg);
  transform: translate3d(0, -26px, 0) rotate(-90deg);
}
.hamburger.hamburger-8 > div,
.hamburger.hamburger-8 > view {
  top: 0;
  margin-top: 0;
}
.hamburger.hamburger-8 > div:before,
.hamburger.hamburger-8 > view:before {
  top: 13px;
  -webkit-transition-property: opacity, background-color, -webkit-transform;
  transition-property: opacity, background-color, -webkit-transform;
  -o-transition-property: opacity, background-color, -o-transform;
  -moz-transition-property: transform, opacity, background-color, -moz-transform;
  transition-property: transform, opacity, background-color;
  transition-property: transform, opacity, background-color, -webkit-transform,
    -moz-transform, -o-transform;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.hamburger.hamburger-8 > div:after,
.hamburger.hamburger-8 > view:after {
  top: 26px;
}
.hamburger.hamburger-8.active > div,
.hamburger.hamburger-8.active > view {
  -webkit-transform: translate3d(0, 13px, 0) rotate(-45deg);
  -moz-transform: translate3d(0, 13px, 0) rotate(-45deg);
  transform: translate3d(0, 13px, 0) rotate(-45deg);
}
.hamburger.hamburger-8.active > div:before,
.hamburger.hamburger-8.active > view:before {
  -webkit-transform: rotate(45deg) translate3d(-4px, -10px, 0);
  -moz-transform: rotate(45deg) translate3d(-4px, -10px, 0);
  transform: rotate(45deg) translate3d(-4px, -10px, 0);
  opacity: 0;
}
.hamburger.hamburger-8.active > div:after,
.hamburger.hamburger-8.active > view:after {
  -webkit-transform: translate3d(0, -26px, 0) rotate(90deg);
  -moz-transform: translate3d(0, -26px, 0) rotate(90deg);
  transform: translate3d(0, -26px, 0) rotate(90deg);
}
.hamburger.hamburger-9 > div,
.hamburger.hamburger-9 > view {
  margin-top: -2px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-9 > div:before,
.hamburger.hamburger-9 > view:before {
  -webkit-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
}
.hamburger.hamburger-9 > div:after,
.hamburger.hamburger-9 > view:after {
  -webkit-transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear;
  transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-9.active > div,
.hamburger.hamburger-9.active > view {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
  -o-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.hamburger-9.active > div:before,
.hamburger.hamburger-9.active > view:before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
}
.hamburger.hamburger-9.active > div:after,
.hamburger.hamburger-9.active > view:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -o-transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -o-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -moz-transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -moz-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear;
  transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -moz-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -o-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}
.hamburger.hamburger-10 > div,
.hamburger.hamburger-10 > view {
  margin-top: -2px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-10 > div:before,
.hamburger.hamburger-10 > view:before {
  -webkit-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
  transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in,
    background-color 0.3s linear;
}
.hamburger.hamburger-10 > div:after,
.hamburger.hamburger-10 > view:after {
  -webkit-transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s ease-in 0.34s, background-color 0.3s linear,
    -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear;
  transition: bottom 0.1s ease-in 0.34s,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-10.active > div,
.hamburger.hamburger-10.active > view {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
  -webkit-transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
  -o-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.hamburger-10.active > div:before,
.hamburger.hamburger-10.active > view:before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s,
    background-color 0.3s linear;
}
.hamburger.hamburger-10.active > div:after,
.hamburger.hamburger-10.active > view:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -o-transition: bottom 0.1s ease-out, background-color 0.3s linear,
    -o-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -moz-transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -moz-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear;
  transition: bottom 0.1s ease-out,
    transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -moz-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -o-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}
.hamburger.hamburger-11 > div,
.hamburger.hamburger-11 > view {
  margin-top: -2px;
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-11 > div:before,
.hamburger.hamburger-11 > view:before {
  -webkit-transition: top 0.1s ease 0.14s, opacity 0.1s ease,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease 0.14s, opacity 0.1s ease,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease 0.14s, opacity 0.1s ease,
    background-color 0.3s linear;
  transition: top 0.1s ease 0.14s, opacity 0.1s ease,
    background-color 0.3s linear;
}
.hamburger.hamburger-11 > div:after,
.hamburger.hamburger-11 > view:after {
  -webkit-transition: bottom 0.1s ease 0.14s, background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease 0.14s, background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s ease 0.14s, background-color 0.3s linear,
    -o-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: bottom 0.1s ease 0.14s,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease 0.14s,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear;
  transition: bottom 0.1s ease 0.14s,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -o-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.hamburger-11.active > div,
.hamburger.hamburger-11.active > view {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
  -o-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.hamburger-11.active > div:before,
.hamburger.hamburger-11.active > view:before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s ease 0.14s,
    background-color 0.3s linear;
  -o-transition: top 0.1s ease, opacity 0.1s ease 0.14s,
    background-color 0.3s linear;
  -moz-transition: top 0.1s ease, opacity 0.1s ease 0.14s,
    background-color 0.3s linear;
  transition: top 0.1s ease, opacity 0.1s ease 0.14s,
    background-color 0.3s linear;
}
.hamburger.hamburger-11.active > div:after,
.hamburger.hamburger-11.active > view:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease, background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease, background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -o-transition: bottom 0.1s ease, background-color 0.3s linear,
    -o-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  -moz-transition: bottom 0.1s ease,
    transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -moz-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transition: bottom 0.1s ease,
    transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear;
  transition: bottom 0.1s ease,
    transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    background-color 0.3s linear,
    -webkit-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -moz-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s,
    -o-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}
.hamburger.hamburger-12 > div,
.hamburger.hamburger-12 > view {
  margin-top: -2px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger.hamburger-12 > div:after,
.hamburger.hamburger-12 > div:before,
.hamburger.hamburger-12 > view:after,
.hamburger.hamburger-12 > view:before {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.hamburger.hamburger-12 > div:before,
.hamburger.hamburger-12 > view:before {
  -webkit-transition-property: top, opacity, background-color;
  -o-transition-property: top, opacity, background-color;
  -moz-transition-property: top, opacity, background-color;
  transition-property: top, opacity, background-color;
}
.hamburger.hamburger-12 > div:after,
.hamburger.hamburger-12 > view:after {
  -webkit-transition-property: bottom, background-color, -webkit-transform;
  transition-property: bottom, background-color, -webkit-transform;
  -o-transition-property: bottom, background-color, -o-transform;
  -moz-transition-property: bottom, transform, background-color, -moz-transform;
  transition-property: bottom, transform, background-color;
  transition-property: bottom, transform, background-color, -webkit-transform,
    -moz-transform, -o-transform;
}
.hamburger.hamburger-12.active > div,
.hamburger.hamburger-12.active > view {
  -webkit-transform: rotate(765deg);
  -moz-transform: rotate(765deg);
  -ms-transform: rotate(765deg);
  -o-transform: rotate(765deg);
  transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger.hamburger-12.active > div:after,
.hamburger.hamburger-12.active > div:before,
.hamburger.hamburger-12.active > view:after,
.hamburger.hamburger-12.active > view:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.hamburger.hamburger-12.active > div:before,
.hamburger.hamburger-12.active > view:before {
  top: 0;
  opacity: 0;
}
.hamburger.hamburger-12.active > div:after,
.hamburger.hamburger-12.active > view:after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.hamburger.hamburger-13 > div,
.hamburger.hamburger-13 > view {
  margin-top: -2px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger.hamburger-13 > div:after,
.hamburger.hamburger-13 > div:before,
.hamburger.hamburger-13 > view:after,
.hamburger.hamburger-13 > view:before {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.hamburger.hamburger-13 > div:before,
.hamburger.hamburger-13 > view:before {
  -webkit-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger.hamburger-13 > div:after,
.hamburger.hamburger-13 > view:after {
  -webkit-transition-property: bottom, background-color, -webkit-transform;
  transition-property: bottom, background-color, -webkit-transform;
  -o-transition-property: bottom, background-color, -o-transform;
  -moz-transition-property: bottom, transform, background-color, -moz-transform;
  transition-property: bottom, transform, background-color;
  transition-property: bottom, transform, background-color, -webkit-transform,
    -moz-transform, -o-transform;
}
.hamburger.hamburger-13.active > div,
.hamburger.hamburger-13.active > view {
  -webkit-transform: rotate(-765deg);
  -moz-transform: rotate(-765deg);
  -ms-transform: rotate(-765deg);
  -o-transform: rotate(-765deg);
  transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger.hamburger-13.active > div:after,
.hamburger.hamburger-13.active > div:before,
.hamburger.hamburger-13.active > view:after,
.hamburger.hamburger-13.active > view:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.hamburger.hamburger-13.active > div:before,
.hamburger.hamburger-13.active > view:before {
  top: 0;
  opacity: 0;
}
.hamburger.hamburger-13.active > div:after,
.hamburger.hamburger-13.active > view:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.scroll-x {
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.scroll-x-item,
.scroll-x-wrapper {
  display: inline-block;
  vertical-align: top;
}
.bg-cover {
  -moz-background-size: cover;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
.bg-100 {
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
}
img.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
img.img-full {
  display: block;
  width: 100%;
  height: auto;
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 0px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1025px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 1290px) {
  .container {
    width: 1024px;
  }
}
@media (min-width: 1367px) {
  .container {
    width: 1230px;
  }
}
@media (min-width: 1601px) {
  .container {
    width: 1520px;
  }
}
@media (min-width: 1700px) {
  .container {
    width: 1600px;
  }
}
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row.equal-height > [class*="col"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.row.equal-height > [class*="col"] > * {
  width: 100%;
}
@media (min-width: 0px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -2.5px;
  }
  .row.space-2 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-2 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-2 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-3 {
    margin: -3.75px;
  }
  .row.space-3 > [class*="col"] {
    padding: 3.75px;
  }
  .row.space-x-3 {
    margin-left: -3.75px;
    margin-right: -3.75px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 3.75px;
    padding-right: 3.75px;
  }
  .row.space-y-3 {
    margin-top: -3.75px;
    margin-bottom: -3.75px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 3.75px;
    padding-bottom: 3.75px;
  }
  .row.space-4 {
    margin: -5px;
  }
  .row.space-4 > [class*="col"] {
    padding: 5px;
  }
  .row.space-x-4 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row.space-y-4 {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .row.space-5 {
    margin: -6.25px;
  }
  .row.space-5 > [class*="col"] {
    padding: 6.25px;
  }
  .row.space-x-5 {
    margin-left: -6.25px;
    margin-right: -6.25px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 6.25px;
    padding-right: 6.25px;
  }
  .row.space-y-5 {
    margin-top: -6.25px;
    margin-bottom: -6.25px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 6.25px;
    padding-bottom: 6.25px;
  }
  .row.space-6 {
    margin: -7.5px;
  }
  .row.space-6 > [class*="col"] {
    padding: 7.5px;
  }
  .row.space-x-6 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .row.space-y-6 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  .row.space-7 {
    margin: -8.75px;
  }
  .row.space-7 > [class*="col"] {
    padding: 8.75px;
  }
  .row.space-x-7 {
    margin-left: -8.75px;
    margin-right: -8.75px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 8.75px;
    padding-right: 8.75px;
  }
  .row.space-y-7 {
    margin-top: -8.75px;
    margin-bottom: -8.75px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 8.75px;
    padding-bottom: 8.75px;
  }
  .row.space-8 {
    margin: -10px;
  }
  .row.space-8 > [class*="col"] {
    padding: 10px;
  }
  .row.space-x-8 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row.space-y-8 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .row.space-9 {
    margin: -11.25px;
  }
  .row.space-9 > [class*="col"] {
    padding: 11.25px;
  }
  .row.space-x-9 {
    margin-left: -11.25px;
    margin-right: -11.25px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 11.25px;
    padding-right: 11.25px;
  }
  .row.space-y-9 {
    margin-top: -11.25px;
    margin-bottom: -11.25px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 11.25px;
    padding-bottom: 11.25px;
  }
  .row.space-10 {
    margin: -12.5px;
  }
  .row.space-10 > [class*="col"] {
    padding: 12.5px;
  }
  .row.space-x-10 {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
  .row.space-y-10 {
    margin-top: -12.5px;
    margin-bottom: -12.5px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .row.space-11 {
    margin: -13.75px;
  }
  .row.space-11 > [class*="col"] {
    padding: 13.75px;
  }
  .row.space-x-11 {
    margin-left: -13.75px;
    margin-right: -13.75px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 13.75px;
    padding-right: 13.75px;
  }
  .row.space-y-11 {
    margin-top: -13.75px;
    margin-bottom: -13.75px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 13.75px;
    padding-bottom: 13.75px;
  }
  .row.space-12 {
    margin: -15px;
  }
  .row.space-12 > [class*="col"] {
    padding: 15px;
  }
  .row.space-x-12 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.space-y-12 {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .row.space-13 {
    margin: -16.25px;
  }
  .row.space-13 > [class*="col"] {
    padding: 16.25px;
  }
  .row.space-x-13 {
    margin-left: -16.25px;
    margin-right: -16.25px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 16.25px;
    padding-right: 16.25px;
  }
  .row.space-y-13 {
    margin-top: -16.25px;
    margin-bottom: -16.25px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 16.25px;
    padding-bottom: 16.25px;
  }
  .row.space-14 {
    margin: -17.5px;
  }
  .row.space-14 > [class*="col"] {
    padding: 17.5px;
  }
  .row.space-x-14 {
    margin-left: -17.5px;
    margin-right: -17.5px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
  .row.space-y-14 {
    margin-top: -17.5px;
    margin-bottom: -17.5px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
  .row.space-15 {
    margin: -18.75px;
  }
  .row.space-15 > [class*="col"] {
    padding: 18.75px;
  }
  .row.space-x-15 {
    margin-left: -18.75px;
    margin-right: -18.75px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 18.75px;
    padding-right: 18.75px;
  }
  .row.space-y-15 {
    margin-top: -18.75px;
    margin-bottom: -18.75px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 18.75px;
    padding-bottom: 18.75px;
  }
  .row.space-16 {
    margin: -20px;
  }
  .row.space-16 > [class*="col"] {
    padding: 20px;
  }
  .row.space-x-16 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.space-y-16 {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .row.space-17 {
    margin: -21.25px;
  }
  .row.space-17 > [class*="col"] {
    padding: 21.25px;
  }
  .row.space-x-17 {
    margin-left: -21.25px;
    margin-right: -21.25px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 21.25px;
    padding-right: 21.25px;
  }
  .row.space-y-17 {
    margin-top: -21.25px;
    margin-bottom: -21.25px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 21.25px;
    padding-bottom: 21.25px;
  }
  .row.space-18 {
    margin: -22.5px;
  }
  .row.space-18 > [class*="col"] {
    padding: 22.5px;
  }
  .row.space-x-18 {
    margin-left: -22.5px;
    margin-right: -22.5px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 22.5px;
    padding-right: 22.5px;
  }
  .row.space-y-18 {
    margin-top: -22.5px;
    margin-bottom: -22.5px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .row.space-19 {
    margin: -23.75px;
  }
  .row.space-19 > [class*="col"] {
    padding: 23.75px;
  }
  .row.space-x-19 {
    margin-left: -23.75px;
    margin-right: -23.75px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 23.75px;
    padding-right: 23.75px;
  }
  .row.space-y-19 {
    margin-top: -23.75px;
    margin-bottom: -23.75px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 23.75px;
    padding-bottom: 23.75px;
  }
  .row.space-20 {
    margin: -25px;
  }
  .row.space-20 > [class*="col"] {
    padding: 25px;
  }
  .row.space-x-20 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .row.space-y-20 {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -2.85714px;
  }
  .row.space-2 > [class*="col"] {
    padding: 2.85714px;
  }
  .row.space-x-2 {
    margin-left: -2.85714px;
    margin-right: -2.85714px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 2.85714px;
    padding-right: 2.85714px;
  }
  .row.space-y-2 {
    margin-top: -2.85714px;
    margin-bottom: -2.85714px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 2.85714px;
    padding-bottom: 2.85714px;
  }
  .row.space-3 {
    margin: -4.28571px;
  }
  .row.space-3 > [class*="col"] {
    padding: 4.28571px;
  }
  .row.space-x-3 {
    margin-left: -4.28571px;
    margin-right: -4.28571px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 4.28571px;
    padding-right: 4.28571px;
  }
  .row.space-y-3 {
    margin-top: -4.28571px;
    margin-bottom: -4.28571px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 4.28571px;
    padding-bottom: 4.28571px;
  }
  .row.space-4 {
    margin: -5.71429px;
  }
  .row.space-4 > [class*="col"] {
    padding: 5.71429px;
  }
  .row.space-x-4 {
    margin-left: -5.71429px;
    margin-right: -5.71429px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 5.71429px;
    padding-right: 5.71429px;
  }
  .row.space-y-4 {
    margin-top: -5.71429px;
    margin-bottom: -5.71429px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 5.71429px;
    padding-bottom: 5.71429px;
  }
  .row.space-5 {
    margin: -7.14286px;
  }
  .row.space-5 > [class*="col"] {
    padding: 7.14286px;
  }
  .row.space-x-5 {
    margin-left: -7.14286px;
    margin-right: -7.14286px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 7.14286px;
    padding-right: 7.14286px;
  }
  .row.space-y-5 {
    margin-top: -7.14286px;
    margin-bottom: -7.14286px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 7.14286px;
    padding-bottom: 7.14286px;
  }
  .row.space-6 {
    margin: -8.57143px;
  }
  .row.space-6 > [class*="col"] {
    padding: 8.57143px;
  }
  .row.space-x-6 {
    margin-left: -8.57143px;
    margin-right: -8.57143px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 8.57143px;
    padding-right: 8.57143px;
  }
  .row.space-y-6 {
    margin-top: -8.57143px;
    margin-bottom: -8.57143px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 8.57143px;
    padding-bottom: 8.57143px;
  }
  .row.space-7 {
    margin: -10px;
  }
  .row.space-7 > [class*="col"] {
    padding: 10px;
  }
  .row.space-x-7 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row.space-y-7 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .row.space-8 {
    margin: -11.42857px;
  }
  .row.space-8 > [class*="col"] {
    padding: 11.42857px;
  }
  .row.space-x-8 {
    margin-left: -11.42857px;
    margin-right: -11.42857px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 11.42857px;
    padding-right: 11.42857px;
  }
  .row.space-y-8 {
    margin-top: -11.42857px;
    margin-bottom: -11.42857px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 11.42857px;
    padding-bottom: 11.42857px;
  }
  .row.space-9 {
    margin: -12.85714px;
  }
  .row.space-9 > [class*="col"] {
    padding: 12.85714px;
  }
  .row.space-x-9 {
    margin-left: -12.85714px;
    margin-right: -12.85714px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 12.85714px;
    padding-right: 12.85714px;
  }
  .row.space-y-9 {
    margin-top: -12.85714px;
    margin-bottom: -12.85714px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 12.85714px;
    padding-bottom: 12.85714px;
  }
  .row.space-10 {
    margin: -14.28571px;
  }
  .row.space-10 > [class*="col"] {
    padding: 14.28571px;
  }
  .row.space-x-10 {
    margin-left: -14.28571px;
    margin-right: -14.28571px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 14.28571px;
    padding-right: 14.28571px;
  }
  .row.space-y-10 {
    margin-top: -14.28571px;
    margin-bottom: -14.28571px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 14.28571px;
    padding-bottom: 14.28571px;
  }
  .row.space-11 {
    margin: -15.71429px;
  }
  .row.space-11 > [class*="col"] {
    padding: 15.71429px;
  }
  .row.space-x-11 {
    margin-left: -15.71429px;
    margin-right: -15.71429px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 15.71429px;
    padding-right: 15.71429px;
  }
  .row.space-y-11 {
    margin-top: -15.71429px;
    margin-bottom: -15.71429px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 15.71429px;
    padding-bottom: 15.71429px;
  }
  .row.space-12 {
    margin: -17.14286px;
  }
  .row.space-12 > [class*="col"] {
    padding: 17.14286px;
  }
  .row.space-x-12 {
    margin-left: -17.14286px;
    margin-right: -17.14286px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 17.14286px;
    padding-right: 17.14286px;
  }
  .row.space-y-12 {
    margin-top: -17.14286px;
    margin-bottom: -17.14286px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 17.14286px;
    padding-bottom: 17.14286px;
  }
  .row.space-13 {
    margin: -18.57143px;
  }
  .row.space-13 > [class*="col"] {
    padding: 18.57143px;
  }
  .row.space-x-13 {
    margin-left: -18.57143px;
    margin-right: -18.57143px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 18.57143px;
    padding-right: 18.57143px;
  }
  .row.space-y-13 {
    margin-top: -18.57143px;
    margin-bottom: -18.57143px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 18.57143px;
    padding-bottom: 18.57143px;
  }
  .row.space-14 {
    margin: -20px;
  }
  .row.space-14 > [class*="col"] {
    padding: 20px;
  }
  .row.space-x-14 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.space-y-14 {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .row.space-15 {
    margin: -21.42857px;
  }
  .row.space-15 > [class*="col"] {
    padding: 21.42857px;
  }
  .row.space-x-15 {
    margin-left: -21.42857px;
    margin-right: -21.42857px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 21.42857px;
    padding-right: 21.42857px;
  }
  .row.space-y-15 {
    margin-top: -21.42857px;
    margin-bottom: -21.42857px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 21.42857px;
    padding-bottom: 21.42857px;
  }
  .row.space-16 {
    margin: -22.85714px;
  }
  .row.space-16 > [class*="col"] {
    padding: 22.85714px;
  }
  .row.space-x-16 {
    margin-left: -22.85714px;
    margin-right: -22.85714px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 22.85714px;
    padding-right: 22.85714px;
  }
  .row.space-y-16 {
    margin-top: -22.85714px;
    margin-bottom: -22.85714px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 22.85714px;
    padding-bottom: 22.85714px;
  }
  .row.space-17 {
    margin: -24.28571px;
  }
  .row.space-17 > [class*="col"] {
    padding: 24.28571px;
  }
  .row.space-x-17 {
    margin-left: -24.28571px;
    margin-right: -24.28571px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 24.28571px;
    padding-right: 24.28571px;
  }
  .row.space-y-17 {
    margin-top: -24.28571px;
    margin-bottom: -24.28571px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 24.28571px;
    padding-bottom: 24.28571px;
  }
  .row.space-18 {
    margin: -25.71429px;
  }
  .row.space-18 > [class*="col"] {
    padding: 25.71429px;
  }
  .row.space-x-18 {
    margin-left: -25.71429px;
    margin-right: -25.71429px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 25.71429px;
    padding-right: 25.71429px;
  }
  .row.space-y-18 {
    margin-top: -25.71429px;
    margin-bottom: -25.71429px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .row.space-19 {
    margin: -27.14286px;
  }
  .row.space-19 > [class*="col"] {
    padding: 27.14286px;
  }
  .row.space-x-19 {
    margin-left: -27.14286px;
    margin-right: -27.14286px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 27.14286px;
    padding-right: 27.14286px;
  }
  .row.space-y-19 {
    margin-top: -27.14286px;
    margin-bottom: -27.14286px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 27.14286px;
    padding-bottom: 27.14286px;
  }
  .row.space-20 {
    margin: -28.57143px;
  }
  .row.space-20 > [class*="col"] {
    padding: 28.57143px;
  }
  .row.space-x-20 {
    margin-left: -28.57143px;
    margin-right: -28.57143px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 28.57143px;
    padding-right: 28.57143px;
  }
  .row.space-y-20 {
    margin-top: -28.57143px;
    margin-bottom: -28.57143px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 28.57143px;
    padding-bottom: 28.57143px;
  }
}
@media (min-width: 992px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -3.21429px;
  }
  .row.space-2 > [class*="col"] {
    padding: 3.21429px;
  }
  .row.space-x-2 {
    margin-left: -3.21429px;
    margin-right: -3.21429px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 3.21429px;
    padding-right: 3.21429px;
  }
  .row.space-y-2 {
    margin-top: -3.21429px;
    margin-bottom: -3.21429px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 3.21429px;
    padding-bottom: 3.21429px;
  }
  .row.space-3 {
    margin: -4.82143px;
  }
  .row.space-3 > [class*="col"] {
    padding: 4.82143px;
  }
  .row.space-x-3 {
    margin-left: -4.82143px;
    margin-right: -4.82143px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 4.82143px;
    padding-right: 4.82143px;
  }
  .row.space-y-3 {
    margin-top: -4.82143px;
    margin-bottom: -4.82143px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 4.82143px;
    padding-bottom: 4.82143px;
  }
  .row.space-4 {
    margin: -6.42857px;
  }
  .row.space-4 > [class*="col"] {
    padding: 6.42857px;
  }
  .row.space-x-4 {
    margin-left: -6.42857px;
    margin-right: -6.42857px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 6.42857px;
    padding-right: 6.42857px;
  }
  .row.space-y-4 {
    margin-top: -6.42857px;
    margin-bottom: -6.42857px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 6.42857px;
    padding-bottom: 6.42857px;
  }
  .row.space-5 {
    margin: -8.03571px;
  }
  .row.space-5 > [class*="col"] {
    padding: 8.03571px;
  }
  .row.space-x-5 {
    margin-left: -8.03571px;
    margin-right: -8.03571px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 8.03571px;
    padding-right: 8.03571px;
  }
  .row.space-y-5 {
    margin-top: -8.03571px;
    margin-bottom: -8.03571px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 8.03571px;
    padding-bottom: 8.03571px;
  }
  .row.space-6 {
    margin: -9.64286px;
  }
  .row.space-6 > [class*="col"] {
    padding: 9.64286px;
  }
  .row.space-x-6 {
    margin-left: -9.64286px;
    margin-right: -9.64286px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 9.64286px;
    padding-right: 9.64286px;
  }
  .row.space-y-6 {
    margin-top: -9.64286px;
    margin-bottom: -9.64286px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 9.64286px;
    padding-bottom: 9.64286px;
  }
  .row.space-7 {
    margin: -11.25px;
  }
  .row.space-7 > [class*="col"] {
    padding: 11.25px;
  }
  .row.space-x-7 {
    margin-left: -11.25px;
    margin-right: -11.25px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 11.25px;
    padding-right: 11.25px;
  }
  .row.space-y-7 {
    margin-top: -11.25px;
    margin-bottom: -11.25px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 11.25px;
    padding-bottom: 11.25px;
  }
  .row.space-8 {
    margin: -12.85714px;
  }
  .row.space-8 > [class*="col"] {
    padding: 12.85714px;
  }
  .row.space-x-8 {
    margin-left: -12.85714px;
    margin-right: -12.85714px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 12.85714px;
    padding-right: 12.85714px;
  }
  .row.space-y-8 {
    margin-top: -12.85714px;
    margin-bottom: -12.85714px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 12.85714px;
    padding-bottom: 12.85714px;
  }
  .row.space-9 {
    margin: -14.46429px;
  }
  .row.space-9 > [class*="col"] {
    padding: 14.46429px;
  }
  .row.space-x-9 {
    margin-left: -14.46429px;
    margin-right: -14.46429px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 14.46429px;
    padding-right: 14.46429px;
  }
  .row.space-y-9 {
    margin-top: -14.46429px;
    margin-bottom: -14.46429px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 14.46429px;
    padding-bottom: 14.46429px;
  }
  .row.space-10 {
    margin: -16.07143px;
  }
  .row.space-10 > [class*="col"] {
    padding: 16.07143px;
  }
  .row.space-x-10 {
    margin-left: -16.07143px;
    margin-right: -16.07143px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 16.07143px;
    padding-right: 16.07143px;
  }
  .row.space-y-10 {
    margin-top: -16.07143px;
    margin-bottom: -16.07143px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 16.07143px;
    padding-bottom: 16.07143px;
  }
  .row.space-11 {
    margin: -17.67857px;
  }
  .row.space-11 > [class*="col"] {
    padding: 17.67857px;
  }
  .row.space-x-11 {
    margin-left: -17.67857px;
    margin-right: -17.67857px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 17.67857px;
    padding-right: 17.67857px;
  }
  .row.space-y-11 {
    margin-top: -17.67857px;
    margin-bottom: -17.67857px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 17.67857px;
    padding-bottom: 17.67857px;
  }
  .row.space-12 {
    margin: -19.28571px;
  }
  .row.space-12 > [class*="col"] {
    padding: 19.28571px;
  }
  .row.space-x-12 {
    margin-left: -19.28571px;
    margin-right: -19.28571px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 19.28571px;
    padding-right: 19.28571px;
  }
  .row.space-y-12 {
    margin-top: -19.28571px;
    margin-bottom: -19.28571px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 19.28571px;
    padding-bottom: 19.28571px;
  }
  .row.space-13 {
    margin: -20.89286px;
  }
  .row.space-13 > [class*="col"] {
    padding: 20.89286px;
  }
  .row.space-x-13 {
    margin-left: -20.89286px;
    margin-right: -20.89286px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 20.89286px;
    padding-right: 20.89286px;
  }
  .row.space-y-13 {
    margin-top: -20.89286px;
    margin-bottom: -20.89286px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 20.89286px;
    padding-bottom: 20.89286px;
  }
  .row.space-14 {
    margin: -22.5px;
  }
  .row.space-14 > [class*="col"] {
    padding: 22.5px;
  }
  .row.space-x-14 {
    margin-left: -22.5px;
    margin-right: -22.5px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 22.5px;
    padding-right: 22.5px;
  }
  .row.space-y-14 {
    margin-top: -22.5px;
    margin-bottom: -22.5px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .row.space-15 {
    margin: -24.10714px;
  }
  .row.space-15 > [class*="col"] {
    padding: 24.10714px;
  }
  .row.space-x-15 {
    margin-left: -24.10714px;
    margin-right: -24.10714px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 24.10714px;
    padding-right: 24.10714px;
  }
  .row.space-y-15 {
    margin-top: -24.10714px;
    margin-bottom: -24.10714px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 24.10714px;
    padding-bottom: 24.10714px;
  }
  .row.space-16 {
    margin: -25.71429px;
  }
  .row.space-16 > [class*="col"] {
    padding: 25.71429px;
  }
  .row.space-x-16 {
    margin-left: -25.71429px;
    margin-right: -25.71429px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 25.71429px;
    padding-right: 25.71429px;
  }
  .row.space-y-16 {
    margin-top: -25.71429px;
    margin-bottom: -25.71429px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .row.space-17 {
    margin: -27.32143px;
  }
  .row.space-17 > [class*="col"] {
    padding: 27.32143px;
  }
  .row.space-x-17 {
    margin-left: -27.32143px;
    margin-right: -27.32143px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 27.32143px;
    padding-right: 27.32143px;
  }
  .row.space-y-17 {
    margin-top: -27.32143px;
    margin-bottom: -27.32143px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 27.32143px;
    padding-bottom: 27.32143px;
  }
  .row.space-18 {
    margin: -28.92857px;
  }
  .row.space-18 > [class*="col"] {
    padding: 28.92857px;
  }
  .row.space-x-18 {
    margin-left: -28.92857px;
    margin-right: -28.92857px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 28.92857px;
    padding-right: 28.92857px;
  }
  .row.space-y-18 {
    margin-top: -28.92857px;
    margin-bottom: -28.92857px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 28.92857px;
    padding-bottom: 28.92857px;
  }
  .row.space-19 {
    margin: -30.53571px;
  }
  .row.space-19 > [class*="col"] {
    padding: 30.53571px;
  }
  .row.space-x-19 {
    margin-left: -30.53571px;
    margin-right: -30.53571px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 30.53571px;
    padding-right: 30.53571px;
  }
  .row.space-y-19 {
    margin-top: -30.53571px;
    margin-bottom: -30.53571px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 30.53571px;
    padding-bottom: 30.53571px;
  }
  .row.space-20 {
    margin: -32.14286px;
  }
  .row.space-20 > [class*="col"] {
    padding: 32.14286px;
  }
  .row.space-x-20 {
    margin-left: -32.14286px;
    margin-right: -32.14286px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 32.14286px;
    padding-right: 32.14286px;
  }
  .row.space-y-20 {
    margin-top: -32.14286px;
    margin-bottom: -32.14286px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 32.14286px;
    padding-bottom: 32.14286px;
  }
}
@media (min-width: 1025px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -3.57143px;
  }
  .row.space-2 > [class*="col"] {
    padding: 3.57143px;
  }
  .row.space-x-2 {
    margin-left: -3.57143px;
    margin-right: -3.57143px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 3.57143px;
    padding-right: 3.57143px;
  }
  .row.space-y-2 {
    margin-top: -3.57143px;
    margin-bottom: -3.57143px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 3.57143px;
    padding-bottom: 3.57143px;
  }
  .row.space-3 {
    margin: -5.35714px;
  }
  .row.space-3 > [class*="col"] {
    padding: 5.35714px;
  }
  .row.space-x-3 {
    margin-left: -5.35714px;
    margin-right: -5.35714px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 5.35714px;
    padding-right: 5.35714px;
  }
  .row.space-y-3 {
    margin-top: -5.35714px;
    margin-bottom: -5.35714px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 5.35714px;
    padding-bottom: 5.35714px;
  }
  .row.space-4 {
    margin: -7.14286px;
  }
  .row.space-4 > [class*="col"] {
    padding: 7.14286px;
  }
  .row.space-x-4 {
    margin-left: -7.14286px;
    margin-right: -7.14286px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 7.14286px;
    padding-right: 7.14286px;
  }
  .row.space-y-4 {
    margin-top: -7.14286px;
    margin-bottom: -7.14286px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 7.14286px;
    padding-bottom: 7.14286px;
  }
  .row.space-5 {
    margin: -8.92857px;
  }
  .row.space-5 > [class*="col"] {
    padding: 8.92857px;
  }
  .row.space-x-5 {
    margin-left: -8.92857px;
    margin-right: -8.92857px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 8.92857px;
    padding-right: 8.92857px;
  }
  .row.space-y-5 {
    margin-top: -8.92857px;
    margin-bottom: -8.92857px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 8.92857px;
    padding-bottom: 8.92857px;
  }
  .row.space-6 {
    margin: -10.71429px;
  }
  .row.space-6 > [class*="col"] {
    padding: 10.71429px;
  }
  .row.space-x-6 {
    margin-left: -10.71429px;
    margin-right: -10.71429px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 10.71429px;
    padding-right: 10.71429px;
  }
  .row.space-y-6 {
    margin-top: -10.71429px;
    margin-bottom: -10.71429px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 10.71429px;
    padding-bottom: 10.71429px;
  }
  .row.space-7 {
    margin: -12.5px;
  }
  .row.space-7 > [class*="col"] {
    padding: 12.5px;
  }
  .row.space-x-7 {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
  .row.space-y-7 {
    margin-top: -12.5px;
    margin-bottom: -12.5px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .row.space-8 {
    margin: -14.28571px;
  }
  .row.space-8 > [class*="col"] {
    padding: 14.28571px;
  }
  .row.space-x-8 {
    margin-left: -14.28571px;
    margin-right: -14.28571px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 14.28571px;
    padding-right: 14.28571px;
  }
  .row.space-y-8 {
    margin-top: -14.28571px;
    margin-bottom: -14.28571px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 14.28571px;
    padding-bottom: 14.28571px;
  }
  .row.space-9 {
    margin: -16.07143px;
  }
  .row.space-9 > [class*="col"] {
    padding: 16.07143px;
  }
  .row.space-x-9 {
    margin-left: -16.07143px;
    margin-right: -16.07143px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 16.07143px;
    padding-right: 16.07143px;
  }
  .row.space-y-9 {
    margin-top: -16.07143px;
    margin-bottom: -16.07143px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 16.07143px;
    padding-bottom: 16.07143px;
  }
  .row.space-10 {
    margin: -17.85714px;
  }
  .row.space-10 > [class*="col"] {
    padding: 17.85714px;
  }
  .row.space-x-10 {
    margin-left: -17.85714px;
    margin-right: -17.85714px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 17.85714px;
    padding-right: 17.85714px;
  }
  .row.space-y-10 {
    margin-top: -17.85714px;
    margin-bottom: -17.85714px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 17.85714px;
    padding-bottom: 17.85714px;
  }
  .row.space-11 {
    margin: -19.64286px;
  }
  .row.space-11 > [class*="col"] {
    padding: 19.64286px;
  }
  .row.space-x-11 {
    margin-left: -19.64286px;
    margin-right: -19.64286px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 19.64286px;
    padding-right: 19.64286px;
  }
  .row.space-y-11 {
    margin-top: -19.64286px;
    margin-bottom: -19.64286px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 19.64286px;
    padding-bottom: 19.64286px;
  }
  .row.space-12 {
    margin: -21.42857px;
  }
  .row.space-12 > [class*="col"] {
    padding: 21.42857px;
  }
  .row.space-x-12 {
    margin-left: -21.42857px;
    margin-right: -21.42857px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 21.42857px;
    padding-right: 21.42857px;
  }
  .row.space-y-12 {
    margin-top: -21.42857px;
    margin-bottom: -21.42857px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 21.42857px;
    padding-bottom: 21.42857px;
  }
  .row.space-13 {
    margin: -23.21429px;
  }
  .row.space-13 > [class*="col"] {
    padding: 23.21429px;
  }
  .row.space-x-13 {
    margin-left: -23.21429px;
    margin-right: -23.21429px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 23.21429px;
    padding-right: 23.21429px;
  }
  .row.space-y-13 {
    margin-top: -23.21429px;
    margin-bottom: -23.21429px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 23.21429px;
    padding-bottom: 23.21429px;
  }
  .row.space-14 {
    margin: -25px;
  }
  .row.space-14 > [class*="col"] {
    padding: 25px;
  }
  .row.space-x-14 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .row.space-y-14 {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .row.space-15 {
    margin: -26.78571px;
  }
  .row.space-15 > [class*="col"] {
    padding: 26.78571px;
  }
  .row.space-x-15 {
    margin-left: -26.78571px;
    margin-right: -26.78571px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 26.78571px;
    padding-right: 26.78571px;
  }
  .row.space-y-15 {
    margin-top: -26.78571px;
    margin-bottom: -26.78571px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 26.78571px;
    padding-bottom: 26.78571px;
  }
  .row.space-16 {
    margin: -28.57143px;
  }
  .row.space-16 > [class*="col"] {
    padding: 28.57143px;
  }
  .row.space-x-16 {
    margin-left: -28.57143px;
    margin-right: -28.57143px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 28.57143px;
    padding-right: 28.57143px;
  }
  .row.space-y-16 {
    margin-top: -28.57143px;
    margin-bottom: -28.57143px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 28.57143px;
    padding-bottom: 28.57143px;
  }
  .row.space-17 {
    margin: -30.35714px;
  }
  .row.space-17 > [class*="col"] {
    padding: 30.35714px;
  }
  .row.space-x-17 {
    margin-left: -30.35714px;
    margin-right: -30.35714px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 30.35714px;
    padding-right: 30.35714px;
  }
  .row.space-y-17 {
    margin-top: -30.35714px;
    margin-bottom: -30.35714px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 30.35714px;
    padding-bottom: 30.35714px;
  }
  .row.space-18 {
    margin: -32.14286px;
  }
  .row.space-18 > [class*="col"] {
    padding: 32.14286px;
  }
  .row.space-x-18 {
    margin-left: -32.14286px;
    margin-right: -32.14286px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 32.14286px;
    padding-right: 32.14286px;
  }
  .row.space-y-18 {
    margin-top: -32.14286px;
    margin-bottom: -32.14286px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 32.14286px;
    padding-bottom: 32.14286px;
  }
  .row.space-19 {
    margin: -33.92857px;
  }
  .row.space-19 > [class*="col"] {
    padding: 33.92857px;
  }
  .row.space-x-19 {
    margin-left: -33.92857px;
    margin-right: -33.92857px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 33.92857px;
    padding-right: 33.92857px;
  }
  .row.space-y-19 {
    margin-top: -33.92857px;
    margin-bottom: -33.92857px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 33.92857px;
    padding-bottom: 33.92857px;
  }
  .row.space-20 {
    margin: -35.71429px;
  }
  .row.space-20 > [class*="col"] {
    padding: 35.71429px;
  }
  .row.space-x-20 {
    margin-left: -35.71429px;
    margin-right: -35.71429px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 35.71429px;
    padding-right: 35.71429px;
  }
  .row.space-y-20 {
    margin-top: -35.71429px;
    margin-bottom: -35.71429px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 35.71429px;
    padding-bottom: 35.71429px;
  }
}
@media (min-width: 1290px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -3.92857px;
  }
  .row.space-2 > [class*="col"] {
    padding: 3.92857px;
  }
  .row.space-x-2 {
    margin-left: -3.92857px;
    margin-right: -3.92857px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 3.92857px;
    padding-right: 3.92857px;
  }
  .row.space-y-2 {
    margin-top: -3.92857px;
    margin-bottom: -3.92857px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 3.92857px;
    padding-bottom: 3.92857px;
  }
  .row.space-3 {
    margin: -5.89286px;
  }
  .row.space-3 > [class*="col"] {
    padding: 5.89286px;
  }
  .row.space-x-3 {
    margin-left: -5.89286px;
    margin-right: -5.89286px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 5.89286px;
    padding-right: 5.89286px;
  }
  .row.space-y-3 {
    margin-top: -5.89286px;
    margin-bottom: -5.89286px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 5.89286px;
    padding-bottom: 5.89286px;
  }
  .row.space-4 {
    margin: -7.85714px;
  }
  .row.space-4 > [class*="col"] {
    padding: 7.85714px;
  }
  .row.space-x-4 {
    margin-left: -7.85714px;
    margin-right: -7.85714px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 7.85714px;
    padding-right: 7.85714px;
  }
  .row.space-y-4 {
    margin-top: -7.85714px;
    margin-bottom: -7.85714px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 7.85714px;
    padding-bottom: 7.85714px;
  }
  .row.space-5 {
    margin: -9.82143px;
  }
  .row.space-5 > [class*="col"] {
    padding: 9.82143px;
  }
  .row.space-x-5 {
    margin-left: -9.82143px;
    margin-right: -9.82143px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 9.82143px;
    padding-right: 9.82143px;
  }
  .row.space-y-5 {
    margin-top: -9.82143px;
    margin-bottom: -9.82143px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 9.82143px;
    padding-bottom: 9.82143px;
  }
  .row.space-6 {
    margin: -11.78571px;
  }
  .row.space-6 > [class*="col"] {
    padding: 11.78571px;
  }
  .row.space-x-6 {
    margin-left: -11.78571px;
    margin-right: -11.78571px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 11.78571px;
    padding-right: 11.78571px;
  }
  .row.space-y-6 {
    margin-top: -11.78571px;
    margin-bottom: -11.78571px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 11.78571px;
    padding-bottom: 11.78571px;
  }
  .row.space-7 {
    margin: -13.75px;
  }
  .row.space-7 > [class*="col"] {
    padding: 13.75px;
  }
  .row.space-x-7 {
    margin-left: -13.75px;
    margin-right: -13.75px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 13.75px;
    padding-right: 13.75px;
  }
  .row.space-y-7 {
    margin-top: -13.75px;
    margin-bottom: -13.75px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 13.75px;
    padding-bottom: 13.75px;
  }
  .row.space-8 {
    margin: -15.71429px;
  }
  .row.space-8 > [class*="col"] {
    padding: 15.71429px;
  }
  .row.space-x-8 {
    margin-left: -15.71429px;
    margin-right: -15.71429px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 15.71429px;
    padding-right: 15.71429px;
  }
  .row.space-y-8 {
    margin-top: -15.71429px;
    margin-bottom: -15.71429px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 15.71429px;
    padding-bottom: 15.71429px;
  }
  .row.space-9 {
    margin: -17.67857px;
  }
  .row.space-9 > [class*="col"] {
    padding: 17.67857px;
  }
  .row.space-x-9 {
    margin-left: -17.67857px;
    margin-right: -17.67857px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 17.67857px;
    padding-right: 17.67857px;
  }
  .row.space-y-9 {
    margin-top: -17.67857px;
    margin-bottom: -17.67857px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 17.67857px;
    padding-bottom: 17.67857px;
  }
  .row.space-10 {
    margin: -19.64286px;
  }
  .row.space-10 > [class*="col"] {
    padding: 19.64286px;
  }
  .row.space-x-10 {
    margin-left: -19.64286px;
    margin-right: -19.64286px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 19.64286px;
    padding-right: 19.64286px;
  }
  .row.space-y-10 {
    margin-top: -19.64286px;
    margin-bottom: -19.64286px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 19.64286px;
    padding-bottom: 19.64286px;
  }
  .row.space-11 {
    margin: -21.60714px;
  }
  .row.space-11 > [class*="col"] {
    padding: 21.60714px;
  }
  .row.space-x-11 {
    margin-left: -21.60714px;
    margin-right: -21.60714px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 21.60714px;
    padding-right: 21.60714px;
  }
  .row.space-y-11 {
    margin-top: -21.60714px;
    margin-bottom: -21.60714px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 21.60714px;
    padding-bottom: 21.60714px;
  }
  .row.space-12 {
    margin: -23.57143px;
  }
  .row.space-12 > [class*="col"] {
    padding: 23.57143px;
  }
  .row.space-x-12 {
    margin-left: -23.57143px;
    margin-right: -23.57143px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 23.57143px;
    padding-right: 23.57143px;
  }
  .row.space-y-12 {
    margin-top: -23.57143px;
    margin-bottom: -23.57143px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 23.57143px;
    padding-bottom: 23.57143px;
  }
  .row.space-13 {
    margin: -25.53571px;
  }
  .row.space-13 > [class*="col"] {
    padding: 25.53571px;
  }
  .row.space-x-13 {
    margin-left: -25.53571px;
    margin-right: -25.53571px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 25.53571px;
    padding-right: 25.53571px;
  }
  .row.space-y-13 {
    margin-top: -25.53571px;
    margin-bottom: -25.53571px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 25.53571px;
    padding-bottom: 25.53571px;
  }
  .row.space-14 {
    margin: -27.5px;
  }
  .row.space-14 > [class*="col"] {
    padding: 27.5px;
  }
  .row.space-x-14 {
    margin-left: -27.5px;
    margin-right: -27.5px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 27.5px;
    padding-right: 27.5px;
  }
  .row.space-y-14 {
    margin-top: -27.5px;
    margin-bottom: -27.5px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 27.5px;
    padding-bottom: 27.5px;
  }
  .row.space-15 {
    margin: -29.46429px;
  }
  .row.space-15 > [class*="col"] {
    padding: 29.46429px;
  }
  .row.space-x-15 {
    margin-left: -29.46429px;
    margin-right: -29.46429px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 29.46429px;
    padding-right: 29.46429px;
  }
  .row.space-y-15 {
    margin-top: -29.46429px;
    margin-bottom: -29.46429px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 29.46429px;
    padding-bottom: 29.46429px;
  }
  .row.space-16 {
    margin: -31.42857px;
  }
  .row.space-16 > [class*="col"] {
    padding: 31.42857px;
  }
  .row.space-x-16 {
    margin-left: -31.42857px;
    margin-right: -31.42857px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 31.42857px;
    padding-right: 31.42857px;
  }
  .row.space-y-16 {
    margin-top: -31.42857px;
    margin-bottom: -31.42857px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 31.42857px;
    padding-bottom: 31.42857px;
  }
  .row.space-17 {
    margin: -33.39286px;
  }
  .row.space-17 > [class*="col"] {
    padding: 33.39286px;
  }
  .row.space-x-17 {
    margin-left: -33.39286px;
    margin-right: -33.39286px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 33.39286px;
    padding-right: 33.39286px;
  }
  .row.space-y-17 {
    margin-top: -33.39286px;
    margin-bottom: -33.39286px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 33.39286px;
    padding-bottom: 33.39286px;
  }
  .row.space-18 {
    margin: -35.35714px;
  }
  .row.space-18 > [class*="col"] {
    padding: 35.35714px;
  }
  .row.space-x-18 {
    margin-left: -35.35714px;
    margin-right: -35.35714px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 35.35714px;
    padding-right: 35.35714px;
  }
  .row.space-y-18 {
    margin-top: -35.35714px;
    margin-bottom: -35.35714px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 35.35714px;
    padding-bottom: 35.35714px;
  }
  .row.space-19 {
    margin: -37.32143px;
  }
  .row.space-19 > [class*="col"] {
    padding: 37.32143px;
  }
  .row.space-x-19 {
    margin-left: -37.32143px;
    margin-right: -37.32143px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 37.32143px;
    padding-right: 37.32143px;
  }
  .row.space-y-19 {
    margin-top: -37.32143px;
    margin-bottom: -37.32143px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 37.32143px;
    padding-bottom: 37.32143px;
  }
  .row.space-20 {
    margin: -39.28571px;
  }
  .row.space-20 > [class*="col"] {
    padding: 39.28571px;
  }
  .row.space-x-20 {
    margin-left: -39.28571px;
    margin-right: -39.28571px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 39.28571px;
    padding-right: 39.28571px;
  }
  .row.space-y-20 {
    margin-top: -39.28571px;
    margin-bottom: -39.28571px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 39.28571px;
    padding-bottom: 39.28571px;
  }
}
@media (min-width: 1367px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -4.28571px;
  }
  .row.space-2 > [class*="col"] {
    padding: 4.28571px;
  }
  .row.space-x-2 {
    margin-left: -4.28571px;
    margin-right: -4.28571px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 4.28571px;
    padding-right: 4.28571px;
  }
  .row.space-y-2 {
    margin-top: -4.28571px;
    margin-bottom: -4.28571px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 4.28571px;
    padding-bottom: 4.28571px;
  }
  .row.space-3 {
    margin: -6.42857px;
  }
  .row.space-3 > [class*="col"] {
    padding: 6.42857px;
  }
  .row.space-x-3 {
    margin-left: -6.42857px;
    margin-right: -6.42857px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 6.42857px;
    padding-right: 6.42857px;
  }
  .row.space-y-3 {
    margin-top: -6.42857px;
    margin-bottom: -6.42857px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 6.42857px;
    padding-bottom: 6.42857px;
  }
  .row.space-4 {
    margin: -8.57143px;
  }
  .row.space-4 > [class*="col"] {
    padding: 8.57143px;
  }
  .row.space-x-4 {
    margin-left: -8.57143px;
    margin-right: -8.57143px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 8.57143px;
    padding-right: 8.57143px;
  }
  .row.space-y-4 {
    margin-top: -8.57143px;
    margin-bottom: -8.57143px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 8.57143px;
    padding-bottom: 8.57143px;
  }
  .row.space-5 {
    margin: -10.71429px;
  }
  .row.space-5 > [class*="col"] {
    padding: 10.71429px;
  }
  .row.space-x-5 {
    margin-left: -10.71429px;
    margin-right: -10.71429px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 10.71429px;
    padding-right: 10.71429px;
  }
  .row.space-y-5 {
    margin-top: -10.71429px;
    margin-bottom: -10.71429px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 10.71429px;
    padding-bottom: 10.71429px;
  }
  .row.space-6 {
    margin: -12.85714px;
  }
  .row.space-6 > [class*="col"] {
    padding: 12.85714px;
  }
  .row.space-x-6 {
    margin-left: -12.85714px;
    margin-right: -12.85714px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 12.85714px;
    padding-right: 12.85714px;
  }
  .row.space-y-6 {
    margin-top: -12.85714px;
    margin-bottom: -12.85714px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 12.85714px;
    padding-bottom: 12.85714px;
  }
  .row.space-7 {
    margin: -15px;
  }
  .row.space-7 > [class*="col"] {
    padding: 15px;
  }
  .row.space-x-7 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.space-y-7 {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .row.space-8 {
    margin: -17.14286px;
  }
  .row.space-8 > [class*="col"] {
    padding: 17.14286px;
  }
  .row.space-x-8 {
    margin-left: -17.14286px;
    margin-right: -17.14286px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 17.14286px;
    padding-right: 17.14286px;
  }
  .row.space-y-8 {
    margin-top: -17.14286px;
    margin-bottom: -17.14286px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 17.14286px;
    padding-bottom: 17.14286px;
  }
  .row.space-9 {
    margin: -19.28571px;
  }
  .row.space-9 > [class*="col"] {
    padding: 19.28571px;
  }
  .row.space-x-9 {
    margin-left: -19.28571px;
    margin-right: -19.28571px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 19.28571px;
    padding-right: 19.28571px;
  }
  .row.space-y-9 {
    margin-top: -19.28571px;
    margin-bottom: -19.28571px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 19.28571px;
    padding-bottom: 19.28571px;
  }
  .row.space-10 {
    margin: -21.42857px;
  }
  .row.space-10 > [class*="col"] {
    padding: 21.42857px;
  }
  .row.space-x-10 {
    margin-left: -21.42857px;
    margin-right: -21.42857px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 21.42857px;
    padding-right: 21.42857px;
  }
  .row.space-y-10 {
    margin-top: -21.42857px;
    margin-bottom: -21.42857px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 21.42857px;
    padding-bottom: 21.42857px;
  }
  .row.space-11 {
    margin: -23.57143px;
  }
  .row.space-11 > [class*="col"] {
    padding: 23.57143px;
  }
  .row.space-x-11 {
    margin-left: -23.57143px;
    margin-right: -23.57143px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 23.57143px;
    padding-right: 23.57143px;
  }
  .row.space-y-11 {
    margin-top: -23.57143px;
    margin-bottom: -23.57143px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 23.57143px;
    padding-bottom: 23.57143px;
  }
  .row.space-12 {
    margin: -25.71429px;
  }
  .row.space-12 > [class*="col"] {
    padding: 25.71429px;
  }
  .row.space-x-12 {
    margin-left: -25.71429px;
    margin-right: -25.71429px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 25.71429px;
    padding-right: 25.71429px;
  }
  .row.space-y-12 {
    margin-top: -25.71429px;
    margin-bottom: -25.71429px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .row.space-13 {
    margin: -27.85714px;
  }
  .row.space-13 > [class*="col"] {
    padding: 27.85714px;
  }
  .row.space-x-13 {
    margin-left: -27.85714px;
    margin-right: -27.85714px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 27.85714px;
    padding-right: 27.85714px;
  }
  .row.space-y-13 {
    margin-top: -27.85714px;
    margin-bottom: -27.85714px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 27.85714px;
    padding-bottom: 27.85714px;
  }
  .row.space-14 {
    margin: -30px;
  }
  .row.space-14 > [class*="col"] {
    padding: 30px;
  }
  .row.space-x-14 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row.space-y-14 {
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .row.space-15 {
    margin: -32.14286px;
  }
  .row.space-15 > [class*="col"] {
    padding: 32.14286px;
  }
  .row.space-x-15 {
    margin-left: -32.14286px;
    margin-right: -32.14286px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 32.14286px;
    padding-right: 32.14286px;
  }
  .row.space-y-15 {
    margin-top: -32.14286px;
    margin-bottom: -32.14286px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 32.14286px;
    padding-bottom: 32.14286px;
  }
  .row.space-16 {
    margin: -34.28571px;
  }
  .row.space-16 > [class*="col"] {
    padding: 34.28571px;
  }
  .row.space-x-16 {
    margin-left: -34.28571px;
    margin-right: -34.28571px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 34.28571px;
    padding-right: 34.28571px;
  }
  .row.space-y-16 {
    margin-top: -34.28571px;
    margin-bottom: -34.28571px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 34.28571px;
    padding-bottom: 34.28571px;
  }
  .row.space-17 {
    margin: -36.42857px;
  }
  .row.space-17 > [class*="col"] {
    padding: 36.42857px;
  }
  .row.space-x-17 {
    margin-left: -36.42857px;
    margin-right: -36.42857px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 36.42857px;
    padding-right: 36.42857px;
  }
  .row.space-y-17 {
    margin-top: -36.42857px;
    margin-bottom: -36.42857px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 36.42857px;
    padding-bottom: 36.42857px;
  }
  .row.space-18 {
    margin: -38.57143px;
  }
  .row.space-18 > [class*="col"] {
    padding: 38.57143px;
  }
  .row.space-x-18 {
    margin-left: -38.57143px;
    margin-right: -38.57143px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 38.57143px;
    padding-right: 38.57143px;
  }
  .row.space-y-18 {
    margin-top: -38.57143px;
    margin-bottom: -38.57143px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 38.57143px;
    padding-bottom: 38.57143px;
  }
  .row.space-19 {
    margin: -40.71429px;
  }
  .row.space-19 > [class*="col"] {
    padding: 40.71429px;
  }
  .row.space-x-19 {
    margin-left: -40.71429px;
    margin-right: -40.71429px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 40.71429px;
    padding-right: 40.71429px;
  }
  .row.space-y-19 {
    margin-top: -40.71429px;
    margin-bottom: -40.71429px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 40.71429px;
    padding-bottom: 40.71429px;
  }
  .row.space-20 {
    margin: -42.85714px;
  }
  .row.space-20 > [class*="col"] {
    padding: 42.85714px;
  }
  .row.space-x-20 {
    margin-left: -42.85714px;
    margin-right: -42.85714px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 42.85714px;
    padding-right: 42.85714px;
  }
  .row.space-y-20 {
    margin-top: -42.85714px;
    margin-bottom: -42.85714px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 42.85714px;
    padding-bottom: 42.85714px;
  }
}
@media (min-width: 1601px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -4.64286px;
  }
  .row.space-2 > [class*="col"] {
    padding: 4.64286px;
  }
  .row.space-x-2 {
    margin-left: -4.64286px;
    margin-right: -4.64286px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 4.64286px;
    padding-right: 4.64286px;
  }
  .row.space-y-2 {
    margin-top: -4.64286px;
    margin-bottom: -4.64286px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 4.64286px;
    padding-bottom: 4.64286px;
  }
  .row.space-3 {
    margin: -6.96429px;
  }
  .row.space-3 > [class*="col"] {
    padding: 6.96429px;
  }
  .row.space-x-3 {
    margin-left: -6.96429px;
    margin-right: -6.96429px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 6.96429px;
    padding-right: 6.96429px;
  }
  .row.space-y-3 {
    margin-top: -6.96429px;
    margin-bottom: -6.96429px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 6.96429px;
    padding-bottom: 6.96429px;
  }
  .row.space-4 {
    margin: -9.28571px;
  }
  .row.space-4 > [class*="col"] {
    padding: 9.28571px;
  }
  .row.space-x-4 {
    margin-left: -9.28571px;
    margin-right: -9.28571px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 9.28571px;
    padding-right: 9.28571px;
  }
  .row.space-y-4 {
    margin-top: -9.28571px;
    margin-bottom: -9.28571px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 9.28571px;
    padding-bottom: 9.28571px;
  }
  .row.space-5 {
    margin: -11.60714px;
  }
  .row.space-5 > [class*="col"] {
    padding: 11.60714px;
  }
  .row.space-x-5 {
    margin-left: -11.60714px;
    margin-right: -11.60714px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 11.60714px;
    padding-right: 11.60714px;
  }
  .row.space-y-5 {
    margin-top: -11.60714px;
    margin-bottom: -11.60714px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 11.60714px;
    padding-bottom: 11.60714px;
  }
  .row.space-6 {
    margin: -13.92857px;
  }
  .row.space-6 > [class*="col"] {
    padding: 13.92857px;
  }
  .row.space-x-6 {
    margin-left: -13.92857px;
    margin-right: -13.92857px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 13.92857px;
    padding-right: 13.92857px;
  }
  .row.space-y-6 {
    margin-top: -13.92857px;
    margin-bottom: -13.92857px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 13.92857px;
    padding-bottom: 13.92857px;
  }
  .row.space-7 {
    margin: -16.25px;
  }
  .row.space-7 > [class*="col"] {
    padding: 16.25px;
  }
  .row.space-x-7 {
    margin-left: -16.25px;
    margin-right: -16.25px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 16.25px;
    padding-right: 16.25px;
  }
  .row.space-y-7 {
    margin-top: -16.25px;
    margin-bottom: -16.25px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 16.25px;
    padding-bottom: 16.25px;
  }
  .row.space-8 {
    margin: -18.57143px;
  }
  .row.space-8 > [class*="col"] {
    padding: 18.57143px;
  }
  .row.space-x-8 {
    margin-left: -18.57143px;
    margin-right: -18.57143px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 18.57143px;
    padding-right: 18.57143px;
  }
  .row.space-y-8 {
    margin-top: -18.57143px;
    margin-bottom: -18.57143px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 18.57143px;
    padding-bottom: 18.57143px;
  }
  .row.space-9 {
    margin: -20.89286px;
  }
  .row.space-9 > [class*="col"] {
    padding: 20.89286px;
  }
  .row.space-x-9 {
    margin-left: -20.89286px;
    margin-right: -20.89286px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 20.89286px;
    padding-right: 20.89286px;
  }
  .row.space-y-9 {
    margin-top: -20.89286px;
    margin-bottom: -20.89286px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 20.89286px;
    padding-bottom: 20.89286px;
  }
  .row.space-10 {
    margin: -23.21429px;
  }
  .row.space-10 > [class*="col"] {
    padding: 23.21429px;
  }
  .row.space-x-10 {
    margin-left: -23.21429px;
    margin-right: -23.21429px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 23.21429px;
    padding-right: 23.21429px;
  }
  .row.space-y-10 {
    margin-top: -23.21429px;
    margin-bottom: -23.21429px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 23.21429px;
    padding-bottom: 23.21429px;
  }
  .row.space-11 {
    margin: -25.53571px;
  }
  .row.space-11 > [class*="col"] {
    padding: 25.53571px;
  }
  .row.space-x-11 {
    margin-left: -25.53571px;
    margin-right: -25.53571px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 25.53571px;
    padding-right: 25.53571px;
  }
  .row.space-y-11 {
    margin-top: -25.53571px;
    margin-bottom: -25.53571px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 25.53571px;
    padding-bottom: 25.53571px;
  }
  .row.space-12 {
    margin: -27.85714px;
  }
  .row.space-12 > [class*="col"] {
    padding: 27.85714px;
  }
  .row.space-x-12 {
    margin-left: -27.85714px;
    margin-right: -27.85714px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 27.85714px;
    padding-right: 27.85714px;
  }
  .row.space-y-12 {
    margin-top: -27.85714px;
    margin-bottom: -27.85714px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 27.85714px;
    padding-bottom: 27.85714px;
  }
  .row.space-13 {
    margin: -30.17857px;
  }
  .row.space-13 > [class*="col"] {
    padding: 30.17857px;
  }
  .row.space-x-13 {
    margin-left: -30.17857px;
    margin-right: -30.17857px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 30.17857px;
    padding-right: 30.17857px;
  }
  .row.space-y-13 {
    margin-top: -30.17857px;
    margin-bottom: -30.17857px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 30.17857px;
    padding-bottom: 30.17857px;
  }
  .row.space-14 {
    margin: -32.5px;
  }
  .row.space-14 > [class*="col"] {
    padding: 32.5px;
  }
  .row.space-x-14 {
    margin-left: -32.5px;
    margin-right: -32.5px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 32.5px;
    padding-right: 32.5px;
  }
  .row.space-y-14 {
    margin-top: -32.5px;
    margin-bottom: -32.5px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 32.5px;
    padding-bottom: 32.5px;
  }
  .row.space-15 {
    margin: -34.82143px;
  }
  .row.space-15 > [class*="col"] {
    padding: 34.82143px;
  }
  .row.space-x-15 {
    margin-left: -34.82143px;
    margin-right: -34.82143px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 34.82143px;
    padding-right: 34.82143px;
  }
  .row.space-y-15 {
    margin-top: -34.82143px;
    margin-bottom: -34.82143px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 34.82143px;
    padding-bottom: 34.82143px;
  }
  .row.space-16 {
    margin: -37.14286px;
  }
  .row.space-16 > [class*="col"] {
    padding: 37.14286px;
  }
  .row.space-x-16 {
    margin-left: -37.14286px;
    margin-right: -37.14286px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 37.14286px;
    padding-right: 37.14286px;
  }
  .row.space-y-16 {
    margin-top: -37.14286px;
    margin-bottom: -37.14286px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 37.14286px;
    padding-bottom: 37.14286px;
  }
  .row.space-17 {
    margin: -39.46429px;
  }
  .row.space-17 > [class*="col"] {
    padding: 39.46429px;
  }
  .row.space-x-17 {
    margin-left: -39.46429px;
    margin-right: -39.46429px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 39.46429px;
    padding-right: 39.46429px;
  }
  .row.space-y-17 {
    margin-top: -39.46429px;
    margin-bottom: -39.46429px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 39.46429px;
    padding-bottom: 39.46429px;
  }
  .row.space-18 {
    margin: -41.78571px;
  }
  .row.space-18 > [class*="col"] {
    padding: 41.78571px;
  }
  .row.space-x-18 {
    margin-left: -41.78571px;
    margin-right: -41.78571px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 41.78571px;
    padding-right: 41.78571px;
  }
  .row.space-y-18 {
    margin-top: -41.78571px;
    margin-bottom: -41.78571px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 41.78571px;
    padding-bottom: 41.78571px;
  }
  .row.space-19 {
    margin: -44.10714px;
  }
  .row.space-19 > [class*="col"] {
    padding: 44.10714px;
  }
  .row.space-x-19 {
    margin-left: -44.10714px;
    margin-right: -44.10714px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 44.10714px;
    padding-right: 44.10714px;
  }
  .row.space-y-19 {
    margin-top: -44.10714px;
    margin-bottom: -44.10714px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 44.10714px;
    padding-bottom: 44.10714px;
  }
  .row.space-20 {
    margin: -46.42857px;
  }
  .row.space-20 > [class*="col"] {
    padding: 46.42857px;
  }
  .row.space-x-20 {
    margin-left: -46.42857px;
    margin-right: -46.42857px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 46.42857px;
    padding-right: 46.42857px;
  }
  .row.space-y-20 {
    margin-top: -46.42857px;
    margin-bottom: -46.42857px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 46.42857px;
    padding-bottom: 46.42857px;
  }
}
@media (min-width: 1700px) {
  .row.space-1 {
    margin: -2.5px;
  }
  .row.space-1 > [class*="col"] {
    padding: 2.5px;
  }
  .row.space-x-1 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .row.space-x-1 > [class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .row.space-y-1 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .row.space-y-1 > [class*="col"] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .row.space-2 {
    margin: -5px;
  }
  .row.space-2 > [class*="col"] {
    padding: 5px;
  }
  .row.space-x-2 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.space-x-2 > [class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row.space-y-2 {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .row.space-y-2 > [class*="col"] {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .row.space-3 {
    margin: -7.5px;
  }
  .row.space-3 > [class*="col"] {
    padding: 7.5px;
  }
  .row.space-x-3 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .row.space-x-3 > [class*="col"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .row.space-y-3 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }
  .row.space-y-3 > [class*="col"] {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  .row.space-4 {
    margin: -10px;
  }
  .row.space-4 > [class*="col"] {
    padding: 10px;
  }
  .row.space-x-4 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.space-x-4 > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row.space-y-4 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .row.space-y-4 > [class*="col"] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .row.space-5 {
    margin: -12.5px;
  }
  .row.space-5 > [class*="col"] {
    padding: 12.5px;
  }
  .row.space-x-5 {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .row.space-x-5 > [class*="col"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
  .row.space-y-5 {
    margin-top: -12.5px;
    margin-bottom: -12.5px;
  }
  .row.space-y-5 > [class*="col"] {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .row.space-6 {
    margin: -15px;
  }
  .row.space-6 > [class*="col"] {
    padding: 15px;
  }
  .row.space-x-6 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.space-x-6 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.space-y-6 {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .row.space-y-6 > [class*="col"] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .row.space-7 {
    margin: -17.5px;
  }
  .row.space-7 > [class*="col"] {
    padding: 17.5px;
  }
  .row.space-x-7 {
    margin-left: -17.5px;
    margin-right: -17.5px;
  }
  .row.space-x-7 > [class*="col"] {
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
  .row.space-y-7 {
    margin-top: -17.5px;
    margin-bottom: -17.5px;
  }
  .row.space-y-7 > [class*="col"] {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
  .row.space-8 {
    margin: -20px;
  }
  .row.space-8 > [class*="col"] {
    padding: 20px;
  }
  .row.space-x-8 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.space-x-8 > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.space-y-8 {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .row.space-y-8 > [class*="col"] {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .row.space-9 {
    margin: -22.5px;
  }
  .row.space-9 > [class*="col"] {
    padding: 22.5px;
  }
  .row.space-x-9 {
    margin-left: -22.5px;
    margin-right: -22.5px;
  }
  .row.space-x-9 > [class*="col"] {
    padding-left: 22.5px;
    padding-right: 22.5px;
  }
  .row.space-y-9 {
    margin-top: -22.5px;
    margin-bottom: -22.5px;
  }
  .row.space-y-9 > [class*="col"] {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .row.space-10 {
    margin: -25px;
  }
  .row.space-10 > [class*="col"] {
    padding: 25px;
  }
  .row.space-x-10 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.space-x-10 > [class*="col"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .row.space-y-10 {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .row.space-y-10 > [class*="col"] {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .row.space-11 {
    margin: -27.5px;
  }
  .row.space-11 > [class*="col"] {
    padding: 27.5px;
  }
  .row.space-x-11 {
    margin-left: -27.5px;
    margin-right: -27.5px;
  }
  .row.space-x-11 > [class*="col"] {
    padding-left: 27.5px;
    padding-right: 27.5px;
  }
  .row.space-y-11 {
    margin-top: -27.5px;
    margin-bottom: -27.5px;
  }
  .row.space-y-11 > [class*="col"] {
    padding-top: 27.5px;
    padding-bottom: 27.5px;
  }
  .row.space-12 {
    margin: -30px;
  }
  .row.space-12 > [class*="col"] {
    padding: 30px;
  }
  .row.space-x-12 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.space-x-12 > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row.space-y-12 {
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .row.space-y-12 > [class*="col"] {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .row.space-13 {
    margin: -32.5px;
  }
  .row.space-13 > [class*="col"] {
    padding: 32.5px;
  }
  .row.space-x-13 {
    margin-left: -32.5px;
    margin-right: -32.5px;
  }
  .row.space-x-13 > [class*="col"] {
    padding-left: 32.5px;
    padding-right: 32.5px;
  }
  .row.space-y-13 {
    margin-top: -32.5px;
    margin-bottom: -32.5px;
  }
  .row.space-y-13 > [class*="col"] {
    padding-top: 32.5px;
    padding-bottom: 32.5px;
  }
  .row.space-14 {
    margin: -35px;
  }
  .row.space-14 > [class*="col"] {
    padding: 35px;
  }
  .row.space-x-14 {
    margin-left: -35px;
    margin-right: -35px;
  }
  .row.space-x-14 > [class*="col"] {
    padding-left: 35px;
    padding-right: 35px;
  }
  .row.space-y-14 {
    margin-top: -35px;
    margin-bottom: -35px;
  }
  .row.space-y-14 > [class*="col"] {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .row.space-15 {
    margin: -37.5px;
  }
  .row.space-15 > [class*="col"] {
    padding: 37.5px;
  }
  .row.space-x-15 {
    margin-left: -37.5px;
    margin-right: -37.5px;
  }
  .row.space-x-15 > [class*="col"] {
    padding-left: 37.5px;
    padding-right: 37.5px;
  }
  .row.space-y-15 {
    margin-top: -37.5px;
    margin-bottom: -37.5px;
  }
  .row.space-y-15 > [class*="col"] {
    padding-top: 37.5px;
    padding-bottom: 37.5px;
  }
  .row.space-16 {
    margin: -40px;
  }
  .row.space-16 > [class*="col"] {
    padding: 40px;
  }
  .row.space-x-16 {
    margin-left: -40px;
    margin-right: -40px;
  }
  .row.space-x-16 > [class*="col"] {
    padding-left: 40px;
    padding-right: 40px;
  }
  .row.space-y-16 {
    margin-top: -40px;
    margin-bottom: -40px;
  }
  .row.space-y-16 > [class*="col"] {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .row.space-17 {
    margin: -42.5px;
  }
  .row.space-17 > [class*="col"] {
    padding: 42.5px;
  }
  .row.space-x-17 {
    margin-left: -42.5px;
    margin-right: -42.5px;
  }
  .row.space-x-17 > [class*="col"] {
    padding-left: 42.5px;
    padding-right: 42.5px;
  }
  .row.space-y-17 {
    margin-top: -42.5px;
    margin-bottom: -42.5px;
  }
  .row.space-y-17 > [class*="col"] {
    padding-top: 42.5px;
    padding-bottom: 42.5px;
  }
  .row.space-18 {
    margin: -45px;
  }
  .row.space-18 > [class*="col"] {
    padding: 45px;
  }
  .row.space-x-18 {
    margin-left: -45px;
    margin-right: -45px;
  }
  .row.space-x-18 > [class*="col"] {
    padding-left: 45px;
    padding-right: 45px;
  }
  .row.space-y-18 {
    margin-top: -45px;
    margin-bottom: -45px;
  }
  .row.space-y-18 > [class*="col"] {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .row.space-19 {
    margin: -47.5px;
  }
  .row.space-19 > [class*="col"] {
    padding: 47.5px;
  }
  .row.space-x-19 {
    margin-left: -47.5px;
    margin-right: -47.5px;
  }
  .row.space-x-19 > [class*="col"] {
    padding-left: 47.5px;
    padding-right: 47.5px;
  }
  .row.space-y-19 {
    margin-top: -47.5px;
    margin-bottom: -47.5px;
  }
  .row.space-y-19 > [class*="col"] {
    padding-top: 47.5px;
    padding-bottom: 47.5px;
  }
  .row.space-20 {
    margin: -50px;
  }
  .row.space-20 > [class*="col"] {
    padding: 50px;
  }
  .row.space-x-20 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.space-x-20 > [class*="col"] {
    padding-left: 50px;
    padding-right: 50px;
  }
  .row.space-y-20 {
    margin-top: -50px;
    margin-bottom: -50px;
  }
  .row.space-y-20 > [class*="col"] {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 0px) {
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    min-height: 1px;
  }
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    min-height: 1px;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    min-height: 1px;
  }
}
@media (min-width: 1025px) {
  .col-mmd-1,
  .col-mmd-2,
  .col-mmd-3,
  .col-mmd-4,
  .col-mmd-5,
  .col-mmd-6,
  .col-mmd-7,
  .col-mmd-8,
  .col-mmd-9,
  .col-mmd-10,
  .col-mmd-11,
  .col-mmd-12 {
    min-height: 1px;
  }
}
@media (min-width: 1290px) {
  .col-mmmd-1,
  .col-mmmd-2,
  .col-mmmd-3,
  .col-mmmd-4,
  .col-mmmd-5,
  .col-mmmd-6,
  .col-mmmd-7,
  .col-mmmd-8,
  .col-mmmd-9,
  .col-mmmd-10,
  .col-mmmd-11,
  .col-mmmd-12 {
    min-height: 1px;
  }
}
@media (min-width: 1367px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    min-height: 1px;
  }
}
@media (min-width: 1601px) {
  .col-llg-1,
  .col-llg-2,
  .col-llg-3,
  .col-llg-4,
  .col-llg-5,
  .col-llg-6,
  .col-llg-7,
  .col-llg-8,
  .col-llg-9,
  .col-llg-10,
  .col-llg-11,
  .col-llg-12 {
    min-height: 1px;
  }
}
@media (min-width: 1700px) {
  .col-longg-1,
  .col-longg-2,
  .col-longg-3,
  .col-longg-4,
  .col-longg-5,
  .col-longg-6,
  .col-longg-7,
  .col-longg-8,
  .col-longg-9,
  .col-longg-10,
  .col-longg-11,
  .col-longg-12 {
    min-height: 1px;
  }
}
@media (min-width: 0px) {
  .col-xs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .col-mmd-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-mmd-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-mmd-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-mmd-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-mmd-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-mmd-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-mmd-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-mmd-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-mmd-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-mmd-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-mmd-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-mmd-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1290px) {
  .col-mmmd-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-mmmd-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-mmmd-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-mmmd-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-mmmd-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-mmmd-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-mmmd-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-mmmd-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-mmmd-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-mmmd-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-mmmd-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-mmmd-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1367px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1601px) {
  .col-llg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-llg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-llg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-llg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-llg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-llg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-llg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-llg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-llg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-llg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-llg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-llg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1700px) {
  .col-longg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-longg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-longg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-longg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-longg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-longg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-longg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-longg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-longg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-longg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-longg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-longg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 0px) {
  .col-xs-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-xs-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-xs-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-xs-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-xs-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-xs-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-xs-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-xs-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-xs-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-xs-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-xs-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-xs-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-sm-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-sm-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-sm-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-md-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-md-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-md-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-md-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-md-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-md-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-md-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-md-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-md-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-md-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-md-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1025px) {
  .col-mmd-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-mmd-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-mmd-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-mmd-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-mmd-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-mmd-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-mmd-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-mmd-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-mmd-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-mmd-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-mmd-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-mmd-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1290px) {
  .col-mmmd-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-mmmd-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-mmmd-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-mmmd-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-mmmd-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-mmmd-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-mmmd-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-mmmd-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-mmmd-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-mmmd-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-mmmd-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-mmmd-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1367px) {
  .col-lg-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-lg-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-lg-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-lg-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1601px) {
  .col-llg-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-llg-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-llg-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-llg-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-llg-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-llg-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-llg-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-llg-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-llg-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-llg-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-llg-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-llg-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1700px) {
  .col-longg-pull-1 {
    position: relative;
    right: 8.33333%;
  }
  .col-longg-pull-2 {
    position: relative;
    right: 16.66667%;
  }
  .col-longg-pull-3 {
    position: relative;
    right: 25%;
  }
  .col-longg-pull-4 {
    position: relative;
    right: 33.33333%;
  }
  .col-longg-pull-5 {
    position: relative;
    right: 41.66667%;
  }
  .col-longg-pull-6 {
    position: relative;
    right: 50%;
  }
  .col-longg-pull-7 {
    position: relative;
    right: 58.33333%;
  }
  .col-longg-pull-8 {
    position: relative;
    right: 66.66667%;
  }
  .col-longg-pull-9 {
    position: relative;
    right: 75%;
  }
  .col-longg-pull-10 {
    position: relative;
    right: 83.33333%;
  }
  .col-longg-pull-11 {
    position: relative;
    right: 91.66667%;
  }
  .col-longg-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 0px) {
  .col-xs-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-xs-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-xs-push-3 {
    position: relative;
    left: 25%;
  }
  .col-xs-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-xs-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-xs-push-6 {
    position: relative;
    left: 50%;
  }
  .col-xs-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-xs-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-xs-push-9 {
    position: relative;
    left: 75%;
  }
  .col-xs-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-xs-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-xs-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-sm-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-sm-push-3 {
    position: relative;
    left: 25%;
  }
  .col-sm-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-sm-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-sm-push-6 {
    position: relative;
    left: 50%;
  }
  .col-sm-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-sm-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-sm-push-9 {
    position: relative;
    left: 75%;
  }
  .col-sm-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-sm-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-sm-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-md-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-md-push-3 {
    position: relative;
    left: 25%;
  }
  .col-md-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-md-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-md-push-6 {
    position: relative;
    left: 50%;
  }
  .col-md-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-md-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-md-push-9 {
    position: relative;
    left: 75%;
  }
  .col-md-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-md-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-md-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 1025px) {
  .col-mmd-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-mmd-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-mmd-push-3 {
    position: relative;
    left: 25%;
  }
  .col-mmd-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-mmd-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-mmd-push-6 {
    position: relative;
    left: 50%;
  }
  .col-mmd-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-mmd-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-mmd-push-9 {
    position: relative;
    left: 75%;
  }
  .col-mmd-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-mmd-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-mmd-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 1290px) {
  .col-mmmd-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-mmmd-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-mmmd-push-3 {
    position: relative;
    left: 25%;
  }
  .col-mmmd-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-mmmd-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-mmmd-push-6 {
    position: relative;
    left: 50%;
  }
  .col-mmmd-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-mmmd-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-mmmd-push-9 {
    position: relative;
    left: 75%;
  }
  .col-mmmd-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-mmmd-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-mmmd-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 1367px) {
  .col-lg-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-lg-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-lg-push-3 {
    position: relative;
    left: 25%;
  }
  .col-lg-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-lg-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-lg-push-6 {
    position: relative;
    left: 50%;
  }
  .col-lg-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-lg-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-lg-push-9 {
    position: relative;
    left: 75%;
  }
  .col-lg-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-lg-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-lg-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 1601px) {
  .col-llg-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-llg-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-llg-push-3 {
    position: relative;
    left: 25%;
  }
  .col-llg-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-llg-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-llg-push-6 {
    position: relative;
    left: 50%;
  }
  .col-llg-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-llg-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-llg-push-9 {
    position: relative;
    left: 75%;
  }
  .col-llg-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-llg-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-llg-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 1700px) {
  .col-longg-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .col-longg-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .col-longg-push-3 {
    position: relative;
    left: 25%;
  }
  .col-longg-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .col-longg-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .col-longg-push-6 {
    position: relative;
    left: 50%;
  }
  .col-longg-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .col-longg-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .col-longg-push-9 {
    position: relative;
    left: 75%;
  }
  .col-longg-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .col-longg-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .col-longg-push-12 {
    position: relative;
    left: 100%;
  }
}
@media (min-width: 0px) {
  .col-xs-offset-1 {
    margin-left: 8.33333%;
  }
  .col-xs-offset-2 {
    margin-left: 16.66667%;
  }
  .col-xs-offset-3 {
    margin-left: 25%;
  }
  .col-xs-offset-4 {
    margin-left: 33.33333%;
  }
  .col-xs-offset-5 {
    margin-left: 41.66667%;
  }
  .col-xs-offset-6 {
    margin-left: 50%;
  }
  .col-xs-offset-7 {
    margin-left: 58.33333%;
  }
  .col-xs-offset-8 {
    margin-left: 66.66667%;
  }
  .col-xs-offset-9 {
    margin-left: 75%;
  }
  .col-xs-offset-10 {
    margin-left: 83.33333%;
  }
  .col-xs-offset-11 {
    margin-left: 91.66667%;
  }
  .col-xs-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1025px) {
  .col-mmd-offset-1 {
    margin-left: 8.33333%;
  }
  .col-mmd-offset-2 {
    margin-left: 16.66667%;
  }
  .col-mmd-offset-3 {
    margin-left: 25%;
  }
  .col-mmd-offset-4 {
    margin-left: 33.33333%;
  }
  .col-mmd-offset-5 {
    margin-left: 41.66667%;
  }
  .col-mmd-offset-6 {
    margin-left: 50%;
  }
  .col-mmd-offset-7 {
    margin-left: 58.33333%;
  }
  .col-mmd-offset-8 {
    margin-left: 66.66667%;
  }
  .col-mmd-offset-9 {
    margin-left: 75%;
  }
  .col-mmd-offset-10 {
    margin-left: 83.33333%;
  }
  .col-mmd-offset-11 {
    margin-left: 91.66667%;
  }
  .col-mmd-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1290px) {
  .col-mmmd-offset-1 {
    margin-left: 8.33333%;
  }
  .col-mmmd-offset-2 {
    margin-left: 16.66667%;
  }
  .col-mmmd-offset-3 {
    margin-left: 25%;
  }
  .col-mmmd-offset-4 {
    margin-left: 33.33333%;
  }
  .col-mmmd-offset-5 {
    margin-left: 41.66667%;
  }
  .col-mmmd-offset-6 {
    margin-left: 50%;
  }
  .col-mmmd-offset-7 {
    margin-left: 58.33333%;
  }
  .col-mmmd-offset-8 {
    margin-left: 66.66667%;
  }
  .col-mmmd-offset-9 {
    margin-left: 75%;
  }
  .col-mmmd-offset-10 {
    margin-left: 83.33333%;
  }
  .col-mmmd-offset-11 {
    margin-left: 91.66667%;
  }
  .col-mmmd-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1367px) {
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1601px) {
  .col-llg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-llg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-llg-offset-3 {
    margin-left: 25%;
  }
  .col-llg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-llg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-llg-offset-6 {
    margin-left: 50%;
  }
  .col-llg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-llg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-llg-offset-9 {
    margin-left: 75%;
  }
  .col-llg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-llg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-llg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1700px) {
  .col-longg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-longg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-longg-offset-3 {
    margin-left: 25%;
  }
  .col-longg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-longg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-longg-offset-6 {
    margin-left: 50%;
  }
  .col-longg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-longg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-longg-offset-9 {
    margin-left: 75%;
  }
  .col-longg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-longg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-longg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 0px) {
  .fs-1,
  .fs-2,
  .fs-3,
  .fs-4 {
    font-size: 14px;
  }
  .fs-5 {
    font-size: 15.4px;
  }
  .fs-6 {
    font-size: 16.8px;
  }
  .fs-7 {
    font-size: 18.2px;
  }
  .fs-8 {
    font-size: 19.6px;
  }
  .fs-9 {
    font-size: 21px;
  }
  .fs-10 {
    font-size: 22.4px;
  }
  .fs-11 {
    font-size: 23.8px;
  }
  .fs-12 {
    font-size: 25.2px;
  }
  .fs-13 {
    font-size: 26.6px;
  }
  .fs-14 {
    font-size: 28px;
  }
  .fs-15 {
    font-size: 29.4px;
  }
  .fs-16 {
    font-size: 30.8px;
  }
  .fs-17 {
    font-size: 32.2px;
  }
  .fs-18 {
    font-size: 33.6px;
  }
  .fs-19 {
    font-size: 35px;
  }
  .fs-20 {
    font-size: 36.4px;
  }
}
@media (min-width: 768px) {
  .fs-1,
  .fs-2,
  .fs-3 {
    font-size: 14px;
  }
  .fs-4 {
    font-size: 14.85714px;
  }
  .fs-5 {
    font-size: 16.34286px;
  }
  .fs-6 {
    font-size: 17.82857px;
  }
  .fs-7 {
    font-size: 19.31429px;
  }
  .fs-8 {
    font-size: 20.8px;
  }
  .fs-9 {
    font-size: 22.28571px;
  }
  .fs-10 {
    font-size: 23.77143px;
  }
  .fs-11 {
    font-size: 25.25714px;
  }
  .fs-12 {
    font-size: 26.74286px;
  }
  .fs-13 {
    font-size: 28.22857px;
  }
  .fs-14 {
    font-size: 29.71429px;
  }
  .fs-15 {
    font-size: 31.2px;
  }
  .fs-16 {
    font-size: 32.68571px;
  }
  .fs-17 {
    font-size: 34.17143px;
  }
  .fs-18 {
    font-size: 35.65714px;
  }
  .fs-19 {
    font-size: 37.14286px;
  }
  .fs-20 {
    font-size: 38.62857px;
  }
}
@media (min-width: 992px) {
  .fs-1,
  .fs-2 {
    font-size: 14px;
  }
  .fs-3 {
    font-size: 14.14286px;
  }
  .fs-4 {
    font-size: 15.71429px;
  }
  .fs-5 {
    font-size: 17.28571px;
  }
  .fs-6 {
    font-size: 18.85714px;
  }
  .fs-7 {
    font-size: 20.42857px;
  }
  .fs-8 {
    font-size: 22px;
  }
  .fs-9 {
    font-size: 23.57143px;
  }
  .fs-10 {
    font-size: 25.14286px;
  }
  .fs-11 {
    font-size: 26.71429px;
  }
  .fs-12 {
    font-size: 28.28571px;
  }
  .fs-13 {
    font-size: 29.85714px;
  }
  .fs-14 {
    font-size: 31.42857px;
  }
  .fs-15 {
    font-size: 33px;
  }
  .fs-16 {
    font-size: 34.57143px;
  }
  .fs-17 {
    font-size: 36.14286px;
  }
  .fs-18 {
    font-size: 37.71429px;
  }
  .fs-19 {
    font-size: 39.28571px;
  }
  .fs-20 {
    font-size: 40.85714px;
  }
}
@media (min-width: 1025px) {
  .fs-1,
  .fs-2 {
    font-size: 14px;
  }
  .fs-3 {
    font-size: 14.91429px;
  }
  .fs-4 {
    font-size: 16.57143px;
  }
  .fs-5 {
    font-size: 18.22857px;
  }
  .fs-6 {
    font-size: 19.88571px;
  }
  .fs-7 {
    font-size: 21.54286px;
  }
  .fs-8 {
    font-size: 23.2px;
  }
  .fs-9 {
    font-size: 24.85714px;
  }
  .fs-10 {
    font-size: 26.51429px;
  }
  .fs-11 {
    font-size: 28.17143px;
  }
  .fs-12 {
    font-size: 29.82857px;
  }
  .fs-13 {
    font-size: 31.48571px;
  }
  .fs-14 {
    font-size: 33.14286px;
  }
  .fs-15 {
    font-size: 34.8px;
  }
  .fs-16 {
    font-size: 36.45714px;
  }
  .fs-17 {
    font-size: 38.11429px;
  }
  .fs-18 {
    font-size: 39.77143px;
  }
  .fs-19 {
    font-size: 41.42857px;
  }
  .fs-20 {
    font-size: 43.08571px;
  }
}
@media (min-width: 1290px) {
  .fs-1,
  .fs-2 {
    font-size: 14px;
  }
  .fs-3 {
    font-size: 15.68571px;
  }
  .fs-4 {
    font-size: 17.42857px;
  }
  .fs-5 {
    font-size: 19.17143px;
  }
  .fs-6 {
    font-size: 20.91429px;
  }
  .fs-7 {
    font-size: 22.65714px;
  }
  .fs-8 {
    font-size: 24.4px;
  }
  .fs-9 {
    font-size: 26.14286px;
  }
  .fs-10 {
    font-size: 27.88571px;
  }
  .fs-11 {
    font-size: 29.62857px;
  }
  .fs-12 {
    font-size: 31.37143px;
  }
  .fs-13 {
    font-size: 33.11429px;
  }
  .fs-14 {
    font-size: 34.85714px;
  }
  .fs-15 {
    font-size: 36.6px;
  }
  .fs-16 {
    font-size: 38.34286px;
  }
  .fs-17 {
    font-size: 40.08571px;
  }
  .fs-18 {
    font-size: 41.82857px;
  }
  .fs-19 {
    font-size: 43.57143px;
  }
  .fs-20 {
    font-size: 45.31429px;
  }
}
@media (min-width: 1367px) {
  .fs-1 {
    font-size: 14px;
  }
  .fs-2 {
    font-size: 14.62857px;
  }
  .fs-3 {
    font-size: 16.45714px;
  }
  .fs-4 {
    font-size: 18.28571px;
  }
  .fs-5 {
    font-size: 20.11429px;
  }
  .fs-6 {
    font-size: 21.94286px;
  }
  .fs-7 {
    font-size: 23.77143px;
  }
  .fs-8 {
    font-size: 25.6px;
  }
  .fs-9 {
    font-size: 27.42857px;
  }
  .fs-10 {
    font-size: 29.25714px;
  }
  .fs-11 {
    font-size: 31.08571px;
  }
  .fs-12 {
    font-size: 32.91429px;
  }
  .fs-13 {
    font-size: 34.74286px;
  }
  .fs-14 {
    font-size: 36.57143px;
  }
  .fs-15 {
    font-size: 38.4px;
  }
  .fs-16 {
    font-size: 40.22857px;
  }
  .fs-17 {
    font-size: 42.05714px;
  }
  .fs-18 {
    font-size: 43.88571px;
  }
  .fs-19 {
    font-size: 45.71429px;
  }
  .fs-20 {
    font-size: 47.54286px;
  }
}
@media (min-width: 1601px) {
  .fs-1 {
    font-size: 14px;
  }
  .fs-2 {
    font-size: 15.31429px;
  }
  .fs-3 {
    font-size: 17.22857px;
  }
  .fs-4 {
    font-size: 19.14286px;
  }
  .fs-5 {
    font-size: 21.05714px;
  }
  .fs-6 {
    font-size: 22.97143px;
  }
  .fs-7 {
    font-size: 24.88571px;
  }
  .fs-8 {
    font-size: 26.8px;
  }
  .fs-9 {
    font-size: 28.71429px;
  }
  .fs-10 {
    font-size: 30.62857px;
  }
  .fs-11 {
    font-size: 32.54286px;
  }
  .fs-12 {
    font-size: 34.45714px;
  }
  .fs-13 {
    font-size: 36.37143px;
  }
  .fs-14 {
    font-size: 38.28571px;
  }
  .fs-15 {
    font-size: 40.2px;
  }
  .fs-16 {
    font-size: 42.11429px;
  }
  .fs-17 {
    font-size: 44.02857px;
  }
  .fs-18 {
    font-size: 45.94286px;
  }
  .fs-19 {
    font-size: 47.85714px;
  }
  .fs-20 {
    font-size: 49.77143px;
  }
}
@media (min-width: 1700px) {
  .fs-1 {
    font-size: 14px;
  }
  .fs-2 {
    font-size: 16px;
  }
  .fs-3 {
    font-size: 18px;
  }
  .fs-4 {
    font-size: 20px;
  }
  .fs-5 {
    font-size: 22px;
  }
  .fs-6 {
    font-size: 24px;
  }
  .fs-7 {
    font-size: 26px;
  }
  .fs-8 {
    font-size: 28px;
  }
  .fs-9 {
    font-size: 30px;
  }
  .fs-10 {
    font-size: 32px;
  }
  .fs-11 {
    font-size: 34px;
  }
  .fs-12 {
    font-size: 36px;
  }
  .fs-13 {
    font-size: 38px;
  }
  .fs-14 {
    font-size: 40px;
  }
  .fs-15 {
    font-size: 42px;
  }
  .fs-16 {
    font-size: 44px;
  }
  .fs-17 {
    font-size: 46px;
  }
  .fs-18 {
    font-size: 48px;
  }
  .fs-19 {
    font-size: 50px;
  }
  .fs-20 {
    font-size: 52px;
  }
}
@media (min-width: 0px) {
  .lh-1 {
    line-height: 1;
  }
  .lh-2 {
    line-height: 1.02;
  }
  .lh-3 {
    line-height: 1.105;
  }
  .lh-4 {
    line-height: 1.19;
  }
  .lh-5 {
    line-height: 1.275;
  }
  .lh-6 {
    line-height: 1.36;
  }
  .lh-7 {
    line-height: 1.445;
  }
  .lh-8 {
    line-height: 1.53;
  }
  .lh-9 {
    line-height: 1.615;
  }
  .lh-10 {
    line-height: 1.7;
  }
}
@media (min-width: 768px) {
  .lh-1 {
    line-height: 1;
  }
  .lh-2 {
    line-height: 1.04571;
  }
  .lh-3 {
    line-height: 1.13286;
  }
  .lh-4 {
    line-height: 1.22;
  }
  .lh-5 {
    line-height: 1.30714;
  }
  .lh-6 {
    line-height: 1.39429;
  }
  .lh-7 {
    line-height: 1.48143;
  }
  .lh-8 {
    line-height: 1.56857;
  }
  .lh-9 {
    line-height: 1.65571;
  }
  .lh-10 {
    line-height: 1.74286;
  }
}
@media (min-width: 992px) {
  .lh-1 {
    line-height: 1;
  }
  .lh-2 {
    line-height: 1.07143;
  }
  .lh-3 {
    line-height: 1.16071;
  }
  .lh-4 {
    line-height: 1.25;
  }
  .lh-5 {
    line-height: 1.33929;
  }
  .lh-6 {
    line-height: 1.42857;
  }
  .lh-7 {
    line-height: 1.51786;
  }
  .lh-8 {
    line-height: 1.60714;
  }
  .lh-9 {
    line-height: 1.69643;
  }
  .lh-10 {
    line-height: 1.78571;
  }
}
@media (min-width: 1025px) {
  .lh-1 {
    line-height: 1.00571;
  }
  .lh-2 {
    line-height: 1.09714;
  }
  .lh-3 {
    line-height: 1.18857;
  }
  .lh-4 {
    line-height: 1.28;
  }
  .lh-5 {
    line-height: 1.37143;
  }
  .lh-6 {
    line-height: 1.46286;
  }
  .lh-7 {
    line-height: 1.55429;
  }
  .lh-8 {
    line-height: 1.64571;
  }
  .lh-9 {
    line-height: 1.73714;
  }
  .lh-10 {
    line-height: 1.82857;
  }
}
@media (min-width: 1290px) {
  .lh-1 {
    line-height: 1.02929;
  }
  .lh-2 {
    line-height: 1.12286;
  }
  .lh-3 {
    line-height: 1.21643;
  }
  .lh-4 {
    line-height: 1.31;
  }
  .lh-5 {
    line-height: 1.40357;
  }
  .lh-6 {
    line-height: 1.49714;
  }
  .lh-7 {
    line-height: 1.59071;
  }
  .lh-8 {
    line-height: 1.68429;
  }
  .lh-9 {
    line-height: 1.77786;
  }
  .lh-10 {
    line-height: 1.87143;
  }
}
@media (min-width: 1367px) {
  .lh-1 {
    line-height: 1.05286;
  }
  .lh-2 {
    line-height: 1.14857;
  }
  .lh-3 {
    line-height: 1.24429;
  }
  .lh-4 {
    line-height: 1.34;
  }
  .lh-5 {
    line-height: 1.43571;
  }
  .lh-6 {
    line-height: 1.53143;
  }
  .lh-7 {
    line-height: 1.62714;
  }
  .lh-8 {
    line-height: 1.72286;
  }
  .lh-9 {
    line-height: 1.81857;
  }
  .lh-10 {
    line-height: 1.91429;
  }
}
@media (min-width: 1601px) {
  .lh-1 {
    line-height: 1.07643;
  }
  .lh-2 {
    line-height: 1.17429;
  }
  .lh-3 {
    line-height: 1.27214;
  }
  .lh-4 {
    line-height: 1.37;
  }
  .lh-5 {
    line-height: 1.46786;
  }
  .lh-6 {
    line-height: 1.56571;
  }
  .lh-7 {
    line-height: 1.66357;
  }
  .lh-8 {
    line-height: 1.76143;
  }
  .lh-9 {
    line-height: 1.85929;
  }
  .lh-10 {
    line-height: 1.95714;
  }
}
@media (min-width: 1700px) {
  .lh-1 {
    line-height: 1.1;
  }
  .lh-2 {
    line-height: 1.2;
  }
  .lh-3 {
    line-height: 1.3;
  }
  .lh-4 {
    line-height: 1.4;
  }
  .lh-5 {
    line-height: 1.5;
  }
  .lh-6 {
    line-height: 1.6;
  }
  .lh-7 {
    line-height: 1.7;
  }
  .lh-8 {
    line-height: 1.8;
  }
  .lh-9 {
    line-height: 1.9;
  }
  .lh-10 {
    line-height: 2;
  }
}
@media (min-width: 0px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 5px;
  }
  .mt-2 {
    margin-top: 5px;
  }
  .mr-2 {
    margin-right: 5px;
  }
  .mb-2 {
    margin-bottom: 5px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 5px;
  }
  .mx-2 {
    margin-right: 5px;
  }
  .my-2 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-3 {
    margin: 7.5px;
  }
  .mt-3 {
    margin-top: 7.5px;
  }
  .mr-3 {
    margin-right: 7.5px;
  }
  .mb-3 {
    margin-bottom: 7.5px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 7.5px;
  }
  .mx-3 {
    margin-right: 7.5px;
  }
  .my-3 {
    margin-top: 7.5px;
    margin-bottom: 7.5px;
  }
  .m-4 {
    margin: 10px;
  }
  .mt-4 {
    margin-top: 10px;
  }
  .mr-4 {
    margin-right: 10px;
  }
  .mb-4 {
    margin-bottom: 10px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 10px;
  }
  .mx-4 {
    margin-right: 10px;
  }
  .my-4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .m-5 {
    margin: 12.5px;
  }
  .mt-5 {
    margin-top: 12.5px;
  }
  .mr-5 {
    margin-right: 12.5px;
  }
  .mb-5 {
    margin-bottom: 12.5px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 12.5px;
  }
  .mx-5 {
    margin-right: 12.5px;
  }
  .my-5 {
    margin-top: 12.5px;
    margin-bottom: 12.5px;
  }
  .m-6 {
    margin: 15px;
  }
  .mt-6 {
    margin-top: 15px;
  }
  .mr-6 {
    margin-right: 15px;
  }
  .mb-6 {
    margin-bottom: 15px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 15px;
  }
  .mx-6 {
    margin-right: 15px;
  }
  .my-6 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .m-7 {
    margin: 17.5px;
  }
  .mt-7 {
    margin-top: 17.5px;
  }
  .mr-7 {
    margin-right: 17.5px;
  }
  .mb-7 {
    margin-bottom: 17.5px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 17.5px;
  }
  .mx-7 {
    margin-right: 17.5px;
  }
  .my-7 {
    margin-top: 17.5px;
    margin-bottom: 17.5px;
  }
  .m-8 {
    margin: 20px;
  }
  .mt-8 {
    margin-top: 20px;
  }
  .mr-8 {
    margin-right: 20px;
  }
  .mb-8 {
    margin-bottom: 20px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 20px;
  }
  .mx-8 {
    margin-right: 20px;
  }
  .my-8 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .m-9 {
    margin: 22.5px;
  }
  .mt-9 {
    margin-top: 22.5px;
  }
  .mr-9 {
    margin-right: 22.5px;
  }
  .mb-9 {
    margin-bottom: 22.5px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 22.5px;
  }
  .mx-9 {
    margin-right: 22.5px;
  }
  .my-9 {
    margin-top: 22.5px;
    margin-bottom: 22.5px;
  }
  .m-10 {
    margin: 25px;
  }
  .mt-10 {
    margin-top: 25px;
  }
  .mr-10 {
    margin-right: 25px;
  }
  .mb-10 {
    margin-bottom: 25px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 25px;
  }
  .mx-10 {
    margin-right: 25px;
  }
  .my-10 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .m-11 {
    margin: 27.5px;
  }
  .mt-11 {
    margin-top: 27.5px;
  }
  .mr-11 {
    margin-right: 27.5px;
  }
  .mb-11 {
    margin-bottom: 27.5px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 27.5px;
  }
  .mx-11 {
    margin-right: 27.5px;
  }
  .my-11 {
    margin-top: 27.5px;
    margin-bottom: 27.5px;
  }
  .m-12 {
    margin: 30px;
  }
  .mt-12 {
    margin-top: 30px;
  }
  .mr-12 {
    margin-right: 30px;
  }
  .mb-12 {
    margin-bottom: 30px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 30px;
  }
  .mx-12 {
    margin-right: 30px;
  }
  .my-12 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .m-13 {
    margin: 32.5px;
  }
  .mt-13 {
    margin-top: 32.5px;
  }
  .mr-13 {
    margin-right: 32.5px;
  }
  .mb-13 {
    margin-bottom: 32.5px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 32.5px;
  }
  .mx-13 {
    margin-right: 32.5px;
  }
  .my-13 {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  .m-14 {
    margin: 35px;
  }
  .mt-14 {
    margin-top: 35px;
  }
  .mr-14 {
    margin-right: 35px;
  }
  .mb-14 {
    margin-bottom: 35px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 35px;
  }
  .mx-14 {
    margin-right: 35px;
  }
  .my-14 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m-15 {
    margin: 37.5px;
  }
  .mt-15 {
    margin-top: 37.5px;
  }
  .mr-15 {
    margin-right: 37.5px;
  }
  .mb-15 {
    margin-bottom: 37.5px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 37.5px;
  }
  .mx-15 {
    margin-right: 37.5px;
  }
  .my-15 {
    margin-top: 37.5px;
    margin-bottom: 37.5px;
  }
  .m-16 {
    margin: 40px;
  }
  .mt-16 {
    margin-top: 40px;
  }
  .mr-16 {
    margin-right: 40px;
  }
  .mb-16 {
    margin-bottom: 40px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 40px;
  }
  .mx-16 {
    margin-right: 40px;
  }
  .my-16 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m-17 {
    margin: 42.5px;
  }
  .mt-17 {
    margin-top: 42.5px;
  }
  .mr-17 {
    margin-right: 42.5px;
  }
  .mb-17 {
    margin-bottom: 42.5px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 42.5px;
  }
  .mx-17 {
    margin-right: 42.5px;
  }
  .my-17 {
    margin-top: 42.5px;
    margin-bottom: 42.5px;
  }
  .m-18 {
    margin: 45px;
  }
  .mt-18 {
    margin-top: 45px;
  }
  .mr-18 {
    margin-right: 45px;
  }
  .mb-18 {
    margin-bottom: 45px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 45px;
  }
  .mx-18 {
    margin-right: 45px;
  }
  .my-18 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .m-19 {
    margin: 47.5px;
  }
  .mt-19 {
    margin-top: 47.5px;
  }
  .mr-19 {
    margin-right: 47.5px;
  }
  .mb-19 {
    margin-bottom: 47.5px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 47.5px;
  }
  .mx-19 {
    margin-right: 47.5px;
  }
  .my-19 {
    margin-top: 47.5px;
    margin-bottom: 47.5px;
  }
  .m-20 {
    margin: 50px;
  }
  .mt-20 {
    margin-top: 50px;
  }
  .mr-20 {
    margin-right: 50px;
  }
  .mb-20 {
    margin-bottom: 50px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 50px;
  }
  .mx-20 {
    margin-right: 50px;
  }
  .my-20 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 5.71429px;
  }
  .mt-2 {
    margin-top: 5.71429px;
  }
  .mr-2 {
    margin-right: 5.71429px;
  }
  .mb-2 {
    margin-bottom: 5.71429px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 5.71429px;
  }
  .mx-2 {
    margin-right: 5.71429px;
  }
  .my-2 {
    margin-top: 5.71429px;
    margin-bottom: 5.71429px;
  }
  .m-3 {
    margin: 8.57143px;
  }
  .mt-3 {
    margin-top: 8.57143px;
  }
  .mr-3 {
    margin-right: 8.57143px;
  }
  .mb-3 {
    margin-bottom: 8.57143px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 8.57143px;
  }
  .mx-3 {
    margin-right: 8.57143px;
  }
  .my-3 {
    margin-top: 8.57143px;
    margin-bottom: 8.57143px;
  }
  .m-4 {
    margin: 11.42857px;
  }
  .mt-4 {
    margin-top: 11.42857px;
  }
  .mr-4 {
    margin-right: 11.42857px;
  }
  .mb-4 {
    margin-bottom: 11.42857px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 11.42857px;
  }
  .mx-4 {
    margin-right: 11.42857px;
  }
  .my-4 {
    margin-top: 11.42857px;
    margin-bottom: 11.42857px;
  }
  .m-5 {
    margin: 14.28571px;
  }
  .mt-5 {
    margin-top: 14.28571px;
  }
  .mr-5 {
    margin-right: 14.28571px;
  }
  .mb-5 {
    margin-bottom: 14.28571px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 14.28571px;
  }
  .mx-5 {
    margin-right: 14.28571px;
  }
  .my-5 {
    margin-top: 14.28571px;
    margin-bottom: 14.28571px;
  }
  .m-6 {
    margin: 17.14286px;
  }
  .mt-6 {
    margin-top: 17.14286px;
  }
  .mr-6 {
    margin-right: 17.14286px;
  }
  .mb-6 {
    margin-bottom: 17.14286px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 17.14286px;
  }
  .mx-6 {
    margin-right: 17.14286px;
  }
  .my-6 {
    margin-top: 17.14286px;
    margin-bottom: 17.14286px;
  }
  .m-7 {
    margin: 20px;
  }
  .mt-7 {
    margin-top: 20px;
  }
  .mr-7 {
    margin-right: 20px;
  }
  .mb-7 {
    margin-bottom: 20px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 20px;
  }
  .mx-7 {
    margin-right: 20px;
  }
  .my-7 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .m-8 {
    margin: 22.85714px;
  }
  .mt-8 {
    margin-top: 22.85714px;
  }
  .mr-8 {
    margin-right: 22.85714px;
  }
  .mb-8 {
    margin-bottom: 22.85714px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 22.85714px;
  }
  .mx-8 {
    margin-right: 22.85714px;
  }
  .my-8 {
    margin-top: 22.85714px;
    margin-bottom: 22.85714px;
  }
  .m-9 {
    margin: 25.71429px;
  }
  .mt-9 {
    margin-top: 25.71429px;
  }
  .mr-9 {
    margin-right: 25.71429px;
  }
  .mb-9 {
    margin-bottom: 25.71429px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 25.71429px;
  }
  .mx-9 {
    margin-right: 25.71429px;
  }
  .my-9 {
    margin-top: 25.71429px;
    margin-bottom: 25.71429px;
  }
  .m-10 {
    margin: 28.57143px;
  }
  .mt-10 {
    margin-top: 28.57143px;
  }
  .mr-10 {
    margin-right: 28.57143px;
  }
  .mb-10 {
    margin-bottom: 28.57143px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 28.57143px;
  }
  .mx-10 {
    margin-right: 28.57143px;
  }
  .my-10 {
    margin-top: 28.57143px;
    margin-bottom: 28.57143px;
  }
  .m-11 {
    margin: 31.42857px;
  }
  .mt-11 {
    margin-top: 31.42857px;
  }
  .mr-11 {
    margin-right: 31.42857px;
  }
  .mb-11 {
    margin-bottom: 31.42857px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 31.42857px;
  }
  .mx-11 {
    margin-right: 31.42857px;
  }
  .my-11 {
    margin-top: 31.42857px;
    margin-bottom: 31.42857px;
  }
  .m-12 {
    margin: 34.28571px;
  }
  .mt-12 {
    margin-top: 34.28571px;
  }
  .mr-12 {
    margin-right: 34.28571px;
  }
  .mb-12 {
    margin-bottom: 34.28571px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 34.28571px;
  }
  .mx-12 {
    margin-right: 34.28571px;
  }
  .my-12 {
    margin-top: 34.28571px;
    margin-bottom: 34.28571px;
  }
  .m-13 {
    margin: 37.14286px;
  }
  .mt-13 {
    margin-top: 37.14286px;
  }
  .mr-13 {
    margin-right: 37.14286px;
  }
  .mb-13 {
    margin-bottom: 37.14286px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 37.14286px;
  }
  .mx-13 {
    margin-right: 37.14286px;
  }
  .my-13 {
    margin-top: 37.14286px;
    margin-bottom: 37.14286px;
  }
  .m-14 {
    margin: 40px;
  }
  .mt-14 {
    margin-top: 40px;
  }
  .mr-14 {
    margin-right: 40px;
  }
  .mb-14 {
    margin-bottom: 40px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 40px;
  }
  .mx-14 {
    margin-right: 40px;
  }
  .my-14 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m-15 {
    margin: 42.85714px;
  }
  .mt-15 {
    margin-top: 42.85714px;
  }
  .mr-15 {
    margin-right: 42.85714px;
  }
  .mb-15 {
    margin-bottom: 42.85714px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 42.85714px;
  }
  .mx-15 {
    margin-right: 42.85714px;
  }
  .my-15 {
    margin-top: 42.85714px;
    margin-bottom: 42.85714px;
  }
  .m-16 {
    margin: 45.71429px;
  }
  .mt-16 {
    margin-top: 45.71429px;
  }
  .mr-16 {
    margin-right: 45.71429px;
  }
  .mb-16 {
    margin-bottom: 45.71429px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 45.71429px;
  }
  .mx-16 {
    margin-right: 45.71429px;
  }
  .my-16 {
    margin-top: 45.71429px;
    margin-bottom: 45.71429px;
  }
  .m-17 {
    margin: 48.57143px;
  }
  .mt-17 {
    margin-top: 48.57143px;
  }
  .mr-17 {
    margin-right: 48.57143px;
  }
  .mb-17 {
    margin-bottom: 48.57143px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 48.57143px;
  }
  .mx-17 {
    margin-right: 48.57143px;
  }
  .my-17 {
    margin-top: 48.57143px;
    margin-bottom: 48.57143px;
  }
  .m-18 {
    margin: 51.42857px;
  }
  .mt-18 {
    margin-top: 51.42857px;
  }
  .mr-18 {
    margin-right: 51.42857px;
  }
  .mb-18 {
    margin-bottom: 51.42857px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 51.42857px;
  }
  .mx-18 {
    margin-right: 51.42857px;
  }
  .my-18 {
    margin-top: 51.42857px;
    margin-bottom: 51.42857px;
  }
  .m-19 {
    margin: 54.28571px;
  }
  .mt-19 {
    margin-top: 54.28571px;
  }
  .mr-19 {
    margin-right: 54.28571px;
  }
  .mb-19 {
    margin-bottom: 54.28571px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 54.28571px;
  }
  .mx-19 {
    margin-right: 54.28571px;
  }
  .my-19 {
    margin-top: 54.28571px;
    margin-bottom: 54.28571px;
  }
  .m-20 {
    margin: 57.14286px;
  }
  .mt-20 {
    margin-top: 57.14286px;
  }
  .mr-20 {
    margin-right: 57.14286px;
  }
  .mb-20 {
    margin-bottom: 57.14286px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 57.14286px;
  }
  .mx-20 {
    margin-right: 57.14286px;
  }
  .my-20 {
    margin-top: 57.14286px;
    margin-bottom: 57.14286px;
  }
}
@media (min-width: 992px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 6.42857px;
  }
  .mt-2 {
    margin-top: 6.42857px;
  }
  .mr-2 {
    margin-right: 6.42857px;
  }
  .mb-2 {
    margin-bottom: 6.42857px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 6.42857px;
  }
  .mx-2 {
    margin-right: 6.42857px;
  }
  .my-2 {
    margin-top: 6.42857px;
    margin-bottom: 6.42857px;
  }
  .m-3 {
    margin: 9.64286px;
  }
  .mt-3 {
    margin-top: 9.64286px;
  }
  .mr-3 {
    margin-right: 9.64286px;
  }
  .mb-3 {
    margin-bottom: 9.64286px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 9.64286px;
  }
  .mx-3 {
    margin-right: 9.64286px;
  }
  .my-3 {
    margin-top: 9.64286px;
    margin-bottom: 9.64286px;
  }
  .m-4 {
    margin: 12.85714px;
  }
  .mt-4 {
    margin-top: 12.85714px;
  }
  .mr-4 {
    margin-right: 12.85714px;
  }
  .mb-4 {
    margin-bottom: 12.85714px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 12.85714px;
  }
  .mx-4 {
    margin-right: 12.85714px;
  }
  .my-4 {
    margin-top: 12.85714px;
    margin-bottom: 12.85714px;
  }
  .m-5 {
    margin: 16.07143px;
  }
  .mt-5 {
    margin-top: 16.07143px;
  }
  .mr-5 {
    margin-right: 16.07143px;
  }
  .mb-5 {
    margin-bottom: 16.07143px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 16.07143px;
  }
  .mx-5 {
    margin-right: 16.07143px;
  }
  .my-5 {
    margin-top: 16.07143px;
    margin-bottom: 16.07143px;
  }
  .m-6 {
    margin: 19.28571px;
  }
  .mt-6 {
    margin-top: 19.28571px;
  }
  .mr-6 {
    margin-right: 19.28571px;
  }
  .mb-6 {
    margin-bottom: 19.28571px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 19.28571px;
  }
  .mx-6 {
    margin-right: 19.28571px;
  }
  .my-6 {
    margin-top: 19.28571px;
    margin-bottom: 19.28571px;
  }
  .m-7 {
    margin: 22.5px;
  }
  .mt-7 {
    margin-top: 22.5px;
  }
  .mr-7 {
    margin-right: 22.5px;
  }
  .mb-7 {
    margin-bottom: 22.5px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 22.5px;
  }
  .mx-7 {
    margin-right: 22.5px;
  }
  .my-7 {
    margin-top: 22.5px;
    margin-bottom: 22.5px;
  }
  .m-8 {
    margin: 25.71429px;
  }
  .mt-8 {
    margin-top: 25.71429px;
  }
  .mr-8 {
    margin-right: 25.71429px;
  }
  .mb-8 {
    margin-bottom: 25.71429px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 25.71429px;
  }
  .mx-8 {
    margin-right: 25.71429px;
  }
  .my-8 {
    margin-top: 25.71429px;
    margin-bottom: 25.71429px;
  }
  .m-9 {
    margin: 28.92857px;
  }
  .mt-9 {
    margin-top: 28.92857px;
  }
  .mr-9 {
    margin-right: 28.92857px;
  }
  .mb-9 {
    margin-bottom: 28.92857px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 28.92857px;
  }
  .mx-9 {
    margin-right: 28.92857px;
  }
  .my-9 {
    margin-top: 28.92857px;
    margin-bottom: 28.92857px;
  }
  .m-10 {
    margin: 32.14286px;
  }
  .mt-10 {
    margin-top: 32.14286px;
  }
  .mr-10 {
    margin-right: 32.14286px;
  }
  .mb-10 {
    margin-bottom: 32.14286px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 32.14286px;
  }
  .mx-10 {
    margin-right: 32.14286px;
  }
  .my-10 {
    margin-top: 32.14286px;
    margin-bottom: 32.14286px;
  }
  .m-11 {
    margin: 35.35714px;
  }
  .mt-11 {
    margin-top: 35.35714px;
  }
  .mr-11 {
    margin-right: 35.35714px;
  }
  .mb-11 {
    margin-bottom: 35.35714px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 35.35714px;
  }
  .mx-11 {
    margin-right: 35.35714px;
  }
  .my-11 {
    margin-top: 35.35714px;
    margin-bottom: 35.35714px;
  }
  .m-12 {
    margin: 38.57143px;
  }
  .mt-12 {
    margin-top: 38.57143px;
  }
  .mr-12 {
    margin-right: 38.57143px;
  }
  .mb-12 {
    margin-bottom: 38.57143px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 38.57143px;
  }
  .mx-12 {
    margin-right: 38.57143px;
  }
  .my-12 {
    margin-top: 38.57143px;
    margin-bottom: 38.57143px;
  }
  .m-13 {
    margin: 41.78571px;
  }
  .mt-13 {
    margin-top: 41.78571px;
  }
  .mr-13 {
    margin-right: 41.78571px;
  }
  .mb-13 {
    margin-bottom: 41.78571px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 41.78571px;
  }
  .mx-13 {
    margin-right: 41.78571px;
  }
  .my-13 {
    margin-top: 41.78571px;
    margin-bottom: 41.78571px;
  }
  .m-14 {
    margin: 45px;
  }
  .mt-14 {
    margin-top: 45px;
  }
  .mr-14 {
    margin-right: 45px;
  }
  .mb-14 {
    margin-bottom: 45px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 45px;
  }
  .mx-14 {
    margin-right: 45px;
  }
  .my-14 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .m-15 {
    margin: 48.21429px;
  }
  .mt-15 {
    margin-top: 48.21429px;
  }
  .mr-15 {
    margin-right: 48.21429px;
  }
  .mb-15 {
    margin-bottom: 48.21429px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 48.21429px;
  }
  .mx-15 {
    margin-right: 48.21429px;
  }
  .my-15 {
    margin-top: 48.21429px;
    margin-bottom: 48.21429px;
  }
  .m-16 {
    margin: 51.42857px;
  }
  .mt-16 {
    margin-top: 51.42857px;
  }
  .mr-16 {
    margin-right: 51.42857px;
  }
  .mb-16 {
    margin-bottom: 51.42857px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 51.42857px;
  }
  .mx-16 {
    margin-right: 51.42857px;
  }
  .my-16 {
    margin-top: 51.42857px;
    margin-bottom: 51.42857px;
  }
  .m-17 {
    margin: 54.64286px;
  }
  .mt-17 {
    margin-top: 54.64286px;
  }
  .mr-17 {
    margin-right: 54.64286px;
  }
  .mb-17 {
    margin-bottom: 54.64286px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 54.64286px;
  }
  .mx-17 {
    margin-right: 54.64286px;
  }
  .my-17 {
    margin-top: 54.64286px;
    margin-bottom: 54.64286px;
  }
  .m-18 {
    margin: 57.85714px;
  }
  .mt-18 {
    margin-top: 57.85714px;
  }
  .mr-18 {
    margin-right: 57.85714px;
  }
  .mb-18 {
    margin-bottom: 57.85714px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 57.85714px;
  }
  .mx-18 {
    margin-right: 57.85714px;
  }
  .my-18 {
    margin-top: 57.85714px;
    margin-bottom: 57.85714px;
  }
  .m-19 {
    margin: 61.07143px;
  }
  .mt-19 {
    margin-top: 61.07143px;
  }
  .mr-19 {
    margin-right: 61.07143px;
  }
  .mb-19 {
    margin-bottom: 61.07143px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 61.07143px;
  }
  .mx-19 {
    margin-right: 61.07143px;
  }
  .my-19 {
    margin-top: 61.07143px;
    margin-bottom: 61.07143px;
  }
  .m-20 {
    margin: 64.28571px;
  }
  .mt-20 {
    margin-top: 64.28571px;
  }
  .mr-20 {
    margin-right: 64.28571px;
  }
  .mb-20 {
    margin-bottom: 64.28571px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 64.28571px;
  }
  .mx-20 {
    margin-right: 64.28571px;
  }
  .my-20 {
    margin-top: 64.28571px;
    margin-bottom: 64.28571px;
  }
}
@media (min-width: 1025px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 7.14286px;
  }
  .mt-2 {
    margin-top: 7.14286px;
  }
  .mr-2 {
    margin-right: 7.14286px;
  }
  .mb-2 {
    margin-bottom: 7.14286px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 7.14286px;
  }
  .mx-2 {
    margin-right: 7.14286px;
  }
  .my-2 {
    margin-top: 7.14286px;
    margin-bottom: 7.14286px;
  }
  .m-3 {
    margin: 10.71429px;
  }
  .mt-3 {
    margin-top: 10.71429px;
  }
  .mr-3 {
    margin-right: 10.71429px;
  }
  .mb-3 {
    margin-bottom: 10.71429px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 10.71429px;
  }
  .mx-3 {
    margin-right: 10.71429px;
  }
  .my-3 {
    margin-top: 10.71429px;
    margin-bottom: 10.71429px;
  }
  .m-4 {
    margin: 14.28571px;
  }
  .mt-4 {
    margin-top: 14.28571px;
  }
  .mr-4 {
    margin-right: 14.28571px;
  }
  .mb-4 {
    margin-bottom: 14.28571px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 14.28571px;
  }
  .mx-4 {
    margin-right: 14.28571px;
  }
  .my-4 {
    margin-top: 14.28571px;
    margin-bottom: 14.28571px;
  }
  .m-5 {
    margin: 17.85714px;
  }
  .mt-5 {
    margin-top: 17.85714px;
  }
  .mr-5 {
    margin-right: 17.85714px;
  }
  .mb-5 {
    margin-bottom: 17.85714px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 17.85714px;
  }
  .mx-5 {
    margin-right: 17.85714px;
  }
  .my-5 {
    margin-top: 17.85714px;
    margin-bottom: 17.85714px;
  }
  .m-6 {
    margin: 21.42857px;
  }
  .mt-6 {
    margin-top: 21.42857px;
  }
  .mr-6 {
    margin-right: 21.42857px;
  }
  .mb-6 {
    margin-bottom: 21.42857px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 21.42857px;
  }
  .mx-6 {
    margin-right: 21.42857px;
  }
  .my-6 {
    margin-top: 21.42857px;
    margin-bottom: 21.42857px;
  }
  .m-7 {
    margin: 25px;
  }
  .mt-7 {
    margin-top: 25px;
  }
  .mr-7 {
    margin-right: 25px;
  }
  .mb-7 {
    margin-bottom: 25px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 25px;
  }
  .mx-7 {
    margin-right: 25px;
  }
  .my-7 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .m-8 {
    margin: 28.57143px;
  }
  .mt-8 {
    margin-top: 28.57143px;
  }
  .mr-8 {
    margin-right: 28.57143px;
  }
  .mb-8 {
    margin-bottom: 28.57143px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 28.57143px;
  }
  .mx-8 {
    margin-right: 28.57143px;
  }
  .my-8 {
    margin-top: 28.57143px;
    margin-bottom: 28.57143px;
  }
  .m-9 {
    margin: 32.14286px;
  }
  .mt-9 {
    margin-top: 32.14286px;
  }
  .mr-9 {
    margin-right: 32.14286px;
  }
  .mb-9 {
    margin-bottom: 32.14286px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 32.14286px;
  }
  .mx-9 {
    margin-right: 32.14286px;
  }
  .my-9 {
    margin-top: 32.14286px;
    margin-bottom: 32.14286px;
  }
  .m-10 {
    margin: 35.71429px;
  }
  .mt-10 {
    margin-top: 35.71429px;
  }
  .mr-10 {
    margin-right: 35.71429px;
  }
  .mb-10 {
    margin-bottom: 35.71429px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 35.71429px;
  }
  .mx-10 {
    margin-right: 35.71429px;
  }
  .my-10 {
    margin-top: 35.71429px;
    margin-bottom: 35.71429px;
  }
  .m-11 {
    margin: 39.28571px;
  }
  .mt-11 {
    margin-top: 39.28571px;
  }
  .mr-11 {
    margin-right: 39.28571px;
  }
  .mb-11 {
    margin-bottom: 39.28571px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 39.28571px;
  }
  .mx-11 {
    margin-right: 39.28571px;
  }
  .my-11 {
    margin-top: 39.28571px;
    margin-bottom: 39.28571px;
  }
  .m-12 {
    margin: 42.85714px;
  }
  .mt-12 {
    margin-top: 42.85714px;
  }
  .mr-12 {
    margin-right: 42.85714px;
  }
  .mb-12 {
    margin-bottom: 42.85714px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 42.85714px;
  }
  .mx-12 {
    margin-right: 42.85714px;
  }
  .my-12 {
    margin-top: 42.85714px;
    margin-bottom: 42.85714px;
  }
  .m-13 {
    margin: 46.42857px;
  }
  .mt-13 {
    margin-top: 46.42857px;
  }
  .mr-13 {
    margin-right: 46.42857px;
  }
  .mb-13 {
    margin-bottom: 46.42857px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 46.42857px;
  }
  .mx-13 {
    margin-right: 46.42857px;
  }
  .my-13 {
    margin-top: 46.42857px;
    margin-bottom: 46.42857px;
  }
  .m-14 {
    margin: 50px;
  }
  .mt-14 {
    margin-top: 50px;
  }
  .mr-14 {
    margin-right: 50px;
  }
  .mb-14 {
    margin-bottom: 50px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 50px;
  }
  .mx-14 {
    margin-right: 50px;
  }
  .my-14 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .m-15 {
    margin: 53.57143px;
  }
  .mt-15 {
    margin-top: 53.57143px;
  }
  .mr-15 {
    margin-right: 53.57143px;
  }
  .mb-15 {
    margin-bottom: 53.57143px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 53.57143px;
  }
  .mx-15 {
    margin-right: 53.57143px;
  }
  .my-15 {
    margin-top: 53.57143px;
    margin-bottom: 53.57143px;
  }
  .m-16 {
    margin: 57.14286px;
  }
  .mt-16 {
    margin-top: 57.14286px;
  }
  .mr-16 {
    margin-right: 57.14286px;
  }
  .mb-16 {
    margin-bottom: 57.14286px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 57.14286px;
  }
  .mx-16 {
    margin-right: 57.14286px;
  }
  .my-16 {
    margin-top: 57.14286px;
    margin-bottom: 57.14286px;
  }
  .m-17 {
    margin: 60.71429px;
  }
  .mt-17 {
    margin-top: 60.71429px;
  }
  .mr-17 {
    margin-right: 60.71429px;
  }
  .mb-17 {
    margin-bottom: 60.71429px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 60.71429px;
  }
  .mx-17 {
    margin-right: 60.71429px;
  }
  .my-17 {
    margin-top: 60.71429px;
    margin-bottom: 60.71429px;
  }
  .m-18 {
    margin: 64.28571px;
  }
  .mt-18 {
    margin-top: 64.28571px;
  }
  .mr-18 {
    margin-right: 64.28571px;
  }
  .mb-18 {
    margin-bottom: 64.28571px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 64.28571px;
  }
  .mx-18 {
    margin-right: 64.28571px;
  }
  .my-18 {
    margin-top: 64.28571px;
    margin-bottom: 64.28571px;
  }
  .m-19 {
    margin: 67.85714px;
  }
  .mt-19 {
    margin-top: 67.85714px;
  }
  .mr-19 {
    margin-right: 67.85714px;
  }
  .mb-19 {
    margin-bottom: 67.85714px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 67.85714px;
  }
  .mx-19 {
    margin-right: 67.85714px;
  }
  .my-19 {
    margin-top: 67.85714px;
    margin-bottom: 67.85714px;
  }
  .m-20 {
    margin: 71.42857px;
  }
  .mt-20 {
    margin-top: 71.42857px;
  }
  .mr-20 {
    margin-right: 71.42857px;
  }
  .mb-20 {
    margin-bottom: 71.42857px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 71.42857px;
  }
  .mx-20 {
    margin-right: 71.42857px;
  }
  .my-20 {
    margin-top: 71.42857px;
    margin-bottom: 71.42857px;
  }
}
@media (min-width: 1290px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 7.85714px;
  }
  .mt-2 {
    margin-top: 7.85714px;
  }
  .mr-2 {
    margin-right: 7.85714px;
  }
  .mb-2 {
    margin-bottom: 7.85714px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 7.85714px;
  }
  .mx-2 {
    margin-right: 7.85714px;
  }
  .my-2 {
    margin-top: 7.85714px;
    margin-bottom: 7.85714px;
  }
  .m-3 {
    margin: 11.78571px;
  }
  .mt-3 {
    margin-top: 11.78571px;
  }
  .mr-3 {
    margin-right: 11.78571px;
  }
  .mb-3 {
    margin-bottom: 11.78571px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 11.78571px;
  }
  .mx-3 {
    margin-right: 11.78571px;
  }
  .my-3 {
    margin-top: 11.78571px;
    margin-bottom: 11.78571px;
  }
  .m-4 {
    margin: 15.71429px;
  }
  .mt-4 {
    margin-top: 15.71429px;
  }
  .mr-4 {
    margin-right: 15.71429px;
  }
  .mb-4 {
    margin-bottom: 15.71429px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 15.71429px;
  }
  .mx-4 {
    margin-right: 15.71429px;
  }
  .my-4 {
    margin-top: 15.71429px;
    margin-bottom: 15.71429px;
  }
  .m-5 {
    margin: 19.64286px;
  }
  .mt-5 {
    margin-top: 19.64286px;
  }
  .mr-5 {
    margin-right: 19.64286px;
  }
  .mb-5 {
    margin-bottom: 19.64286px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 19.64286px;
  }
  .mx-5 {
    margin-right: 19.64286px;
  }
  .my-5 {
    margin-top: 19.64286px;
    margin-bottom: 19.64286px;
  }
  .m-6 {
    margin: 23.57143px;
  }
  .mt-6 {
    margin-top: 23.57143px;
  }
  .mr-6 {
    margin-right: 23.57143px;
  }
  .mb-6 {
    margin-bottom: 23.57143px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 23.57143px;
  }
  .mx-6 {
    margin-right: 23.57143px;
  }
  .my-6 {
    margin-top: 23.57143px;
    margin-bottom: 23.57143px;
  }
  .m-7 {
    margin: 27.5px;
  }
  .mt-7 {
    margin-top: 27.5px;
  }
  .mr-7 {
    margin-right: 27.5px;
  }
  .mb-7 {
    margin-bottom: 27.5px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 27.5px;
  }
  .mx-7 {
    margin-right: 27.5px;
  }
  .my-7 {
    margin-top: 27.5px;
    margin-bottom: 27.5px;
  }
  .m-8 {
    margin: 31.42857px;
  }
  .mt-8 {
    margin-top: 31.42857px;
  }
  .mr-8 {
    margin-right: 31.42857px;
  }
  .mb-8 {
    margin-bottom: 31.42857px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 31.42857px;
  }
  .mx-8 {
    margin-right: 31.42857px;
  }
  .my-8 {
    margin-top: 31.42857px;
    margin-bottom: 31.42857px;
  }
  .m-9 {
    margin: 35.35714px;
  }
  .mt-9 {
    margin-top: 35.35714px;
  }
  .mr-9 {
    margin-right: 35.35714px;
  }
  .mb-9 {
    margin-bottom: 35.35714px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 35.35714px;
  }
  .mx-9 {
    margin-right: 35.35714px;
  }
  .my-9 {
    margin-top: 35.35714px;
    margin-bottom: 35.35714px;
  }
  .m-10 {
    margin: 39.28571px;
  }
  .mt-10 {
    margin-top: 39.28571px;
  }
  .mr-10 {
    margin-right: 39.28571px;
  }
  .mb-10 {
    margin-bottom: 39.28571px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 39.28571px;
  }
  .mx-10 {
    margin-right: 39.28571px;
  }
  .my-10 {
    margin-top: 39.28571px;
    margin-bottom: 39.28571px;
  }
  .m-11 {
    margin: 43.21429px;
  }
  .mt-11 {
    margin-top: 43.21429px;
  }
  .mr-11 {
    margin-right: 43.21429px;
  }
  .mb-11 {
    margin-bottom: 43.21429px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 43.21429px;
  }
  .mx-11 {
    margin-right: 43.21429px;
  }
  .my-11 {
    margin-top: 43.21429px;
    margin-bottom: 43.21429px;
  }
  .m-12 {
    margin: 47.14286px;
  }
  .mt-12 {
    margin-top: 47.14286px;
  }
  .mr-12 {
    margin-right: 47.14286px;
  }
  .mb-12 {
    margin-bottom: 47.14286px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 47.14286px;
  }
  .mx-12 {
    margin-right: 47.14286px;
  }
  .my-12 {
    margin-top: 47.14286px;
    margin-bottom: 47.14286px;
  }
  .m-13 {
    margin: 51.07143px;
  }
  .mt-13 {
    margin-top: 51.07143px;
  }
  .mr-13 {
    margin-right: 51.07143px;
  }
  .mb-13 {
    margin-bottom: 51.07143px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 51.07143px;
  }
  .mx-13 {
    margin-right: 51.07143px;
  }
  .my-13 {
    margin-top: 51.07143px;
    margin-bottom: 51.07143px;
  }
  .m-14 {
    margin: 55px;
  }
  .mt-14 {
    margin-top: 55px;
  }
  .mr-14 {
    margin-right: 55px;
  }
  .mb-14 {
    margin-bottom: 55px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 55px;
  }
  .mx-14 {
    margin-right: 55px;
  }
  .my-14 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .m-15 {
    margin: 58.92857px;
  }
  .mt-15 {
    margin-top: 58.92857px;
  }
  .mr-15 {
    margin-right: 58.92857px;
  }
  .mb-15 {
    margin-bottom: 58.92857px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 58.92857px;
  }
  .mx-15 {
    margin-right: 58.92857px;
  }
  .my-15 {
    margin-top: 58.92857px;
    margin-bottom: 58.92857px;
  }
  .m-16 {
    margin: 62.85714px;
  }
  .mt-16 {
    margin-top: 62.85714px;
  }
  .mr-16 {
    margin-right: 62.85714px;
  }
  .mb-16 {
    margin-bottom: 62.85714px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 62.85714px;
  }
  .mx-16 {
    margin-right: 62.85714px;
  }
  .my-16 {
    margin-top: 62.85714px;
    margin-bottom: 62.85714px;
  }
  .m-17 {
    margin: 66.78571px;
  }
  .mt-17 {
    margin-top: 66.78571px;
  }
  .mr-17 {
    margin-right: 66.78571px;
  }
  .mb-17 {
    margin-bottom: 66.78571px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 66.78571px;
  }
  .mx-17 {
    margin-right: 66.78571px;
  }
  .my-17 {
    margin-top: 66.78571px;
    margin-bottom: 66.78571px;
  }
  .m-18 {
    margin: 70.71429px;
  }
  .mt-18 {
    margin-top: 70.71429px;
  }
  .mr-18 {
    margin-right: 70.71429px;
  }
  .mb-18 {
    margin-bottom: 70.71429px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 70.71429px;
  }
  .mx-18 {
    margin-right: 70.71429px;
  }
  .my-18 {
    margin-top: 70.71429px;
    margin-bottom: 70.71429px;
  }
  .m-19 {
    margin: 74.64286px;
  }
  .mt-19 {
    margin-top: 74.64286px;
  }
  .mr-19 {
    margin-right: 74.64286px;
  }
  .mb-19 {
    margin-bottom: 74.64286px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 74.64286px;
  }
  .mx-19 {
    margin-right: 74.64286px;
  }
  .my-19 {
    margin-top: 74.64286px;
    margin-bottom: 74.64286px;
  }
  .m-20 {
    margin: 78.57143px;
  }
  .mt-20 {
    margin-top: 78.57143px;
  }
  .mr-20 {
    margin-right: 78.57143px;
  }
  .mb-20 {
    margin-bottom: 78.57143px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 78.57143px;
  }
  .mx-20 {
    margin-right: 78.57143px;
  }
  .my-20 {
    margin-top: 78.57143px;
    margin-bottom: 78.57143px;
  }
}
@media (min-width: 1367px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 8.57143px;
  }
  .mt-2 {
    margin-top: 8.57143px;
  }
  .mr-2 {
    margin-right: 8.57143px;
  }
  .mb-2 {
    margin-bottom: 8.57143px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 8.57143px;
  }
  .mx-2 {
    margin-right: 8.57143px;
  }
  .my-2 {
    margin-top: 8.57143px;
    margin-bottom: 8.57143px;
  }
  .m-3 {
    margin: 12.85714px;
  }
  .mt-3 {
    margin-top: 12.85714px;
  }
  .mr-3 {
    margin-right: 12.85714px;
  }
  .mb-3 {
    margin-bottom: 12.85714px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 12.85714px;
  }
  .mx-3 {
    margin-right: 12.85714px;
  }
  .my-3 {
    margin-top: 12.85714px;
    margin-bottom: 12.85714px;
  }
  .m-4 {
    margin: 17.14286px;
  }
  .mt-4 {
    margin-top: 17.14286px;
  }
  .mr-4 {
    margin-right: 17.14286px;
  }
  .mb-4 {
    margin-bottom: 17.14286px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 17.14286px;
  }
  .mx-4 {
    margin-right: 17.14286px;
  }
  .my-4 {
    margin-top: 17.14286px;
    margin-bottom: 17.14286px;
  }
  .m-5 {
    margin: 21.42857px;
  }
  .mt-5 {
    margin-top: 21.42857px;
  }
  .mr-5 {
    margin-right: 21.42857px;
  }
  .mb-5 {
    margin-bottom: 21.42857px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 21.42857px;
  }
  .mx-5 {
    margin-right: 21.42857px;
  }
  .my-5 {
    margin-top: 21.42857px;
    margin-bottom: 21.42857px;
  }
  .m-6 {
    margin: 25.71429px;
  }
  .mt-6 {
    margin-top: 25.71429px;
  }
  .mr-6 {
    margin-right: 25.71429px;
  }
  .mb-6 {
    margin-bottom: 25.71429px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 25.71429px;
  }
  .mx-6 {
    margin-right: 25.71429px;
  }
  .my-6 {
    margin-top: 25.71429px;
    margin-bottom: 25.71429px;
  }
  .m-7 {
    margin: 30px;
  }
  .mt-7 {
    margin-top: 30px;
  }
  .mr-7 {
    margin-right: 30px;
  }
  .mb-7 {
    margin-bottom: 30px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 30px;
  }
  .mx-7 {
    margin-right: 30px;
  }
  .my-7 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .m-8 {
    margin: 34.28571px;
  }
  .mt-8 {
    margin-top: 34.28571px;
  }
  .mr-8 {
    margin-right: 34.28571px;
  }
  .mb-8 {
    margin-bottom: 34.28571px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 34.28571px;
  }
  .mx-8 {
    margin-right: 34.28571px;
  }
  .my-8 {
    margin-top: 34.28571px;
    margin-bottom: 34.28571px;
  }
  .m-9 {
    margin: 38.57143px;
  }
  .mt-9 {
    margin-top: 38.57143px;
  }
  .mr-9 {
    margin-right: 38.57143px;
  }
  .mb-9 {
    margin-bottom: 38.57143px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 38.57143px;
  }
  .mx-9 {
    margin-right: 38.57143px;
  }
  .my-9 {
    margin-top: 38.57143px;
    margin-bottom: 38.57143px;
  }
  .m-10 {
    margin: 42.85714px;
  }
  .mt-10 {
    margin-top: 42.85714px;
  }
  .mr-10 {
    margin-right: 42.85714px;
  }
  .mb-10 {
    margin-bottom: 42.85714px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 42.85714px;
  }
  .mx-10 {
    margin-right: 42.85714px;
  }
  .my-10 {
    margin-top: 42.85714px;
    margin-bottom: 42.85714px;
  }
  .m-11 {
    margin: 47.14286px;
  }
  .mt-11 {
    margin-top: 47.14286px;
  }
  .mr-11 {
    margin-right: 47.14286px;
  }
  .mb-11 {
    margin-bottom: 47.14286px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 47.14286px;
  }
  .mx-11 {
    margin-right: 47.14286px;
  }
  .my-11 {
    margin-top: 47.14286px;
    margin-bottom: 47.14286px;
  }
  .m-12 {
    margin: 51.42857px;
  }
  .mt-12 {
    margin-top: 51.42857px;
  }
  .mr-12 {
    margin-right: 51.42857px;
  }
  .mb-12 {
    margin-bottom: 51.42857px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 51.42857px;
  }
  .mx-12 {
    margin-right: 51.42857px;
  }
  .my-12 {
    margin-top: 51.42857px;
    margin-bottom: 51.42857px;
  }
  .m-13 {
    margin: 55.71429px;
  }
  .mt-13 {
    margin-top: 55.71429px;
  }
  .mr-13 {
    margin-right: 55.71429px;
  }
  .mb-13 {
    margin-bottom: 55.71429px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 55.71429px;
  }
  .mx-13 {
    margin-right: 55.71429px;
  }
  .my-13 {
    margin-top: 55.71429px;
    margin-bottom: 55.71429px;
  }
  .m-14 {
    margin: 60px;
  }
  .mt-14 {
    margin-top: 60px;
  }
  .mr-14 {
    margin-right: 60px;
  }
  .mb-14 {
    margin-bottom: 60px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 60px;
  }
  .mx-14 {
    margin-right: 60px;
  }
  .my-14 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .m-15 {
    margin: 64.28571px;
  }
  .mt-15 {
    margin-top: 64.28571px;
  }
  .mr-15 {
    margin-right: 64.28571px;
  }
  .mb-15 {
    margin-bottom: 64.28571px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 64.28571px;
  }
  .mx-15 {
    margin-right: 64.28571px;
  }
  .my-15 {
    margin-top: 64.28571px;
    margin-bottom: 64.28571px;
  }
  .m-16 {
    margin: 68.57143px;
  }
  .mt-16 {
    margin-top: 68.57143px;
  }
  .mr-16 {
    margin-right: 68.57143px;
  }
  .mb-16 {
    margin-bottom: 68.57143px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 68.57143px;
  }
  .mx-16 {
    margin-right: 68.57143px;
  }
  .my-16 {
    margin-top: 68.57143px;
    margin-bottom: 68.57143px;
  }
  .m-17 {
    margin: 72.85714px;
  }
  .mt-17 {
    margin-top: 72.85714px;
  }
  .mr-17 {
    margin-right: 72.85714px;
  }
  .mb-17 {
    margin-bottom: 72.85714px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 72.85714px;
  }
  .mx-17 {
    margin-right: 72.85714px;
  }
  .my-17 {
    margin-top: 72.85714px;
    margin-bottom: 72.85714px;
  }
  .m-18 {
    margin: 77.14286px;
  }
  .mt-18 {
    margin-top: 77.14286px;
  }
  .mr-18 {
    margin-right: 77.14286px;
  }
  .mb-18 {
    margin-bottom: 77.14286px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 77.14286px;
  }
  .mx-18 {
    margin-right: 77.14286px;
  }
  .my-18 {
    margin-top: 77.14286px;
    margin-bottom: 77.14286px;
  }
  .m-19 {
    margin: 81.42857px;
  }
  .mt-19 {
    margin-top: 81.42857px;
  }
  .mr-19 {
    margin-right: 81.42857px;
  }
  .mb-19 {
    margin-bottom: 81.42857px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 81.42857px;
  }
  .mx-19 {
    margin-right: 81.42857px;
  }
  .my-19 {
    margin-top: 81.42857px;
    margin-bottom: 81.42857px;
  }
  .m-20 {
    margin: 85.71429px;
  }
  .mt-20 {
    margin-top: 85.71429px;
  }
  .mr-20 {
    margin-right: 85.71429px;
  }
  .mb-20 {
    margin-bottom: 85.71429px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 85.71429px;
  }
  .mx-20 {
    margin-right: 85.71429px;
  }
  .my-20 {
    margin-top: 85.71429px;
    margin-bottom: 85.71429px;
  }
}
@media (min-width: 1601px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 9.28571px;
  }
  .mt-2 {
    margin-top: 9.28571px;
  }
  .mr-2 {
    margin-right: 9.28571px;
  }
  .mb-2 {
    margin-bottom: 9.28571px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 9.28571px;
  }
  .mx-2 {
    margin-right: 9.28571px;
  }
  .my-2 {
    margin-top: 9.28571px;
    margin-bottom: 9.28571px;
  }
  .m-3 {
    margin: 13.92857px;
  }
  .mt-3 {
    margin-top: 13.92857px;
  }
  .mr-3 {
    margin-right: 13.92857px;
  }
  .mb-3 {
    margin-bottom: 13.92857px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 13.92857px;
  }
  .mx-3 {
    margin-right: 13.92857px;
  }
  .my-3 {
    margin-top: 13.92857px;
    margin-bottom: 13.92857px;
  }
  .m-4 {
    margin: 18.57143px;
  }
  .mt-4 {
    margin-top: 18.57143px;
  }
  .mr-4 {
    margin-right: 18.57143px;
  }
  .mb-4 {
    margin-bottom: 18.57143px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 18.57143px;
  }
  .mx-4 {
    margin-right: 18.57143px;
  }
  .my-4 {
    margin-top: 18.57143px;
    margin-bottom: 18.57143px;
  }
  .m-5 {
    margin: 23.21429px;
  }
  .mt-5 {
    margin-top: 23.21429px;
  }
  .mr-5 {
    margin-right: 23.21429px;
  }
  .mb-5 {
    margin-bottom: 23.21429px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 23.21429px;
  }
  .mx-5 {
    margin-right: 23.21429px;
  }
  .my-5 {
    margin-top: 23.21429px;
    margin-bottom: 23.21429px;
  }
  .m-6 {
    margin: 27.85714px;
  }
  .mt-6 {
    margin-top: 27.85714px;
  }
  .mr-6 {
    margin-right: 27.85714px;
  }
  .mb-6 {
    margin-bottom: 27.85714px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 27.85714px;
  }
  .mx-6 {
    margin-right: 27.85714px;
  }
  .my-6 {
    margin-top: 27.85714px;
    margin-bottom: 27.85714px;
  }
  .m-7 {
    margin: 32.5px;
  }
  .mt-7 {
    margin-top: 32.5px;
  }
  .mr-7 {
    margin-right: 32.5px;
  }
  .mb-7 {
    margin-bottom: 32.5px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 32.5px;
  }
  .mx-7 {
    margin-right: 32.5px;
  }
  .my-7 {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  .m-8 {
    margin: 37.14286px;
  }
  .mt-8 {
    margin-top: 37.14286px;
  }
  .mr-8 {
    margin-right: 37.14286px;
  }
  .mb-8 {
    margin-bottom: 37.14286px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 37.14286px;
  }
  .mx-8 {
    margin-right: 37.14286px;
  }
  .my-8 {
    margin-top: 37.14286px;
    margin-bottom: 37.14286px;
  }
  .m-9 {
    margin: 41.78571px;
  }
  .mt-9 {
    margin-top: 41.78571px;
  }
  .mr-9 {
    margin-right: 41.78571px;
  }
  .mb-9 {
    margin-bottom: 41.78571px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 41.78571px;
  }
  .mx-9 {
    margin-right: 41.78571px;
  }
  .my-9 {
    margin-top: 41.78571px;
    margin-bottom: 41.78571px;
  }
  .m-10 {
    margin: 46.42857px;
  }
  .mt-10 {
    margin-top: 46.42857px;
  }
  .mr-10 {
    margin-right: 46.42857px;
  }
  .mb-10 {
    margin-bottom: 46.42857px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 46.42857px;
  }
  .mx-10 {
    margin-right: 46.42857px;
  }
  .my-10 {
    margin-top: 46.42857px;
    margin-bottom: 46.42857px;
  }
  .m-11 {
    margin: 51.07143px;
  }
  .mt-11 {
    margin-top: 51.07143px;
  }
  .mr-11 {
    margin-right: 51.07143px;
  }
  .mb-11 {
    margin-bottom: 51.07143px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 51.07143px;
  }
  .mx-11 {
    margin-right: 51.07143px;
  }
  .my-11 {
    margin-top: 51.07143px;
    margin-bottom: 51.07143px;
  }
  .m-12 {
    margin: 55.71429px;
  }
  .mt-12 {
    margin-top: 55.71429px;
  }
  .mr-12 {
    margin-right: 55.71429px;
  }
  .mb-12 {
    margin-bottom: 55.71429px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 55.71429px;
  }
  .mx-12 {
    margin-right: 55.71429px;
  }
  .my-12 {
    margin-top: 55.71429px;
    margin-bottom: 55.71429px;
  }
  .m-13 {
    margin: 60.35714px;
  }
  .mt-13 {
    margin-top: 60.35714px;
  }
  .mr-13 {
    margin-right: 60.35714px;
  }
  .mb-13 {
    margin-bottom: 60.35714px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 60.35714px;
  }
  .mx-13 {
    margin-right: 60.35714px;
  }
  .my-13 {
    margin-top: 60.35714px;
    margin-bottom: 60.35714px;
  }
  .m-14 {
    margin: 65px;
  }
  .mt-14 {
    margin-top: 65px;
  }
  .mr-14 {
    margin-right: 65px;
  }
  .mb-14 {
    margin-bottom: 65px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 65px;
  }
  .mx-14 {
    margin-right: 65px;
  }
  .my-14 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .m-15 {
    margin: 69.64286px;
  }
  .mt-15 {
    margin-top: 69.64286px;
  }
  .mr-15 {
    margin-right: 69.64286px;
  }
  .mb-15 {
    margin-bottom: 69.64286px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 69.64286px;
  }
  .mx-15 {
    margin-right: 69.64286px;
  }
  .my-15 {
    margin-top: 69.64286px;
    margin-bottom: 69.64286px;
  }
  .m-16 {
    margin: 74.28571px;
  }
  .mt-16 {
    margin-top: 74.28571px;
  }
  .mr-16 {
    margin-right: 74.28571px;
  }
  .mb-16 {
    margin-bottom: 74.28571px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 74.28571px;
  }
  .mx-16 {
    margin-right: 74.28571px;
  }
  .my-16 {
    margin-top: 74.28571px;
    margin-bottom: 74.28571px;
  }
  .m-17 {
    margin: 78.92857px;
  }
  .mt-17 {
    margin-top: 78.92857px;
  }
  .mr-17 {
    margin-right: 78.92857px;
  }
  .mb-17 {
    margin-bottom: 78.92857px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 78.92857px;
  }
  .mx-17 {
    margin-right: 78.92857px;
  }
  .my-17 {
    margin-top: 78.92857px;
    margin-bottom: 78.92857px;
  }
  .m-18 {
    margin: 83.57143px;
  }
  .mt-18 {
    margin-top: 83.57143px;
  }
  .mr-18 {
    margin-right: 83.57143px;
  }
  .mb-18 {
    margin-bottom: 83.57143px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 83.57143px;
  }
  .mx-18 {
    margin-right: 83.57143px;
  }
  .my-18 {
    margin-top: 83.57143px;
    margin-bottom: 83.57143px;
  }
  .m-19 {
    margin: 88.21429px;
  }
  .mt-19 {
    margin-top: 88.21429px;
  }
  .mr-19 {
    margin-right: 88.21429px;
  }
  .mb-19 {
    margin-bottom: 88.21429px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 88.21429px;
  }
  .mx-19 {
    margin-right: 88.21429px;
  }
  .my-19 {
    margin-top: 88.21429px;
    margin-bottom: 88.21429px;
  }
  .m-20 {
    margin: 92.85714px;
  }
  .mt-20 {
    margin-top: 92.85714px;
  }
  .mr-20 {
    margin-right: 92.85714px;
  }
  .mb-20 {
    margin-bottom: 92.85714px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 92.85714px;
  }
  .mx-20 {
    margin-right: 92.85714px;
  }
  .my-20 {
    margin-top: 92.85714px;
    margin-bottom: 92.85714px;
  }
}
@media (min-width: 1700px) {
  .m-1 {
    margin: 5px;
  }
  .mt-1 {
    margin-top: 5px;
  }
  .mr-1 {
    margin-right: 5px;
  }
  .mb-1 {
    margin-bottom: 5px;
  }
  .ml-1,
  .mx-1 {
    margin-left: 5px;
  }
  .mx-1 {
    margin-right: 5px;
  }
  .my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-2 {
    margin: 10px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mr-2 {
    margin-right: 10px;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .ml-2,
  .mx-2 {
    margin-left: 10px;
  }
  .mx-2 {
    margin-right: 10px;
  }
  .my-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .m-3 {
    margin: 15px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mr-3 {
    margin-right: 15px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .ml-3,
  .mx-3 {
    margin-left: 15px;
  }
  .mx-3 {
    margin-right: 15px;
  }
  .my-3 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .m-4 {
    margin: 20px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mr-4 {
    margin-right: 20px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .ml-4,
  .mx-4 {
    margin-left: 20px;
  }
  .mx-4 {
    margin-right: 20px;
  }
  .my-4 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .m-5 {
    margin: 25px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mr-5 {
    margin-right: 25px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .ml-5,
  .mx-5 {
    margin-left: 25px;
  }
  .mx-5 {
    margin-right: 25px;
  }
  .my-5 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .m-6 {
    margin: 30px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mr-6 {
    margin-right: 30px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .ml-6,
  .mx-6 {
    margin-left: 30px;
  }
  .mx-6 {
    margin-right: 30px;
  }
  .my-6 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .m-7 {
    margin: 35px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mr-7 {
    margin-right: 35px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .ml-7,
  .mx-7 {
    margin-left: 35px;
  }
  .mx-7 {
    margin-right: 35px;
  }
  .my-7 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m-8 {
    margin: 40px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mr-8 {
    margin-right: 40px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .ml-8,
  .mx-8 {
    margin-left: 40px;
  }
  .mx-8 {
    margin-right: 40px;
  }
  .my-8 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m-9 {
    margin: 45px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mr-9 {
    margin-right: 45px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .ml-9,
  .mx-9 {
    margin-left: 45px;
  }
  .mx-9 {
    margin-right: 45px;
  }
  .my-9 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .m-10 {
    margin: 50px;
  }
  .mt-10 {
    margin-top: 50px;
  }
  .mr-10 {
    margin-right: 50px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .ml-10,
  .mx-10 {
    margin-left: 50px;
  }
  .mx-10 {
    margin-right: 50px;
  }
  .my-10 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .m-11 {
    margin: 55px;
  }
  .mt-11 {
    margin-top: 55px;
  }
  .mr-11 {
    margin-right: 55px;
  }
  .mb-11 {
    margin-bottom: 55px;
  }
  .ml-11,
  .mx-11 {
    margin-left: 55px;
  }
  .mx-11 {
    margin-right: 55px;
  }
  .my-11 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .m-12 {
    margin: 60px;
  }
  .mt-12 {
    margin-top: 60px;
  }
  .mr-12 {
    margin-right: 60px;
  }
  .mb-12 {
    margin-bottom: 60px;
  }
  .ml-12,
  .mx-12 {
    margin-left: 60px;
  }
  .mx-12 {
    margin-right: 60px;
  }
  .my-12 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .m-13 {
    margin: 65px;
  }
  .mt-13 {
    margin-top: 65px;
  }
  .mr-13 {
    margin-right: 65px;
  }
  .mb-13 {
    margin-bottom: 65px;
  }
  .ml-13,
  .mx-13 {
    margin-left: 65px;
  }
  .mx-13 {
    margin-right: 65px;
  }
  .my-13 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  .m-14 {
    margin: 70px;
  }
  .mt-14 {
    margin-top: 70px;
  }
  .mr-14 {
    margin-right: 70px;
  }
  .mb-14 {
    margin-bottom: 70px;
  }
  .ml-14,
  .mx-14 {
    margin-left: 70px;
  }
  .mx-14 {
    margin-right: 70px;
  }
  .my-14 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .m-15 {
    margin: 75px;
  }
  .mt-15 {
    margin-top: 75px;
  }
  .mr-15 {
    margin-right: 75px;
  }
  .mb-15 {
    margin-bottom: 75px;
  }
  .ml-15,
  .mx-15 {
    margin-left: 75px;
  }
  .mx-15 {
    margin-right: 75px;
  }
  .my-15 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .m-16 {
    margin: 80px;
  }
  .mt-16 {
    margin-top: 80px;
  }
  .mr-16 {
    margin-right: 80px;
  }
  .mb-16 {
    margin-bottom: 80px;
  }
  .ml-16,
  .mx-16 {
    margin-left: 80px;
  }
  .mx-16 {
    margin-right: 80px;
  }
  .my-16 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .m-17 {
    margin: 85px;
  }
  .mt-17 {
    margin-top: 85px;
  }
  .mr-17 {
    margin-right: 85px;
  }
  .mb-17 {
    margin-bottom: 85px;
  }
  .ml-17,
  .mx-17 {
    margin-left: 85px;
  }
  .mx-17 {
    margin-right: 85px;
  }
  .my-17 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .m-18 {
    margin: 90px;
  }
  .mt-18 {
    margin-top: 90px;
  }
  .mr-18 {
    margin-right: 90px;
  }
  .mb-18 {
    margin-bottom: 90px;
  }
  .ml-18,
  .mx-18 {
    margin-left: 90px;
  }
  .mx-18 {
    margin-right: 90px;
  }
  .my-18 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .m-19 {
    margin: 95px;
  }
  .mt-19 {
    margin-top: 95px;
  }
  .mr-19 {
    margin-right: 95px;
  }
  .mb-19 {
    margin-bottom: 95px;
  }
  .ml-19,
  .mx-19 {
    margin-left: 95px;
  }
  .mx-19 {
    margin-right: 95px;
  }
  .my-19 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  .m-20 {
    margin: 100px;
  }
  .mt-20 {
    margin-top: 100px;
  }
  .mr-20 {
    margin-right: 100px;
  }
  .mb-20 {
    margin-bottom: 100px;
  }
  .ml-20,
  .mx-20 {
    margin-left: 100px;
  }
  .mx-20 {
    margin-right: 100px;
  }
  .my-20 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.mx-auto {
  margin: 0 auto;
}
@media (min-width: 0px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 5px;
  }
  .pt-2 {
    padding-top: 5px;
  }
  .pr-2 {
    padding-right: 5px;
  }
  .pb-2 {
    padding-bottom: 5px;
  }
  .pl-2,
  .px-2 {
    padding-left: 5px;
  }
  .px-2 {
    padding-right: 5px;
  }
  .py-2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-3 {
    padding: 7.5px;
  }
  .pt-3 {
    padding-top: 7.5px;
  }
  .pr-3 {
    padding-right: 7.5px;
  }
  .pb-3 {
    padding-bottom: 7.5px;
  }
  .pl-3,
  .px-3 {
    padding-left: 7.5px;
  }
  .px-3 {
    padding-right: 7.5px;
  }
  .py-3 {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  .p-4 {
    padding: 10px;
  }
  .pt-4 {
    padding-top: 10px;
  }
  .pr-4 {
    padding-right: 10px;
  }
  .pb-4 {
    padding-bottom: 10px;
  }
  .pl-4,
  .px-4 {
    padding-left: 10px;
  }
  .px-4 {
    padding-right: 10px;
  }
  .py-4 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-5 {
    padding: 12.5px;
  }
  .pt-5 {
    padding-top: 12.5px;
  }
  .pr-5 {
    padding-right: 12.5px;
  }
  .pb-5 {
    padding-bottom: 12.5px;
  }
  .pl-5,
  .px-5 {
    padding-left: 12.5px;
  }
  .px-5 {
    padding-right: 12.5px;
  }
  .py-5 {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .p-6 {
    padding: 15px;
  }
  .pt-6 {
    padding-top: 15px;
  }
  .pr-6 {
    padding-right: 15px;
  }
  .pb-6 {
    padding-bottom: 15px;
  }
  .pl-6,
  .px-6 {
    padding-left: 15px;
  }
  .px-6 {
    padding-right: 15px;
  }
  .py-6 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .p-7 {
    padding: 17.5px;
  }
  .pt-7 {
    padding-top: 17.5px;
  }
  .pr-7 {
    padding-right: 17.5px;
  }
  .pb-7 {
    padding-bottom: 17.5px;
  }
  .pl-7,
  .px-7 {
    padding-left: 17.5px;
  }
  .px-7 {
    padding-right: 17.5px;
  }
  .py-7 {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
  .p-8 {
    padding: 20px;
  }
  .pt-8 {
    padding-top: 20px;
  }
  .pr-8 {
    padding-right: 20px;
  }
  .pb-8 {
    padding-bottom: 20px;
  }
  .pl-8,
  .px-8 {
    padding-left: 20px;
  }
  .px-8 {
    padding-right: 20px;
  }
  .py-8 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-9 {
    padding: 22.5px;
  }
  .pt-9 {
    padding-top: 22.5px;
  }
  .pr-9 {
    padding-right: 22.5px;
  }
  .pb-9 {
    padding-bottom: 22.5px;
  }
  .pl-9,
  .px-9 {
    padding-left: 22.5px;
  }
  .px-9 {
    padding-right: 22.5px;
  }
  .py-9 {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .p-10 {
    padding: 25px;
  }
  .pt-10 {
    padding-top: 25px;
  }
  .pr-10 {
    padding-right: 25px;
  }
  .pb-10 {
    padding-bottom: 25px;
  }
  .pl-10,
  .px-10 {
    padding-left: 25px;
  }
  .px-10 {
    padding-right: 25px;
  }
  .py-10 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .p-11 {
    padding: 27.5px;
  }
  .pt-11 {
    padding-top: 27.5px;
  }
  .pr-11 {
    padding-right: 27.5px;
  }
  .pb-11 {
    padding-bottom: 27.5px;
  }
  .pl-11,
  .px-11 {
    padding-left: 27.5px;
  }
  .px-11 {
    padding-right: 27.5px;
  }
  .py-11 {
    padding-top: 27.5px;
    padding-bottom: 27.5px;
  }
  .p-12 {
    padding: 30px;
  }
  .pt-12 {
    padding-top: 30px;
  }
  .pr-12 {
    padding-right: 30px;
  }
  .pb-12 {
    padding-bottom: 30px;
  }
  .pl-12,
  .px-12 {
    padding-left: 30px;
  }
  .px-12 {
    padding-right: 30px;
  }
  .py-12 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-13 {
    padding: 32.5px;
  }
  .pt-13 {
    padding-top: 32.5px;
  }
  .pr-13 {
    padding-right: 32.5px;
  }
  .pb-13 {
    padding-bottom: 32.5px;
  }
  .pl-13,
  .px-13 {
    padding-left: 32.5px;
  }
  .px-13 {
    padding-right: 32.5px;
  }
  .py-13 {
    padding-top: 32.5px;
    padding-bottom: 32.5px;
  }
  .p-14 {
    padding: 35px;
  }
  .pt-14 {
    padding-top: 35px;
  }
  .pr-14 {
    padding-right: 35px;
  }
  .pb-14 {
    padding-bottom: 35px;
  }
  .pl-14,
  .px-14 {
    padding-left: 35px;
  }
  .px-14 {
    padding-right: 35px;
  }
  .py-14 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p-15 {
    padding: 37.5px;
  }
  .pt-15 {
    padding-top: 37.5px;
  }
  .pr-15 {
    padding-right: 37.5px;
  }
  .pb-15 {
    padding-bottom: 37.5px;
  }
  .pl-15,
  .px-15 {
    padding-left: 37.5px;
  }
  .px-15 {
    padding-right: 37.5px;
  }
  .py-15 {
    padding-top: 37.5px;
    padding-bottom: 37.5px;
  }
  .p-16 {
    padding: 40px;
  }
  .pt-16 {
    padding-top: 40px;
  }
  .pr-16 {
    padding-right: 40px;
  }
  .pb-16 {
    padding-bottom: 40px;
  }
  .pl-16,
  .px-16 {
    padding-left: 40px;
  }
  .px-16 {
    padding-right: 40px;
  }
  .py-16 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-17 {
    padding: 42.5px;
  }
  .pt-17 {
    padding-top: 42.5px;
  }
  .pr-17 {
    padding-right: 42.5px;
  }
  .pb-17 {
    padding-bottom: 42.5px;
  }
  .pl-17,
  .px-17 {
    padding-left: 42.5px;
  }
  .px-17 {
    padding-right: 42.5px;
  }
  .py-17 {
    padding-top: 42.5px;
    padding-bottom: 42.5px;
  }
  .p-18 {
    padding: 45px;
  }
  .pt-18 {
    padding-top: 45px;
  }
  .pr-18 {
    padding-right: 45px;
  }
  .pb-18 {
    padding-bottom: 45px;
  }
  .pl-18,
  .px-18 {
    padding-left: 45px;
  }
  .px-18 {
    padding-right: 45px;
  }
  .py-18 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .p-19 {
    padding: 47.5px;
  }
  .pt-19 {
    padding-top: 47.5px;
  }
  .pr-19 {
    padding-right: 47.5px;
  }
  .pb-19 {
    padding-bottom: 47.5px;
  }
  .pl-19,
  .px-19 {
    padding-left: 47.5px;
  }
  .px-19 {
    padding-right: 47.5px;
  }
  .py-19 {
    padding-top: 47.5px;
    padding-bottom: 47.5px;
  }
  .p-20 {
    padding: 50px;
  }
  .pt-20 {
    padding-top: 50px;
  }
  .pr-20 {
    padding-right: 50px;
  }
  .pb-20 {
    padding-bottom: 50px;
  }
  .pl-20,
  .px-20 {
    padding-left: 50px;
  }
  .px-20 {
    padding-right: 50px;
  }
  .py-20 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 5.71429px;
  }
  .pt-2 {
    padding-top: 5.71429px;
  }
  .pr-2 {
    padding-right: 5.71429px;
  }
  .pb-2 {
    padding-bottom: 5.71429px;
  }
  .pl-2,
  .px-2 {
    padding-left: 5.71429px;
  }
  .px-2 {
    padding-right: 5.71429px;
  }
  .py-2 {
    padding-top: 5.71429px;
    padding-bottom: 5.71429px;
  }
  .p-3 {
    padding: 8.57143px;
  }
  .pt-3 {
    padding-top: 8.57143px;
  }
  .pr-3 {
    padding-right: 8.57143px;
  }
  .pb-3 {
    padding-bottom: 8.57143px;
  }
  .pl-3,
  .px-3 {
    padding-left: 8.57143px;
  }
  .px-3 {
    padding-right: 8.57143px;
  }
  .py-3 {
    padding-top: 8.57143px;
    padding-bottom: 8.57143px;
  }
  .p-4 {
    padding: 11.42857px;
  }
  .pt-4 {
    padding-top: 11.42857px;
  }
  .pr-4 {
    padding-right: 11.42857px;
  }
  .pb-4 {
    padding-bottom: 11.42857px;
  }
  .pl-4,
  .px-4 {
    padding-left: 11.42857px;
  }
  .px-4 {
    padding-right: 11.42857px;
  }
  .py-4 {
    padding-top: 11.42857px;
    padding-bottom: 11.42857px;
  }
  .p-5 {
    padding: 14.28571px;
  }
  .pt-5 {
    padding-top: 14.28571px;
  }
  .pr-5 {
    padding-right: 14.28571px;
  }
  .pb-5 {
    padding-bottom: 14.28571px;
  }
  .pl-5,
  .px-5 {
    padding-left: 14.28571px;
  }
  .px-5 {
    padding-right: 14.28571px;
  }
  .py-5 {
    padding-top: 14.28571px;
    padding-bottom: 14.28571px;
  }
  .p-6 {
    padding: 17.14286px;
  }
  .pt-6 {
    padding-top: 17.14286px;
  }
  .pr-6 {
    padding-right: 17.14286px;
  }
  .pb-6 {
    padding-bottom: 17.14286px;
  }
  .pl-6,
  .px-6 {
    padding-left: 17.14286px;
  }
  .px-6 {
    padding-right: 17.14286px;
  }
  .py-6 {
    padding-top: 17.14286px;
    padding-bottom: 17.14286px;
  }
  .p-7 {
    padding: 20px;
  }
  .pt-7 {
    padding-top: 20px;
  }
  .pr-7 {
    padding-right: 20px;
  }
  .pb-7 {
    padding-bottom: 20px;
  }
  .pl-7,
  .px-7 {
    padding-left: 20px;
  }
  .px-7 {
    padding-right: 20px;
  }
  .py-7 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-8 {
    padding: 22.85714px;
  }
  .pt-8 {
    padding-top: 22.85714px;
  }
  .pr-8 {
    padding-right: 22.85714px;
  }
  .pb-8 {
    padding-bottom: 22.85714px;
  }
  .pl-8,
  .px-8 {
    padding-left: 22.85714px;
  }
  .px-8 {
    padding-right: 22.85714px;
  }
  .py-8 {
    padding-top: 22.85714px;
    padding-bottom: 22.85714px;
  }
  .p-9 {
    padding: 25.71429px;
  }
  .pt-9 {
    padding-top: 25.71429px;
  }
  .pr-9 {
    padding-right: 25.71429px;
  }
  .pb-9 {
    padding-bottom: 25.71429px;
  }
  .pl-9,
  .px-9 {
    padding-left: 25.71429px;
  }
  .px-9 {
    padding-right: 25.71429px;
  }
  .py-9 {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .p-10 {
    padding: 28.57143px;
  }
  .pt-10 {
    padding-top: 28.57143px;
  }
  .pr-10 {
    padding-right: 28.57143px;
  }
  .pb-10 {
    padding-bottom: 28.57143px;
  }
  .pl-10,
  .px-10 {
    padding-left: 28.57143px;
  }
  .px-10 {
    padding-right: 28.57143px;
  }
  .py-10 {
    padding-top: 28.57143px;
    padding-bottom: 28.57143px;
  }
  .p-11 {
    padding: 31.42857px;
  }
  .pt-11 {
    padding-top: 31.42857px;
  }
  .pr-11 {
    padding-right: 31.42857px;
  }
  .pb-11 {
    padding-bottom: 31.42857px;
  }
  .pl-11,
  .px-11 {
    padding-left: 31.42857px;
  }
  .px-11 {
    padding-right: 31.42857px;
  }
  .py-11 {
    padding-top: 31.42857px;
    padding-bottom: 31.42857px;
  }
  .p-12 {
    padding: 34.28571px;
  }
  .pt-12 {
    padding-top: 34.28571px;
  }
  .pr-12 {
    padding-right: 34.28571px;
  }
  .pb-12 {
    padding-bottom: 34.28571px;
  }
  .pl-12,
  .px-12 {
    padding-left: 34.28571px;
  }
  .px-12 {
    padding-right: 34.28571px;
  }
  .py-12 {
    padding-top: 34.28571px;
    padding-bottom: 34.28571px;
  }
  .p-13 {
    padding: 37.14286px;
  }
  .pt-13 {
    padding-top: 37.14286px;
  }
  .pr-13 {
    padding-right: 37.14286px;
  }
  .pb-13 {
    padding-bottom: 37.14286px;
  }
  .pl-13,
  .px-13 {
    padding-left: 37.14286px;
  }
  .px-13 {
    padding-right: 37.14286px;
  }
  .py-13 {
    padding-top: 37.14286px;
    padding-bottom: 37.14286px;
  }
  .p-14 {
    padding: 40px;
  }
  .pt-14 {
    padding-top: 40px;
  }
  .pr-14 {
    padding-right: 40px;
  }
  .pb-14 {
    padding-bottom: 40px;
  }
  .pl-14,
  .px-14 {
    padding-left: 40px;
  }
  .px-14 {
    padding-right: 40px;
  }
  .py-14 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-15 {
    padding: 42.85714px;
  }
  .pt-15 {
    padding-top: 42.85714px;
  }
  .pr-15 {
    padding-right: 42.85714px;
  }
  .pb-15 {
    padding-bottom: 42.85714px;
  }
  .pl-15,
  .px-15 {
    padding-left: 42.85714px;
  }
  .px-15 {
    padding-right: 42.85714px;
  }
  .py-15 {
    padding-top: 42.85714px;
    padding-bottom: 42.85714px;
  }
  .p-16 {
    padding: 45.71429px;
  }
  .pt-16 {
    padding-top: 45.71429px;
  }
  .pr-16 {
    padding-right: 45.71429px;
  }
  .pb-16 {
    padding-bottom: 45.71429px;
  }
  .pl-16,
  .px-16 {
    padding-left: 45.71429px;
  }
  .px-16 {
    padding-right: 45.71429px;
  }
  .py-16 {
    padding-top: 45.71429px;
    padding-bottom: 45.71429px;
  }
  .p-17 {
    padding: 48.57143px;
  }
  .pt-17 {
    padding-top: 48.57143px;
  }
  .pr-17 {
    padding-right: 48.57143px;
  }
  .pb-17 {
    padding-bottom: 48.57143px;
  }
  .pl-17,
  .px-17 {
    padding-left: 48.57143px;
  }
  .px-17 {
    padding-right: 48.57143px;
  }
  .py-17 {
    padding-top: 48.57143px;
    padding-bottom: 48.57143px;
  }
  .p-18 {
    padding: 51.42857px;
  }
  .pt-18 {
    padding-top: 51.42857px;
  }
  .pr-18 {
    padding-right: 51.42857px;
  }
  .pb-18 {
    padding-bottom: 51.42857px;
  }
  .pl-18,
  .px-18 {
    padding-left: 51.42857px;
  }
  .px-18 {
    padding-right: 51.42857px;
  }
  .py-18 {
    padding-top: 51.42857px;
    padding-bottom: 51.42857px;
  }
  .p-19 {
    padding: 54.28571px;
  }
  .pt-19 {
    padding-top: 54.28571px;
  }
  .pr-19 {
    padding-right: 54.28571px;
  }
  .pb-19 {
    padding-bottom: 54.28571px;
  }
  .pl-19,
  .px-19 {
    padding-left: 54.28571px;
  }
  .px-19 {
    padding-right: 54.28571px;
  }
  .py-19 {
    padding-top: 54.28571px;
    padding-bottom: 54.28571px;
  }
  .p-20 {
    padding: 57.14286px;
  }
  .pt-20 {
    padding-top: 57.14286px;
  }
  .pr-20 {
    padding-right: 57.14286px;
  }
  .pb-20 {
    padding-bottom: 57.14286px;
  }
  .pl-20,
  .px-20 {
    padding-left: 57.14286px;
  }
  .px-20 {
    padding-right: 57.14286px;
  }
  .py-20 {
    padding-top: 57.14286px;
    padding-bottom: 57.14286px;
  }
}
@media (min-width: 992px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 6.42857px;
  }
  .pt-2 {
    padding-top: 6.42857px;
  }
  .pr-2 {
    padding-right: 6.42857px;
  }
  .pb-2 {
    padding-bottom: 6.42857px;
  }
  .pl-2,
  .px-2 {
    padding-left: 6.42857px;
  }
  .px-2 {
    padding-right: 6.42857px;
  }
  .py-2 {
    padding-top: 6.42857px;
    padding-bottom: 6.42857px;
  }
  .p-3 {
    padding: 9.64286px;
  }
  .pt-3 {
    padding-top: 9.64286px;
  }
  .pr-3 {
    padding-right: 9.64286px;
  }
  .pb-3 {
    padding-bottom: 9.64286px;
  }
  .pl-3,
  .px-3 {
    padding-left: 9.64286px;
  }
  .px-3 {
    padding-right: 9.64286px;
  }
  .py-3 {
    padding-top: 9.64286px;
    padding-bottom: 9.64286px;
  }
  .p-4 {
    padding: 12.85714px;
  }
  .pt-4 {
    padding-top: 12.85714px;
  }
  .pr-4 {
    padding-right: 12.85714px;
  }
  .pb-4 {
    padding-bottom: 12.85714px;
  }
  .pl-4,
  .px-4 {
    padding-left: 12.85714px;
  }
  .px-4 {
    padding-right: 12.85714px;
  }
  .py-4 {
    padding-top: 12.85714px;
    padding-bottom: 12.85714px;
  }
  .p-5 {
    padding: 16.07143px;
  }
  .pt-5 {
    padding-top: 16.07143px;
  }
  .pr-5 {
    padding-right: 16.07143px;
  }
  .pb-5 {
    padding-bottom: 16.07143px;
  }
  .pl-5,
  .px-5 {
    padding-left: 16.07143px;
  }
  .px-5 {
    padding-right: 16.07143px;
  }
  .py-5 {
    padding-top: 16.07143px;
    padding-bottom: 16.07143px;
  }
  .p-6 {
    padding: 19.28571px;
  }
  .pt-6 {
    padding-top: 19.28571px;
  }
  .pr-6 {
    padding-right: 19.28571px;
  }
  .pb-6 {
    padding-bottom: 19.28571px;
  }
  .pl-6,
  .px-6 {
    padding-left: 19.28571px;
  }
  .px-6 {
    padding-right: 19.28571px;
  }
  .py-6 {
    padding-top: 19.28571px;
    padding-bottom: 19.28571px;
  }
  .p-7 {
    padding: 22.5px;
  }
  .pt-7 {
    padding-top: 22.5px;
  }
  .pr-7 {
    padding-right: 22.5px;
  }
  .pb-7 {
    padding-bottom: 22.5px;
  }
  .pl-7,
  .px-7 {
    padding-left: 22.5px;
  }
  .px-7 {
    padding-right: 22.5px;
  }
  .py-7 {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .p-8 {
    padding: 25.71429px;
  }
  .pt-8 {
    padding-top: 25.71429px;
  }
  .pr-8 {
    padding-right: 25.71429px;
  }
  .pb-8 {
    padding-bottom: 25.71429px;
  }
  .pl-8,
  .px-8 {
    padding-left: 25.71429px;
  }
  .px-8 {
    padding-right: 25.71429px;
  }
  .py-8 {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .p-9 {
    padding: 28.92857px;
  }
  .pt-9 {
    padding-top: 28.92857px;
  }
  .pr-9 {
    padding-right: 28.92857px;
  }
  .pb-9 {
    padding-bottom: 28.92857px;
  }
  .pl-9,
  .px-9 {
    padding-left: 28.92857px;
  }
  .px-9 {
    padding-right: 28.92857px;
  }
  .py-9 {
    padding-top: 28.92857px;
    padding-bottom: 28.92857px;
  }
  .p-10 {
    padding: 32.14286px;
  }
  .pt-10 {
    padding-top: 32.14286px;
  }
  .pr-10 {
    padding-right: 32.14286px;
  }
  .pb-10 {
    padding-bottom: 32.14286px;
  }
  .pl-10,
  .px-10 {
    padding-left: 32.14286px;
  }
  .px-10 {
    padding-right: 32.14286px;
  }
  .py-10 {
    padding-top: 32.14286px;
    padding-bottom: 32.14286px;
  }
  .p-11 {
    padding: 35.35714px;
  }
  .pt-11 {
    padding-top: 35.35714px;
  }
  .pr-11 {
    padding-right: 35.35714px;
  }
  .pb-11 {
    padding-bottom: 35.35714px;
  }
  .pl-11,
  .px-11 {
    padding-left: 35.35714px;
  }
  .px-11 {
    padding-right: 35.35714px;
  }
  .py-11 {
    padding-top: 35.35714px;
    padding-bottom: 35.35714px;
  }
  .p-12 {
    padding: 38.57143px;
  }
  .pt-12 {
    padding-top: 38.57143px;
  }
  .pr-12 {
    padding-right: 38.57143px;
  }
  .pb-12 {
    padding-bottom: 38.57143px;
  }
  .pl-12,
  .px-12 {
    padding-left: 38.57143px;
  }
  .px-12 {
    padding-right: 38.57143px;
  }
  .py-12 {
    padding-top: 38.57143px;
    padding-bottom: 38.57143px;
  }
  .p-13 {
    padding: 41.78571px;
  }
  .pt-13 {
    padding-top: 41.78571px;
  }
  .pr-13 {
    padding-right: 41.78571px;
  }
  .pb-13 {
    padding-bottom: 41.78571px;
  }
  .pl-13,
  .px-13 {
    padding-left: 41.78571px;
  }
  .px-13 {
    padding-right: 41.78571px;
  }
  .py-13 {
    padding-top: 41.78571px;
    padding-bottom: 41.78571px;
  }
  .p-14 {
    padding: 45px;
  }
  .pt-14 {
    padding-top: 45px;
  }
  .pr-14 {
    padding-right: 45px;
  }
  .pb-14 {
    padding-bottom: 45px;
  }
  .pl-14,
  .px-14 {
    padding-left: 45px;
  }
  .px-14 {
    padding-right: 45px;
  }
  .py-14 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .p-15 {
    padding: 48.21429px;
  }
  .pt-15 {
    padding-top: 48.21429px;
  }
  .pr-15 {
    padding-right: 48.21429px;
  }
  .pb-15 {
    padding-bottom: 48.21429px;
  }
  .pl-15,
  .px-15 {
    padding-left: 48.21429px;
  }
  .px-15 {
    padding-right: 48.21429px;
  }
  .py-15 {
    padding-top: 48.21429px;
    padding-bottom: 48.21429px;
  }
  .p-16 {
    padding: 51.42857px;
  }
  .pt-16 {
    padding-top: 51.42857px;
  }
  .pr-16 {
    padding-right: 51.42857px;
  }
  .pb-16 {
    padding-bottom: 51.42857px;
  }
  .pl-16,
  .px-16 {
    padding-left: 51.42857px;
  }
  .px-16 {
    padding-right: 51.42857px;
  }
  .py-16 {
    padding-top: 51.42857px;
    padding-bottom: 51.42857px;
  }
  .p-17 {
    padding: 54.64286px;
  }
  .pt-17 {
    padding-top: 54.64286px;
  }
  .pr-17 {
    padding-right: 54.64286px;
  }
  .pb-17 {
    padding-bottom: 54.64286px;
  }
  .pl-17,
  .px-17 {
    padding-left: 54.64286px;
  }
  .px-17 {
    padding-right: 54.64286px;
  }
  .py-17 {
    padding-top: 54.64286px;
    padding-bottom: 54.64286px;
  }
  .p-18 {
    padding: 57.85714px;
  }
  .pt-18 {
    padding-top: 57.85714px;
  }
  .pr-18 {
    padding-right: 57.85714px;
  }
  .pb-18 {
    padding-bottom: 57.85714px;
  }
  .pl-18,
  .px-18 {
    padding-left: 57.85714px;
  }
  .px-18 {
    padding-right: 57.85714px;
  }
  .py-18 {
    padding-top: 57.85714px;
    padding-bottom: 57.85714px;
  }
  .p-19 {
    padding: 61.07143px;
  }
  .pt-19 {
    padding-top: 61.07143px;
  }
  .pr-19 {
    padding-right: 61.07143px;
  }
  .pb-19 {
    padding-bottom: 61.07143px;
  }
  .pl-19,
  .px-19 {
    padding-left: 61.07143px;
  }
  .px-19 {
    padding-right: 61.07143px;
  }
  .py-19 {
    padding-top: 61.07143px;
    padding-bottom: 61.07143px;
  }
  .p-20 {
    padding: 64.28571px;
  }
  .pt-20 {
    padding-top: 64.28571px;
  }
  .pr-20 {
    padding-right: 64.28571px;
  }
  .pb-20 {
    padding-bottom: 64.28571px;
  }
  .pl-20,
  .px-20 {
    padding-left: 64.28571px;
  }
  .px-20 {
    padding-right: 64.28571px;
  }
  .py-20 {
    padding-top: 64.28571px;
    padding-bottom: 64.28571px;
  }
}
@media (min-width: 1025px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 7.14286px;
  }
  .pt-2 {
    padding-top: 7.14286px;
  }
  .pr-2 {
    padding-right: 7.14286px;
  }
  .pb-2 {
    padding-bottom: 7.14286px;
  }
  .pl-2,
  .px-2 {
    padding-left: 7.14286px;
  }
  .px-2 {
    padding-right: 7.14286px;
  }
  .py-2 {
    padding-top: 7.14286px;
    padding-bottom: 7.14286px;
  }
  .p-3 {
    padding: 10.71429px;
  }
  .pt-3 {
    padding-top: 10.71429px;
  }
  .pr-3 {
    padding-right: 10.71429px;
  }
  .pb-3 {
    padding-bottom: 10.71429px;
  }
  .pl-3,
  .px-3 {
    padding-left: 10.71429px;
  }
  .px-3 {
    padding-right: 10.71429px;
  }
  .py-3 {
    padding-top: 10.71429px;
    padding-bottom: 10.71429px;
  }
  .p-4 {
    padding: 14.28571px;
  }
  .pt-4 {
    padding-top: 14.28571px;
  }
  .pr-4 {
    padding-right: 14.28571px;
  }
  .pb-4 {
    padding-bottom: 14.28571px;
  }
  .pl-4,
  .px-4 {
    padding-left: 14.28571px;
  }
  .px-4 {
    padding-right: 14.28571px;
  }
  .py-4 {
    padding-top: 14.28571px;
    padding-bottom: 14.28571px;
  }
  .p-5 {
    padding: 17.85714px;
  }
  .pt-5 {
    padding-top: 17.85714px;
  }
  .pr-5 {
    padding-right: 17.85714px;
  }
  .pb-5 {
    padding-bottom: 17.85714px;
  }
  .pl-5,
  .px-5 {
    padding-left: 17.85714px;
  }
  .px-5 {
    padding-right: 17.85714px;
  }
  .py-5 {
    padding-top: 17.85714px;
    padding-bottom: 17.85714px;
  }
  .p-6 {
    padding: 21.42857px;
  }
  .pt-6 {
    padding-top: 21.42857px;
  }
  .pr-6 {
    padding-right: 21.42857px;
  }
  .pb-6 {
    padding-bottom: 21.42857px;
  }
  .pl-6,
  .px-6 {
    padding-left: 21.42857px;
  }
  .px-6 {
    padding-right: 21.42857px;
  }
  .py-6 {
    padding-top: 21.42857px;
    padding-bottom: 21.42857px;
  }
  .p-7 {
    padding: 25px;
  }
  .pt-7 {
    padding-top: 25px;
  }
  .pr-7 {
    padding-right: 25px;
  }
  .pb-7 {
    padding-bottom: 25px;
  }
  .pl-7,
  .px-7 {
    padding-left: 25px;
  }
  .px-7 {
    padding-right: 25px;
  }
  .py-7 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .p-8 {
    padding: 28.57143px;
  }
  .pt-8 {
    padding-top: 28.57143px;
  }
  .pr-8 {
    padding-right: 28.57143px;
  }
  .pb-8 {
    padding-bottom: 28.57143px;
  }
  .pl-8,
  .px-8 {
    padding-left: 28.57143px;
  }
  .px-8 {
    padding-right: 28.57143px;
  }
  .py-8 {
    padding-top: 28.57143px;
    padding-bottom: 28.57143px;
  }
  .p-9 {
    padding: 32.14286px;
  }
  .pt-9 {
    padding-top: 32.14286px;
  }
  .pr-9 {
    padding-right: 32.14286px;
  }
  .pb-9 {
    padding-bottom: 32.14286px;
  }
  .pl-9,
  .px-9 {
    padding-left: 32.14286px;
  }
  .px-9 {
    padding-right: 32.14286px;
  }
  .py-9 {
    padding-top: 32.14286px;
    padding-bottom: 32.14286px;
  }
  .p-10 {
    padding: 35.71429px;
  }
  .pt-10 {
    padding-top: 35.71429px;
  }
  .pr-10 {
    padding-right: 35.71429px;
  }
  .pb-10 {
    padding-bottom: 35.71429px;
  }
  .pl-10,
  .px-10 {
    padding-left: 35.71429px;
  }
  .px-10 {
    padding-right: 35.71429px;
  }
  .py-10 {
    padding-top: 35.71429px;
    padding-bottom: 35.71429px;
  }
  .p-11 {
    padding: 39.28571px;
  }
  .pt-11 {
    padding-top: 39.28571px;
  }
  .pr-11 {
    padding-right: 39.28571px;
  }
  .pb-11 {
    padding-bottom: 39.28571px;
  }
  .pl-11,
  .px-11 {
    padding-left: 39.28571px;
  }
  .px-11 {
    padding-right: 39.28571px;
  }
  .py-11 {
    padding-top: 39.28571px;
    padding-bottom: 39.28571px;
  }
  .p-12 {
    padding: 42.85714px;
  }
  .pt-12 {
    padding-top: 42.85714px;
  }
  .pr-12 {
    padding-right: 42.85714px;
  }
  .pb-12 {
    padding-bottom: 42.85714px;
  }
  .pl-12,
  .px-12 {
    padding-left: 42.85714px;
  }
  .px-12 {
    padding-right: 42.85714px;
  }
  .py-12 {
    padding-top: 42.85714px;
    padding-bottom: 42.85714px;
  }
  .p-13 {
    padding: 46.42857px;
  }
  .pt-13 {
    padding-top: 46.42857px;
  }
  .pr-13 {
    padding-right: 46.42857px;
  }
  .pb-13 {
    padding-bottom: 46.42857px;
  }
  .pl-13,
  .px-13 {
    padding-left: 46.42857px;
  }
  .px-13 {
    padding-right: 46.42857px;
  }
  .py-13 {
    padding-top: 46.42857px;
    padding-bottom: 46.42857px;
  }
  .p-14 {
    padding: 50px;
  }
  .pt-14 {
    padding-top: 50px;
  }
  .pr-14 {
    padding-right: 50px;
  }
  .pb-14 {
    padding-bottom: 50px;
  }
  .pl-14,
  .px-14 {
    padding-left: 50px;
  }
  .px-14 {
    padding-right: 50px;
  }
  .py-14 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-15 {
    padding: 53.57143px;
  }
  .pt-15 {
    padding-top: 53.57143px;
  }
  .pr-15 {
    padding-right: 53.57143px;
  }
  .pb-15 {
    padding-bottom: 53.57143px;
  }
  .pl-15,
  .px-15 {
    padding-left: 53.57143px;
  }
  .px-15 {
    padding-right: 53.57143px;
  }
  .py-15 {
    padding-top: 53.57143px;
    padding-bottom: 53.57143px;
  }
  .p-16 {
    padding: 57.14286px;
  }
  .pt-16 {
    padding-top: 57.14286px;
  }
  .pr-16 {
    padding-right: 57.14286px;
  }
  .pb-16 {
    padding-bottom: 57.14286px;
  }
  .pl-16,
  .px-16 {
    padding-left: 57.14286px;
  }
  .px-16 {
    padding-right: 57.14286px;
  }
  .py-16 {
    padding-top: 57.14286px;
    padding-bottom: 57.14286px;
  }
  .p-17 {
    padding: 60.71429px;
  }
  .pt-17 {
    padding-top: 60.71429px;
  }
  .pr-17 {
    padding-right: 60.71429px;
  }
  .pb-17 {
    padding-bottom: 60.71429px;
  }
  .pl-17,
  .px-17 {
    padding-left: 60.71429px;
  }
  .px-17 {
    padding-right: 60.71429px;
  }
  .py-17 {
    padding-top: 60.71429px;
    padding-bottom: 60.71429px;
  }
  .p-18 {
    padding: 64.28571px;
  }
  .pt-18 {
    padding-top: 64.28571px;
  }
  .pr-18 {
    padding-right: 64.28571px;
  }
  .pb-18 {
    padding-bottom: 64.28571px;
  }
  .pl-18,
  .px-18 {
    padding-left: 64.28571px;
  }
  .px-18 {
    padding-right: 64.28571px;
  }
  .py-18 {
    padding-top: 64.28571px;
    padding-bottom: 64.28571px;
  }
  .p-19 {
    padding: 67.85714px;
  }
  .pt-19 {
    padding-top: 67.85714px;
  }
  .pr-19 {
    padding-right: 67.85714px;
  }
  .pb-19 {
    padding-bottom: 67.85714px;
  }
  .pl-19,
  .px-19 {
    padding-left: 67.85714px;
  }
  .px-19 {
    padding-right: 67.85714px;
  }
  .py-19 {
    padding-top: 67.85714px;
    padding-bottom: 67.85714px;
  }
  .p-20 {
    padding: 71.42857px;
  }
  .pt-20 {
    padding-top: 71.42857px;
  }
  .pr-20 {
    padding-right: 71.42857px;
  }
  .pb-20 {
    padding-bottom: 71.42857px;
  }
  .pl-20,
  .px-20 {
    padding-left: 71.42857px;
  }
  .px-20 {
    padding-right: 71.42857px;
  }
  .py-20 {
    padding-top: 71.42857px;
    padding-bottom: 71.42857px;
  }
}
@media (min-width: 1290px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 7.85714px;
  }
  .pt-2 {
    padding-top: 7.85714px;
  }
  .pr-2 {
    padding-right: 7.85714px;
  }
  .pb-2 {
    padding-bottom: 7.85714px;
  }
  .pl-2,
  .px-2 {
    padding-left: 7.85714px;
  }
  .px-2 {
    padding-right: 7.85714px;
  }
  .py-2 {
    padding-top: 7.85714px;
    padding-bottom: 7.85714px;
  }
  .p-3 {
    padding: 11.78571px;
  }
  .pt-3 {
    padding-top: 11.78571px;
  }
  .pr-3 {
    padding-right: 11.78571px;
  }
  .pb-3 {
    padding-bottom: 11.78571px;
  }
  .pl-3,
  .px-3 {
    padding-left: 11.78571px;
  }
  .px-3 {
    padding-right: 11.78571px;
  }
  .py-3 {
    padding-top: 11.78571px;
    padding-bottom: 11.78571px;
  }
  .p-4 {
    padding: 15.71429px;
  }
  .pt-4 {
    padding-top: 15.71429px;
  }
  .pr-4 {
    padding-right: 15.71429px;
  }
  .pb-4 {
    padding-bottom: 15.71429px;
  }
  .pl-4,
  .px-4 {
    padding-left: 15.71429px;
  }
  .px-4 {
    padding-right: 15.71429px;
  }
  .py-4 {
    padding-top: 15.71429px;
    padding-bottom: 15.71429px;
  }
  .p-5 {
    padding: 19.64286px;
  }
  .pt-5 {
    padding-top: 19.64286px;
  }
  .pr-5 {
    padding-right: 19.64286px;
  }
  .pb-5 {
    padding-bottom: 19.64286px;
  }
  .pl-5,
  .px-5 {
    padding-left: 19.64286px;
  }
  .px-5 {
    padding-right: 19.64286px;
  }
  .py-5 {
    padding-top: 19.64286px;
    padding-bottom: 19.64286px;
  }
  .p-6 {
    padding: 23.57143px;
  }
  .pt-6 {
    padding-top: 23.57143px;
  }
  .pr-6 {
    padding-right: 23.57143px;
  }
  .pb-6 {
    padding-bottom: 23.57143px;
  }
  .pl-6,
  .px-6 {
    padding-left: 23.57143px;
  }
  .px-6 {
    padding-right: 23.57143px;
  }
  .py-6 {
    padding-top: 23.57143px;
    padding-bottom: 23.57143px;
  }
  .p-7 {
    padding: 27.5px;
  }
  .pt-7 {
    padding-top: 27.5px;
  }
  .pr-7 {
    padding-right: 27.5px;
  }
  .pb-7 {
    padding-bottom: 27.5px;
  }
  .pl-7,
  .px-7 {
    padding-left: 27.5px;
  }
  .px-7 {
    padding-right: 27.5px;
  }
  .py-7 {
    padding-top: 27.5px;
    padding-bottom: 27.5px;
  }
  .p-8 {
    padding: 31.42857px;
  }
  .pt-8 {
    padding-top: 31.42857px;
  }
  .pr-8 {
    padding-right: 31.42857px;
  }
  .pb-8 {
    padding-bottom: 31.42857px;
  }
  .pl-8,
  .px-8 {
    padding-left: 31.42857px;
  }
  .px-8 {
    padding-right: 31.42857px;
  }
  .py-8 {
    padding-top: 31.42857px;
    padding-bottom: 31.42857px;
  }
  .p-9 {
    padding: 35.35714px;
  }
  .pt-9 {
    padding-top: 35.35714px;
  }
  .pr-9 {
    padding-right: 35.35714px;
  }
  .pb-9 {
    padding-bottom: 35.35714px;
  }
  .pl-9,
  .px-9 {
    padding-left: 35.35714px;
  }
  .px-9 {
    padding-right: 35.35714px;
  }
  .py-9 {
    padding-top: 35.35714px;
    padding-bottom: 35.35714px;
  }
  .p-10 {
    padding: 39.28571px;
  }
  .pt-10 {
    padding-top: 39.28571px;
  }
  .pr-10 {
    padding-right: 39.28571px;
  }
  .pb-10 {
    padding-bottom: 39.28571px;
  }
  .pl-10,
  .px-10 {
    padding-left: 39.28571px;
  }
  .px-10 {
    padding-right: 39.28571px;
  }
  .py-10 {
    padding-top: 39.28571px;
    padding-bottom: 39.28571px;
  }
  .p-11 {
    padding: 43.21429px;
  }
  .pt-11 {
    padding-top: 43.21429px;
  }
  .pr-11 {
    padding-right: 43.21429px;
  }
  .pb-11 {
    padding-bottom: 43.21429px;
  }
  .pl-11,
  .px-11 {
    padding-left: 43.21429px;
  }
  .px-11 {
    padding-right: 43.21429px;
  }
  .py-11 {
    padding-top: 43.21429px;
    padding-bottom: 43.21429px;
  }
  .p-12 {
    padding: 47.14286px;
  }
  .pt-12 {
    padding-top: 47.14286px;
  }
  .pr-12 {
    padding-right: 47.14286px;
  }
  .pb-12 {
    padding-bottom: 47.14286px;
  }
  .pl-12,
  .px-12 {
    padding-left: 47.14286px;
  }
  .px-12 {
    padding-right: 47.14286px;
  }
  .py-12 {
    padding-top: 47.14286px;
    padding-bottom: 47.14286px;
  }
  .p-13 {
    padding: 51.07143px;
  }
  .pt-13 {
    padding-top: 51.07143px;
  }
  .pr-13 {
    padding-right: 51.07143px;
  }
  .pb-13 {
    padding-bottom: 51.07143px;
  }
  .pl-13,
  .px-13 {
    padding-left: 51.07143px;
  }
  .px-13 {
    padding-right: 51.07143px;
  }
  .py-13 {
    padding-top: 51.07143px;
    padding-bottom: 51.07143px;
  }
  .p-14 {
    padding: 55px;
  }
  .pt-14 {
    padding-top: 55px;
  }
  .pr-14 {
    padding-right: 55px;
  }
  .pb-14 {
    padding-bottom: 55px;
  }
  .pl-14,
  .px-14 {
    padding-left: 55px;
  }
  .px-14 {
    padding-right: 55px;
  }
  .py-14 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .p-15 {
    padding: 58.92857px;
  }
  .pt-15 {
    padding-top: 58.92857px;
  }
  .pr-15 {
    padding-right: 58.92857px;
  }
  .pb-15 {
    padding-bottom: 58.92857px;
  }
  .pl-15,
  .px-15 {
    padding-left: 58.92857px;
  }
  .px-15 {
    padding-right: 58.92857px;
  }
  .py-15 {
    padding-top: 58.92857px;
    padding-bottom: 58.92857px;
  }
  .p-16 {
    padding: 62.85714px;
  }
  .pt-16 {
    padding-top: 62.85714px;
  }
  .pr-16 {
    padding-right: 62.85714px;
  }
  .pb-16 {
    padding-bottom: 62.85714px;
  }
  .pl-16,
  .px-16 {
    padding-left: 62.85714px;
  }
  .px-16 {
    padding-right: 62.85714px;
  }
  .py-16 {
    padding-top: 62.85714px;
    padding-bottom: 62.85714px;
  }
  .p-17 {
    padding: 66.78571px;
  }
  .pt-17 {
    padding-top: 66.78571px;
  }
  .pr-17 {
    padding-right: 66.78571px;
  }
  .pb-17 {
    padding-bottom: 66.78571px;
  }
  .pl-17,
  .px-17 {
    padding-left: 66.78571px;
  }
  .px-17 {
    padding-right: 66.78571px;
  }
  .py-17 {
    padding-top: 66.78571px;
    padding-bottom: 66.78571px;
  }
  .p-18 {
    padding: 70.71429px;
  }
  .pt-18 {
    padding-top: 70.71429px;
  }
  .pr-18 {
    padding-right: 70.71429px;
  }
  .pb-18 {
    padding-bottom: 70.71429px;
  }
  .pl-18,
  .px-18 {
    padding-left: 70.71429px;
  }
  .px-18 {
    padding-right: 70.71429px;
  }
  .py-18 {
    padding-top: 70.71429px;
    padding-bottom: 70.71429px;
  }
  .p-19 {
    padding: 74.64286px;
  }
  .pt-19 {
    padding-top: 74.64286px;
  }
  .pr-19 {
    padding-right: 74.64286px;
  }
  .pb-19 {
    padding-bottom: 74.64286px;
  }
  .pl-19,
  .px-19 {
    padding-left: 74.64286px;
  }
  .px-19 {
    padding-right: 74.64286px;
  }
  .py-19 {
    padding-top: 74.64286px;
    padding-bottom: 74.64286px;
  }
  .p-20 {
    padding: 78.57143px;
  }
  .pt-20 {
    padding-top: 78.57143px;
  }
  .pr-20 {
    padding-right: 78.57143px;
  }
  .pb-20 {
    padding-bottom: 78.57143px;
  }
  .pl-20,
  .px-20 {
    padding-left: 78.57143px;
  }
  .px-20 {
    padding-right: 78.57143px;
  }
  .py-20 {
    padding-top: 78.57143px;
    padding-bottom: 78.57143px;
  }
}
@media (min-width: 1367px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 8.57143px;
  }
  .pt-2 {
    padding-top: 8.57143px;
  }
  .pr-2 {
    padding-right: 8.57143px;
  }
  .pb-2 {
    padding-bottom: 8.57143px;
  }
  .pl-2,
  .px-2 {
    padding-left: 8.57143px;
  }
  .px-2 {
    padding-right: 8.57143px;
  }
  .py-2 {
    padding-top: 8.57143px;
    padding-bottom: 8.57143px;
  }
  .p-3 {
    padding: 12.85714px;
  }
  .pt-3 {
    padding-top: 12.85714px;
  }
  .pr-3 {
    padding-right: 12.85714px;
  }
  .pb-3 {
    padding-bottom: 12.85714px;
  }
  .pl-3,
  .px-3 {
    padding-left: 12.85714px;
  }
  .px-3 {
    padding-right: 12.85714px;
  }
  .py-3 {
    padding-top: 12.85714px;
    padding-bottom: 12.85714px;
  }
  .p-4 {
    padding: 17.14286px;
  }
  .pt-4 {
    padding-top: 17.14286px;
  }
  .pr-4 {
    padding-right: 17.14286px;
  }
  .pb-4 {
    padding-bottom: 17.14286px;
  }
  .pl-4,
  .px-4 {
    padding-left: 17.14286px;
  }
  .px-4 {
    padding-right: 17.14286px;
  }
  .py-4 {
    padding-top: 17.14286px;
    padding-bottom: 17.14286px;
  }
  .p-5 {
    padding: 21.42857px;
  }
  .pt-5 {
    padding-top: 21.42857px;
  }
  .pr-5 {
    padding-right: 21.42857px;
  }
  .pb-5 {
    padding-bottom: 21.42857px;
  }
  .pl-5,
  .px-5 {
    padding-left: 21.42857px;
  }
  .px-5 {
    padding-right: 21.42857px;
  }
  .py-5 {
    padding-top: 21.42857px;
    padding-bottom: 21.42857px;
  }
  .p-6 {
    padding: 25.71429px;
  }
  .pt-6 {
    padding-top: 25.71429px;
  }
  .pr-6 {
    padding-right: 25.71429px;
  }
  .pb-6 {
    padding-bottom: 25.71429px;
  }
  .pl-6,
  .px-6 {
    padding-left: 25.71429px;
  }
  .px-6 {
    padding-right: 25.71429px;
  }
  .py-6 {
    padding-top: 25.71429px;
    padding-bottom: 25.71429px;
  }
  .p-7 {
    padding: 30px;
  }
  .pt-7 {
    padding-top: 30px;
  }
  .pr-7 {
    padding-right: 30px;
  }
  .pb-7 {
    padding-bottom: 30px;
  }
  .pl-7,
  .px-7 {
    padding-left: 30px;
  }
  .px-7 {
    padding-right: 30px;
  }
  .py-7 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-8 {
    padding: 34.28571px;
  }
  .pt-8 {
    padding-top: 34.28571px;
  }
  .pr-8 {
    padding-right: 34.28571px;
  }
  .pb-8 {
    padding-bottom: 34.28571px;
  }
  .pl-8,
  .px-8 {
    padding-left: 34.28571px;
  }
  .px-8 {
    padding-right: 34.28571px;
  }
  .py-8 {
    padding-top: 34.28571px;
    padding-bottom: 34.28571px;
  }
  .p-9 {
    padding: 38.57143px;
  }
  .pt-9 {
    padding-top: 38.57143px;
  }
  .pr-9 {
    padding-right: 38.57143px;
  }
  .pb-9 {
    padding-bottom: 38.57143px;
  }
  .pl-9,
  .px-9 {
    padding-left: 38.57143px;
  }
  .px-9 {
    padding-right: 38.57143px;
  }
  .py-9 {
    padding-top: 38.57143px;
    padding-bottom: 38.57143px;
  }
  .p-10 {
    padding: 42.85714px;
  }
  .pt-10 {
    padding-top: 42.85714px;
  }
  .pr-10 {
    padding-right: 42.85714px;
  }
  .pb-10 {
    padding-bottom: 42.85714px;
  }
  .pl-10,
  .px-10 {
    padding-left: 42.85714px;
  }
  .px-10 {
    padding-right: 42.85714px;
  }
  .py-10 {
    padding-top: 42.85714px;
    padding-bottom: 42.85714px;
  }
  .p-11 {
    padding: 47.14286px;
  }
  .pt-11 {
    padding-top: 47.14286px;
  }
  .pr-11 {
    padding-right: 47.14286px;
  }
  .pb-11 {
    padding-bottom: 47.14286px;
  }
  .pl-11,
  .px-11 {
    padding-left: 47.14286px;
  }
  .px-11 {
    padding-right: 47.14286px;
  }
  .py-11 {
    padding-top: 47.14286px;
    padding-bottom: 47.14286px;
  }
  .p-12 {
    padding: 51.42857px;
  }
  .pt-12 {
    padding-top: 51.42857px;
  }
  .pr-12 {
    padding-right: 51.42857px;
  }
  .pb-12 {
    padding-bottom: 51.42857px;
  }
  .pl-12,
  .px-12 {
    padding-left: 51.42857px;
  }
  .px-12 {
    padding-right: 51.42857px;
  }
  .py-12 {
    padding-top: 51.42857px;
    padding-bottom: 51.42857px;
  }
  .p-13 {
    padding: 55.71429px;
  }
  .pt-13 {
    padding-top: 55.71429px;
  }
  .pr-13 {
    padding-right: 55.71429px;
  }
  .pb-13 {
    padding-bottom: 55.71429px;
  }
  .pl-13,
  .px-13 {
    padding-left: 55.71429px;
  }
  .px-13 {
    padding-right: 55.71429px;
  }
  .py-13 {
    padding-top: 55.71429px;
    padding-bottom: 55.71429px;
  }
  .p-14 {
    padding: 60px;
  }
  .pt-14 {
    padding-top: 60px;
  }
  .pr-14 {
    padding-right: 60px;
  }
  .pb-14 {
    padding-bottom: 60px;
  }
  .pl-14,
  .px-14 {
    padding-left: 60px;
  }
  .px-14 {
    padding-right: 60px;
  }
  .py-14 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-15 {
    padding: 64.28571px;
  }
  .pt-15 {
    padding-top: 64.28571px;
  }
  .pr-15 {
    padding-right: 64.28571px;
  }
  .pb-15 {
    padding-bottom: 64.28571px;
  }
  .pl-15,
  .px-15 {
    padding-left: 64.28571px;
  }
  .px-15 {
    padding-right: 64.28571px;
  }
  .py-15 {
    padding-top: 64.28571px;
    padding-bottom: 64.28571px;
  }
  .p-16 {
    padding: 68.57143px;
  }
  .pt-16 {
    padding-top: 68.57143px;
  }
  .pr-16 {
    padding-right: 68.57143px;
  }
  .pb-16 {
    padding-bottom: 68.57143px;
  }
  .pl-16,
  .px-16 {
    padding-left: 68.57143px;
  }
  .px-16 {
    padding-right: 68.57143px;
  }
  .py-16 {
    padding-top: 68.57143px;
    padding-bottom: 68.57143px;
  }
  .p-17 {
    padding: 72.85714px;
  }
  .pt-17 {
    padding-top: 72.85714px;
  }
  .pr-17 {
    padding-right: 72.85714px;
  }
  .pb-17 {
    padding-bottom: 72.85714px;
  }
  .pl-17,
  .px-17 {
    padding-left: 72.85714px;
  }
  .px-17 {
    padding-right: 72.85714px;
  }
  .py-17 {
    padding-top: 72.85714px;
    padding-bottom: 72.85714px;
  }
  .p-18 {
    padding: 77.14286px;
  }
  .pt-18 {
    padding-top: 77.14286px;
  }
  .pr-18 {
    padding-right: 77.14286px;
  }
  .pb-18 {
    padding-bottom: 77.14286px;
  }
  .pl-18,
  .px-18 {
    padding-left: 77.14286px;
  }
  .px-18 {
    padding-right: 77.14286px;
  }
  .py-18 {
    padding-top: 77.14286px;
    padding-bottom: 77.14286px;
  }
  .p-19 {
    padding: 81.42857px;
  }
  .pt-19 {
    padding-top: 81.42857px;
  }
  .pr-19 {
    padding-right: 81.42857px;
  }
  .pb-19 {
    padding-bottom: 81.42857px;
  }
  .pl-19,
  .px-19 {
    padding-left: 81.42857px;
  }
  .px-19 {
    padding-right: 81.42857px;
  }
  .py-19 {
    padding-top: 81.42857px;
    padding-bottom: 81.42857px;
  }
  .p-20 {
    padding: 85.71429px;
  }
  .pt-20 {
    padding-top: 85.71429px;
  }
  .pr-20 {
    padding-right: 85.71429px;
  }
  .pb-20 {
    padding-bottom: 85.71429px;
  }
  .pl-20,
  .px-20 {
    padding-left: 85.71429px;
  }
  .px-20 {
    padding-right: 85.71429px;
  }
  .py-20 {
    padding-top: 85.71429px;
    padding-bottom: 85.71429px;
  }
}
@media (min-width: 1601px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 9.28571px;
  }
  .pt-2 {
    padding-top: 9.28571px;
  }
  .pr-2 {
    padding-right: 9.28571px;
  }
  .pb-2 {
    padding-bottom: 9.28571px;
  }
  .pl-2,
  .px-2 {
    padding-left: 9.28571px;
  }
  .px-2 {
    padding-right: 9.28571px;
  }
  .py-2 {
    padding-top: 9.28571px;
    padding-bottom: 9.28571px;
  }
  .p-3 {
    padding: 13.92857px;
  }
  .pt-3 {
    padding-top: 13.92857px;
  }
  .pr-3 {
    padding-right: 13.92857px;
  }
  .pb-3 {
    padding-bottom: 13.92857px;
  }
  .pl-3,
  .px-3 {
    padding-left: 13.92857px;
  }
  .px-3 {
    padding-right: 13.92857px;
  }
  .py-3 {
    padding-top: 13.92857px;
    padding-bottom: 13.92857px;
  }
  .p-4 {
    padding: 18.57143px;
  }
  .pt-4 {
    padding-top: 18.57143px;
  }
  .pr-4 {
    padding-right: 18.57143px;
  }
  .pb-4 {
    padding-bottom: 18.57143px;
  }
  .pl-4,
  .px-4 {
    padding-left: 18.57143px;
  }
  .px-4 {
    padding-right: 18.57143px;
  }
  .py-4 {
    padding-top: 18.57143px;
    padding-bottom: 18.57143px;
  }
  .p-5 {
    padding: 23.21429px;
  }
  .pt-5 {
    padding-top: 23.21429px;
  }
  .pr-5 {
    padding-right: 23.21429px;
  }
  .pb-5 {
    padding-bottom: 23.21429px;
  }
  .pl-5,
  .px-5 {
    padding-left: 23.21429px;
  }
  .px-5 {
    padding-right: 23.21429px;
  }
  .py-5 {
    padding-top: 23.21429px;
    padding-bottom: 23.21429px;
  }
  .p-6 {
    padding: 27.85714px;
  }
  .pt-6 {
    padding-top: 27.85714px;
  }
  .pr-6 {
    padding-right: 27.85714px;
  }
  .pb-6 {
    padding-bottom: 27.85714px;
  }
  .pl-6,
  .px-6 {
    padding-left: 27.85714px;
  }
  .px-6 {
    padding-right: 27.85714px;
  }
  .py-6 {
    padding-top: 27.85714px;
    padding-bottom: 27.85714px;
  }
  .p-7 {
    padding: 32.5px;
  }
  .pt-7 {
    padding-top: 32.5px;
  }
  .pr-7 {
    padding-right: 32.5px;
  }
  .pb-7 {
    padding-bottom: 32.5px;
  }
  .pl-7,
  .px-7 {
    padding-left: 32.5px;
  }
  .px-7 {
    padding-right: 32.5px;
  }
  .py-7 {
    padding-top: 32.5px;
    padding-bottom: 32.5px;
  }
  .p-8 {
    padding: 37.14286px;
  }
  .pt-8 {
    padding-top: 37.14286px;
  }
  .pr-8 {
    padding-right: 37.14286px;
  }
  .pb-8 {
    padding-bottom: 37.14286px;
  }
  .pl-8,
  .px-8 {
    padding-left: 37.14286px;
  }
  .px-8 {
    padding-right: 37.14286px;
  }
  .py-8 {
    padding-top: 37.14286px;
    padding-bottom: 37.14286px;
  }
  .p-9 {
    padding: 41.78571px;
  }
  .pt-9 {
    padding-top: 41.78571px;
  }
  .pr-9 {
    padding-right: 41.78571px;
  }
  .pb-9 {
    padding-bottom: 41.78571px;
  }
  .pl-9,
  .px-9 {
    padding-left: 41.78571px;
  }
  .px-9 {
    padding-right: 41.78571px;
  }
  .py-9 {
    padding-top: 41.78571px;
    padding-bottom: 41.78571px;
  }
  .p-10 {
    padding: 46.42857px;
  }
  .pt-10 {
    padding-top: 46.42857px;
  }
  .pr-10 {
    padding-right: 46.42857px;
  }
  .pb-10 {
    padding-bottom: 46.42857px;
  }
  .pl-10,
  .px-10 {
    padding-left: 46.42857px;
  }
  .px-10 {
    padding-right: 46.42857px;
  }
  .py-10 {
    padding-top: 46.42857px;
    padding-bottom: 46.42857px;
  }
  .p-11 {
    padding: 51.07143px;
  }
  .pt-11 {
    padding-top: 51.07143px;
  }
  .pr-11 {
    padding-right: 51.07143px;
  }
  .pb-11 {
    padding-bottom: 51.07143px;
  }
  .pl-11,
  .px-11 {
    padding-left: 51.07143px;
  }
  .px-11 {
    padding-right: 51.07143px;
  }
  .py-11 {
    padding-top: 51.07143px;
    padding-bottom: 51.07143px;
  }
  .p-12 {
    padding: 55.71429px;
  }
  .pt-12 {
    padding-top: 55.71429px;
  }
  .pr-12 {
    padding-right: 55.71429px;
  }
  .pb-12 {
    padding-bottom: 55.71429px;
  }
  .pl-12,
  .px-12 {
    padding-left: 55.71429px;
  }
  .px-12 {
    padding-right: 55.71429px;
  }
  .py-12 {
    padding-top: 55.71429px;
    padding-bottom: 55.71429px;
  }
  .p-13 {
    padding: 60.35714px;
  }
  .pt-13 {
    padding-top: 60.35714px;
  }
  .pr-13 {
    padding-right: 60.35714px;
  }
  .pb-13 {
    padding-bottom: 60.35714px;
  }
  .pl-13,
  .px-13 {
    padding-left: 60.35714px;
  }
  .px-13 {
    padding-right: 60.35714px;
  }
  .py-13 {
    padding-top: 60.35714px;
    padding-bottom: 60.35714px;
  }
  .p-14 {
    padding: 65px;
  }
  .pt-14 {
    padding-top: 65px;
  }
  .pr-14 {
    padding-right: 65px;
  }
  .pb-14 {
    padding-bottom: 65px;
  }
  .pl-14,
  .px-14 {
    padding-left: 65px;
  }
  .px-14 {
    padding-right: 65px;
  }
  .py-14 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .p-15 {
    padding: 69.64286px;
  }
  .pt-15 {
    padding-top: 69.64286px;
  }
  .pr-15 {
    padding-right: 69.64286px;
  }
  .pb-15 {
    padding-bottom: 69.64286px;
  }
  .pl-15,
  .px-15 {
    padding-left: 69.64286px;
  }
  .px-15 {
    padding-right: 69.64286px;
  }
  .py-15 {
    padding-top: 69.64286px;
    padding-bottom: 69.64286px;
  }
  .p-16 {
    padding: 74.28571px;
  }
  .pt-16 {
    padding-top: 74.28571px;
  }
  .pr-16 {
    padding-right: 74.28571px;
  }
  .pb-16 {
    padding-bottom: 74.28571px;
  }
  .pl-16,
  .px-16 {
    padding-left: 74.28571px;
  }
  .px-16 {
    padding-right: 74.28571px;
  }
  .py-16 {
    padding-top: 74.28571px;
    padding-bottom: 74.28571px;
  }
  .p-17 {
    padding: 78.92857px;
  }
  .pt-17 {
    padding-top: 78.92857px;
  }
  .pr-17 {
    padding-right: 78.92857px;
  }
  .pb-17 {
    padding-bottom: 78.92857px;
  }
  .pl-17,
  .px-17 {
    padding-left: 78.92857px;
  }
  .px-17 {
    padding-right: 78.92857px;
  }
  .py-17 {
    padding-top: 78.92857px;
    padding-bottom: 78.92857px;
  }
  .p-18 {
    padding: 83.57143px;
  }
  .pt-18 {
    padding-top: 83.57143px;
  }
  .pr-18 {
    padding-right: 83.57143px;
  }
  .pb-18 {
    padding-bottom: 83.57143px;
  }
  .pl-18,
  .px-18 {
    padding-left: 83.57143px;
  }
  .px-18 {
    padding-right: 83.57143px;
  }
  .py-18 {
    padding-top: 83.57143px;
    padding-bottom: 83.57143px;
  }
  .p-19 {
    padding: 88.21429px;
  }
  .pt-19 {
    padding-top: 88.21429px;
  }
  .pr-19 {
    padding-right: 88.21429px;
  }
  .pb-19 {
    padding-bottom: 88.21429px;
  }
  .pl-19,
  .px-19 {
    padding-left: 88.21429px;
  }
  .px-19 {
    padding-right: 88.21429px;
  }
  .py-19 {
    padding-top: 88.21429px;
    padding-bottom: 88.21429px;
  }
  .p-20 {
    padding: 92.85714px;
  }
  .pt-20 {
    padding-top: 92.85714px;
  }
  .pr-20 {
    padding-right: 92.85714px;
  }
  .pb-20 {
    padding-bottom: 92.85714px;
  }
  .pl-20,
  .px-20 {
    padding-left: 92.85714px;
  }
  .px-20 {
    padding-right: 92.85714px;
  }
  .py-20 {
    padding-top: 92.85714px;
    padding-bottom: 92.85714px;
  }
}
@media (min-width: 1700px) {
  .p-1 {
    padding: 5px;
  }
  .pt-1 {
    padding-top: 5px;
  }
  .pr-1 {
    padding-right: 5px;
  }
  .pb-1 {
    padding-bottom: 5px;
  }
  .pl-1,
  .px-1 {
    padding-left: 5px;
  }
  .px-1 {
    padding-right: 5px;
  }
  .py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-2 {
    padding: 10px;
  }
  .pt-2 {
    padding-top: 10px;
  }
  .pr-2 {
    padding-right: 10px;
  }
  .pb-2 {
    padding-bottom: 10px;
  }
  .pl-2,
  .px-2 {
    padding-left: 10px;
  }
  .px-2 {
    padding-right: 10px;
  }
  .py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-3 {
    padding: 15px;
  }
  .pt-3 {
    padding-top: 15px;
  }
  .pr-3 {
    padding-right: 15px;
  }
  .pb-3 {
    padding-bottom: 15px;
  }
  .pl-3,
  .px-3 {
    padding-left: 15px;
  }
  .px-3 {
    padding-right: 15px;
  }
  .py-3 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .p-4 {
    padding: 20px;
  }
  .pt-4 {
    padding-top: 20px;
  }
  .pr-4 {
    padding-right: 20px;
  }
  .pb-4 {
    padding-bottom: 20px;
  }
  .pl-4,
  .px-4 {
    padding-left: 20px;
  }
  .px-4 {
    padding-right: 20px;
  }
  .py-4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-5 {
    padding: 25px;
  }
  .pt-5 {
    padding-top: 25px;
  }
  .pr-5 {
    padding-right: 25px;
  }
  .pb-5 {
    padding-bottom: 25px;
  }
  .pl-5,
  .px-5 {
    padding-left: 25px;
  }
  .px-5 {
    padding-right: 25px;
  }
  .py-5 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .p-6 {
    padding: 30px;
  }
  .pt-6 {
    padding-top: 30px;
  }
  .pr-6 {
    padding-right: 30px;
  }
  .pb-6 {
    padding-bottom: 30px;
  }
  .pl-6,
  .px-6 {
    padding-left: 30px;
  }
  .px-6 {
    padding-right: 30px;
  }
  .py-6 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-7 {
    padding: 35px;
  }
  .pt-7 {
    padding-top: 35px;
  }
  .pr-7 {
    padding-right: 35px;
  }
  .pb-7 {
    padding-bottom: 35px;
  }
  .pl-7,
  .px-7 {
    padding-left: 35px;
  }
  .px-7 {
    padding-right: 35px;
  }
  .py-7 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p-8 {
    padding: 40px;
  }
  .pt-8 {
    padding-top: 40px;
  }
  .pr-8 {
    padding-right: 40px;
  }
  .pb-8 {
    padding-bottom: 40px;
  }
  .pl-8,
  .px-8 {
    padding-left: 40px;
  }
  .px-8 {
    padding-right: 40px;
  }
  .py-8 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-9 {
    padding: 45px;
  }
  .pt-9 {
    padding-top: 45px;
  }
  .pr-9 {
    padding-right: 45px;
  }
  .pb-9 {
    padding-bottom: 45px;
  }
  .pl-9,
  .px-9 {
    padding-left: 45px;
  }
  .px-9 {
    padding-right: 45px;
  }
  .py-9 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .p-10 {
    padding: 50px;
  }
  .pt-10 {
    padding-top: 50px;
  }
  .pr-10 {
    padding-right: 50px;
  }
  .pb-10 {
    padding-bottom: 50px;
  }
  .pl-10,
  .px-10 {
    padding-left: 50px;
  }
  .px-10 {
    padding-right: 50px;
  }
  .py-10 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-11 {
    padding: 55px;
  }
  .pt-11 {
    padding-top: 55px;
  }
  .pr-11 {
    padding-right: 55px;
  }
  .pb-11 {
    padding-bottom: 55px;
  }
  .pl-11,
  .px-11 {
    padding-left: 55px;
  }
  .px-11 {
    padding-right: 55px;
  }
  .py-11 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .p-12 {
    padding: 60px;
  }
  .pt-12 {
    padding-top: 60px;
  }
  .pr-12 {
    padding-right: 60px;
  }
  .pb-12 {
    padding-bottom: 60px;
  }
  .pl-12,
  .px-12 {
    padding-left: 60px;
  }
  .px-12 {
    padding-right: 60px;
  }
  .py-12 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-13 {
    padding: 65px;
  }
  .pt-13 {
    padding-top: 65px;
  }
  .pr-13 {
    padding-right: 65px;
  }
  .pb-13 {
    padding-bottom: 65px;
  }
  .pl-13,
  .px-13 {
    padding-left: 65px;
  }
  .px-13 {
    padding-right: 65px;
  }
  .py-13 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .p-14 {
    padding: 70px;
  }
  .pt-14 {
    padding-top: 70px;
  }
  .pr-14 {
    padding-right: 70px;
  }
  .pb-14 {
    padding-bottom: 70px;
  }
  .pl-14,
  .px-14 {
    padding-left: 70px;
  }
  .px-14 {
    padding-right: 70px;
  }
  .py-14 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .p-15 {
    padding: 75px;
  }
  .pt-15 {
    padding-top: 75px;
  }
  .pr-15 {
    padding-right: 75px;
  }
  .pb-15 {
    padding-bottom: 75px;
  }
  .pl-15,
  .px-15 {
    padding-left: 75px;
  }
  .px-15 {
    padding-right: 75px;
  }
  .py-15 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .p-16 {
    padding: 80px;
  }
  .pt-16 {
    padding-top: 80px;
  }
  .pr-16 {
    padding-right: 80px;
  }
  .pb-16 {
    padding-bottom: 80px;
  }
  .pl-16,
  .px-16 {
    padding-left: 80px;
  }
  .px-16 {
    padding-right: 80px;
  }
  .py-16 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-17 {
    padding: 85px;
  }
  .pt-17 {
    padding-top: 85px;
  }
  .pr-17 {
    padding-right: 85px;
  }
  .pb-17 {
    padding-bottom: 85px;
  }
  .pl-17,
  .px-17 {
    padding-left: 85px;
  }
  .px-17 {
    padding-right: 85px;
  }
  .py-17 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .p-18 {
    padding: 90px;
  }
  .pt-18 {
    padding-top: 90px;
  }
  .pr-18 {
    padding-right: 90px;
  }
  .pb-18 {
    padding-bottom: 90px;
  }
  .pl-18,
  .px-18 {
    padding-left: 90px;
  }
  .px-18 {
    padding-right: 90px;
  }
  .py-18 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-19 {
    padding: 95px;
  }
  .pt-19 {
    padding-top: 95px;
  }
  .pr-19 {
    padding-right: 95px;
  }
  .pb-19 {
    padding-bottom: 95px;
  }
  .pl-19,
  .px-19 {
    padding-left: 95px;
  }
  .px-19 {
    padding-right: 95px;
  }
  .py-19 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .p-20 {
    padding: 100px;
  }
  .pt-20 {
    padding-top: 100px;
  }
  .pr-20 {
    padding-right: 100px;
  }
  .pb-20 {
    padding-bottom: 100px;
  }
  .pl-20,
  .px-20 {
    padding-left: 100px;
  }
  .px-20 {
    padding-right: 100px;
  }
  .py-20 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-bold {
  font-weight: 700;
}
@media (min-width: 768px) {
  .text-left-xs-up {
    text-align: left;
  }
  .text-right-xs-up {
    text-align: right;
  }
  .text-center-xs-up {
    text-align: center;
  }
  .text-justify-xs-up {
    text-align: justify;
  }
  .text-bold-xs-up {
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .text-left-xs-only {
    text-align: left;
  }
  .text-right-xs-only {
    text-align: right;
  }
  .text-center-xs-only {
    text-align: center;
  }
  .text-justify-xs-only {
    text-align: justify;
  }
  .text-bold-xs-only {
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .text-left-sm-up {
    text-align: left;
  }
  .text-right-sm-up {
    text-align: right;
  }
  .text-center-sm-up {
    text-align: center;
  }
  .text-justify-sm-up {
    text-align: justify;
  }
  .text-bold-sm-up {
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .text-left-sm-down {
    text-align: left;
  }
  .text-right-sm-down {
    text-align: right;
  }
  .text-center-sm-down {
    text-align: center;
  }
  .text-justify-sm-down {
    text-align: justify;
  }
  .text-bold-sm-down {
    font-weight: 700;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-left-sm-only {
    text-align: left;
  }
  .text-right-sm-only {
    text-align: right;
  }
  .text-center-sm-only {
    text-align: center;
  }
  .text-justify-sm-only {
    text-align: justify;
  }
  .text-bold-sm-only {
    font-weight: 700;
  }
}
@media (min-width: 1025px) {
  .text-left-md-up {
    text-align: left;
  }
  .text-right-md-up {
    text-align: right;
  }
  .text-center-md-up {
    text-align: center;
  }
  .text-justify-md-up {
    text-align: justify;
  }
  .text-bold-md-up {
    font-weight: 700;
  }
}
@media (max-width: 991px) {
  .text-left-md-down {
    text-align: left;
  }
  .text-right-md-down {
    text-align: right;
  }
  .text-center-md-down {
    text-align: center;
  }
  .text-justify-md-down {
    text-align: justify;
  }
  .text-bold-md-down {
    font-weight: 700;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .text-left-md-only {
    text-align: left;
  }
  .text-right-md-only {
    text-align: right;
  }
  .text-center-md-only {
    text-align: center;
  }
  .text-justify-md-only {
    text-align: justify;
  }
  .text-bold-md-only {
    font-weight: 700;
  }
}
@media (min-width: 1290px) {
  .text-left-mmd-up {
    text-align: left;
  }
  .text-right-mmd-up {
    text-align: right;
  }
  .text-center-mmd-up {
    text-align: center;
  }
  .text-justify-mmd-up {
    text-align: justify;
  }
  .text-bold-mmd-up {
    font-weight: 700;
  }
}
@media (max-width: 1024px) {
  .text-left-mmd-down {
    text-align: left;
  }
  .text-right-mmd-down {
    text-align: right;
  }
  .text-center-mmd-down {
    text-align: center;
  }
  .text-justify-mmd-down {
    text-align: justify;
  }
  .text-bold-mmd-down {
    font-weight: 700;
  }
}
@media (min-width: 1025px) and (max-width: 1289px) {
  .text-left-mmd-only {
    text-align: left;
  }
  .text-right-mmd-only {
    text-align: right;
  }
  .text-center-mmd-only {
    text-align: center;
  }
  .text-justify-mmd-only {
    text-align: justify;
  }
  .text-bold-mmd-only {
    font-weight: 700;
  }
}
@media (min-width: 1367px) {
  .text-left-mmmd-up {
    text-align: left;
  }
  .text-right-mmmd-up {
    text-align: right;
  }
  .text-center-mmmd-up {
    text-align: center;
  }
  .text-justify-mmmd-up {
    text-align: justify;
  }
  .text-bold-mmmd-up {
    font-weight: 700;
  }
}
@media (max-width: 1289px) {
  .text-left-mmmd-down {
    text-align: left;
  }
  .text-right-mmmd-down {
    text-align: right;
  }
  .text-center-mmmd-down {
    text-align: center;
  }
  .text-justify-mmmd-down {
    text-align: justify;
  }
  .text-bold-mmmd-down {
    font-weight: 700;
  }
}
@media (min-width: 1290px) and (max-width: 1366px) {
  .text-left-mmmd-only {
    text-align: left;
  }
  .text-right-mmmd-only {
    text-align: right;
  }
  .text-center-mmmd-only {
    text-align: center;
  }
  .text-justify-mmmd-only {
    text-align: justify;
  }
  .text-bold-mmmd-only {
    font-weight: 700;
  }
}
@media (min-width: 1601px) {
  .text-left-lg-up {
    text-align: left;
  }
  .text-right-lg-up {
    text-align: right;
  }
  .text-center-lg-up {
    text-align: center;
  }
  .text-justify-lg-up {
    text-align: justify;
  }
  .text-bold-lg-up {
    font-weight: 700;
  }
}
@media (max-width: 1366px) {
  .text-left-lg-down {
    text-align: left;
  }
  .text-right-lg-down {
    text-align: right;
  }
  .text-center-lg-down {
    text-align: center;
  }
  .text-justify-lg-down {
    text-align: justify;
  }
  .text-bold-lg-down {
    font-weight: 700;
  }
}
@media (min-width: 1367px) and (max-width: 1600px) {
  .text-left-lg-only {
    text-align: left;
  }
  .text-right-lg-only {
    text-align: right;
  }
  .text-center-lg-only {
    text-align: center;
  }
  .text-justify-lg-only {
    text-align: justify;
  }
  .text-bold-lg-only {
    font-weight: 700;
  }
}
@media (min-width: 1700px) {
  .text-left-llg-up {
    text-align: left;
  }
  .text-right-llg-up {
    text-align: right;
  }
  .text-center-llg-up {
    text-align: center;
  }
  .text-justify-llg-up {
    text-align: justify;
  }
  .text-bold-llg-up {
    font-weight: 700;
  }
}
@media (max-width: 1600px) {
  .text-left-llg-down {
    text-align: left;
  }
  .text-right-llg-down {
    text-align: right;
  }
  .text-center-llg-down {
    text-align: center;
  }
  .text-justify-llg-down {
    text-align: justify;
  }
  .text-bold-llg-down {
    font-weight: 700;
  }
}
@media (min-width: 1601px) and (max-width: 1699px) {
  .text-left-llg-only {
    text-align: left;
  }
  .text-right-llg-only {
    text-align: right;
  }
  .text-center-llg-only {
    text-align: center;
  }
  .text-justify-llg-only {
    text-align: justify;
  }
  .text-bold-llg-only {
    font-weight: 700;
  }
}
@media (max-width: 1699px) {
  .text-left-longg-down {
    text-align: left;
  }
  .text-right-longg-down {
    text-align: right;
  }
  .text-center-longg-down {
    text-align: center;
  }
  .text-justify-longg-down {
    text-align: justify;
  }
  .text-bold-longg-down {
    font-weight: 700;
  }
}
@media (min-width: 1700px) {
  .text-left-longg-only {
    text-align: left;
  }
  .text-right-longg-only {
    text-align: right;
  }
  .text-center-longg-only {
    text-align: center;
  }
  .text-justify-longg-only {
    text-align: justify;
  }
  .text-bold-longg-only {
    font-weight: 700;
  }
}
.hidden {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-xs-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs-only {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm-only {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hidden-md-only {
    display: none !important;
  }
}
@media (min-width: 1290px) {
  .hidden-mmd-up {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hidden-mmd-down {
    display: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1289px) {
  .hidden-mmd-only {
    display: none !important;
  }
}
@media (min-width: 1367px) {
  .hidden-mmmd-up {
    display: none !important;
  }
}
@media (max-width: 1289px) {
  .hidden-mmmd-down {
    display: none !important;
  }
}
@media (min-width: 1290px) and (max-width: 1366px) {
  .hidden-mmmd-only {
    display: none !important;
  }
}
@media (min-width: 1601px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (max-width: 1366px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 1367px) and (max-width: 1600px) {
  .hidden-lg-only {
    display: none !important;
  }
}
@media (min-width: 1700px) {
  .hidden-llg-up {
    display: none !important;
  }
}
@media (max-width: 1600px) {
  .hidden-llg-down {
    display: none !important;
  }
}
@media (min-width: 1601px) and (max-width: 1699px) {
  .hidden-llg-only {
    display: none !important;
  }
}
@media (max-width: 1699px) {
  .hidden-longg-down {
    display: none !important;
  }
}
@media (min-width: 1700px) {
  .hidden-longg-only {
    display: none !important;
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.justify-content-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.align-items-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.align-content-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.align-content-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.align-content-center {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.align-content-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.align-content-around {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.align-content-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.align-self-start {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.align-self-end {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
}
.align-self-center {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.align-self-baseline {
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.align-self-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -moz-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -moz-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -moz-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -moz-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -moz-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -moz-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -moz-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  -moz-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  -moz-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}
@media (min-width: 768px) {
  .flex-xs-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-xs-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-xs-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-xs-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-xs-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-xs-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-xs-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-xs-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-xs-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-xs-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-xs-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-xs-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-xs-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-xs-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-xs-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-xs-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-xs-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-xs-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-xs-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-xs-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-xs-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-xs-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-xs-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-xs-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-xs-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-xs-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-xs-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-xs-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-xs-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-xs-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-xs-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-xs-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-xs-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-xs-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-xs-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-xs-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-xs-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-xs-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-xs-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-xs-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-xs-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-xs-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-xs-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 767px) {
  .flex-xs-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-xs-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-xs-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-xs-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-xs-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-xs-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-xs-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-xs-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-xs-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-xs-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-xs-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-xs-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-xs-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-xs-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-xs-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-xs-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-xs-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-xs-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-xs-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-xs-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-xs-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-xs-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-xs-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-xs-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-xs-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-xs-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-xs-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-xs-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-xs-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-xs-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-xs-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-xs-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-xs-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-xs-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-xs-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-xs-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-xs-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-xs-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-xs-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-xs-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-xs-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-xs-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-xs-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 992px) {
  .flex-sm-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-sm-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-sm-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-sm-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-sm-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-sm-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-sm-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-sm-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-sm-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-sm-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-sm-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-sm-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-sm-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-sm-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-sm-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-sm-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-sm-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-sm-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-sm-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-sm-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-sm-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-sm-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-sm-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-sm-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-sm-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-sm-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-sm-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-sm-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-sm-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-sm-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-sm-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-sm-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-sm-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-sm-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-sm-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-sm-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-sm-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-sm-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-sm-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-sm-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-sm-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-sm-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-sm-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 767px) {
  .flex-sm-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-sm-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-sm-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-sm-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-sm-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-sm-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-sm-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-sm-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-sm-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-sm-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-sm-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-sm-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-sm-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-sm-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-sm-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-sm-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-sm-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-sm-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-sm-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-sm-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-sm-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-sm-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-sm-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-sm-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-sm-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-sm-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-sm-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-sm-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-sm-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-sm-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-sm-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-sm-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-sm-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-sm-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-sm-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-sm-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-sm-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-sm-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-sm-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-sm-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-sm-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-sm-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-sm-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .flex-sm-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-sm-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-sm-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-sm-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-sm-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-sm-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-sm-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-sm-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-sm-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-sm-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-sm-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-sm-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-sm-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-sm-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-sm-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-sm-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-sm-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-sm-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-sm-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-sm-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-sm-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-sm-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-sm-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-sm-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-sm-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-sm-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-sm-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-sm-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-sm-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-sm-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-sm-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-sm-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-sm-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-sm-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-sm-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-sm-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-sm-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-sm-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-sm-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-sm-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-sm-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-sm-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-sm-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1025px) {
  .flex-md-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-md-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-md-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-md-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-md-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-md-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-md-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-md-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-md-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-md-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-md-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-md-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-md-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-md-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-md-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-md-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-md-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-md-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-md-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-md-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-md-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-md-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-md-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-md-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-md-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-md-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-md-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-md-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-md-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-md-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-md-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-md-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-md-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-md-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-md-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-md-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-md-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-md-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-md-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-md-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-md-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-md-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-md-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 991px) {
  .flex-md-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-md-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-md-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-md-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-md-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-md-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-md-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-md-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-md-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-md-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-md-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-md-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-md-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-md-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-md-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-md-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-md-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-md-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-md-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-md-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-md-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-md-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-md-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-md-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-md-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-md-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-md-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-md-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-md-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-md-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-md-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-md-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-md-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-md-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-md-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-md-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-md-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-md-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-md-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-md-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-md-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-md-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-md-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .flex-md-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-md-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-md-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-md-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-md-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-md-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-md-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-md-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-md-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-md-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-md-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-md-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-md-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-md-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-md-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-md-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-md-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-md-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-md-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-md-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-md-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-md-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-md-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-md-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-md-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-md-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-md-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-md-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-md-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-md-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-md-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-md-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-md-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-md-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-md-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-md-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-md-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-md-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-md-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-md-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-md-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-md-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-md-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1290px) {
  .flex-mmd-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmd-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmd-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmd-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmd-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmd-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmd-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmd-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmd-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmd-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmd-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmd-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmd-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmd-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmd-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmd-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmd-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmd-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmd-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmd-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmd-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmd-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmd-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmd-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmd-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmd-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmd-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmd-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmd-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmd-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmd-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmd-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmd-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmd-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmd-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmd-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmd-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmd-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmd-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmd-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmd-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmd-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmd-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 1024px) {
  .flex-mmd-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmd-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmd-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmd-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmd-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmd-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmd-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmd-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmd-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmd-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmd-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmd-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmd-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmd-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmd-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmd-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmd-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmd-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmd-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmd-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmd-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmd-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmd-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmd-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmd-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmd-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmd-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmd-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmd-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmd-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmd-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmd-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmd-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmd-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmd-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmd-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmd-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmd-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmd-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmd-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmd-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmd-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmd-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1025px) and (max-width: 1289px) {
  .flex-mmd-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmd-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmd-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmd-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmd-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmd-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmd-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmd-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmd-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmd-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmd-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmd-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmd-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmd-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmd-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmd-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmd-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmd-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmd-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmd-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmd-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmd-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmd-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmd-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmd-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmd-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmd-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmd-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmd-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmd-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmd-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmd-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmd-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmd-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmd-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmd-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmd-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmd-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmd-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmd-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmd-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmd-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmd-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1367px) {
  .flex-mmmd-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmmd-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmmd-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmmd-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmmd-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmmd-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmmd-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmmd-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmmd-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmmd-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmmd-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmmd-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmmd-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmmd-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmmd-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmmd-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmmd-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmmd-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmmd-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmmd-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmmd-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmmd-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmmd-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmmd-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmmd-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmmd-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmmd-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmmd-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmmd-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmmd-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmmd-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmmd-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmmd-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmmd-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmmd-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmmd-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmmd-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmmd-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmmd-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmmd-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmmd-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmmd-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmmd-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 1289px) {
  .flex-mmmd-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmmd-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmmd-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmmd-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmmd-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmmd-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmmd-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmmd-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmmd-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmmd-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmmd-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmmd-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmmd-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmmd-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmmd-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmmd-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmmd-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmmd-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmmd-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmmd-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmmd-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmmd-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmmd-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmmd-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmmd-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmmd-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmmd-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmmd-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmmd-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmmd-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmmd-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmmd-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmmd-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmmd-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmmd-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmmd-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmmd-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmmd-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmmd-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmmd-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmmd-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmmd-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmmd-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1290px) and (max-width: 1366px) {
  .flex-mmmd-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-mmmd-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-mmmd-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-mmmd-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-mmmd-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-mmmd-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-mmmd-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-mmmd-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-mmmd-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-mmmd-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-mmmd-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-mmmd-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-mmmd-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-mmmd-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-mmmd-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-mmmd-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-mmmd-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-mmmd-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-mmmd-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-mmmd-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-mmmd-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-mmmd-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-mmmd-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-mmmd-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-mmmd-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-mmmd-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-mmmd-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-mmmd-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-mmmd-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-mmmd-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-mmmd-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-mmmd-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-mmmd-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-mmmd-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-mmmd-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-mmmd-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-mmmd-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-mmmd-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-mmmd-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-mmmd-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-mmmd-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-mmmd-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-mmmd-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1601px) {
  .flex-lg-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-lg-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-lg-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-lg-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-lg-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-lg-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-lg-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-lg-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-lg-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-lg-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-lg-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-lg-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-lg-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-lg-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-lg-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-lg-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-lg-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-lg-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-lg-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-lg-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-lg-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-lg-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-lg-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-lg-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-lg-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-lg-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-lg-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-lg-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-lg-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-lg-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-lg-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-lg-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-lg-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-lg-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-lg-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-lg-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-lg-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-lg-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-lg-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-lg-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-lg-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-lg-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-lg-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 1366px) {
  .flex-lg-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-lg-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-lg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-lg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-lg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-lg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-lg-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-lg-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-lg-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-lg-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-lg-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-lg-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-lg-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-lg-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-lg-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-lg-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-lg-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-lg-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-lg-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-lg-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-lg-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-lg-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-lg-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-lg-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-lg-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-lg-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-lg-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-lg-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-lg-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-lg-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-lg-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-lg-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-lg-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-lg-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-lg-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-lg-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-lg-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-lg-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-lg-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-lg-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-lg-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-lg-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-lg-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1367px) and (max-width: 1600px) {
  .flex-lg-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-lg-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-lg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-lg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-lg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-lg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-lg-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-lg-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-lg-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-lg-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-lg-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-lg-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-lg-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-lg-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-lg-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-lg-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-lg-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-lg-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-lg-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-lg-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-lg-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-lg-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-lg-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-lg-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-lg-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-lg-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-lg-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-lg-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-lg-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-lg-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-lg-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-lg-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-lg-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-lg-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-lg-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-lg-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-lg-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-lg-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-lg-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-lg-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-lg-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-lg-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-lg-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1700px) {
  .flex-llg-up {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-llg-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-llg-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-llg-up {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-llg-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-llg-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-llg-up {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-llg-up {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-llg-up {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-llg-up {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-llg-up {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-llg-up {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-llg-up {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-llg-up {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-llg-up {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-llg-up {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-llg-up {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-llg-up {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-llg-up {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-llg-up {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-llg-up {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-llg-up {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-llg-up {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-llg-up {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-llg-up {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-llg-up {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-llg-up {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-llg-up {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-llg-up {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-llg-up {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-llg-up {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-llg-up {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-llg-up {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-llg-up {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-llg-up {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-llg-up {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-llg-up {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-llg-up {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-llg-up {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-llg-up {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-llg-up {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-llg-up {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-llg-up {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 1600px) {
  .flex-llg-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-llg-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-llg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-llg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-llg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-llg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-llg-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-llg-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-llg-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-llg-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-llg-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-llg-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-llg-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-llg-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-llg-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-llg-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-llg-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-llg-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-llg-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-llg-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-llg-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-llg-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-llg-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-llg-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-llg-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-llg-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-llg-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-llg-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-llg-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-llg-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-llg-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-llg-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-llg-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-llg-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-llg-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-llg-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-llg-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-llg-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-llg-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-llg-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-llg-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-llg-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-llg-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1601px) and (max-width: 1699px) {
  .flex-llg-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-llg-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-llg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-llg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-llg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-llg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-llg-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-llg-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-llg-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-llg-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-llg-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-llg-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-llg-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-llg-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-llg-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-llg-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-llg-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-llg-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-llg-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-llg-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-llg-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-llg-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-llg-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-llg-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-llg-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-llg-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-llg-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-llg-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-llg-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-llg-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-llg-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-llg-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-llg-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-llg-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-llg-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-llg-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-llg-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-llg-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-llg-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-llg-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-llg-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-llg-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-llg-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (max-width: 1699px) {
  .flex-longg-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-longg-down {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-longg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-longg-down {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-longg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-longg-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-longg-down {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-longg-down {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-longg-down {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-longg-down {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-longg-down {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-longg-down {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-longg-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-longg-down {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-longg-down {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-longg-down {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-longg-down {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-longg-down {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-longg-down {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-longg-down {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-longg-down {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-longg-down {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-longg-down {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-longg-down {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-longg-down {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-longg-down {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-longg-down {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-longg-down {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-longg-down {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-longg-down {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-longg-down {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-longg-down {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-longg-down {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-longg-down {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-longg-down {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-longg-down {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-longg-down {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-longg-down {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-longg-down {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-longg-down {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-longg-down {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-longg-down {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-longg-down {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1700px) {
  .flex-longg-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-inline-longg-only {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-row-longg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-longg-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-longg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-reverse-longg-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-nowrap-longg-only {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-wrap-longg-only {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-wrap-reverse-longg-only {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .justify-content-start-longg-only {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-end-longg-only {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-center-longg-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-between-longg-only {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around-longg-only {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-start-longg-only {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-end-longg-only {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-center-longg-only {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-baseline-longg-only {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-stretch-longg-only {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-start-longg-only {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-end-longg-only {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-center-longg-only {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-between-longg-only {
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-around-longg-only {
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-stretch-longg-only {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-start-longg-only {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-self-end-longg-only {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
  }
  .align-self-center-longg-only {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-baseline-longg-only {
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-stretch-longg-only {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .order-0-longg-only {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1-longg-only {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-longg-only {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3-longg-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4-longg-only {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5-longg-only {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -moz-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6-longg-only {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -moz-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7-longg-only {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8-longg-only {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -moz-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9-longg-only {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -moz-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10-longg-only {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11-longg-only {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -moz-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12-longg-only {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -moz-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
body {
  font-family: PingFang SC, Microsoft YaHei;
  line-height: 1.6;
  position: relative;
  color: #221f1f;
  background-color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.comp-root {
  overflow-x: hidden;
}
.pdl {
  padding-left: 160px;
}
@media (max-width: 1699px) {
  .pdl {
    padding-left: 144.28571px;
  }
}
@media (max-width: 1600px) {
  .pdl {
    padding-left: 128.57143px;
  }
}
@media (max-width: 1366px) {
  .pdl {
    padding-left: 112.85714px;
  }
}
@media (max-width: 1289px) {
  .pdl {
    padding-left: 97.14286px;
  }
}
@media (max-width: 1024px) {
  .pdl {
    padding-left: 81.42857px;
  }
}
@media (max-width: 991px) {
  .pdl {
    padding-left: 65.71429px;
  }
}
@media (max-width: 767px) {
  .pdl {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pdl {
    padding-left: 0;
  }
}
.mycontainer {
  max-width: 1520px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1699px) {
  .mycontainer {
    padding-left: 105.71429px;
  }
}
@media (max-width: 1600px) {
  .mycontainer {
    padding-left: 91.42857px;
  }
}
@media (max-width: 1366px) {
  .mycontainer {
    padding-left: 77.14286px;
  }
}
@media (max-width: 1289px) {
  .mycontainer {
    padding-left: 62.85714px;
  }
}
@media (max-width: 1024px) {
  .mycontainer {
    padding-left: 48.57143px;
  }
}
@media (max-width: 991px) {
  .mycontainer {
    padding-left: 34.28571px;
  }
}
@media (max-width: 767px) {
  .mycontainer {
    padding-left: 20px;
  }
}
@media (max-width: 1699px) {
  .mycontainer {
    padding-right: 105.71429px;
  }
}
@media (max-width: 1600px) {
  .mycontainer {
    padding-right: 91.42857px;
  }
}
@media (max-width: 1366px) {
  .mycontainer {
    padding-right: 77.14286px;
  }
}
@media (max-width: 1289px) {
  .mycontainer {
    padding-right: 62.85714px;
  }
}
@media (max-width: 1024px) {
  .mycontainer {
    padding-right: 48.57143px;
  }
}
@media (max-width: 991px) {
  .mycontainer {
    padding-right: 34.28571px;
  }
}
@media (max-width: 767px) {
  .mycontainer {
    padding-right: 20px;
  }
}
.common-btn {
  display: inline-block;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: #ff7800;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  padding: 10px 50px;
}
@media (max-width: 1699px) {
  .common-btn {
    font-size: 15.71429px;
  }
}
@media (max-width: 1600px) {
  .common-btn {
    font-size: 15.42857px;
  }
}
@media (max-width: 1366px) {
  .common-btn {
    font-size: 15.14286px;
  }
}
@media (max-width: 1289px) {
  .common-btn {
    font-size: 14.85714px;
  }
}
@media (max-width: 1024px) {
  .common-btn {
    font-size: 14.57143px;
  }
}
@media (max-width: 991px) {
  .common-btn {
    font-size: 14.28571px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 14px;
  }
}
@media (max-width: 1699px) {
  .common-btn {
    padding-top: 9.28571px;
  }
}
@media (max-width: 1600px) {
  .common-btn {
    padding-top: 8.57143px;
  }
}
@media (max-width: 1366px) {
  .common-btn {
    padding-top: 7.85714px;
  }
}
@media (max-width: 1289px) {
  .common-btn {
    padding-top: 7.14286px;
  }
}
@media (max-width: 1024px) {
  .common-btn {
    padding-top: 6.42857px;
  }
}
@media (max-width: 991px) {
  .common-btn {
    padding-top: 5.71429px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    padding-top: 5px;
  }
}
@media (max-width: 1699px) {
  .common-btn {
    padding-bottom: 9.28571px;
  }
}
@media (max-width: 1600px) {
  .common-btn {
    padding-bottom: 8.57143px;
  }
}
@media (max-width: 1366px) {
  .common-btn {
    padding-bottom: 7.85714px;
  }
}
@media (max-width: 1289px) {
  .common-btn {
    padding-bottom: 7.14286px;
  }
}
@media (max-width: 1024px) {
  .common-btn {
    padding-bottom: 6.42857px;
  }
}
@media (max-width: 991px) {
  .common-btn {
    padding-bottom: 5.71429px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    padding-bottom: 5px;
  }
}
@media (max-width: 1699px) {
  .common-btn {
    padding-left: 46.42857px;
  }
}
@media (max-width: 1600px) {
  .common-btn {
    padding-left: 42.85714px;
  }
}
@media (max-width: 1366px) {
  .common-btn {
    padding-left: 39.28571px;
  }
}
@media (max-width: 1289px) {
  .common-btn {
    padding-left: 35.71429px;
  }
}
@media (max-width: 1024px) {
  .common-btn {
    padding-left: 32.14286px;
  }
}
@media (max-width: 991px) {
  .common-btn {
    padding-left: 28.57143px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    padding-left: 25px;
  }
}
@media (max-width: 1699px) {
  .common-btn {
    padding-right: 46.42857px;
  }
}
@media (max-width: 1600px) {
  .common-btn {
    padding-right: 42.85714px;
  }
}
@media (max-width: 1366px) {
  .common-btn {
    padding-right: 39.28571px;
  }
}
@media (max-width: 1289px) {
  .common-btn {
    padding-right: 35.71429px;
  }
}
@media (max-width: 1024px) {
  .common-btn {
    padding-right: 32.14286px;
  }
}
@media (max-width: 991px) {
  .common-btn {
    padding-right: 28.57143px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    padding-right: 25px;
  }
}
.common-btn:hover {
  background-color: #ff9f22;
}
.common-btn.light {
  background-color: #ff9f22;
}
.common-btn.light:hover {
  background-color: #ff7800;
}
.common-btn.gray {
  background-color: #3d3a39;
}
.common-btn.gray:hover {
  background-color: #ff9f22;
}
.haszw-img {
  position: relative;
  overflow: hidden;
}
.haszw-img img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
.haszw-img a,
.haszw-img b {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: 50%;
  -moz-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.fancybox-bg {
  background: #000;
}
.common-ny-nav {
  position: relative;
}
.common-ny-nav .ny-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav {
    padding-top: 18.42857px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav {
    padding-top: 16.85714px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav {
    padding-top: 15.28571px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav {
    padding-top: 13.71429px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav {
    padding-top: 12.14286px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav {
    padding-top: 10.57143px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav {
    padding-top: 9px;
  }
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 18.28571px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 16.57143px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 14.85714px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 13.14286px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 11.42857px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 9.71429px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav {
    padding-bottom: 8px;
  }
}
.common-ny-nav .ny-nav .mycontainer {
  line-height: 48px;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 45.14286px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 42.28571px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 39.42857px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 36.57143px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 33.71429px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 30.85714px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer {
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer {
    padding-right: 10px;
  }
}
.common-ny-nav .ny-nav .mycontainer .crumbs {
  white-space: nowrap;
  font-size: 16px;
  float: right;
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 15.42857px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 14.85714px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 14.28571px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 13.71429px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 13.14286px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 12.57143px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    float: none;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    margin-bottom: 7px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs {
    line-height: 1.2;
  }
}
.common-ny-nav .ny-nav .mycontainer .crumbs a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.common-ny-nav .ny-nav .mycontainer .crumbs a:hover {
  color: #ff7800;
}
.common-ny-nav .ny-nav .mycontainer .crumbs a:last-child {
  color: #ff7800;
}
.common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
  font-size: 16px;
  margin-left: 5px;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 15.42857px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 14.85714px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 14.28571px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 13.71429px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 13.14286px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 12.57143px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .crumbs .iconfont {
    font-size: 12px;
  }
}
.common-ny-nav .ny-nav .mycontainer .nav {
  float: left;
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .nav {
    float: none;
  }
}
.common-ny-nav .ny-nav .mycontainer .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-x: auto;
}
.common-ny-nav .ny-nav .mycontainer .nav ul li {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  float: left;
}
.common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 17.85714px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 15.71429px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 13.57143px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 11.42857px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 9.28571px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 7.14286px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li:not(:last-child) {
    margin-right: 5px;
  }
}
.common-ny-nav .ny-nav .mycontainer .nav ul li.active a {
  border: 1px solid #ff7800;
  background-color: #ff7800;
  color: #fff;
}
.common-ny-nav .ny-nav .mycontainer .nav ul li a {
  border: 1px solid #231f20;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 15.71429px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 15.42857px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 15.14286px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 14.85714px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 14.57143px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 14.28571px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 27.85714px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 25.71429px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 23.57143px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 21.42857px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 19.28571px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 17.14286px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-left: 15px;
  }
}
@media (max-width: 1699px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 27.85714px;
  }
}
@media (max-width: 1600px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 25.71429px;
  }
}
@media (max-width: 1366px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 23.57143px;
  }
}
@media (max-width: 1289px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 21.42857px;
  }
}
@media (max-width: 1024px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 19.28571px;
  }
}
@media (max-width: 991px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 17.14286px;
  }
}
@media (max-width: 767px) {
  .common-ny-nav .ny-nav .mycontainer .nav ul li a {
    padding-right: 15px;
  }
}
.common-ny-nav .ny-nav .mycontainer .nav ul li a:hover {
  border: 1px solid #ff7800;
  color: #ff7800;
}
.common-ny-nav .ny-nav .mycontainer .nav ul li a.active {
  border: 1px solid #ff7800;
  background-color: #ff7800;
  color: #fff;
}
.common-ny-nav.fixed .ny-nav {
  position: fixed;
}
@media (max-width: 767px) {
  .common-ny-nav.fixed .ny-nav {
    padding-left: 40px;
  }
}
.common-title {
  font-size: 32px;
  padding-top: 110px;
  padding-bottom: 70px;
}
@media (max-width: 1699px) {
  .common-title {
    font-size: 30.57143px;
  }
}
@media (max-width: 1600px) {
  .common-title {
    font-size: 29.14286px;
  }
}
@media (max-width: 1366px) {
  .common-title {
    font-size: 27.71429px;
  }
}
@media (max-width: 1289px) {
  .common-title {
    font-size: 26.28571px;
  }
}
@media (max-width: 1024px) {
  .common-title {
    font-size: 24.85714px;
  }
}
@media (max-width: 991px) {
  .common-title {
    font-size: 23.42857px;
  }
}
@media (max-width: 767px) {
  .common-title {
    font-size: 22px;
  }
}
@media (max-width: 1699px) {
  .common-title {
    padding-top: 100px;
  }
}
@media (max-width: 1600px) {
  .common-title {
    padding-top: 90px;
  }
}
@media (max-width: 1366px) {
  .common-title {
    padding-top: 80px;
  }
}
@media (max-width: 1289px) {
  .common-title {
    padding-top: 70px;
  }
}
@media (max-width: 1024px) {
  .common-title {
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  .common-title {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .common-title {
    padding-top: 40px;
  }
}
@media (max-width: 1699px) {
  .common-title {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 1600px) {
  .common-title {
    padding-bottom: 55.71429px;
  }
}
@media (max-width: 1366px) {
  .common-title {
    padding-bottom: 48.57143px;
  }
}
@media (max-width: 1289px) {
  .common-title {
    padding-bottom: 41.42857px;
  }
}
@media (max-width: 1024px) {
  .common-title {
    padding-bottom: 34.28571px;
  }
}
@media (max-width: 991px) {
  .common-title {
    padding-bottom: 27.14286px;
  }
}
@media (max-width: 767px) {
  .common-title {
    padding-bottom: 20px;
  }
}
.common-title.white {
  color: #fff;
}
.pro-common-intro {
  background-color: #edecec;
  position: relative;
}
.pro-common-intro .bg-canvas {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.pro-common-intro .bg-canvas canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
  touch-callout: none;
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
  transform: translateY(40%);
}
.pro-common-intro .cont {
  position: relative;
  z-index: 1;
}
.pro-common-intro .cont .left {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 55%;
  padding-left: 120px;
  padding-right: 160px;
  padding-bottom: 250px;
}
@media (max-width: 991px) {
  .pro-common-intro .cont .left {
    float: none;
    width: 100%;
  }
}
@media (max-width: 1699px) {
  .pro-common-intro .cont .left {
    padding-left: 105.71429px;
  }
}
@media (max-width: 1600px) {
  .pro-common-intro .cont .left {
    padding-left: 91.42857px;
  }
}
@media (max-width: 1366px) {
  .pro-common-intro .cont .left {
    padding-left: 77.14286px;
  }
}
@media (max-width: 1289px) {
  .pro-common-intro .cont .left {
    padding-left: 62.85714px;
  }
}
@media (max-width: 1024px) {
  .pro-common-intro .cont .left {
    padding-left: 48.57143px;
  }
}
@media (max-width: 991px) {
  .pro-common-intro .cont .left {
    padding-left: 34.28571px;
  }
}
@media (max-width: 767px) {
  .pro-common-intro .cont .left {
    padding-left: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-intro .cont .left {
    padding-right: 140px;
  }
}
@media (max-width: 1600px) {
  .pro-common-intro .cont .left {
    padding-right: 120px;
  }
}
@media (max-width: 1366px) {
  .pro-common-intro .cont .left {
    padding-right: 100px;
  }
}
@media (max-width: 1289px) {
  .pro-common-intro .cont .left {
    padding-right: 80px;
  }
}
@media (max-width: 1024px) {
  .pro-common-intro .cont .left {
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .pro-common-intro .cont .left {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .pro-common-intro .cont .left {
    padding-right: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-intro .cont .left {
    padding-bottom: 228.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-intro .cont .left {
    padding-bottom: 207.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-intro .cont .left {
    padding-bottom: 185.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-intro .cont .left {
    padding-bottom: 164.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-intro .cont .left {
    padding-bottom: 142.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-intro .cont .left {
    padding-bottom: 121.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-intro .cont .left {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .pro-common-intro .cont .left {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1699px) {
  .pro-common-intro .cont .left {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1600px) {
  .pro-common-intro .cont .left {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1366px) {
  .pro-common-intro .cont .left {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1289px) {
  .pro-common-intro .cont .left {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .pro-common-intro .cont .left {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 991px) {
  .pro-common-intro .cont .left {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .pro-common-intro .cont .left {
    padding-bottom: 50px;
  }
}
.pro-common-intro .cont .left .desc p:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1699px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 23.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 22.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 20.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 19.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 17.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 16.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-intro .cont .left .desc p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.pro-common-intro .cont .right {
  display: block;
  float: right;
  width: 45%;
}
@media (max-width: 991px) {
  .pro-common-intro .cont .right {
    display: none;
    float: none;
    width: 100%;
  }
}
.pro-common-intro .cont .right img {
  display: block;
  width: 100%;
  height: auto;
}
.pro-common-function {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1699px) {
  .pro-common-function {
    padding-bottom: 108.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function {
    padding-bottom: 97.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function {
    padding-bottom: 85.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-function {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-function {
    padding-bottom: 40px;
  }
}
.pro-common-function .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  -moz-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
}
.pro-common-function .bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.pro-common-function .mycontainer {
  position: relative;
  z-index: 1;
}
.pro-common-function .mycontainer .funtion-list ul {
  width: -webkit-calc(100% + 30px);
  width: -moz-calc(100% + 30px);
  width: calc(100% + 30px);
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul {
    width: 100%;
  }
}
.pro-common-function .mycontainer .funtion-list ul li {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
  float: left;
  width: -webkit-calc(25% - 30px);
  width: -moz-calc(25% - 30px);
  width: calc(25% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    width: -webkit-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 45px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 40px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 35px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li {
    margin-bottom: 15px;
  }
}
.pro-common-function .mycontainer .funtion-list ul li:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.pro-common-function .mycontainer .funtion-list ul li:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.pro-common-function .mycontainer .funtion-list ul li:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.pro-common-function .mycontainer .funtion-list ul li .item-img {
  position: relative;
  overflow: hidden;
  height: 365px;
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-img {
    height: 300px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-img {
    height: 200px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-img {
    height: 200px;
  }
}
.pro-common-function .mycontainer .funtion-list ul li .item-img b {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: 50%;
  -moz-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.pro-common-function .mycontainer .funtion-list ul li .item-text {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 40px 15px;
  height: 250px;
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 37.14286px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 34.28571px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 31.42857px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 28.57143px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 25.71429px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 22.85714px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-left: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 37.14286px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 34.28571px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 31.42857px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 28.57143px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 25.71429px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 22.85714px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-right: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 23.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 22.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 20.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 19.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 17.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 16.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    padding-top: 15px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    height: 270px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    height: 240px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    height: 230px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text {
    height: 180px;
  }
}
.pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
  line-height: 1.2;
  font-size: 32px;
  margin-bottom: 25px;
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 30.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 28.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 26.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 25.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 23.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 21.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    font-size: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 23.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 22.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 20.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 19.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 17.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 16.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-function .mycontainer .funtion-list ul li .item-text h3 {
    margin-bottom: 15px;
  }
}
.pro-common-function .mycontainer .funtion-list ul li:hover .item-img b {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.pro-common-advantage {
  overflow: hidden;
}
.pro-common-advantage .advantage-img ul li {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 74.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 68.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 62.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 57.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 51.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 45.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li {
    padding-top: 40px;
  }
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 68.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 57.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 45.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li {
    padding-bottom: 40px;
  }
}
.pro-common-advantage .advantage-img ul li:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #f3f3f3;
  position: absolute;
  bottom: 0;
  right: auto;
  z-index: -1;
  left: 62%;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li:before {
    left: 75%;
  }
}
.pro-common-advantage .advantage-img ul li:first-child {
  margin-top: -80px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -74.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -68.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -62.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -57.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -51.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -45.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li:first-child {
    margin-top: -40px;
  }
}
.pro-common-advantage .advantage-img ul li:first-child:before {
  height: 150%;
}
.pro-common-advantage .advantage-img ul li .item-img {
  overflow: hidden;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  float: right;
  width: 51.3%;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li .item-img {
    float: none;
    width: 100%;
  }
}
.pro-common-advantage .advantage-img ul li .item-img img {
  display: block;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.pro-common-advantage .advantage-img ul li .item-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.pro-common-advantage .advantage-img ul li .item-itext {
  left: 0;
  right: auto;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 41.1%;
  margin-top: 0;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li .item-itext {
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-top: 20px;
  }
}
.pro-common-advantage .advantage-img ul li .item-itext h3 {
  font-size: 20px;
  margin-bottom: 45px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 19.71429px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 19.42857px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 19.14286px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 18.85714px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 18.57143px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 18.28571px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 40.71429px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 36.42857px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 32.14286px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 27.85714px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 23.57143px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 19.28571px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li .item-itext h3 {
    margin-bottom: 15px;
  }
}
.pro-common-advantage
  .advantage-img
  ul
  li
  .item-itext
  .desc
  p:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1699px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 23.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 22.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 20.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 19.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 17.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 16.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage
    .advantage-img
    ul
    li
    .item-itext
    .desc
    p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.pro-common-advantage .advantage-img ul li:nth-child(2n):before {
  left: auto;
  right: 62%;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li:nth-child(2n):before {
    right: 75%;
  }
}
.pro-common-advantage .advantage-img ul li:nth-child(2n) .item-img {
  float: left;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-img ul li:nth-child(2n) .item-img {
    float: none;
  }
}
.pro-common-advantage .advantage-img ul li:nth-child(2n) .item-itext {
  left: auto;
  right: 0;
}
.pro-common-advantage .advantage-text {
  padding-bottom: 80px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 72.85714px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 65.71429px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 58.57143px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 44.28571px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 37.14286px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text {
    padding-bottom: 30px;
  }
}
.pro-common-advantage .advantage-text ul {
  width: -webkit-calc(100% + 40px);
  width: -moz-calc(100% + 40px);
  width: calc(100% + 40px);
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul {
    width: 100%;
  }
}
.pro-common-advantage .advantage-text ul li {
  background-color: #f6f5f5;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  -moz-transition: box-shadow 0.4s, -moz-box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s, -moz-box-shadow 0.4s;
  float: left;
  width: -webkit-calc(50% - 40px);
  width: -moz-calc(50% - 40px);
  width: calc(50% - 40px);
  margin-right: 40px;
  margin-bottom: 40px;
  height: 180px;
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li {
    height: 160px;
  }
}
.pro-common-advantage .advantage-text ul li:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.pro-common-advantage .advantage-text ul li:hover .item-img img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.pro-common-advantage .advantage-text ul li .item-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 60px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 54.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 48.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 42.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 37.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 31.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 25.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li .item-img {
    left: 20px;
  }
}
.pro-common-advantage .advantage-text ul li .item-img img {
  display: block;
  height: auto;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 60px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 57.14286px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 54.28571px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 51.42857px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 48.57143px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 45.71429px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 42.85714px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li .item-img img {
    width: 40px;
  }
}
.pro-common-advantage .advantage-text ul li .item-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 150px;
  width: 70%;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 140px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 130px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 120px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 110px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 100px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 90px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    left: 80px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-text {
    width: 60%;
  }
}
.pro-common-advantage .advantage-text ul li .item-text h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 19.71429px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 19.42857px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 19.14286px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 18.85714px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 18.57143px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 18.28571px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 18.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 17.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 15.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-advantage .advantage-text ul li .item-text h4 {
    margin-bottom: 10px;
  }
}
.pro-common-honor {
  background-color: #edecec;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 1699px) {
  .pro-common-honor {
    padding-top: 105.71429px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor {
    padding-top: 91.42857px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor {
    padding-top: 77.14286px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor {
    padding-top: 62.85714px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor {
    padding-top: 48.57143px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor {
    padding-top: 34.28571px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor {
    padding-top: 20px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor {
    padding-bottom: 91.42857px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor {
    padding-bottom: 82.85714px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor {
    padding-bottom: 65.71429px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor {
    padding-bottom: 57.14286px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor {
    padding-bottom: 48.57143px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor {
    padding-bottom: 40px;
  }
}
.pro-common-honor .swiper {
  overflow: hidden;
  position: relative;
  padding: 25px 25px 90px;
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper {
    padding: 23.57143px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper {
    padding: 22.14286px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper {
    padding: 20.71429px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper {
    padding: 19.28571px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper {
    padding: 17.85714px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper {
    padding: 16.42857px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper {
    padding: 15px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper {
    padding-bottom: 84.28571px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper {
    padding-bottom: 78.57143px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper {
    padding-bottom: 72.85714px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper {
    padding-bottom: 67.14286px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper {
    padding-bottom: 61.42857px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper {
    padding-bottom: 55.71429px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper {
    padding-bottom: 50px;
  }
}
.pro-common-honor .swiper .swiper-slide .item {
  text-align: center;
}
.pro-common-honor .swiper .swiper-slide .item .item-img {
  background-color: #fff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  -moz-transition: box-shadow 0.4s, -moz-box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s, -moz-box-shadow 0.4s;
  height: 400px;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    height: 350px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 27.85714px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 25.71429px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 23.57143px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 21.42857px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 19.28571px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 17.14286px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-slide .item .item-img {
    margin-bottom: 15px;
  }
}
.pro-common-honor .swiper .swiper-slide .item .item-img:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.pro-common-honor .swiper .swiper-slide .item .item-img:hover img {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.05);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.05);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.05);
  -o-transform: translateX(-50%) translateY(-50%) scale(1.05);
  transform: translateX(-50%) translateY(-50%) scale(1.05);
}
.pro-common-honor .swiper .swiper-slide .item .item-img img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.pro-common-honor .swiper .swiper-slide .item .item-t {
  font-size: 20px;
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 19.42857px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 18.85714px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 18.28571px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 17.71429px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 17.14286px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 16.57143px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-slide .item .item-t {
    font-size: 16px;
  }
}
.pro-common-honor .swiper .swiper-slide:nth-child(2) .item {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.pro-common-honor .swiper .swiper-slide:nth-child(3) .item {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.pro-common-honor .swiper .swiper-slide:nth-child(4) .item {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #858585;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 11.42857px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10.85714px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10.28571px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 9.71429px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 9.14286px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8.57143px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 11.42857px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 10.85714px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 10.28571px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 9.71429px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 9.14286px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 8.57143px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 9px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 8px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 7px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 6px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 5px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 4px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-left: 3px;
  }
}
@media (max-width: 1699px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 9px;
  }
}
@media (max-width: 1600px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 8px;
  }
}
@media (max-width: 1366px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 7px;
  }
}
@media (max-width: 1289px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 6px;
  }
}
@media (max-width: 1024px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 5px;
  }
}
@media (max-width: 991px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 4px;
  }
}
@media (max-width: 767px) {
  .pro-common-honor .swiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 3px;
  }
}
.pro-common-honor
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff7800;
}
.bg-gray {
  background-color: #edecec;
}
.solution-common-points {
  background-color: #f6f6f6;
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1699px) {
  .solution-common-points {
    padding-bottom: 108.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-points {
    padding-bottom: 97.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-points {
    padding-bottom: 85.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-points {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-points {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-points {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-points {
    padding-bottom: 40px;
  }
}
.solution-common-points .bg-canvas {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.solution-common-points .bg-canvas canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
  touch-callout: none;
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
  transform: translateY(40%);
}
.solution-common-points .mycontainer {
  position: relative;
  z-index: 1;
}
.solution-common-points .mycontainer .cont .left {
  float: left;
  width: 40%;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .solution-common-points .mycontainer .cont .left {
    float: none;
    width: 100%;
  }
}
@media (max-width: 1699px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 51.42857px;
  }
}
@media (max-width: 1600px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 42.85714px;
  }
}
@media (max-width: 1366px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 34.28571px;
  }
}
@media (max-width: 1289px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 25.71429px;
  }
}
@media (max-width: 1024px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 17.14286px;
  }
}
@media (max-width: 991px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 8.57143px;
  }
}
@media (max-width: 767px) {
  .solution-common-points .mycontainer .cont .left {
    padding-top: 0;
  }
}
.solution-common-points .mycontainer .cont .left .desc {
  line-height: 1.7;
}
.solution-common-points .mycontainer .cont .left .desc li {
  background-image: url(../image/p_icon.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-left: 35px;
}
.solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1699px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 18.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 17.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 15.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-points .mycontainer .cont .left .desc li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1699px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 18.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 17.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 15.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-points .mycontainer .cont .left .desc li p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.solution-common-points .mycontainer .cont .right {
  overflow: hidden;
  display: block;
  float: right;
  width: 50%;
}
@media (max-width: 991px) {
  .solution-common-points .mycontainer .cont .right {
    display: none;
  }
}
.solution-common-points .mycontainer .cont .right:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.solution-common-points .mycontainer .cont .right img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.solution-common-intro {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1699px) {
  .solution-common-intro {
    padding-bottom: 108.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-intro {
    padding-bottom: 97.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-intro {
    padding-bottom: 85.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-intro {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-intro {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-intro {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-intro {
    padding-bottom: 40px;
  }
}
.solution-common-intro .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  -moz-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
}
.solution-common-intro .bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.solution-common-intro .mycontainer {
  position: relative;
  z-index: 1;
}
.solution-common-intro .mycontainer .cont {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #e8e8e8;
  overflow: hidden;
}
.solution-common-case {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1699px) {
  .solution-common-case {
    padding-bottom: 108.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case {
    padding-bottom: 97.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case {
    padding-bottom: 85.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case {
    padding-bottom: 74.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case {
    padding-bottom: 62.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-case {
    padding-bottom: 51.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-case {
    padding-bottom: 40px;
  }
}
.solution-common-case:after {
  content: "";
  display: block;
  height: 100%;
  background-color: #f3f2f2;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 35%;
}
.solution-common-case .cont {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}
.solution-common-case .cont .bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 20%;
  display: block;
}
@media (max-width: 991px) {
  .solution-common-case .cont .bg {
    display: none;
  }
}
.solution-common-case .cont .left {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #f3f2f2;
  float: left;
  width: 42%;
}
@media (max-width: 991px) {
  .solution-common-case .cont .left {
    float: none;
    width: 100%;
  }
}
.solution-common-case .cont .left:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.solution-common-case .cont .left img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.solution-common-case .cont .right {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  width: 58%;
  padding: 110px 125px 50px;
}
@media (max-width: 991px) {
  .solution-common-case .cont .right {
    float: none;
    width: 100%;
  }
}
@media (max-width: 1699px) {
  .solution-common-case .cont .right {
    padding-left: 110px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case .cont .right {
    padding-left: 95px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case .cont .right {
    padding-left: 80px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case .cont .right {
    padding-left: 65px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case .cont .right {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .solution-common-case .cont .right {
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .solution-common-case .cont .right {
    padding-left: 20px;
  }
}
@media (max-width: 1699px) {
  .solution-common-case .cont .right {
    padding-right: 110px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case .cont .right {
    padding-right: 95px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case .cont .right {
    padding-right: 80px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case .cont .right {
    padding-right: 65px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case .cont .right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .solution-common-case .cont .right {
    padding-right: 35px;
  }
}
@media (max-width: 767px) {
  .solution-common-case .cont .right {
    padding-right: 20px;
  }
}
@media (max-width: 1699px) {
  .solution-common-case .cont .right {
    padding-top: 97.14286px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case .cont .right {
    padding-top: 84.28571px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case .cont .right {
    padding-top: 71.42857px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case .cont .right {
    padding-top: 58.57143px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case .cont .right {
    padding-top: 45.71429px;
  }
}
@media (max-width: 991px) {
  .solution-common-case .cont .right {
    padding-top: 32.85714px;
  }
}
@media (max-width: 767px) {
  .solution-common-case .cont .right {
    padding-top: 20px;
  }
}
@media (max-width: 1699px) {
  .solution-common-case .cont .right {
    padding-bottom: 45.71429px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case .cont .right {
    padding-bottom: 41.42857px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case .cont .right {
    padding-bottom: 37.14286px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case .cont .right {
    padding-bottom: 32.85714px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case .cont .right {
    padding-bottom: 28.57143px;
  }
}
@media (max-width: 991px) {
  .solution-common-case .cont .right {
    padding-bottom: 24.28571px;
  }
}
@media (max-width: 767px) {
  .solution-common-case .cont .right {
    padding-bottom: 20px;
  }
}
.solution-common-case .cont .right p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1699px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 18.57143px;
  }
}
@media (max-width: 1600px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 17.14286px;
  }
}
@media (max-width: 1366px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 15.71429px;
  }
}
@media (max-width: 1289px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1024px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 991px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 767px) {
  .solution-common-case .cont .right p:not(:last-child) {
    margin-bottom: 10px;
  }
}

footer .copyright:after,
footer .footer .left .footer-ewm:after,
footer .footer .right .btn .common-btn:after,
footer .footer .right .footer-nav ul:after,
footer .footer:after {
  content: "";
  display: block;
  clear: both;
}
footer {
  background-color: #000;
  color: #fff;
  padding-top: 110px;
  padding-left: 160px;
  padding-right: 160px;
}
@media (max-width: 1699px) {
  footer {
    padding-top: 98.57143px;
  }
}
@media (max-width: 1600px) {
  footer {
    padding-top: 87.14286px;
  }
}
@media (max-width: 1366px) {
  footer {
    padding-top: 75.71429px;
  }
}
@media (max-width: 1289px) {
  footer {
    padding-top: 64.28571px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding-top: 52.85714px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-top: 41.42857px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 30px;
  }
}
@media (max-width: 1699px) {
  footer {
    padding-left: 140px;
  }
}
@media (max-width: 1600px) {
  footer {
    padding-left: 120px;
  }
}
@media (max-width: 1366px) {
  footer {
    padding-left: 100px;
  }
}
@media (max-width: 1289px) {
  footer {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-left: 20px;
  }
}
@media (max-width: 1699px) {
  footer {
    padding-right: 140px;
  }
}
@media (max-width: 1600px) {
  footer {
    padding-right: 120px;
  }
}
@media (max-width: 1366px) {
  footer {
    padding-right: 100px;
  }
}
@media (max-width: 1289px) {
  footer {
    padding-right: 80px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1366px) {
  footer {
    padding-top: 70px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1699px) {
  footer {
    padding-top: 64.28571px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1600px) {
  footer {
    padding-top: 58.57143px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1366px) {
  footer {
    padding-top: 52.85714px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1289px) {
  footer {
    padding-top: 47.14286px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1024px) {
  footer {
    padding-top: 41.42857px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 991px) {
  footer {
    padding-top: 35.71429px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 767px) {
  footer {
    padding-top: 30px;
  }
}
footer .copyright,
footer .footer {
  max-width: 1600px;
  margin: 0 auto;
  font-size: 16px;
}
footer .footer {
  padding-bottom: 60px;
}
@media (max-width: 1699px) {
  footer .footer {
    padding-bottom: 54.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer {
    padding-bottom: 48.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer {
    padding-bottom: 42.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer {
    padding-bottom: 37.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer {
    padding-bottom: 31.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer {
    padding-bottom: 25.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) {
  footer .footer {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1699px) {
  footer .footer {
    padding-bottom: 38.57143px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1600px) {
  footer .footer {
    padding-bottom: 37.14286px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1366px) {
  footer .footer {
    padding-bottom: 35.71429px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1289px) {
  footer .footer {
    padding-bottom: 34.28571px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 1024px) {
  footer .footer {
    padding-bottom: 32.85714px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 991px) {
  footer .footer {
    padding-bottom: 31.42857px;
  }
}
@media screen and (max-width: 1366px) and (max-width: 767px) {
  footer .footer {
    padding-bottom: 30px;
  }
}
footer .footer .left {
  float: left;
}
@media (max-width: 1024px) {
  footer .footer .left {
    text-align: center;
    float: none;
  }
}
footer .footer .left .footer-logo {
  margin-bottom: 50px;
}
@media (max-width: 1699px) {
  footer .footer .left .footer-logo {
    margin-bottom: 45.71429px;
  }
}
@media (max-width: 1600px) {
  footer .footer .left .footer-logo {
    margin-bottom: 41.42857px;
  }
}
@media (max-width: 1366px) {
  footer .footer .left .footer-logo {
    margin-bottom: 37.14286px;
  }
}
@media (max-width: 1289px) {
  footer .footer .left .footer-logo {
    margin-bottom: 32.85714px;
  }
}
@media (max-width: 1024px) {
  footer .footer .left .footer-logo {
    margin-bottom: 28.57143px;
  }
}
@media (max-width: 991px) {
  footer .footer .left .footer-logo {
    margin-bottom: 24.28571px;
  }
}
@media (max-width: 767px) {
  footer .footer .left .footer-logo {
    margin-bottom: 20px;
  }
}
footer .footer .left .footer-logo img {
  height: auto;
  width: 146px;
}
footer .footer .left .footer-info {
  margin-bottom: 50px;
}
@media (max-width: 1699px) {
  footer .footer .left .footer-info {
    margin-bottom: 45.71429px;
  }
}
@media (max-width: 1600px) {
  footer .footer .left .footer-info {
    margin-bottom: 41.42857px;
  }
}
@media (max-width: 1366px) {
  footer .footer .left .footer-info {
    margin-bottom: 37.14286px;
  }
}
@media (max-width: 1289px) {
  footer .footer .left .footer-info {
    margin-bottom: 32.85714px;
  }
}
@media (max-width: 1024px) {
  footer .footer .left .footer-info {
    margin-bottom: 28.57143px;
  }
}
@media (max-width: 991px) {
  footer .footer .left .footer-info {
    margin-bottom: 24.28571px;
  }
}
@media (max-width: 767px) {
  footer .footer .left .footer-info {
    margin-bottom: 20px;
  }
}
footer .footer .left .footer-info p {
  margin-bottom: 10px;
}
@media (max-width: 1699px) {
  footer .footer .left .footer-info p {
    margin-bottom: 9.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer .left .footer-info p {
    margin-bottom: 8.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer .left .footer-info p {
    margin-bottom: 7.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer .left .footer-info p {
    margin-bottom: 7.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer .left .footer-info p {
    margin-bottom: 6.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer .left .footer-info p {
    margin-bottom: 5.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer .left .footer-info p {
    margin-bottom: 5px;
  }
}
footer .footer .left .footer-ewm {
  text-align: center;
}
footer .footer .left .footer-ewm .item {
  font-size: 14px;
  display: inline-block;
  float: left;
}
@media (max-width: 1024px) {
  footer .footer .left .footer-ewm .item {
    float: none;
  }
}
footer .footer .left .footer-ewm .item:not(:last-child) {
  margin-right: 60px;
}
@media (max-width: 1699px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 54.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 48.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 42.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 37.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 31.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 25.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer .left .footer-ewm .item:not(:last-child) {
    margin-right: 20px;
  }
}
footer .footer .left .footer-ewm .item img {
  display: block;
  height: auto;
  margin: 0 auto 15px;
  width: 120px;
}
@media (max-width: 1699px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 13.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 12.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 10.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer .left .footer-ewm .item img {
    margin-bottom: 10px;
  }
}
footer .footer .right {
  float: right;
}
@media (max-width: 1024px) {
  footer .footer .right {
    float: none;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .footer-nav {
    display: none;
  }
}
footer .footer .right .footer-nav ul li {
  float: left;
}
footer .footer .right .footer-nav ul li:not(:first-child) {
  margin-left: 80px;
}
@media (max-width: 1699px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 72.85714px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 65.71429px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 58.57143px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 51.42857px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 44.28571px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 37.14286px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .footer-nav ul li:not(:first-child) {
    margin-left: 30px;
  }
}
footer .footer .right .footer-nav ul li a {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 15px;
}
@media (max-width: 1699px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 13.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 12.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 10.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .footer-nav ul li a {
    margin-bottom: 10px;
  }
}
footer .footer .right .footer-nav ul li a.title-link {
  font-size: 20px;
}
@media (max-width: 1699px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 19.71429px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 19.42857px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 19.14286px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 18.85714px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 18.57143px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 18.28571px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .footer-nav ul li a.title-link {
    font-size: 18px;
  }
}
footer .footer .right .footer-nav ul li a:not(.title-link) {
  color: hsla(0, 0%, 100%, 0.7);
}
footer .footer .right .footer-nav ul li a:not(.title-link):hover {
  color: #fff;
}
footer .footer .right .btn {
  text-align: right;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  footer .footer .right .btn {
    text-align: center;
  }
}
@media (max-width: 1699px) {
  footer .footer .right .btn {
    margin-top: 90px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .btn {
    margin-top: 80px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .btn {
    margin-top: 70px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .btn {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .btn {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .btn {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .btn {
    margin-top: 30px;
  }
}
footer .footer .right .btn .common-btn {
  padding-left: 35px;
  padding-right: 30px;
}
@media (max-width: 1699px) {
  footer .footer .right .btn .common-btn {
    padding-left: 33.57143px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .btn .common-btn {
    padding-left: 32.14286px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .btn .common-btn {
    padding-left: 30.71429px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .btn .common-btn {
    padding-left: 29.28571px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .btn .common-btn {
    padding-left: 27.85714px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .btn .common-btn {
    padding-left: 26.42857px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .btn .common-btn {
    padding-left: 25px;
  }
}
@media (max-width: 1699px) {
  footer .footer .right .btn .common-btn {
    padding-right: 29.28571px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .btn .common-btn {
    padding-right: 28.57143px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .btn .common-btn {
    padding-right: 27.85714px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .btn .common-btn {
    padding-right: 27.14286px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .btn .common-btn {
    padding-right: 26.42857px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .btn .common-btn {
    padding-right: 25.71429px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .btn .common-btn {
    padding-right: 25px;
  }
}
footer .footer .right .btn .common-btn .iconfont {
  line-height: 0.6;
  float: right;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
  margin-left: 180px;
  font-size: 40px;
}
@media (max-width: 1024px) {
  footer .footer .right .btn .common-btn .iconfont {
    -webkit-transform: translateY(7px);
    -moz-transform: translateY(7px);
    -ms-transform: translateY(7px);
    -o-transform: translateY(7px);
    transform: translateY(7px);
  }
}
@media (max-width: 1699px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 165.71429px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 151.42857px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 137.14286px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 122.85714px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 108.57143px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 94.28571px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .btn .common-btn .iconfont {
    margin-left: 80px;
  }
}
@media (max-width: 1699px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 38.57143px;
  }
}
@media (max-width: 1600px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 37.14286px;
  }
}
@media (max-width: 1366px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 35.71429px;
  }
}
@media (max-width: 1289px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 34.28571px;
  }
}
@media (max-width: 1024px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 32.85714px;
  }
}
@media (max-width: 991px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 31.42857px;
  }
}
@media (max-width: 767px) {
  footer .footer .right .btn .common-btn .iconfont {
    font-size: 30px;
  }
}
footer .copyright {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  font-size: 12px;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  footer .copyright {
    text-align: center;
  }
}
@media (max-width: 1699px) {
  footer .copyright {
    padding-top: 22.85714px;
  }
}
@media (max-width: 1600px) {
  footer .copyright {
    padding-top: 20.71429px;
  }
}
@media (max-width: 1366px) {
  footer .copyright {
    padding-top: 18.57143px;
  }
}
@media (max-width: 1289px) {
  footer .copyright {
    padding-top: 16.42857px;
  }
}
@media (max-width: 1024px) {
  footer .copyright {
    padding-top: 14.28571px;
  }
}
@media (max-width: 991px) {
  footer .copyright {
    padding-top: 12.14286px;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    padding-top: 10px;
  }
}
@media (max-width: 1699px) {
  footer .copyright {
    padding-bottom: 22.85714px;
  }
}
@media (max-width: 1600px) {
  footer .copyright {
    padding-bottom: 20.71429px;
  }
}
@media (max-width: 1366px) {
  footer .copyright {
    padding-bottom: 18.57143px;
  }
}
@media (max-width: 1289px) {
  footer .copyright {
    padding-bottom: 16.42857px;
  }
}
@media (max-width: 1024px) {
  footer .copyright {
    padding-bottom: 14.28571px;
  }
}
@media (max-width: 991px) {
  footer .copyright {
    padding-bottom: 12.14286px;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    padding-bottom: 10px;
  }
}
footer .copyright .left {
  float: left;
}
@media (max-width: 767px) {
  footer .copyright .left {
    float: none;
  }
}
footer .copyright .left a {
  color: hsla(0, 0%, 100%, 0.7);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
footer .copyright .left a:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1699px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 26.42857px;
  }
}
@media (max-width: 1600px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 22.85714px;
  }
}
@media (max-width: 1366px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 19.28571px;
  }
}
@media (max-width: 1289px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 15.71429px;
  }
}
@media (max-width: 1024px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 12.14286px;
  }
}
@media (max-width: 991px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 8.57143px;
  }
}
@media (max-width: 767px) {
  footer .copyright .left a:not(:last-child) {
    margin-right: 5px;
  }
}
footer .copyright .left a:hover {
  color: #fff;
}
footer .copyright .right {
  color: hsla(0, 0%, 100%, 0.5);
  float: right;
}
@media (max-width: 767px) {
  footer .copyright .right {
    float: none;
  }
}
footer .copyright .right a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 10px;
}
@media (max-width: 1699px) {
  footer .copyright .right a {
    margin-left: 9.28571px;
  }
}
@media (max-width: 1600px) {
  footer .copyright .right a {
    margin-left: 8.57143px;
  }
}
@media (max-width: 1366px) {
  footer .copyright .right a {
    margin-left: 7.85714px;
  }
}
@media (max-width: 1289px) {
  footer .copyright .right a {
    margin-left: 7.14286px;
  }
}
@media (max-width: 1024px) {
  footer .copyright .right a {
    margin-left: 6.42857px;
  }
}
@media (max-width: 991px) {
  footer .copyright .right a {
    margin-left: 5.71429px;
  }
}
@media (max-width: 767px) {
  footer .copyright .right a {
    margin-left: 5px;
  }
}
footer .copyright .right a:hover {
  color: #fff;
}
header .hidden-nav-c .hidden-nav .right .btn .common-btn:after,
header .hidden-nav-c .hidden-nav:after {
  content: "";
  display: block;
  clear: both;
}
header .header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
header .header.black-logo .logo {
  opacity: 0.8;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(Invert="100");
}
header .header .logo {
  float: left;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 220px;
  margin-top: 30px;
}
@media (max-width: 1699px) {
  header .header .logo {
    margin-left: 197.14286px;
  }
}
@media (max-width: 1600px) {
  header .header .logo {
    margin-left: 174.28571px;
  }
}
@media (max-width: 1366px) {
  header .header .logo {
    margin-left: 151.42857px;
  }
}
@media (max-width: 1289px) {
  header .header .logo {
    margin-left: 128.57143px;
  }
}
@media (max-width: 1024px) {
  header .header .logo {
    margin-left: 105.71429px;
  }
}
@media (max-width: 991px) {
  header .header .logo {
    margin-left: 82.85714px;
  }
}
@media (max-width: 767px) {
  header .header .logo {
    margin-left: 60px;
  }
}
@media (max-width: 1699px) {
  header .header .logo {
    margin-top: 27.85714px;
  }
}
@media (max-width: 1600px) {
  header .header .logo {
    margin-top: 25.71429px;
  }
}
@media (max-width: 1366px) {
  header .header .logo {
    margin-top: 23.57143px;
  }
}
@media (max-width: 1289px) {
  header .header .logo {
    margin-top: 21.42857px;
  }
}
@media (max-width: 1024px) {
  header .header .logo {
    margin-top: 19.28571px;
  }
}
@media (max-width: 991px) {
  header .header .logo {
    margin-top: 17.14286px;
  }
}
@media (max-width: 767px) {
  header .header .logo {
    margin-top: 15px;
  }
}
header .header .logo img {
  height: auto;
  width: 146px;
}
@media (max-width: 1699px) {
  header .header .logo img {
    width: 136.57143px;
  }
}
@media (max-width: 1600px) {
  header .header .logo img {
    width: 127.14286px;
  }
}
@media (max-width: 1366px) {
  header .header .logo img {
    width: 117.71429px;
  }
}
@media (max-width: 1289px) {
  header .header .logo img {
    width: 108.28571px;
  }
}
@media (max-width: 1024px) {
  header .header .logo img {
    width: 98.85714px;
  }
}
@media (max-width: 991px) {
  header .header .logo img {
    width: 89.42857px;
  }
}
@media (max-width: 767px) {
  header .header .logo img {
    width: 80px;
  }
}
header .header .btn {
  float: right;
  margin-right: 60px;
  margin-top: 45px;
}
@media (max-width: 1699px) {
  header .header .btn {
    margin-right: 52.85714px;
  }
}
@media (max-width: 1600px) {
  header .header .btn {
    margin-right: 45.71429px;
  }
}
@media (max-width: 1366px) {
  header .header .btn {
    margin-right: 38.57143px;
  }
}
@media (max-width: 1289px) {
  header .header .btn {
    margin-right: 31.42857px;
  }
}
@media (max-width: 1024px) {
  header .header .btn {
    margin-right: 24.28571px;
  }
}
@media (max-width: 991px) {
  header .header .btn {
    margin-right: 17.14286px;
  }
}
@media (max-width: 767px) {
  header .header .btn {
    margin-right: 10px;
  }
}
@media (max-width: 1699px) {
  header .header .btn {
    margin-top: 41.42857px;
  }
}
@media (max-width: 1600px) {
  header .header .btn {
    margin-top: 37.85714px;
  }
}
@media (max-width: 1366px) {
  header .header .btn {
    margin-top: 34.28571px;
  }
}
@media (max-width: 1289px) {
  header .header .btn {
    margin-top: 30.71429px;
  }
}
@media (max-width: 1024px) {
  header .header .btn {
    margin-top: 27.14286px;
  }
}
@media (max-width: 991px) {
  header .header .btn {
    margin-top: 23.57143px;
  }
}
@media (max-width: 767px) {
  header .header .btn {
    margin-top: 20px;
  }
}
header .header-aside {
  position: fixed;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -moz-transition: transform 0.6s, -moz-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s, -moz-transform 0.6s,
    -o-transform 0.6s;
  height: 100vh;
  bottom: 0;
  top: auto;
  width: 160px;
}
@media (max-width: 767px) {
  header .header-aside {
    height: auto;
    bottom: auto !important;
    top: 0;
  }
}
@media (max-width: 1699px) {
  header .header-aside {
    width: 144.28571px;
  }
}
@media (max-width: 1600px) {
  header .header-aside {
    width: 128.57143px;
  }
}
@media (max-width: 1366px) {
  header .header-aside {
    width: 112.85714px;
  }
}
@media (max-width: 1289px) {
  header .header-aside {
    width: 97.14286px;
  }
}
@media (max-width: 1024px) {
  header .header-aside {
    width: 81.42857px;
  }
}
@media (max-width: 991px) {
  header .header-aside {
    width: 65.71429px;
  }
}
@media (max-width: 767px) {
  header .header-aside {
    width: 50px;
  }
}
header .header-aside.abs {
  position: absolute;
}
header .header-aside .openmenu-icon {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: none;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon {
    padding-top: 54.28571px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon {
    padding-top: 48.57143px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon {
    padding-top: 42.85714px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon {
    padding-top: 37.14286px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon {
    padding-top: 31.42857px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon {
    padding-top: 25.71429px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon {
    padding-top: 20px;
  }
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon {
    padding-bottom: 20px;
  }
}
header .header-aside .openmenu-icon:hover .hamburger > div:after,
header .header-aside .openmenu-icon:hover .hamburger > view:after {
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
header .header-aside .openmenu-icon .hamburger {
  margin: 0 auto;
  width: 48px;
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 44.71429px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 41.42857px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 38.14286px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 34.85714px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 31.57143px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 28.28571px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon .hamburger {
    width: 25px;
  }
}
header .header-aside .openmenu-icon .hamburger > div,
header .header-aside .openmenu-icon .hamburger > div:after,
header .header-aside .openmenu-icon .hamburger > div:before,
header .header-aside .openmenu-icon .hamburger > view,
header .header-aside .openmenu-icon .hamburger > view:after,
header .header-aside .openmenu-icon .hamburger > view:before {
  width: 48px;
  height: 4px;
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 44.71429px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 41.42857px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 38.14286px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 34.85714px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 31.57143px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 28.28571px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    width: 25px;
  }
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 3.71429px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 3.42857px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 3.14286px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 2.85714px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 2.57143px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 2.28571px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon .hamburger > div,
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view,
  header .header-aside .openmenu-icon .hamburger > view:after,
  header .header-aside .openmenu-icon .hamburger > view:before {
    height: 2px;
  }
}
header .header-aside .openmenu-icon .hamburger > div:before,
header .header-aside .openmenu-icon .hamburger > view:before {
  top: -13px;
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -12.28571px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -11.57143px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -10.85714px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -10.14286px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -9.42857px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -8.71429px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon .hamburger > div:before,
  header .header-aside .openmenu-icon .hamburger > view:before {
    top: -8px;
  }
}
header .header-aside .openmenu-icon .hamburger > div:after,
header .header-aside .openmenu-icon .hamburger > view:after {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  bottom: -13px;
}
@media (max-width: 1699px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -12.28571px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -11.57143px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -10.85714px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -10.14286px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -9.42857px;
  }
}
@media (max-width: 991px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -8.71429px;
  }
}
@media (max-width: 767px) {
  header .header-aside .openmenu-icon .hamburger > div:after,
  header .header-aside .openmenu-icon .hamburger > view:after {
    bottom: -8px;
  }
}
header .header-aside .btm-icon {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 5%;
  color: #fff;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  header .header-aside .btm-icon {
    display: none;
  }
}
header .header-aside .btm-icon .iconfont {
  line-height: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  font-size: 40px;
}
@media (max-width: 1699px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 38px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 36px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 34px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  header .header-aside .btm-icon .iconfont {
    font-size: 26px;
  }
}
header .header-aside .btm-icon > div {
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 1699px) {
  header .header-aside .btm-icon > div {
    padding-top: 27.14286px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .btm-icon > div {
    padding-top: 24.28571px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .btm-icon > div {
    padding-top: 21.42857px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .btm-icon > div {
    padding-top: 18.57143px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .btm-icon > div {
    padding-top: 15.71429px;
  }
}
@media (max-width: 991px) {
  header .header-aside .btm-icon > div {
    padding-top: 12.85714px;
  }
}
@media (max-width: 767px) {
  header .header-aside .btm-icon > div {
    padding-top: 10px;
  }
}
@media (max-width: 1699px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 27.14286px;
  }
}
@media (max-width: 1600px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 24.28571px;
  }
}
@media (max-width: 1366px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 21.42857px;
  }
}
@media (max-width: 1289px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 18.57143px;
  }
}
@media (max-width: 1024px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 15.71429px;
  }
}
@media (max-width: 991px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 12.85714px;
  }
}
@media (max-width: 767px) {
  header .header-aside .btm-icon > div {
    padding-bottom: 10px;
  }
}
header .header-aside .btm-icon .weixin-icon:hover .iconfont {
  color: #1aad19;
}
header .header-aside .btm-icon .weixin-icon img {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    position: absolute;
    bottom: 90%;
    left: 50%;
    margin-left: -45%;
    width: 90%;
}
header .header-aside .btm-icon .weixin-icon:hover img {
    opacity: 1;
    transform: translateY(0);
}
header .header-aside .btm-icon .back-top:hover .iconfont {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
header .hidden-nav-c {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 100vh;
  overflow: hidden;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
header .hidden-nav-c.active {
  width: 100%;
}
header .hidden-nav-c .hidden-nav {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
header .hidden-nav-c .hidden-nav .close-menu {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  padding-top: 30px;
  padding-left: 55px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 26.71429px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 23.42857px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 20.14286px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 16.85714px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 13.57143px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 10.28571px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-top: 7px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 48.71429px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 42.42857px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 36.14286px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 29.85714px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 23.57143px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 17.28571px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .close-menu {
    padding-left: 11px;
  }
}
header .hidden-nav-c .hidden-nav .close-menu .iconfont {
  color: #fff;
  font-size: 50px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 47.14286px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 44.28571px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 41.42857px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 38.57143px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 35.71429px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 32.85714px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .close-menu .iconfont {
    font-size: 30px;
  }
}
header .hidden-nav-c .hidden-nav .left {
  height: 100%;
  background-color: rgba(18, 17, 17, 0.95);
  color: #fff;
  overflow-y: auto;
  float: left;
  width: 71%;
  padding-left: 480px;
  padding-top: 165px;
  padding-right: 0;
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left {
    float: none;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left {
    width: 65%;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left {
    width: 100%;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-left: 380px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-left: 300px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-left: 150px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-left: 20px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-top: 130px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-top: 80px;
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left {
    padding-right: 20px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li {
  position: relative;
  width: 220px;
  margin-bottom: 50px;
  padding-left: 0;
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    width: 200px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    width: 170px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    width: 150px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    width: 100%;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 44.28571px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 38.57143px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 32.85714px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 27.14286px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 21.42857px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 15.71429px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-bottom: 10px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li:hover:before {
  -webkit-transform: translate3d(-120%, -50%, 0) scaleX(1);
  -moz-transform: translate3d(-120%, -50%, 0) scaleX(1);
  transform: translate3d(-120%, -50%, 0) scaleX(1);
}
header .hidden-nav-c .hidden-nav .left ul li:hover .sub-nav {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
header .hidden-nav-c .hidden-nav .left ul li.active .link-title .iconfont {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
header .hidden-nav-c .hidden-nav .left ul li:before {
  content: "";
  background-color: #ff9f22;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(-120%, -50%, 0) scaleX(0);
  -moz-transform: translate3d(-120%, -50%, 0) scaleX(0);
  transform: translate3d(-120%, -50%, 0) scaleX(0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  width: 258px;
  height: 4px;
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li:before {
    display: none;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li:before {
    width: 200px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li:before {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li:before {
    width: 100px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .link-title {
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 32px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 30px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 28px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 26px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title {
    font-size: 18px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .link-title .iconfont {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .link-title .iconfont {
    display: block;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
  top: 10%;
  left: 100%;
  white-space: nowrap;
  margin-top: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  font-size: 20px;
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    margin-top: 10px;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 19.14286px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 18.28571px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 17.42857px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 16.57143px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 15.71429px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 14.85714px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav {
    font-size: 14px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
  margin-bottom: 25px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 22.85714px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 20.71429px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 18.57143px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 16.42857px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 12.14286px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div {
    margin-bottom: 10px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 10px 30px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 9.28571px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 8.57143px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 7.85714px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 7.14286px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 6.42857px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 5.71429px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-top: 5px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 9.28571px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 8.57143px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 7.85714px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 7.14286px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 6.42857px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 5.71429px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-bottom: 5px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 27.85714px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 25.71429px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 23.57143px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 21.42857px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 19.28571px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 17.14286px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-left: 15px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 27.85714px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 25.71429px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 23.57143px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 21.42857px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 19.28571px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 17.14286px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a {
    padding-right: 15px;
  }
}
header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
header .hidden-nav-c .hidden-nav .left ul li .sub-nav > div a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ff9f22;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
header .hidden-nav-c .hidden-nav .right {
  height: 100%;
  background: url(../image/fixed_menu_bg.jpg) no-repeat 50%;
  -moz-background-size: cover;
  background-size: cover;
  float: right;
  width: 29%;
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right {
    display: none;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right {
    width: 35%;
  }
}
header .hidden-nav-c .hidden-nav .right .btn {
  height: 70vh;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  position: relative;
}
header .hidden-nav-c .hidden-nav .right .btn .common-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 35px;
  padding-right: 30px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 33.57143px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 32.14286px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 30.71429px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 29.28571px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 27.85714px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 26.42857px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-left: 25px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 29.28571px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 28.57143px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 27.85714px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 27.14286px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 26.42857px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 25.71429px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn {
    padding-right: 25px;
  }
}
header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
  line-height: 0.6;
  margin-left: 100px;
  font-size: 40px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 92.85714px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 85.71429px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 78.57143px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 71.42857px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 64.28571px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 57.14286px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    margin-left: 50px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 38.57143px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 37.14286px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 35.71429px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 34.28571px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 32.85714px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 31.42857px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .btn .common-btn .iconfont {
    font-size: 30px;
  }
}
header .hidden-nav-c .hidden-nav .right .ewm {
  height: 30vh;
  position: relative;
  text-align: center;
}
header .hidden-nav-c .hidden-nav .right .ewm > div {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
header .hidden-nav-c .hidden-nav .right .ewm > div .item {
  font-size: 14px;
  color: #fff;
  display: inline-block;
}
header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
  margin-left: 100px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 90px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 80px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 70px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 60px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item:not(:first-child) {
    margin-left: 30px;
  }
}
header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
  display: block;
  height: auto;
  margin: 0 auto 10px;
  width: 120px;
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 9.28571px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 8.57143px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 7.85714px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 7.14286px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 6.42857px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 5.71429px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    margin-bottom: 5px;
  }
}
@media (max-width: 1699px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 117.14286px;
  }
}
@media (max-width: 1600px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 114.28571px;
  }
}
@media (max-width: 1366px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 111.42857px;
  }
}
@media (max-width: 1289px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 108.57143px;
  }
}
@media (max-width: 1024px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 105.71429px;
  }
}
@media (max-width: 991px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 102.85714px;
  }
}
@media (max-width: 767px) {
  header .hidden-nav-c .hidden-nav .right .ewm > div .item img {
    width: 100px;
  }
}
.ny-banner {
  position: relative;
  overflow: hidden;
  height: 600px;
}
@media (max-width: 1366px) {
  .ny-banner {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .ny-banner {
    height: 400px;
  }
}
.ny-banner .bg-img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -moz-background-size: cover;
  background-size: cover;
  background-position: 50%;
}
.ny-banner .bg-img:after {
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.7)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  width: 70%;
}
@media (max-width: 1699px) {
  .ny-banner .bg-img:after {
    width: 81.42857%;
  }
}
@media (max-width: 1600px) {
  .ny-banner .bg-img:after {
    width: 92.85714%;
  }
}
@media (max-width: 1366px) {
  .ny-banner .bg-img:after {
    width: 104.28571%;
  }
}
@media (max-width: 1289px) {
  .ny-banner .bg-img:after {
    width: 115.71429%;
  }
}
@media (max-width: 1024px) {
  .ny-banner .bg-img:after {
    width: 127.14286%;
  }
}
@media (max-width: 991px) {
  .ny-banner .bg-img:after {
    width: 138.57143%;
  }
}
@media (max-width: 767px) {
  .ny-banner .bg-img:after {
    width: 150%;
  }
}
.ny-banner .mycontainer {
  height: 100%;
}
.ny-banner .mycontainer .abs {
  height: 100%;
  position: relative;
  color: #fff;
}
.ny-banner .mycontainer .abs > div {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ny-banner .mycontainer .abs > div h1 {
  line-height: 1.2;
  font-size: 48px;
  margin-bottom: 15px;
}
@media (max-width: 1699px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 44.57143px;
  }
}
@media (max-width: 1600px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 41.14286px;
  }
}
@media (max-width: 1366px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 37.71429px;
  }
}
@media (max-width: 1289px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 34.28571px;
  }
}
@media (max-width: 1024px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 30.85714px;
  }
}
@media (max-width: 991px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 27.42857px;
  }
}
@media (max-width: 767px) {
  .ny-banner .mycontainer .abs > div h1 {
    font-size: 24px;
  }
}
@media (max-width: 1699px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 14.28571px;
  }
}
@media (max-width: 1600px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 13.57143px;
  }
}
@media (max-width: 1366px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 12.85714px;
  }
}
@media (max-width: 1289px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 12.14286px;
  }
}
@media (max-width: 1024px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 11.42857px;
  }
}
@media (max-width: 991px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 10.71429px;
  }
}
@media (max-width: 767px) {
  .ny-banner .mycontainer .abs > div h1 {
    margin-bottom: 10px;
  }
}
.ny-banner .mycontainer .abs > div p {
  max-width: 610px;
  font-size: 24px;
}
@media (max-width: 1699px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 22.85714px;
  }
}
@media (max-width: 1600px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 21.71429px;
  }
}
@media (max-width: 1366px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 20.57143px;
  }
}
@media (max-width: 1289px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 19.42857px;
  }
}
@media (max-width: 1024px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 18.28571px;
  }
}
@media (max-width: 991px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 17.14286px;
  }
}
@media (max-width: 767px) {
  .ny-banner .mycontainer .abs > div p {
    font-size: 16px;
  }
}
.ny-banner .mycontainer .abs > div .link {
  margin-top: 85px;
}
@media (max-width: 1699px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 75.71429px;
  }
}
@media (max-width: 1600px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 66.42857px;
  }
}
@media (max-width: 1366px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 57.14286px;
  }
}
@media (max-width: 1289px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 47.85714px;
  }
}
@media (max-width: 1024px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 38.57143px;
  }
}
@media (max-width: 991px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 29.28571px;
  }
}
@media (max-width: 767px) {
  .ny-banner .mycontainer .abs > div .link {
    margin-top: 20px;
  }
}
.ny-banner.hide-link .mycontainer .abs > div .link {
  display: none;
}



/*# sourceMappingURL=common.css.map*/
