/* ===== animate.css ===== */
@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: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes 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 rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-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(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.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(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-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);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

/* ===== bootstrap.min.css ===== */
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}

/* ===== style.css ===== */
/*=========================================================
Template Name: Anger - Creative Business & Portfolio Multi-purpose HTML5 Template
==============================================================*/

body {
	background: #ffffff none repeat scroll 0 0;
    color: #888888;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5,h6 {
	color: #292b2c;
	font-family: "Montserrat", sans-serif;
}
p {
	color:#888888;
}
a {
	color: #292b2c;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all .5s ease;
}
a:hover {
	color: #0E93D8;
	text-decoration: none;
	transition: all .5s ease;
}
a:focus {
	outline: none;
	text-decoration: none;
}
img {
	max-width: 100%;
}
ul,li,ol {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}
label {
	color: #6c757d;
}
input:focus,
textarea:focus {
	outline: none;
	box-shadow:  none !important;
}
section {
	padding: 100px 0;
	position:relative;
}
.no-padding { 
	padding: 0
}
section.small_pt,
.top_footer.small_pt {
	padding-top: 50px;
}
section.small_pb,
.top_footer.small_pb {
	padding-bottom: 50px;
}
section.pb_20, .pb_20 {
	padding-bottom: 20px;
}
section.pb_70, .pb_70 {
	padding-bottom: 70px;
}
.small_padding {
    padding: 30px;
}
.medium_padding {
    padding: 50px;
}
.large_padding {
    padding: 100px;
}
.small_divider {
	height: 30px;
}
.medium_divider {
	height: 50px;
}
.large_divider {
	height: 100px;
}
.padding_eight_all {
	padding: 8%;
}
.padding_eight_lr {
	padding: 0 8%;
}
.padding_eight_tb {
	padding: 8% 0;
}
.large_py {
	padding: 100px 0;
}
.list_none li {
	list-style:none;
}
.order_list,
.disc_list {
	padding-left: 15px;
}
.btn:focus,.btn:hover,.btn.active {
	box-shadow: none;
	outline: medium none;
}
button:focus {
	outline:none;
}
.btn {
	border-width: 2px;
	cursor: pointer;
	text-transform: capitalize;
	transition: all 0.5s ease-in-out;
}
.btn.active:focus, .btn:active:focus {
	box-shadow: none !important;
}
.btn-default {
	background-color: #0e93d8;
	border: 2px solid #0e93d8;
	color: #ffffff !important;
	padding: 10px 30px;
}
.btn-default:hover {
	background-color: #1083c8;
	border-color: #1083c8;
	color: #fff;
}
.btn-black {
	border: 2px solid #333;
	background-color: #333;
	color: #ffffff;
	padding: 10px 30px;
}
.btn-black:hover {
	background-color: #ffffff;
	color: #333;
}
.btn-white {
	border: 2px solid #fff;
	background-color: #fff;
	color: #333 !important;
	padding: 10px 30px;
}
.btn-white:hover {
	background-color: transparent;
	color: #fff !important;
}
.btn-outline-white {
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 10px 30px;
}
.btn-outline-white:hover {
	background-color: #fff;
	color: #1083c8;
}
.btn-outline-black {
	background-color: transparent;
	border: 2px solid #333;
	color: #333;
	padding: 10px 30px;
}
.btn-outline-black:hover {
	background-color: #333;
	color: #fff;
}
.btn-outline-default {
	background-color: transparent;
	border: 2px solid #0e93d8;
	color: #0e93d8;
	padding: 10px 30px;
}
.btn-outline-default:hover {
	background-color: #0e93d8;
	color: #fff;
}
.btn-radius,
.pr-radius {
	border-radius: 40px;
}
.btn + .btn {
	margin-left: 10px;
}
.btn i {
	margin-left: 5px;
	font-size: 22px;
	vertical-align: middle;
	line-height: 1;
}
.btn span {
    font-size: 14px;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 7px 15px;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 14px 35px;
}
.btn-xs {
    padding: 4px 15px;
    font-size: 12px;
}
.btn-md {
    padding: 10px 30px;
    font-size: 16px;
}
.btn.btn-xs i {
    font-size: 12px;
}
.btn.btn-sm i {
    font-size: 16px;
}
.btn.btn-lg i {
    font-size: 28px;
}
.btn-aylen,
.btn-aylen2 {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.btn-aylen::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    -moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
.btn-aylen:hover:before {
    -moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	z-index: -1;
}
.btn-default.btn-aylen:hover {
	color: #0e93d8 !important;
	z-index: 0;
}
.btn-aylen2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    -moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}
.btn-aylen2:hover:before {
    -moz-transform: scale(0);
	-webkit-transform: scale(10);
	transform: scale(0);
}
.btn-horiz,.btn-horiz2 {
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.btn-horiz::before {
	border-radius: 4px;
    content: "";
    position: absolute;
    left: 50%;
    top: -2px;
    bottom: -2px;
    background-color: rgba(0,0,0,0.1);
    right: 50%;
	visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.btn-horiz:hover::before {
    left: -2px;
    right: -2px;
	visibility: visible;
}
.btn-horiz2::before {
	border-radius: 3px;
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #fff;
    right: 0px;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.btn-horiz2:hover::before {
    left: 50%;
    right: 50%;
}
.btn-radius.btn-horiz::before, .btn-radius.btn-horiz2::before {
    border-radius: 40px;
}
.btn-3d {
    position: relative;
	border: 0;
}
.btn-3d::before {
    border-bottom: 3px solid rgba(0,0,0,0.2);
    content: "";
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 0;
    position: absolute;
    border-radius: 5px;
}
.btn-3d.rounded-0::before {
    border-radius: 0;
}
.ripple {
	background-color: #0e93d8;
	border-radius: 100%;
	color: #fff;
	position: relative;
	display: inline-block;
	margin-right: 25px;
	line-height: 30px;
	font-size: 18px !important;
	vertical-align: middle;
	margin-left: 0;
	height: 30px;
    width: 30px;
	text-align: center;
}
.ripple::before,.ripple::after {
	 -webkit-animation: ripple 1.8s infinite ;
    -moz-animation: ripple 1.8s infinite ;
    -o-animation: ripple 1.8s infinite ;
    -ms-transition:ripple 1.8s infinite ;
	animation: ripple 1.8s infinite ;
	background-color: #0e93d8;
	border-radius: 100%;
	margin: -20px;
	bottom: 0px;
	content: "";
	display: block;
	left: 0px;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index:-1;
}
.ripple::before {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.ripple::after {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
@-webkit-keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}

.radius_none {
	border-radius: 0;
}
.heading_s1 h1,.heading_s1 h2,.heading_s1 h3,.heading_s1 h4,.heading_s1 h5,.heading_s1 h6,
.heading_s2 h1,.heading_s2 h2,.heading_s2 h3,.heading_s2 h4,.heading_s2 h5,.heading_s2 h6,
.heading_s3 h1,.heading_s3 h2,.heading_s3 h3,.heading_s3 h4,.heading_s3 h5,.heading_s3 h6,
.heading_s4 h1,.heading_s4 h2,.heading_s4 h3,.heading_s4 h4,.heading_s4 h5,.heading_s4 h6,
.heading_s5 h1,.heading_s5 h2,.heading_s5 h3,.heading_s5 h4,.heading_s5 h5,.heading_s5 h6,
.heading_s6 h1,.heading_s6 h2,.heading_s6 h3,.heading_s6 h4,.heading_s6 h5,.heading_s6 h6,
.heading_s7 h1,.heading_s7 h2,.heading_s7 h3,.heading_s7 h4,.heading_s7 h5,.heading_s7 h6,
.widget_title3 {
	font-weight: 700;
	margin: 0;
}
.heading_s1,
.heading_s2 {
	margin-bottom: 30px;
	padding-bottom: 15px;
	position: relative;
}
.heading_s1::before {
	background-color: #0e93d8;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 80px;
}
.heading_s1.text-center::before {
    margin: 0 auto;
    right: 0;
}
.heading_s1.text-right::before {
    left: auto;
    right: 0;
}
.heading_s2::before {
	background-color: #0e93d8;
	bottom: 0;
	border-radius: 30px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 60px;
}
.heading_s2::after {
    background-color: #0e93d8;
    bottom: 0;
    border-radius: 30px;
    content: "";
    height: 4px;
    left: 65px;
    position: absolute;
    width: 4px;
}
.heading_s2.text-center::before {
    margin: 0 auto;
    right: 10px;
}
.heading_s2.text-right::before {
    left: auto;
    right: 0;
}
.heading_s2.text-center::after {
    margin: 0 auto;
    right: 0;
}
.heading_s2.text-right::after {
    left: auto;
    right: 65px;
}
.heading_s3,
.heading_s4,
.heading_s7 {
	margin-bottom: 30px;
}
.heading_s4 .sub_title {
    font-size: 100px;
    color: #000;
    opacity: 0.09;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    margin-bottom: -40px;
}
.heading_s4.heading_light .sub_title {
    color: #fff;
    opacity: 0.3;
}
.heading_s5,
.widget_title3 {
	margin-bottom: 30px;
	padding-bottom: 20px;
	position: relative;
}
.heading_s5::before,
.widget_title3:before {
	background-color: #0e93d8;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 80px;
	z-index: 1;
}
.heading_s5::after,
.widget_title3:after {
	background-color: #ddd;
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	bottom: 0;
	width: 100%;
	content: "";
	z-index: 0;
}
.heading_s6 h1,
.heading_s6 h2,
.heading_s6 h3,
.heading_s6 h4,
.heading_s6 h5,
.heading_s6 h6 {
	line-height: 1.5;
}
.heading_s7 h2 {
	font-size: 36px;
}
.sub_title {
    color: #0e93d8;
    text-transform: capitalize;
    margin-bottom: 5px;
    display: block;
}
.heading_light > * {
	color: #fff;
}
.heading_s1.heading_light::before,
.heading_s2.heading_light::before,
.heading_s2.heading_light::after {
	background-color: #ffffff;
}
.heading_uppercase h1,
.heading_uppercase h2,
.heading_uppercase h3,
.heading_uppercase h4,
.heading_uppercase h5,
.heading_uppercase h6,
.text_uppercase * {
	text-transform: uppercase;
}
.title_shape {
	position: relative;
	max-width: 360px;
	margin: 10px auto 0;
}
.title_shape::before {
	background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=1 ); /* ie6-9 */ 
	content: "";
	position: absolute;
	left: 0;
	height: 1px;
	width: 40%;
	top: 50%;
}
.title_shape::after {
	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(255,255,255,0))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=1 ); /* ie6-9 */ 
	content: "";
	position: absolute;
	right: 0;
	height: 1px;
	width: 40%;
	top: 50%;
}
.heading_light .title_shape::before {
	background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* ie6-9 */ 
}
.heading_light .title_shape::after {
	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* ie6-9 */ 
}
	
.form-control {
	color: #000;
	box-shadow: none;
	height: 45px;
	padding: 8px 15px;
}
.form-control:focus,
.custom-file-input:focus ~ .custom-file-label {
	color: #000;
	box-shadow: none;
	height: 45px;
}
select.not_chosen,
select option:first-child,
select.not_chosen:focus,
select.form-control.not_chosen,
select.form-control option:first-child,
select.not_chosen.form-control:focus {
	color: #6c757d;
}
select option {
	color: #000;
}
.overlay_bg_90,
.overlay_bg_80,
.overlay_bg_70,
.overlay_bg_60,
.overlay_bg_50,
.overlay_bg_40,
.overlay_bg_30,
.overlay_bg_30,
.overlay_bg_20,
.overlay_bg_10,
.overlay_bg_default_90,
.overlay_bg_default_80,
.overlay_bg_default_70,
.overlay_bg_default_60,
.overlay_bg_default_50,
.overlay_bg_default_40,
.overlay_bg_default_30,
.overlay_bg_default_20,
.overlay_bg_default_10,
.overlay_bg_white_90,
.overlay_bg_white_80,
.overlay_bg_white_70,
.overlay_bg_white_60,
.overlay_bg_white_50,
.overlay_bg_white_40,
.overlay_bg_white_30,
.overlay_bg_white_20,
.overlay_bg_white_10 {
	position: relative;
}
.overlay_bg_90::before,
.overlay_bg_80::before,
.overlay_bg_70::before,
.overlay_bg_60::before,
.overlay_bg_50::before,
.overlay_bg_40::before,
.overlay_bg_30::before,
.overlay_bg_30::before,
.overlay_bg_20::before,
.overlay_bg_10::before,
.overlay_bg_default_90:before,
.overlay_bg_default_80:before,
.overlay_bg_default_70:before,
.overlay_bg_default_60:before,
.overlay_bg_default_50:before,
.overlay_bg_default_40:before,
.overlay_bg_default_30:before,
.overlay_bg_default_20:before,
.overlay_bg_default_10:before,
.overlay_bg_white_90:before,
.overlay_bg_white_80:before,
.overlay_bg_white_70:before,
.overlay_bg_white_60:before,
.overlay_bg_white_50:before,
.overlay_bg_white_40:before,
.overlay_bg_white_30:before,
.overlay_bg_white_20:before,
.overlay_bg_white_10:before {
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.overlay_bg_90::before {
	background-color: rgba(0, 0, 0, 0.90);
}
.overlay_bg_80::before {
	background-color: rgba(0, 0, 0, 0.80);
}
.overlay_bg_70::before {
	background-color: rgba(0, 0, 0, 0.70);
}
.overlay_bg_60::before {
	background-color: rgba(0, 0, 0, 0.60);
}
.overlay_bg_50::before {
	background-color: rgba(0, 0, 0, 0.50);
}
.overlay_bg_40::before {
	background-color: rgba(0, 0, 0, 0.40);
}
.overlay_bg_30::before {
	background-color: rgba(0, 0, 0, 0.30);
}
.overlay_bg_20::before {
	background-color: rgba(0, 0, 0, 0.20);
}
.overlay_bg_10::before {
	background-color: rgba(0, 0, 0, 0.10);
}
.overlay_bg_default_90:before {
	background-color: rgba(243, 43, 86, 0.90);
}
.overlay_bg_default_80:before {
	background-color: rgba(243, 43, 86, 0.80);
}
.overlay_bg_default_70:before {
	background-color: rgba(243, 43, 86, 0.70);
}
.overlay_bg_default_60:before {
	background-color: rgba(243, 43, 86, 0.60);
}
.overlay_bg_default_50:before {
	background-color: rgba(243, 43, 86, 0.50);
}
.overlay_bg_default_40:before {
	background-color: rgba(243, 43, 86, 0.40);
}
.overlay_bg_default_30:before {
	background-color: rgba(243, 43, 86, 0.30);
}
.overlay_bg_default_20:before {
	background-color: rgba(243, 43, 86, 0.20);
}
.overlay_bg_default_10:before {
	background-color: rgba(243, 43, 86, 0.10);
}
.overlay_bg_white_90::before {
	background-color: rgba(255, 255, 255, 0.90);
}
.overlay_bg_white_80::before {
	background-color: rgba(255, 255, 255, 0.80);
}
.overlay_bg_white_70::before {
	background-color: rgba(255, 255, 255, 0.70);
}
.overlay_bg_white_60::before {
	background-color: rgba(255, 255, 255, 0.60);
}
.overlay_bg_white_50::before {
	background-color: rgba(255, 255, 255, 0.50);
}
.overlay_bg_white_40::before {
	background-color: rgba(255, 255, 255, 0.40);
}
.overlay_bg_white_30::before {
	background-color: rgba(255, 255, 255, 0.30);
}
.overlay_bg_white_20::before {
	background-color: rgba(255, 255, 255, 0.20);
}
.overlay_bg_white_10::before {
	background-color: rgba(255, 255, 255, 0.10);
}
.bg_transparent_90 {
	background-color: rgba(0,0,0,0.9);
}
.bg_transparent_80 {
	background-color: rgba(0,0,0,0.8);
}
.bg_transparent_70 {
	background-color: rgba(0,0,0,0.7);
}
.bg_transparent_60 {
	background-color: rgba(0,0,0,0.6);
}
.bg_transparent_50 {
	background-color: rgba(0,0,0,0.5);
}
.bg_transparent_40 {
	background-color: rgba(0,0,0,0.4);
}
.bg_transparent_30 {
	background-color: rgba(0,0,0,0.3);
}
.bg_transparent_20 {
	background-color: rgba(0,0,0,0.2);
}
.bg_transparent_10 {
	background-color: rgba(0,0,0,0.1);
}
.gray_bg {
	background-color: #f7f7f7;
}
.light_gray_bg {
	background-color: #e8eff9;
}
.light_gray_bg2 {
	background-color: #DDE9FB;
}
.bg_blue {
	background-color: #0e93d8;
}
.bg_blue2 {
	background-color: #4382FF;
}
.bg_dark_blue {
	background-color: #0C468F;
}
.dark_gray_bg {
	background-color: #5C5C5C;
}
.bg_black {
	background-color: #000;
}
.bg_black2 {
	background-color: #0c0e27;
}
.bg_black3 {
	background-color: #252740;
}
.bg_black4 {
	background-color: #1C1C21;
}
.bg_red {
	background-color: #ee3d43;
}
.bg_light_blue {
	background-color: #68bac0;
}
.bg_light_green {
	background-color: #b6ca2b;
}
.bg_light_green2 {
	background-color: #B3D369;
}
.bg_linen {
    background-color: #F9F5F0;
}
.border_dark {
	border-color: #333 !important;
}
.bg_danger {
	background-color: #F6475F;
}
.bg_gd_moonpurple {
	background: -moz-linear-gradient(0deg, rgba(78,84,200,1) 0%, rgba(143,148,251,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(78,84,200,1)), color-stop(100%, rgba(143,148,251,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(78,84,200,1) 0%, rgba(143,148,251,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(78,84,200,1) 0%, rgba(143,148,251,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(78,84,200,1) 0%, rgba(143,148,251,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(78,84,200,1) 0%, rgba(143,148,251,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e54c8', endColorstr='#8f94fb',GradientType=1 ); /* ie6-9 */ 
}
.bg_gd_stripe {
	background: -moz-linear-gradient(0deg, rgba(11,117,253,1) 0%, rgba(33,237,236,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(11,117,253,1)), color-stop(100%, rgba(33,237,236,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(11,117,253,1) 0%, rgba(33,237,236,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(11,117,253,1) 0%, rgba(33,237,236,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(11,117,253,1) 0%, rgba(33,237,236,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(11,117,253,1) 0%, rgba(33,237,236,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0B75FD', endColorstr='#21EDEC',GradientType=1 ); /* ie6-9 */ 
}
.bg_gd_blue {
	background: -moz-linear-gradient(left, #021b79 0%, #0575e6 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #021b79 0%,#0575e6 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #021b79 0%,#0575e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#021b79', endColorstr='#0575e6',GradientType=1 ); /* IE6-9 */
}
.overlay_gd_blue_9::before {
	background: -moz-linear-gradient(left, #021b79 0%, #0575e6 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #021b79 0%,#0575e6 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #021b79 0%,#0575e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#021b79', endColorstr='#0575e6',GradientType=1 ); /* IE6-9 */
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0.9;
}
.text_white * {
	color: #fff;
}
.text_dark * {
	color: #333 !important;
}
.text_default {
	color: #55bbeb !important;
}
.text_success {
	color: #42b574 !important;
}
.text_danger {
	color: #f54b0f !important;
}
.text_warning {
	color: #f5bf2f !important;
}
.highlight_txt {
	color: #333;
	font-style: italic;
	font-size: 18px;
	margin-bottom: 15px;
	display: block;
	font-weight: 500;
}
.angle_bottom {
	border-bottom: 100px solid #ffffff;
	border-left: 100vw solid rgba(0, 0, 0, 0);
	bottom: 0;
	display: block;
	height: 0;
	position: absolute;
	right: 0;
	width: 0;
	z-index: 9;
}
.angle_top {
	border-right: 100vw solid rgba(0, 0, 0, 0);
	border-top: 100px solid #ffffff;
	display: block;
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	z-index: 1;
}

.overflow_hide {
	overflow: hidden;
}
.radius_box_10,
.radius_box_10:before {
	border-radius: 10px;
}
.radius_lb_10 {
	border-radius: 10px 0 0 10px;
}
.radius_rb_10 {
	border-radius: 0 10px 10px 0;
}
.radius_lbrb_10 {
	border-radius: 0 0 10px 10px;
}
.radius_ltrt_10 {
	border-radius: 10px 10px 0 0;
}
.box_shadow {
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.box_shadow2 {
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.box_shadow3 {
	box-shadow: 0 0 10px rgba(0,0,0,0.10);
}
.box_shadow4 {
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.border_top_tran {
	border-top: 1px solid rgba(255,255,255,0.2);
}
.border_top_dash {
	border-top: 1px dashed rgba(255,255,255,0.2);
}
.border_bottom_tran {
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border_bottom_tran2 {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.scrollup {
	background-color: #4f4f4f;
	border-radius: 100%;
	bottom: 20px;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 40px;
	z-index: 99;
}
.scrollup:hover {
	background-color: #0e93d8;
	color:#fff;
}
.scrollup:focus {
	color:#fff;
}

.preloader {
	background-color: #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.loader_grid {
	height: 60px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 60px;
}
.loader_grid .loader_box {
	width: 33%;
	height: 33%;
	background-color: #0E93D8;
	float: left;
	-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
	animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.loader_grid .loader_box1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.loader_grid .loader_box2 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s; 
}
.loader_grid .loader_box3 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s; 
}
.loader_grid .loader_box4 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s; 
}
.loader_grid .loader_box5 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.loader_grid .loader_box6 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s; 
}
.loader_grid .loader_box7 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s; 
}
.loader_grid .loader_box8 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s; 
}
.loader_grid .loader_box9 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s; 
}

@-webkit-keyframes sk-cubeGridScaleDelay {
	0%, 70%, 100% {
	-webkit-transform: scale3D(1, 1, 1);
	transform: scale3D(1, 1, 1);
  } 35% {
	-webkit-transform: scale3D(0, 0, 1);
	transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
	0%, 70%, 100% {
	-webkit-transform: scale3D(1, 1, 1);
	transform: scale3D(1, 1, 1);
  } 35% {
	-webkit-transform: scale3D(0, 0, 1);
	transform: scale3D(0, 0, 1);
  } 
}

.bg_size_auto {
    background-size: auto !important;
}
.bg_size_contain {
	background-size: contain !important;
}
.bg_norepeat {
    background-repeat: no-repeat !important;
}
.position_top_center {
    background-position: top center !important;
}
.position_center_bottom {
    background-position: center bottom !important;
}
.position_right_center {
    background-position: right center !important;
}
.position_right_bottom {
    background-position: right bottom !important;
}
.fixed_bg {
    background-attachment: fixed !important;
}
.font_style2 {
	font-family: 'Courgette', cursive;
}
.font_style3 {
	font-family: 'Great Vibes', cursive;
}
.btn_box_shadow:hover,
.btn_box_shadow:focus,
.btn_box_shadow.active:focus,
.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #0e93d8 !important;
}
.btn-danger.btn_box_shadow:hover,
.btn-danger.btn_box_shadow:focus,
.btn-danger.btn_box_shadow.active:focus,
.btn-danger.btn_box_shadow:active:focus,
.btn-outline-danger.btn_box_shadow:hover,
.btn-outline-danger.btn_box_shadow:focus,
.btn-outline-danger.btn_box_shadow.active:focus,
.btn-outline-danger.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #dc3545 !important;
}
.btn-success.btn_box_shadow:hover,
.btn-success.btn_box_shadow:focus,
.btn-success.btn_box_shadow.active:focus,
.btn-success.btn_box_shadow:active:focus,
.btn-outline-success.btn_box_shadow:hover,
.btn-outline-success.btn_box_shadow:focus,
.btn-outline-success.btn_box_shadow.active:focus,
.btn-outline-success.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #28a745 !important;
}
.btn-primary.btn_box_shadow:hover,
.btn-primary.btn_box_shadow:focus,
.btn-primary.btn_box_shadow.active:focus,
.btn-primary.btn_box_shadow:active:focus,
.btn-outline-primary.btn_box_shadow:hover,
.btn-outline-primary.btn_box_shadow:focus,
.btn-outline-primary.btn_box_shadow.active:focus,
.btn-outline-primary.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #007bff !important;
}
.btn-warning.btn_box_shadow:hover,
.btn-warning.btn_box_shadow:focus,
.btn-warning.btn_box_shadow.active:focus,
.btn-warning.btn_box_shadow:active:focus,
.btn-outline-warning.btn_box_shadow:hover,
.btn-outline-warning.btn_box_shadow:focus,
.btn-outline-warning.btn_box_shadow.active:focus,
.btn-outline-warning.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #ffc107 !important;
}
.btn-secondary.btn_box_shadow:hover,
.btn-secondary.btn_box_shadow:focus,
.btn-secondary.btn_box_shadow.active:focus,
.btn-secondary.btn_box_shadow:active:focus,
.btn-outline-secondary.btn_box_shadow:hover,
.btn-outline-secondary.btn_box_shadow:focus,
.btn-outline-secondary.btn_box_shadow.active:focus,
.btn-outline-secondary.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #6c757d !important;
}
.btn-info.btn_box_shadow:hover,
.btn-info.btn_box_shadow:focus,
.btn-info.btn_box_shadow.active:focus,
.btn-info.btn_box_shadow:active:focus,
.btn-outline-info.btn_box_shadow:hover,
.btn-outline-info.btn_box_shadow:focus,
.btn-outline-info.btn_box_shadow.active:focus,
.btn-outline-info.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #17a2b8 !important;
}
.btn-black.btn_box_shadow:hover,
.btn-black.btn_box_shadow:focus,
.btn-black.btn_box_shadow.active:focus,
.btn-black.btn_box_shadow:active:focus,
.btn-outline-black.btn_box_shadow:hover,
.btn-outline-black.btn_box_shadow:focus,
.btn-outline-black.btn_box_shadow.active:focus,
.btn-outline-black.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #333333 !important;
}
.btn-dark.btn_box_shadow:hover,
.btn-dark.btn_box_shadow:focus,
.btn-dark.btn_box_shadow.active:focus,
.btn-dark.btn_box_shadow:active:focus,
.btn-outline-dark.btn_box_shadow:hover,
.btn-outline-dark.btn_box_shadow:focus,
.btn-outline-dark.btn_box_shadow.active:focus,
.btn-outline-dark.btn_box_shadow:active:focus {
	box-shadow: 0 0 15px #343a40 !important;
}
.badge-orange {
    color: #fff;
    background-color: #EE982C;
}
/*===================================*
  01.END GENERAL STYLE
*===================================*/

/*===================================*
  02. HEADER DESIGN
*===================================*/
.navbar-brand img {
    max-width: 182px;
}
.logo_light, .logo_dark {
	display: none;
}
.light_skin .logo_default, .light_skin .logo_dark {
	display: none;
}
.light_skin .logo_light {
	display: block;
}
.dark_skin .logo_light, .dark_skin .logo_default {
	display: none;
}
.dark_skin .logo_dark {
	display: block;
}
.light_skin .navbar-nav a,
.light_skin .navbar-toggler {
	color: #ffffff;
}
.dark_skin .navbar-nav a,
.navbar-toggler {
	color: #000000;
}
.navbar {
	padding: 0;
}
.header_wrap {
	transition: all 0.5s ease 0s;
}
.navbar-expand-lg .navbar-nav li {
	position: relative;
	list-style: none;
}
.navbar-nav .dropdown-menu {
	background-color: #333333;
	border: 0 none;
	border-radius: 0;
	margin: 0;
	min-width: 12rem;
	padding: 0;
}
.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
	background-color: #252525;
}
.dark_skin .navbar-nav .dropdown-menu,
.dd_dark_skin .navbar-nav .dropdown-menu,
.dd_dark_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
	background-color: #fff;
	box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
	border: 1px solid #eee;
	margin-top: -1px;
}
.dark_skin .mega-menu-col,
.dark_skin .cart_list li,
.dd_dark_skin .mega-menu-col,
.dd_dark_skin .cart_list li {
	border-color: #ddd;
}
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a.active, 
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover, 
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > li:hover > a, 
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a,
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a.active, 
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover, 
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > li:hover > a, 
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	background-color: #eeeeee;
	color: #333;
}
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-item, 
.dark_skin .navbar-expand-lg .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total,
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-item, 
.dd_dark_skin .navbar-expand-lg .navbar-nav .dropdown-header,
.dd_dark_skin .cart_quantity,
.dd_dark_skin .cart_total {
	color: #333;
}
.dark_skin .cart_list a,
.dd_dark_skin .cart_list a {
	color: #333 !important;
}
.dark_skin .cart_list a:hover, .dark_skin .item_remove:hover,
.dd_dark_skin .cart_list a:hover, .dd_dark_skin .item_remove:hover {
	color: #000 !important;
}

.dd_light_skin .navbar-nav .dropdown-menu,
.dd_light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
	background-color: #333;
	border: 0;
	margin-top: 0;
}
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a.active, 
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover, 
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > li:hover > a, 
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	background-color: rgba(0,0,0,0.2);
	color: #fff;
}
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-item, 
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-header,
.dd_light_skin .cart_quantity,
.dd_light_skin .cart_total {
	color: #bdbdbd;
}
.dd_light_skin .mega-menu-col {
	border-right-color: #5d5d5d;
}
.dd_light_skin .cart_list li {
	border-bottom-color: #777777;
}
.dd_light_skin .cart_total,
.dd_light_skin .cart_quantity,
.dd_light_skin .navbar-expand-lg .navbar-nav .dropdown-header {
	color: #ffffff;
}
.dd_light_skin .cart_list a {
	color: #fff !important;
}
.dd_light_skin .cart_list a:hover, .dd_dark_skin .item_remove:hover {
	color: #ddd !important;
}


/*
.dropdown-toggle::after, .dropdown-toggler::after {
	border: 0 none;
	content: "\f063";
	font-family: "Font Awesome 6 Free";
	height: auto;
	line-height: normal;
	margin-left: 5px;
	vertical-align: middle;
	width: auto;
}*/
.dd_main_arrow_none .navbar-expand-lg .navbar-nav > li > .nav-link.dropdown-toggle::after {
	content: normal;
}
.dropdown-toggler::after {
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.dropdown-menu .dropdown-toggler::after {
	position: absolute;
	right: 10px;
	top: 10px;
}
.navbar-expand-lg .navbar-nav > li > .nav-link {
	font-size: 14px;
	font-weight: 600;
	padding: 25px 10px;
	text-transform: uppercase;
}
.main_menu_capitalize .navbar-expand-lg .navbar-nav > li > .nav-link {
	text-transform: capitalize;
}
.main_menu_weight_100 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 100;
}
.main_menu_weight_200 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 200;
}
.main_menu_weight_300 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 300;
}
.main_menu_weight_400 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 400;
}
.main_menu_weight_500 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 500;
}
.main_menu_weight_600 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 600;
}
.main_menu_weight_700 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 700;
}
.main_menu_weight_800 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 800;
}
.main_menu_weight_900 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-weight: 900;
}
.main_menu_size_16 .navbar-expand-lg .navbar-nav > li > .nav-link {
	font-size: 16px;
}
.bottom-header .navbar-expand-lg .navbar-nav > li > .nav-link {
	padding: 20px 10px;
}
.navbar-expand-lg .navbar-nav .dropdown-item {
	padding: 8px 25px 8px 10px;
	color: #bdbdbd;
	font-size: 14px;
	text-transform: none;
}
.navbar-expand-lg .navbar-nav .dropdown-header {
    color: #fff;
    padding: 10px 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.navbar-expand-lg .attr-nav li .nav-link {
	padding: 20px 10px;
	position: relative;
}
.navbar-expand-lg .attr-nav li .nav-link i {
	font-size: 20px;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav > li > .nav-link {
	margin: 0;
	padding: 20px 10px;
}
.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.navbar-expand-lg .navbar-nav.attr-nav .dropdown-menu li a.active, 
.navbar-expand-lg .navbar-nav.attr-nav .dropdown-menu li a:hover, 
.navbar-expand-lg .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
	background-color: rgba(0,0,0,0);
}
.hover_menu_style1 .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style1 .navbar-expand-lg .navbar-nav > li > a.active {
	background-color: #ffffff;
	color: #0073b8;
}
.hover_menu_style1.dark_skin .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style1.dark_skin .navbar-expand-lg .navbar-nav > li > a.active {
	background-color: #232323;
	color: #fff;
}
.navbar-expand-lg .navbar-nav > li {
	margin-left: 1px;
}
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav li a.active, 
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a {
	color: #0073b8;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link {
	margin: 0 10px;
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav > li > .nav-link:before {
	content: normal;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav li a.active, 
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a {
	color: #0073b8;
}
.nav-fixed.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link {
	margin: 0;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	background-color: #000;
	bottom: 15px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	right: 50%;
	transition: all 0.5s ease 0s;
}
.hover_menu_style2.light_skin .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	background-color: #fff;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav li a.active:before, 
.hover_menu_style2 .navbar-expand-lg .navbar-nav > li:hover > a:before {
	left: 0;
	right: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li a.active,
.navbar-expand-lg .navbar-nav .dropdown-menu li a:hover,
.navbar-expand-lg .navbar-nav .dropdown-menu > ul > li:hover > a, 
.navbar-expand-lg .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	background-color: rgba(0,0,0,0.2);
	color: #fff;
}
.hover_menu_style2.nav-fixed .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	background-color: #333333;
}
.nav-fixed.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link {
	padding-left: 0;
	padding-right: 0;
	margin: 0 10px;
}
.hover_menu_style3 .navbar-expand-lg .navbar-nav > li > a.active, 
.hover_menu_style3 .navbar-expand-lg .navbar-nav > li:hover > a {
	color: #0e93d8;
}
.hover_menu_style4 .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style4 .navbar-expand-lg .navbar-nav > li > a.active {
	background-color: #0e93d8;
	color: #fff;
}
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav > li > a.active, 
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a,
.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav > li > a.active, 
.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a {
	background-color:rgba(0,0,0,0);
	color: #0e93d8;
}
.search_overlay::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	left: 0;
	position: fixed;
	text-align: center;
	top: 0;
	transition: all 0.25s ease-in-out 0s;
	width: 100%;
	z-index: 99;
}
.search-overlay {
	opacity: 0;
	visibility: hidden;
}
.search-overlay.open {
    visibility: visible;
    opacity: 1;
}
.close-search {
	color: #ffffff;
	cursor: pointer;
	font-size: 50px;
	position: absolute;
	right: 0px;
	top: 30px;
	z-index: 999;
}
.search_wrap {
	left: 0;
	margin: 0 auto;
	max-width: 900px;
	position: fixed;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
}
.search_icon {
	font-size: 30px;
	position: absolute;
	right: 15px;
	top: 10px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
}
.search_wrap .form-control {
	border-radius: 0;
	padding: 20px;
	border: 0;
	box-shadow: none;
	height: auto;
}
.search_wrap .form-control:focus {
	border: 0;
	box-shadow: none;
}
.nav-fixed .navbar-expand-lg .navbar-nav > li > .nav-link {
	padding: 20px 10px;
}
.nav-fixed .navbar-expand-lg .attr-nav li .nav-link,
.hover_menu_style2.nav-fixed  .navbar-expand-lg .navbar-nav.attr-nav > li > .nav-link {
	padding: 15px 10px;
	margin: 0; 
}
.header_wrap.nav-fixed {
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 999;
}
.header_wrap.nav-fixed:not([class*="bg_"]):not([class*="bg-"]) {
	background-color: #fff;
}
.nav-fixed.border_bottom_tran {
	border: 0;
}
.header_wrap.nav-fixed.no-sticky {
	position: relative;
}
.light_skin.nav-fixed .logo_dark {
	display: block;
}
.light_skin.nav-fixed .logo_light {
	display: none;
}
.light_skin.nav-fixed .navbar-nav > li > a,
.light_skin.nav-fixed .navbar-toggler {
	color: #333333;
}
.sticky_light_skin.light_skin.nav-fixed .logo_dark {
    display: none;
}
.sticky_light_skin.light_skin.nav-fixed .logo_light {
    display: block;
}
.header_wrap.nav-fixed.bg-dark {
    border-bottom: 0;
}
.sticky_light_skin.light_skin.nav-fixed .navbar-nav > li > a, .sticky_light_skin.light_skin.nav-fixed .navbar-toggler {
    color: #fff;
}
.sticky_light_skin.hover_menu_style2.nav-fixed .navbar-expand-lg .navbar-nav > li > .nav-link::before {
    background-color: #fff;
}
.header_wrap.nav-fixed[class*="overlay_"]:before {
	content: normal;
}
.mega-menu {
	display: table;
	padding: 15px 0;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.navbar-expand-lg .navbar-nav li.dropdown-mega-menu {
	position: static;
}
.dropdown-mega-menu .dropdown-menu {
	right: 0;
}
.mega-menu-col {
	border-right: 1px solid #5d5d5d;
}
.mega-menu-col:last-child {
	border-right: 0;
}
.dropdown-menu li a i {
    font-size: 14px;
    width: 20px;
    display: inline-block;
}
.cart_list li {
	list-style: outside none none;
}
.cart_count {
	position: absolute;
	top: 13px;
	right: 2px;
	font-size: 10px;
	background-color: #0e93d8;
	border-radius: 40px;
	height: 16px;
	line-height: 16px;
	padding: 0 5px;
	color: #fff;
	font-weight: normal;
}
.nav-fixed .cart_count {
	top: 8px;
}
.cart_box {
	background-color: #333333;
	width: 300px;
}
.cart_list li {
	border-bottom: 1px solid #777777;
	padding: 20px;
}
.item_remove {
	float: right;
	text-align: right;
}
.cart_list img {
	background-color: #ffffff;
	float: left;
	margin-right: 10px;
	max-width: 60px;
	vertical-align: top;
}
.cart_list a {
	color: #fff !important;
	font-size: 14px;
	vertical-align: top;
}
.cart_list a:hover,.item_remove:hover {
	color: #ddd !important;
}
.cart_quantity {
	color: #ffffff;
	display: inline-block;
	margin-top: 12px;
}
.cart_list {
    display: table;
}
.cart_total {
	color: #ffffff;
	margin: 0;
	padding: 10px 20px;
	text-align: right;
}
.cart_total strong {
	float: left;
}
.cart_buttons {
	margin: 0;
	padding: 10px 20px 20px;
	text-align: center;
}
.cart_buttons .view-cart, .cart_buttons .checkout {
	background-color: #0e93d8;
	color: #fff !important;
	margin: 0 5px !important;
	padding: .375rem .75rem !important;
	float: none !important;
}
.cart_buttons .view-cart:hover, .cart_buttons .checkout:hover {
	background-color: #0073b8;
}
.top-header,
.middle-header {
    padding: 10px 0;
}
.light_skin  .top-header,
.light_skin  .middle-header {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.dark_skin .top-header,
.dark_skin .middle-header {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.social_icons, .contact_detail {
	font-size: 0;
}
.social_icons li,
.contact_detail li {
    display: inline-block;
	padding: 2px 3px;
}
.social_icons li a {
	font-size: 18px;
    height: 35px;
    width: 35px;
	line-height: 35px;
    display: inline-block;
    text-align: center;
	vertical-align: middle;
}
.social_style1 li a {
	background-color: rgba(0,0,0,0.2);
}
.social_white.social_style1 li a {
	background-color: rgba(255,255,255,0.2);
}
.social_white.social_style1 li a:hover {
	background-color: rgba(255,255,255,0.4);
}
.social_vertical li {
	display: block;
}
.contact_detail i {
    margin-right: 5px;
	vertical-align: middle;
}
.contact_detail li {
	color: #000;
	font-size: 14px;
	margin-left: 5px;
	vertical-align: middle;
}
.contact_detail li:first-child {
	margin-left: 0px;
}
.top-header.light_skin .contact_detail li {
	color: #fff;
}
.top-header.dark_skin .contact_detail li {
	color: #000;
}
header .social_icons li a {
	font-size: 16px;
	height: 30px;
	width: 30px;
	line-height: 30px;
}
.nav-fixed .top-header,
.nav-fixed .middle-header {
	display: none !important;
}
.navbar-toggler {
	float: right;
	padding: 5px 10px;
    margin: 10px 0;
    font-size: 28px;
	transition: all 0.5s ease 0s;
}
.toggler_style1 {
	background-color: #E8105F;
	color: #fff !important;
}
.navbar-toggler[aria-expanded="true"] span::before {
    content: "\f129";
    font-size: 20px;
    width: 21px;
    line-height: 28px;
	vertical-align: top;
}
.widget_social_counter {
	text-align: center;
}
.widget_social_counter li {
	width: 33.33%;
	margin-top: 15px;
}
.widget_social_counter li:nth-child(-n+3) {
	margin-top: 0px;
}
.widget_social_counter .data {
	margin-top: 10px;
	font-size: 14px;
	color: #292b2c;
	font-weight: bold;
}
.widget_social_counter .text {
	font-size: 12px;
	color: #6c757d;
	font-weight: normal;
}
/*overlay menu Css*/
.overlay_menu .navbar-brand {
    padding: 12px 0 0;
}
.overlay_menu .navbar-toggler[aria-expanded="true"],
.overlay_menu .navbar-collapse > .navbar-nav > li > a, 
.overlay_menu.active .navbar-toggler {
	color: #333;
}
.overlay_menu .navbar-collapse > .navbar-nav > li > a:hover {
	color: #0e93d8;
}
.overlay_menu .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	content: normal;
}
.overlay_menu .navbar-expand-lg .navbar-nav > li:hover > a, 
.overlay_menu .navbar-expand-lg .navbar-nav > li > a.active {
	background-color: transparent !important;
}
.overlay_menu .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: relative;
}
.overlay_menu .navbar-expand-lg .navbar-collapse > .navbar-nav > li > .nav-link {
	padding: 5px 0;
	margin: 0;
	font-size: 30px;
}
.overlay_menu .navbar-expand-lg .navbar-nav li:hover > .dropdown-menu {
    display: none;
}
.overlay_menu .navbar-expand-lg .navbar-nav li.show:hover > .dropdown-menu,
.overlay_menu .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu.show,
.overlay_menu.header_wrap .navbar {
    display: block;
}
.overlay_menu .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu.show {
	left:0;
}
.overlay_menu .dropdown-toggler::after {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.overlay_menu .mega-menu.d-lg-flex {
	display: block !important;
}
.overlay_menu .mega-menu-col {
    border-right: 0;
    float: none;
    padding: 0 15px;
    width: 100%;
}
.overlay_menu .mega-menu-col[class*="col-"] {
	max-width: 100%;
	flex: 0 0 100%;
	-ms-flex: 0 0 100%;
}
.overlay_menu .navbar-collapse .navbar-nav {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
	margin-top: -50px;
	transition: all 0.2s ease-in-out;
}
.overlay_menu .navbar-collapse.show .navbar-nav {
	margin-top: 0;
}
.overlay_menu .dropdown-toggle::after {
    content: "\f217";
    float: right;
	font-size: 24px;
	font-weight: normal;
	margin-top: 7px;
}
.overlay_menu .dropdown.show .dropdown-toggle::after {
    content: "\f208";
}
.overlay_menu .navbar-expand-lg .navbar-toggler {
    display: block;
	position: relative;
	z-index: 999;
	margin: 16px 0;
}
.overlay_menu.nav-fixed .navbar-expand-lg .navbar-toggler {
    margin: 10px 0;
}
.overlay_menu .navbar-expand-lg .navbar-collapse {
	display: none !important;
}
.overlay_menu .navbar-expand-lg .navbar-collapse {
    display: block !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: -18px;
    bottom: 0;
	height: 80vh;
    z-index: 99;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
}
.overlay_menu .navbar-expand-lg .navbar-collapse.show { 
	opacity: 1;
	visibility: visible;
}
.overlay_menu.active .navbar-collapse::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.95);
	z-index: -1;
}
.overlay_menu.header_wrap .navbar-expand-lg .navbar-nav.attr-nav {
    float: right;
}
header .attr-nav + .social_icons {
	border-left: 1px solid #333;
	margin-left: 5px;
	padding-left: 5px;
}
header .attr-nav + .social_icons li {
	padding: 0;
}
header.light_skin .attr-nav + .social_icons {
	border-color: #fff;
}
header.light_skin.nav-fixed .attr-nav + .social_icons {
	border-color: #333;
}
header.light_skin .social_icons li a {
	color: #fff;
}
header.light_skin.nav-fixed .social_icons li a {
	color: #000;
}
header.light_skin.nav-fixed .social_icons li a:hover {
    color: #0E93D8;
}
.navbar .btn {
	padding: 10px 25px;
}
.navbar .nav_btn {
	padding: 8px 20px;
}
.header_info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.header_info li {
	display: -ms-flexbox;
	display: flex;
	padding-left: 30px;
}
.header_info li:first-child {
	padding-left: 0px;
}
.header_info li i {
    width: 30px;
	font-size: 28px;
	height: 30px;
	color: #0e93d8;
}
.header_info li p{
	margin: 0;
	color: #292b2c;
}
.header_info li .hd_info {
    padding-left: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.43;
}
.lng_dropdown {
	position: relative;
	display: inline-block
}
.lng_dropdown .ddTitleText img, .lng_dropdown .ddChild li img {
	border-radius: 100%;
	display: inline-block;
	height: 16px;
	width: 16px;
}
.lng_dropdown .ddlabel {
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 14px;
	color: #333;
	white-space: nowrap;
}
.lng_dropdown #pr_select_msdd .ddlabel {
	margin-left: 0;
}
.light_skin .lng_dropdown .ddTitleText .ddlabel,
.light_skin .ddArrow::before {
	color: #fff;
}
.light_skin.nav-fixed .lng_dropdown .ddTitleText .ddlabel,
.light_skin.nav-fixed .ddArrow::before {
	color: #000;
}
.dark_skin .lng_dropdown .ddTitleText .ddlabel, .dark_skin .ddArrow::before {
	color: #000;
}
.lng_dropdown .dd.ddcommon {
	cursor: pointer;
	padding-right: 10px;
	position: relative;
	width: auto !important;
	outline: none;
}
.lng_dropdown .ddTitleText {
	padding: 5px 7px 5px 10px;
	display: inline-block;
	text-transform: uppercase;
}
.lng_dropdown .ddChild {
	background-color: #fff;
	height: auto !important;
}
.dd_dark_skin .top-header .lng_dropdown .ddChild {
	background-color: #fff !important;
}
.dd_dark_skin .top-header .lng_dropdown li .ddlabel {
	color: #333;
}
.dd_light_skin .top-header .lng_dropdown .ddChild {
	background-color: #343a40;
	border: 0 !important;
}
.dd_light_skin .top-header .lng_dropdown li .ddlabel {
	color: #fff;
}
.lng_dropdown .ddChild li {
	cursor: pointer;
	line-height: normal;
	list-style: outside none none;
	padding: 5px 10px;
	display: -ms-flexbox;
	display: flex;
}
.ddArrow::before {
	content: "\f3d0";
	color: #878787;
	font-family: ionicons;
	position: absolute;
	right: 0;
	top: 6px;
}
.lng_dropdown.lng_dropdown_white .ddTitleText ,
.lng_dropdown_white .ddArrow::before {
	color: #fff;
}
.search_box {
	position: relative;
}
.search_box input {
	padding-right: 30px;
}
.search_box button {
	border: 0;
	padding: 0 10px;
	background-color: transparent;
	font-size: 22px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
}
.header_list {
	display: -ms-flexbox;
	display: flex;
}
.header_list > li {
	position: relative;
	padding-right: 10px;
}
.header_list > li:last-child {
	padding-right: 0px;
}
.header_list > li::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 17px;
	background-color: #888888;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}
.header_list > li:last-child:before {
	content: normal;
}
.list_menu li {
	padding-left: 10px;
}
.list_menu li a,
.list_menu li span {
	font-size: 14px;
	color: #000;
}
.list_menu li a:hover {
	color: #0e93d8;
}
.header_wrap.light_skin.nav-fixed .btn-outline-white {
	border: 2px solid #333;
	color: #333;
}
.header_wrap.light_skin.nav-fixed .btn-outline-white:hover {
	background-color: #333;
	border: 2px solid #333;
	color: #fff;
}
.top-header.light_skin .list_menu li a,
.top-header.light_skin .list_menu li span,
.top-header.light_skin .lng_dropdown .ddlabel,
.top-header.light_skin .ddArrow::before {
	color: #fff;
}
.top-header.light_skin .header_list > li::before,
.top-header.light_skin .header_right_info .lng_dropdown::before {
	background-color: #fff;
}
.top-header.light_skin .lng_dropdown .ddChild {
	background-color: #343a40;
	border: 0 !important;
}
.top-header.light_skin .list_menu li a:hover {
	color: #0e93d8;
}
.header_right_info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.header_right_info .lng_dropdown {
	padding-right: 10px;
}
.header_right_info .lng_dropdown::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 17px;
	background-color: #888888;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}
/*===================================*
  02. END HEADER DESIGN
*===================================*/

/*===================================*
  03. BANNER SECTION
*===================================*/
.full_screen,.full_screen .carousel-item {
	height: 100vh;
}
.banner_fs {
	height: 100vh;
	min-height: 45rem;	
}
.banner_half_content {
	padding-top: 200px;
}
.banner_content_wrap .carousel-item {
	padding: 100px 0;
}
.overlay_bg::before {
	background-color: rgba(0, 0, 0, 0.3);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.overlay_bg2::before {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.overlay_bg3::before {
	background-color: rgba(0, 0, 0, 0.7);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.overlay_bg4::before {
	background-color: rgba(0, 0, 0, 0.8);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.blue_overlay_bg::before {
    background-color: rgba(14,147,216,0.8);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.bg_blue_transparent {
	background-color: rgba(14,147,216,0.8);
}
.white_overlay_bg::before {
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.video_wrap {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}
.video_wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner_content h2 {
	font-size: 70px;
	font-weight: 700;
}
.banner_content p {
	color: #333;
	font-size: 20px;
	font-weight: 300;
}
.banner_content2 h2 {
	font-size: 60px;
}
.banner_content2 p {
	font-size: 20px;
	font-weight: 300;
}
.banner_content3 h2 {
	font-size: 100px;
}
.banner_content4 h2 {
    font-size: 60px;
}
.banner_content5 {
	position: relative;
	z-index: 1;
}
.banner_content5 h2 {
	font-size: 40px;
}
.banner_content.text_white p {
	color: #fff;
}
.banner_section .banner_slide_content,
.banner_fs .banner_slide_content {
	position: relative;
	text-align: center;
	margin-bottom: 50px;
	padding-top: 50px;
}
.carousel-control-next, .carousel-control-prev {
	background-color: #000000;
	font-size: 20px;
	height: 50px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	transition: all 0.5s ease-in-out;
}
.light_arrow .carousel-control-next, .light_arrow .carousel-control-prev {
	background-color: rgba(255,255,255,0.5);
}
.light_arrow2 .carousel-control-next, .light_arrow2 .carousel-control-prev {
	background-color:#fff;
	color: #000;
}
.light_arrow3 .carousel-control-next, .light_arrow3 .carousel-control-prev {
	background-color: rgba(255,255,255,0.2);
}
.arrow_style1 .carousel-control-next, .arrow_style1 .carousel-control-prev {
    border-radius: 100%;
}
.arrow_style1 .carousel-control-next::before, .arrow_style1 .carousel-control-prev::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid #000;
    border-radius: 100%;
}
.light_arrow3 .carousel-control-next:hover, .light_arrow3 .carousel-control-prev:hover {
    background-color: #fff;
    color: #000;
}
.arrow_style1.light_arrow3 .carousel-control-next::before, .arrow_style1.light_arrow3 .carousel-control-prev::before {
	border-color: rgba(255,255,255,0.2);
}
.arrow_style1.light_arrow .carousel-control-next::before, .arrow_style1.light_arrow .carousel-control-prev::before {
	border-color: rgba(255,255,255,0.5);
}
.arrow_style1.light_arrow2 .carousel-control-next::before, .arrow_style1.light_arrow2 .carousel-control-prev::before {
	border-color: #fff;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
	 opacity: 0;
}
.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel-indicators {
	bottom: 20px;
}
.carousel-indicators li {
	border-radius: 100%;
	cursor: pointer;
	width: 12px;
	height: 12px;
}
.content_overlay_bg {
	padding: 50px;
	position:relative;
}
.content_overlay_bg::before {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.banner_head2 {
	 font-size: 40px;
}
.down {
    bottom: 20px;
    color: font-size: 48px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
}
.down .mouse {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 50px;
    margin: 0 auto 5px;
    border: 2px solid #333;
    border-radius: 24px;
    opacity: .6;
    cursor: pointer;
}
.down .mouse span {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 8px;
    height: 12px;
    margin: 0px 0 0 -4px;
    background: #333;
    border-radius: 20px;
    -webkit-animation: scroll 2s linear infinite;
    -moz-animation: scroll 2s linear infinite;
    animation: scroll 2s linear infinite;
}
@-webkit-keyframes scroll { 1% {opacity: 1; top: 30%;} 20% {opacity: 1; top: 50%;} 60% {opacity: 0; top: 50%;} 100% {opacity: 0; top: 30%;} }
@-moz-keyframes scroll { 1% {opacity: 1; top: 30%;} 20% {opacity: 1; top: 50%;} 60% {opacity: 0; top: 50%;} 100% {opacity: 0; top: 30%;} }
@keyframes scroll { 1% {opacity: 1; top: 30%;} 20% {opacity: 1; top: 50%;} 60% {opacity: 0; top: 50%;} 100% {opacity: 0; top: 30%;} }

.down_white.down .mouse {
	border-color: #fff;
}
.down_white.down .mouse span {
	background: #fff;
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}
.carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
	opacity: 1;
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.typed-cursor {
	font-weight: 100;
}
.border_shape {
	border: 14px solid rgba(255,255,255,0.5);
	padding: 20px;
}
.scroll_link {
	font-size: 14px;
	position: absolute;
	bottom: 60px;
	left: 0px;
	text-transform: uppercase;
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.scroll_link.scroll_link_right {
	left: auto;
	right: 0;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.scroll_link:hover {
	color: #292b2c;
}
.scroll_link span {
	position: relative;
}
.scroll_link span::before {
	content: "";
	position: absolute;
	left: 100%;
	height: 1px;
	width: 70px;
	background-color: #292b2c;
	top: 8px;
	margin-left: 5px;
}
.scroll_link.scroll_link_right span::before {
	left: auto;
	top: 11px;
	margin-right: 5px;
	right: 100%;
}
.social_banner {
	position: absolute;
	right: 20px;
	bottom: 20px;
}
.signature {
	max-width: 300px;
	width: 100%;
}
.indicators_style1 {
	counter-reset: step;
}
.carousel-indicators.justify-content-end {
	left: auto;
}
.carousel-indicators.justify-content-start {
	right: auto;
}
.indicators_style1.carousel-indicators li {
	width: auto;
	height: auto;
	background-color: transparent;
	text-indent: 0;
	transition: all 0.5s ease-in-out;
}
.indicators_style1.carousel-indicators li::before {
	content: "0"counter(step);
	color: #fff;
	counter-increment: step;
	position: static;
	height: auto;
	width: auto;
	margin: 0 10px;
}
.indicators_style1.carousel-indicators li::after {
	content: "/";
	margin: 0 8px;
	width: auto;
	height: auto;
	font-size: 30px;
	color: #fff;
	bottom: -5px;
	line-height: normal;
	vertical-align: middle;
	left: 28px;
	font-weight: 300;
}
.indicators_style1.carousel-indicators li:last-child::after {
	opacity: 0;
	margin: 0;
}
.indicators_style1.carousel-indicators li.active::before {
	color: #0e93d8;
}
.slide_height_700 .carousel-item {
	height: 700px;
}
.indicators_style2 li {
	border-radius: 0;
	margin: 7px;
}
.indicators_style2 li::before {
	height: auto;
	width: auto;
	border: 1px solid #fff;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	margin: -4px;
}
.carousel-indicators.indicators_style3 li {
	border-radius: 0;
	height: auto;
	width: 80px;
	background-color: transparent;
	text-indent: 0;
	border: 2px solid rgba(255,255,255,0.5);
	opacity: 0.7;
}
.carousel-indicators.indicators_style3 li.active {
	border-color: #fff;
	opacity: 1;
}
.indicators_style4 li {
	position: relative;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	margin: 0 10px;
}
.indicators_style4 li::before {
	content: "";
	position: absolute;
	left: -5px;
	top: -5px;
	bottom: -5px;
	right: -5px;
	border: 1px solid #fff;
	border-radius: 100%;
}
.indicators_style4 li
.carousel-item img {
	position: relative;
	z-index: -1;
}
.carousel-item img {
	position: relative;
	z-index: -1;
}
.zoom-in {
  animation: zoom-in 10s infinite;
}
.zoom-out {
  animation: zoom-out 10s infinite;
}
@keyframes zoom-in {
  0% {
    -moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
  }
  100% {
   -moz-transform: scale(1);
	-webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
   -moz-transform: scale(1);
	-webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
   -moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.banner_ripple .ripple {
	height:50px;
	width: 50px;
	line-height: 50px;
}
.shape_banner {
	z-index: 1;
}
/*===================================*
  03.END BANNER SECTION
*===================================*/

/*===================================*
  04. ABOUT SECTION
*===================================*/
.list_style_1 li,
.list_style_2 li {
	border-bottom: 1px solid #dddddd;
	list-style: outside none none;
	padding: 10px 10px 10px 25px;
	position: relative;
}
.list_style_3 li,
.list_style_4 li {
	list-style: outside none none;
	padding: 5px 5px 5px 25px;
	position: relative;
}
.list_style_1 li::before {
	content: "\f121";
	font-family: ionicons;
	left: 0;
	position: absolute;
	top: 10px;
}
.list_style_2 li::before {
	content: "\f3a7";
	font-family: ionicons;
	left: 0;
	position: absolute;
	top: 10px;
}
.list_style_3 li::before {
    content: "";
    font-family: ionicons;
    left: 0;
    position: absolute;
    top: 17px;
    width: 12px;
    height: 1px;
    background-color: #888888;
}
.list_style_4 li::before {
    content: "\f10b";
    font-family: ionicons;
    left: 0;
    position: absolute;
    top: 5px;
    font-size: 18px;
}
.list_style_5 li {
	list-style: outside none none;
	padding: 10px 5px 10px 35px;
	position: relative;
}
.list_style_5 li::before {
	background-color: #0e93d8;
	content: "\f00c";
	font-family: 'FontAwesome';
	left: 0;
	position: absolute;
	top: 10px;
	width: 25px;
	height: 25px;
	color: #fff;
	text-align: center;
	border-radius: 100%;
	font-size: 12px;
	line-height: 25px;
}
.list_style_1.color_blue li::before,
.list_style_2.color_blue li::before,
.list_style_4.color_blue li::before {
	color: #0e93d8;
}
.list_style_3.color_blue li::before {
	background-color: #0e93d8;
}
.sc_icon_left {
    float: left;
    margin-right: 15px;
}
.sc_content_box {
	overflow: hidden;
}
.sc_icon i {
	width: 30px;
	height:30px;
	font-size: 30px;
	text-align: center;
}
.descriptions_wrap {
	position:relative;
}
.slider_images .image {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.content_box .descriptions_wrap .description {
    display: none;
	position: absolute;
	top: 0;
	left: 0;
}
.slider_tab {
	display: inline-block;
}
.slider_tab li {
	color: #b9bcc8;
	float: left;
    padding-right: 10px;
    cursor: pointer;
}
.slider_tab li:last-child {
	padding-right: 0;
}
.slider_tab li.active i,
.slider_tab li:hover i {
	color: #0e93d8;
}
.slider_tab li.active,
.slider_tab li:hover {
	color: #9498ab;
}
.slider_tab li span,.slider_tab li i {
	display: block;
}
.slider_tab li i {
    font-size: 36px;
    margin-bottom: 15px;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.slide_tab li {
	background-color: #fff;
	padding: 20px;
	margin-bottom: 15px;
	cursor: pointer;
}
.slide_tab li:last-child {
	margin: 0;
}
.slide_tab .icon_box {
	float: left;
	margin-right: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #eee;
	border-radius: 100%;
}
.slide_tab li.active .icon_box {
	background-color: #F0222C;
	color: #fff;
}
.slide_tab .icon_box i {
	line-height: 60px;
	font-size: 28px;
	margin: 0;
}
.tab_desc {
	overflow: hidden;
}
.slide_tab .tab_desc p:last-child {
	margin: 0;
}
.about_video_img {
	position: relative;
}
.rounded_icon {
    font-size: 40px;
    vertical-align: middle;
    margin-right: 5px;
}
.fancy_style {
    padding-top: 20px;
    padding-left: 20px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    margin-right: 20px;
}
.fancy_style2 {
	margin-left: -65px;
	z-index: -1;
	position: relative;
}
.fancy_style3 {
	position: relative;
	padding: 25px 0 0 25px;
}
.fancy_style img,
.fancy_style2 img,
.fancy_style3 img {
	width: 100%;
}
.fancy_style3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 25px;
	right: 25px;
	border: 5px solid #333;
	z-index: -1;
}
.video_box {
	position: relative;
	margin-top:20px;
}
.video_play span {
	display: block;
	font-size: 24px;
	font-weight: bold;
	padding-top: 10px;
	color: #fff;
}
.overlap_video {
	margin-bottom: -50px;
	z-index: 9;
}
.slider_100 .owl-stage-outer, .slider_100 .owl-stage, .slider_100 .owl-item {
	height: 100%;
}
.about_overlap {
	margin-top: -100px;
	position:relative;
	z-index: 9;
}
.zindex_minus1 img {
	z-index: -1;
}
.about_radius {
	border-radius: 10px 0 0 10px;
}
.skill_radius {
	border-radius: 0 10px 10px 0;
}
.about_video_img img {
	width: 100%;
}
/*===================================*
  04. END ABOUT SECTION
*===================================*/

/*===================================*
  05. ICON BOX CSS
*===================================*/

.icon_box_style_1 i {
	background-color: #0e93d8;
	border-radius: 100%;
	color: #ffffff;
	display: inline-block;
	height: 70px;
	line-height: 70px;
	width: 70px;
	text-align: center;
}
.icon_box_style_1 i::after,
.icon_box_style_2 i::after  {
	content: "";
	position: absolute;
	left: -5px;
	top: -5px;
	bottom: -5px;
	right: -5px;
	background-color: #333;
	border-radius: 100%;
	z-index: -1;
	opacity: 0.5;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.5s ease-in-out;
}
.icon_box_style_1:hover i,
.icon_box_style_2:hover i {
	background-color: #333;
}
.icon_box_style_1:hover i::after,
.icon_box_style_2:hover i::after {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.icon_box_style_1:hover i,
.icon_box_style_2:hover i {
	-webkit-animation: toLeftFromRight 0.3s forwards;
	-moz-animation: toLeftFromRight 0.3s forwards;
	animation: toLeftFromRight 0.3s forwards;
}

@-webkit-keyframes toLeftFromRight {
	49% {
		-webkit-transform: translate(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toLeftFromRight {
	49% {
		-moz-transform: translate(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toLeftFromRight {
	49% {
		transform: translate(-100%);
	}
	50% {
		opacity: 0;
		transform: translate(100%);
	}
	51% {
		opacity: 1;
	}
}
.icon_box_style_3 i::after,
.icon_box_style_4 i::after {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #0e93d8;
	border-radius: 100%;
	z-index: -1;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
.icon_box_style_3:hover i::after,
.icon_box_style_4:hover i::after  {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.icon_box_style_3:hover i,
.icon_box_style_4:hover i {
	color: #fff;
}
.box_icon {
	position: relative;
	z-index: 1;
}
.box_icon i {
	font-size: 32px;
	position: relative;
	transition: all 0.5s ease-in-out;
}
.icon_box_content p:last-child {
	margin: 0;
}
.icon_box_style_2 .box_icon {
	float: left;
	margin-right: 15px
}
.icon_box_style_2 i {
	background-color: #0e93d8;
	border-radius: 100%;
	color: #ffffff;
	display: inline-block;
	font-size: 22px;
	height: 50px;
	line-height: 50px;
	width: 50px;
	text-align: center;
}
.icon_box_style_2 .icon_box_content {
	overflow: hidden;
}
.icon_box_style_3 i {
	border: 2px solid #0e93d8;
	border-radius: 100%;
	color: #0e93d8;
	display: inline-block;
	font-size: 32px;
	height: 70px;
	line-height: 70px;
	width: 70px;
	text-align: center;
}
.icon_box_style_4 .box_icon,
.icon_box_style_11 .box_icon  {
	float: left;
	margin-right: 15px
}
.icon_box_style_4 i {
	border: 2px solid #0e93d8;
	border-radius: 100%;
	color: #0e93d8;
	display: inline-block;
	font-size: 22px;
	height: 50px;
	line-height: 46px;
	width: 50px;
	text-align: center;
}
.icon_box_style_4 .icon_box_content,
.icon_box_style_11 .icon_box_content,
.icon_box_style_12 .icon_box_content {
	overflow: hidden;
}
.icon_box_style_5 {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 9px rgba(0,0,0,0.1);
	position: relative;
}
.icon_box_style_5 i {
	color: #0e93d8;
	font-size: 40px;
}
.icon_box_style_5::before {
	background-color: #0e93d8;
	bottom: 100%;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 3px;
}
.icon_box_style_5:hover::before {
	bottom: 0;
}
.icon_box_style_6 {
	padding: 30px;
	z-index: 1;
	border-radius: 10px;
	overflow: hidden;
}
.icon_box.overlay_bg::before,.icon_box.overlay_bg2::before,.icon_box.overlay_bg3::before {
	z-index: -1;
}
.icon_box_style_7 {
	padding: 40px;
}
.icon_box_style_7 i {
	font-size: 50px;
}
.icon_box_style_8 {
	border: 1px solid rgba(255,255,255,0.2);
	padding: 30px 20px;
	margin-top: 30px;
}
.icon_box_style_9 {
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	margin-top: 30px;
}
.icon_box_style_9:hover {
	background-color: #0e93d8;
}
.icon_box_style_9:hover .box_icon i,
.icon_box_style_9:hover * {
	color: #fff;
}
.icon_box_style_9 .box_icon i {
	color: #0e93d8;
	transition: none;
}
.icon_box_style_10 {
	border: 1px solid rgba(0,0,0,0.2);
	padding: 30px 20px;
	margin-top: 30px;
}
.icon_box_style_11 {
	padding: 20px;
	margin-top: 30px;
}
.icon_box_style_11 .box_icon i {
	color: #0e93d8;
}
.icon_box_style_12 {
	padding: 30px 0;
}
.icon_box_style_12 .box_icon  {
	float: left;
	margin-right: 20px
}
.icon_box_style_12 .box_icon img {
	max-width: 50px;
}
.icon_box_style_12.icon_right .box_icon {
	float: right;
	margin-right: 0;
	margin-left: 20px;
}
.icon_box_style_12 .box_icon i {
	height: 70px;
	width: 70px;
	display: block;
	border: 1px solid #fff;
	text-align: center;
	line-height: 65px;
	border-radius: 100%;
	font-size: 24px;
}
.icon_box_style_12 .icon_box_content p {
	font-size: 14px;
}
.icon_box_style_13 {
	padding: 15px;
	border-radius: 10px;
	margin-top: 30px;
}
.icon_box_style_13:hover {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.icon_box_style_13 .box_icon i {
	color: #0e93d8;
}
.icon_box_style_14 {
	padding: 40px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}
.icon_box_style_14::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0px;
	bottom: 0;
	border-right: 4px solid rgba(0,0,0,0.2);
	left: 0px;
	border-bottom: 4px solid rgba(0,0,0,0.2);
	z-index: -1;
}
.icon_box_style_14 .icon_box_content h5 {
	font-weight: 600;
}
.icon_box_style_14 .box_icon i {
	font-size: 40px;
}
.icon_box_style_15 {
	background-color: rgba(0,0,0,0.2);
	padding: 30px 20px;
	margin-top: 30px;
}
.icon_box_style_15 .icon_box_content * {
	color: #fff;
}
.icon_box[class*="bg_"] a:hover, .icon_box[class*="bg-"] a:hover {
	color: #fff;
}
.icon_box_content h1,
.icon_box_content h2,
.icon_box_content h3,
.icon_box_content h4,
.icon_box_content h5,
.icon_box_content h6 {
	text-transform:capitalize;
}
.icon_box_style_15 .box_icon img {
	max-width: 60px;
}
.icon_box_style_16 {
	padding: 30px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	margin-bottom: 30px;
	position: relative;
	background-color: #fff;
	z-index: 0;
}
.icon_box_style_16 .box_icon i {
	font-size: 56px;
	color: #0E93D8;
	line-height: 56px;
	text-align: center;
}
.icon_box_style_16 * {
	transition: all 0.3s ease-in-out;
}
.icon_box_style_16:hover .box_icon i, .icon_box_style_16:hover * {
    color: #fff;
}
.icon_box_style_16::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #0E93D8;
	z-index: -1;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease;
}
.icon_box_style_16:hover::before {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.icon_box_style_16::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #000;
	z-index: -1;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0.1;
}
.icon_box_style_16:hover::after {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 0;
	transition: all 0.8s ease-in-out;
}
/*===================================*
  05. END ICON BOX CSS
*===================================*/

/*===================================*
  06. COUNTER SECTION
*===================================*/
.box_counter i {
    font-size: 50px;
    color: #fff;
}
.box_counter img {
	margin-bottom: 10px;
}
.box_counter h3,
.box_counter p {
    color: #fff;
}
.counter_dark.box_counter i,
.counter_dark.box_counter h3,
.counter_dark.box_counter p {
    color: #333;
}
.box_counter p {
    margin: 0;
}
.counter_style1 .counter_text {
	padding-bottom: 10px;
	position: relative;
	display: inline-block;
	width: 100%;
}
.counter_style1 .counter_text:before {
	content: "";
	background-color: #fff;
	height:2px;
	margin: 0 auto;
	width: 40px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.counter_style1.counter_dark .counter_text:before {
	background-color: #333;
}
.counter_style2.box_counter {
	background-color: rgba(255,255,255,0.1);
	padding: 20px;
	border: 3px solid rgba(255,255,255,0.2);
	height: 100%;
}
.couter_border {
    padding: 30px;
}
.couter_border::before {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    margin-bottom: -1px;
    position: absolute;
    width: 100%;
}
.couter_border::after {
    background-color: #ffffff;
    content: "";
    height: 100%;
    margin-right: -1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}
.counter_border_black.couter_border::before,
.counter_border_black.couter_border::after {
	background-color: #333;
}
.pattern_bg::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    background-repeat: repeat;
    background-image: url(../images/pattren_bg.html);
}
.counter_style3 i {
	float: left;
	margin-right: 20px;
	line-height: 50px;
}
.counter_style3 img {
	max-width: 50px;
	float: left;
	margin-right: 20px;
}
.counter_style3 * {
	overflow: hidden;
	margin: 0;
}
.counter_style4 {
	text-align: center;
}
.counter_style4 h3 {
	font-size: 40px;
}
.counter_style4 img {
	max-width: 50px;
}
.counter_style5 img {
	max-width: 60px;
	margin-bottom: 15px;
}
.counter_style5 h3 {
	font-size: 30px;
	font-weight: 600;
}
/*===================================*
  06. END COUNTER SECTION
*===================================*/

/*===================================*
  07. PORTFOLIO SECTION
*===================================*/
.isotope-hidden.isotope-item {
	pointer-events: none;
	z-index: 1;
}
.isotope, .isotope .isotope-item {
	/* change duration value to whatever you like */
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	transition-duration: 0.8s;
}
.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	transition-property: height, width;
}
.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	transition-property: transform, opacity;
}
.portfolio_filter li {
    display: inline-block;
}
.portfolio_filter li a {
	border-bottom: 1px solid transparent;
	padding: 5px 25px;
    display: block;
	font-size: 16px;
    text-transform: capitalize;
}
.portfolio_filter li a.current,
.portfolio_filter li a:hover {
	border-color: #0e93d8;
	color: #0e93d8;
}
.filter_tab1 li a {
    border: 1px solid #888888;
    color: #888888;
    border-radius: 40px;
}
.filter_tab1 li a.current,
.filter_tab1 li a:hover {
	background-color: #0e93d8;
	border-color: #0e93d8;
	color: #fff;
}
.filter_tab2 li a {
    border: 1px solid #888888;
    color: #888888;
}
.filter_tab3,
.filter_tab4 {
	font-size: 0;
}
.filter_tab3 li a,
.filter_tab4 li a {
    border: 1px solid #888888;
    color: #888888;
	margin-left: -1px;
}
.filter_tab3 li:first-child a {
    border-radius: 40px 0 0 40px;
}
.filter_tab3 li:last-child a {
    border-radius: 0px 40px 40px 0px;
}
.filter_tab3 li a.current,
.filter_tab3 li a:hover,
.filter_tab4 li a.current,
.filter_tab4 li a:hover {
	background-color: #0e93d8;
	border-color: #0e93d8;
	color: #fff;
}
.filter_tab2 li a.current,
.filter_tab2 li a:hover {
	background-color: #0e93d8;
	border-color: #0e93d8;
	color: #fff;
}
.filter_tab5 li a {
	border: 0;
	background-color: #F4F4F4;
	color: #7F8096;
	border-radius: 4px;
}
.filter_tab5 li a.current, .filter_tab5 li a:hover {
	background-color: #0e93d8;
	color: #fff;
}
.filter_tab6 li a {
	border: 1px solid #888888;
	color: #7F8096;
	border-radius: 4px;
}
.filter_tab6 li a.current, .filter_tab6 li a:hover {
	background-color: #0e93d8;
	border-color: #0e93d8;
	color: #fff;
}
.portfolio_container,
.portfolio_gallery,
.blog_container,
.shop_container {
	list-style: none;
}
.gutter_small {
    margin: 0 -7.5px -15px -7.5px;
}
.gutter_medium {
    margin: 0 -15px -30px -15px;
}
.work_col2 > li {
	width: 50%;
	float: left;
}
.work_col3 > li {
	width: 33.33%;
	float: left;
}
.work_col4 > li {
    width: 25%;
	float: left;
}
.work_col5 > li {
    width: 20%;
	float: left;
}
.portfolio_item img,
.portfolio-item img {
    width: 100%;
	transition: all 0.5s ease-in-out;
}
.portfolio_hide {
	opacity: 0;
    visibility: hidden;
    height: 0;
	padding-top:0 !important;
	padding-bottom:0 !important
}
.gutter_small > li {
    padding: 0 7.5px 15px 7.5px;
}
.gutter_medium > li {
    padding: 0px 15px 30px 15px;
}
.portfolio_content {
    padding: 15px;
}
.portfolio_item {
    overflow: hidden;
    position: relative;
}
.portfolio_item a {
	display: block;
	overflow: hidden;
}
.portfolio_style1 .portfolio_content {
    bottom: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 60px;
	opacity: 0;
	visibility: hidden;
    right: 0;
    left: 0;
    text-align: center;
	transition: all 0.5s ease-in-out;
	z-index: 3;
}
.portfolio_style1 .portfolio_item::before {
    background-color: rgba(14,147,216,0.80);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
	opacity: 0;
	visibility: hidden;
    top: 0;
    bottom: 0;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}
.portfolio_style1 .portfolio_item:hover .portfolio_content {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.portfolio_style2 .portfolio_content {
	background-color: rgba(14,147,216,0.80);
    bottom: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 0px;
	opacity: 0;
	visibility: hidden;
    right: 0;
    left: 0;
    text-align: center;
	transition: all 0.5s ease-in-out;
}
.portfolio_style1 .portfolio_item:hover:before,
.portfolio_style2 .portfolio_item:hover .portfolio_content,
.portfolio_style3 .portfolio_item:hover .portfolio_content {
	opacity: 1;
	visibility: visible;
}
.portfolio_style2 .portfolio_item:hover img,
.portfolio_style4 .portfolio_item:hover img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.portfolio_style3 .portfolio_content {
	background-color: rgba(14,147,216,0.80);
    bottom: 10px;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 10px;
	opacity: 0;
	visibility: hidden;
    right: 10px;
    left: 10px;
    text-align: center;
	transition: all 0.5s ease-in-out;
}
.portfolio_style4 .portfolio_item .image_link {
    display: block;
    overflow: hidden;
}
.portfolio_style4 .portfolio_content {
	background-color: #0e93d8;
	transition: all 0.5s ease-in-out;
}
.portfolio_style5 .portfolio_content {
	background-color: rgba(14,147,216,0.80);
    bottom: 10px;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 10px;
	opacity: 0;
	visibility: hidden;
    right: 10px;
    left: 10px;
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	transition: all 0.5s ease-in-out;
}
.portfolio_style5 .portfolio_item:hover .portfolio_content {
	opacity: 1;
	visibility: visible;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.link_container a {
	background-color: #fff;
	border: 2px solid #fff;
    color: #0e93d8;
    font-size: 22px;
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 100%;
    line-height: 45px;
	margin: 0 2px;
	text-align: center;
}
.link_container a .ion-ios-play {
    position: relative;
    left: 2px;
}
.link_container a:hover {
	background-color: transparent;
	color: #fff;
}
.link_container {
    margin-bottom: 10px;
}
.portfolio_content h5 a,
.portfolio_content p {
	color: #fff;
}
.portfolio_content p {
    margin: 0;
    min-height: 50px;
    overflow: hidden;
    max-height: 50px;
}
.work_col5.portfolio_style3 .portfolio_content,
.work_col5.portfolio_style5 .portfolio_content {
    padding: 5px;
	bottom: 5px;
	top: 5px;
	right: 5px;
	left: 5px;
}
.work_col5.portfolio_style3 .link_container a,
.work_col5.portfolio_style5 .link_container a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.work_col5.portfolio_style3 .portfolio_content p,
.work_col5.portfolio_style5 .portfolio_content p {
    min-height: 40px;
    max-height: 40px;
    font-size: 14px;
}

.portfolio_slider.owl-carousel.owl-theme .owl-dots,
.blog_post .owl-carousel.owl-theme .owl-dots {
    margin: 0 !important;
    position: absolute;
    top: 10px;
	right: 10px;
	z-index: 9;
}
.portfolio_slider.owl-carousel.owl-theme .owl-dots span,
.blog_post .owl-carousel.owl-theme .owl-dots span {
	margin: 5px 2px;
}
.portfolio_slider.owl-carousel {
    z-index: inherit;
}
.portfolio_slider.owl-carousel.owl-drag .owl-item {
	overflow: hidden;
}
.single_post .owl-carousel.owl-theme .owl-dots {
	margin: 0 !important;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
}
.portfolio-item .owl-carousel {
	display: block;
}
.portfolio-item .owl-carousel a:nth-child(1n+2) {
	display: none;
}
.loading {
	background: url(../images/loading40fe.html?hg) center center no-repeat;
	font-size: 0 !important;
	background-color: #000 !important;
	border: 0;
	height: 48px;
	width: 50px;
}
#load-more {
	transition: none;
}
/*===================================*
  07. END PORTFOLIO SECTION
*===================================*/

/*===================================*
  08. TESTIMONIAL SECTION
*===================================*/
.testimonial_img {
	margin-bottom: 15px;
}
.testimonial_img img {
    max-width: 80px;
}
.testi_meta p {
    margin-bottom: 0;
	margin-top: 15px;
}
.testimonial_box {
	padding: 20px;
}
.testi_meta {
	text-align: center;
}
.owl-theme .owl-nav [class*="owl-"] {
	box-shadow: 0 0 8px rgba(0,0,0,0.15);
	color: #000;
    font-size: 18px;
	margin: 0; 
    padding: 6px 16px;
    background: #fff;
    border-radius: 0;
	position: absolute;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkittransform: translateY(-50%);
	transform: translateY(-50%);
}
.testimonial_style1 .testimonial_box {
	border: 1px solid rgba(0,0,0,0.1);
}
.testimonial_style1 .testimonial_img img,
.testimonial_style4 .testimonial_img img {
	max-width: 70px;
}
.owl-theme.nav_style1 .owl-nav [class*="owl-"],
.owl-theme.nav_style1 .owl-nav [class*="owl-"]:hover {
	box-shadow: none;
	background-color: transparent;
	font-size: 26px;
	padding: 0;
}
.owl-theme.nav_style2 .owl-nav [class*="owl-"] {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.owl-theme.nav_style2:hover .owl-nav .owl-prev {
	margin-left: 20px;
	opacity: 1;
}
.owl-theme.nav_style2:hover .owl-nav .owl-next {
	margin-right: 20px;
	opacity: 1;
}

.owl-theme .owl-nav .disabled {
    opacity: 1;
}
.owl-theme .owl-nav .disabled[class*="owl-"]:hover {
	color: #000;
	cursor: not-allowed;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #fff;
	color: #0e93d8;
}
.owl-theme .owl-nav {
    margin-top: 0;
}
.owl-theme .owl-nav .owl-prev {
	left: 0;
}
.owl-theme .owl-nav .owl-next {
	right: 0;
}
.owl-theme.nav_top .owl-nav .owl-prev {
	right: 50px;
	left: auto;
}
.owl-theme.nav_top .owl-nav [class*="owl-"] {
	top: -64px;
	-moz-transform: none;
	-webkittransform: none;
	transform: none;
}
.owl-theme.nav_bottom_center .owl-nav [class*="owl-"] {
	position: relative;
	-moz-transform: none;
	-webkittransform: none;
	transform: none;
	margin: 25px 7px;
}
.dot_none .owl-dots {
	display: none;
}
.nav_none .owl-nav {
    display: none;
}
.owl-carousel.owl-theme .owl-dots {
    margin-top: 20px !important;
}
.owl-theme[data-dots="true"] .owl-nav [class*="owl-"] {
	margin-top: -20px;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid #9a9a9a;
	margin: 5px;
}
.dots_white.owl-theme .owl-dots .owl-dot span {
    border-color: #fff;
}
.dots_white.owl-theme .owl-dots .owl-dot.active span, .dots_white.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #fff;
	border-color: #fff;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #0e93d8;
	border-color: #0e93d8;
}
.testimonial_style1 .testimonial_img {
    float: left;
    margin: 0 15px 0 0;
}
.testimonial_style1 .testi_meta {
    margin-top: 15px;
	text-align: left;
}
.testimonial_style1 .testi_meta p {
    display: inline-block;
}
.testimonial_style2 .testimonial_box {
    border: 0;
    position: relative;
}
.testimonial_style2 .testimonial_img img {
    padding: 4px;
    background-color: #fff;
}
.testimonial_style3 .testimonial_img img {
	max-width: 50px;
}
.testimonial_slider[data-center="true"].testimonial_style3 .owl-item {
	opacity: 1;
}
.testimonial_slider[data-center="true"].testimonial_style3 .owl-item.center .testimonial_box::before {
	content: normal;
}
.testimonial_slider[data-center="true"].testimonial_style3 .owl-item.center .testimonial_box {
	background-color: rgba(0,0,0,0.2);
}
.testimonial_style3 .client_info {
	margin-top: 5px;
}
.testimonial_style4 .testimonial_box {
	border: 0;
    background-color: #f7f7f7;
}
.testimonial_style4 .testimonial_img,
.testimonial_cl_info .testimonial_img {
    float: left;
    margin: 0 15px 0 0;
}
.testimonial_style4 .testi_meta {
    margin-top: 15px;
	text-align: left;
}
.testimonial_style4 .testi_meta p {
    display: inline-block;
}
.testimonial_cl_info {
	display: table;
	margin: 25px auto 0;
}
.owl-carousel .quote img {
	width: auto;
	margin: 0 auto;
}
.owl-carousel.testimonial_style1 .quote img,
.owl-carousel.testimonial_style4 .quote img {
	margin: 0;
}
.testimonial_style1 .testimonial_cl_info,
.testimonial_style4 .testimonial_cl_info {
	display: table;
	margin: 15px 0;
}
.client_info {
	margin-top: 15px;
	overflow: hidden;
}
.testi_meta h6,
.client_info h6 {
	margin-bottom: 0;
}
.testi_meta span,
.client_info span {
	font-size: 14px;
	font-style: italic;
}
.testimonial_slider[data-center="true"] .owl-item.center .testimonial_box {
	border-radius: 4px;
	background-color: #0e93d8;
	color: #fff;
}
.testimonial_slider[data-center="true"] .owl-item.center .testimonial_box::before {
	border-radius: 4px;
	background-color: #0e93d8;
	content: "";
	position: absolute;
	left: -15px;
	right: -15px;
	top: 40px;
	bottom: 40px;
	z-index: -1;
	opacity: .5;
}
.testimonial_slider[data-center="true"] .owl-item.center .testimonial_box * {
	color: #fff;
}
.testimonial_slider[data-center="true"] .owl-item {
	opacity: 0.6;
}
.testimonial_slider[data-center="true"] .owl-item.center {
	opacity: 1;
}
.testimonial_slider [class*="box_"] {
	margin: 10px;
}
.testimonial_style5 .testimonial_img img {
	max-width: 80px;
}
.testimonial_style6 .testimonial_box {
	background-color: rgba(255,255,255,0.2);
}
.testimonial_style6 .testimonial_img img {
	max-width: 70px;
}
/*===================================*
  08. END TESTIMONIAL SECTION
*===================================*/

/*===================================*
  09. BLOG SECTION
*===================================*/

.blog_img {
	position: relative;
}
.blog_post .blog_img a {
	display: block;
	overflow: hidden;
}
.blog_content {
	padding-top: 15px;
}
.blog_img a img {
	transition: all 0.5s ease-in-out;
	width: 100%;
}
.blog_post:hover .blog_img a img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.blog_meta {
	display: inline-block;
	width: 100%;
}
.blog_meta li {
	float: left;
	margin-right: 8px;
}
.blog_meta li:last-child {
    margin: 0;
}
.blog_meta li::before {
    content: "/";
    margin-right: 8px;
}
.blog_meta li:first-child:before {
    content: normal;
}
.blog_meta li a {
	font-size: 14px;
}
.blog_meta li a i {
    font-size: 16px;
    vertical-align: middle;
    line-height: normal;
    margin-right: 2px;
}
.blog_text p {
	font-size: 14px;
	margin-bottom: 5px;
}
.owl-carousel .blog_style1 {
	margin-bottom: 5px;
}
.blog_style1,
.blog_style2 {
	padding: 15px;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	background-color: #fff;
}
.blog_img_slider.owl-carousel.owl-theme .owl-dots {
    margin: 0 !important;
    position: absolute;
    bottom: 10px;
	right: 10px;
	z-index: 9;
}
.blog_thumbs .blog_img {
	float: left;
	width: 40%;
}
.blog_thumbs .blog_content {
    padding: 0 0 0 15px;
    overflow: hidden;
}
.single_post .blog_content .blog_text > h2 {
	color: #000;
}
.single_post .blog_content .blog_text p {
	font-size: 16px;
	margin-bottom: 15px;
}
.single_post .blog_meta {
	margin: 10px 0;
}
.single_post blockquote {
    padding: 10px 20px 0;
	margin: 0 0 20px;
	border-left: 3px solid #eee;
	font-style: italic;
	display: inline-block;
}
.single_post blockquote p {
    line-height: 30px;
}
.author_img {
	float: left;
	padding-right: 15px;
}
.author_img img {
    width: 80px;
}
.author_info {
	overflow: hidden;
}
.author_info p {
	font-size: 14px;
	margin-bottom: 10px;
}
.related_post {
	padding-top: 30px;
	margin-top:30px;
}
.comment-area {
	padding-top: 30px;
}
.comment-title h5,
.content_title h5 {
    color: #333;
    display: inline-block;
    width: 100%;
	text-transform:capitalize;
	font-weight: 600;
}
.user_img img {
    border-radius: 100%;
    height: auto;
    max-width: 60px;
}
.comment_info {
    background-color: #f7f7f7;
    margin-top: 10px;
    padding: 25px 30px 10px;
}
.comment_content {
    padding-left: 20px;
}
.comment_info.reply {
    padding-left: 60px;
}
.comment-time {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 8px;
	text-transform: uppercase;
}
.comment-reply i {
    margin-right: 5px;
}
.comment_list {
    margin-bottom: 30px;
}
.post_date {
	position: absolute;
	padding: 8px 15px;
	top: 15px;
	left: -8px;
	line-height: 20px;
}
.post_date::before {
	content: "";
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 8px 0;
	border-color: transparent #075680 transparent transparent;
	left: 0;
}
.blog_style1 .post_date {
	left: -23px;
}
.blog_style2 .post_date:before,
.blog_style3 .post_date:before {
	content: normal;
}
.blog_style2 .post_date {
	left: 15px;
}
.blog_style3 .post_date {
	left: auto;
	right: 15px;
}
.blog_style3 .blog_content {
	border: 1px solid #ededed;
	padding: 15px;
}
.blog_style4 {
	border-radius: 10px;
}
.blog_style4 .blog_img,
.blog_style4 .blog_img a,
.blog_style4 .blog_img img {
	border-radius: 10px 10px 0 0;
}
.blog_style4 .blog_content {
	padding: 15px;
	border-radius: 0 0 10px 10px;
}
.blog_style5 .blog_content {
	padding: 15px;
}
.blog_title * {
	font-weight: 600;
}
/*===================================*
  09. END BLOG SECTION
*===================================*/

/*===================================*
  10. CLIENT LOGO SECTION
*===================================*/
.cl_logo_slider.owl-carousel .owl-item img {
	margin: 0 auto;
	width: auto;
	opacity: 0.7;
}
.cl_logo_slider.owl-carousel .owl-item img:hover {
	opacity: 1;
}
.cl_style2 a {
	background-color: #fff;
	border: 1px solid #E6E7E9;
	padding: 20px 15px;
	display: block;
}
.cl_style2 img {
	width: 100%;	
}
.cl_style3 a {
	background-color: #fff;
	padding: 15px 15px;
	display: block;
}
.cl_style3 a:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.cl_style3 img {
	width: 100%;	
}
.client_logo {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: -15px;
	margin-right: -15px;
}
.client_logo .logo_item {
	padding: 0 15px;
	margin-bottom: 30px;
}
/*===================================*
  10. END CLIENT LOGO SECTION
*===================================*/

/*===================================*
  11. FOOTER SECTION
*===================================*/
footer {
	background-color: #202325;
	position: relative;
}
.pattern_top {
	background-image: url('../images/pattern.html');
	background-repeat: repeat-x;
}
.pattern_bottom {
	background-image: url('../images/pattern2.html');
	background-repeat: repeat-x;
	background-position: bottom;
}
footer p {
	font-size: 14px;
}
.top_footer {
	padding: 100px 0;
}
.widget_title {
	margin-bottom: 25px;
	text-transform: capitalize;
}
footer .widget_title {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
}
.widget_title2 {
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;
	text-transform: capitalize;
}
.widget_title2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 50px;
	background-color: rgba(255,255,255,0.5);
}
.widget_title4 {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer_logo {
	margin-bottom: 15px;
}
.widget_links li,
.widget_links_style2 li {
    margin: 0;
    padding: 0 0 10px;
}
.widget_links li:last-child,
.widget_links_style2 li:last-child {
    padding-bottom: 0;
}
.widget_links li a::before,
.widget_links_style3 li a::before {
	top: 50%;
	left: 0px;
	font-size: 10px;
	content: "\f125";
	position: absolute;
	font-family: "Ionicons";
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.widget_links li a,
.widget_links_style3 li a {
	color: #888888;
	font-size: 14px;
	position:relative;
	padding-left: 15px;
}
.widget_links_style1 li a,
.widget_links_style2 li a,
.widget_links_style4 li a  {
	font-size: 14px;
	color: #888888
}
.widget_links_style4 li {
	padding-bottom: 15px;
}
.widget_links_style4 li:last-child {
	padding-bottom: 0;
}
.text_white .widget_links li a,
.text_white .post_footer h6 a,
.text_white .footer_link li a,
.text_white .widget_links_style1 li a,
.text_white .widget_links_style2 li a,
.text_white .widget_links_style3 li a {
	color: #fff;
}
.footer_dark h1, .footer_dark h2, .footer_dark h3, .footer_dark h4, .footer_dark h5, .footer_dark h6, .footer_dark p, .footer_dark .widget_links li a,.footer_dark .widget_links_style1 li a, .footer_dark .widget_links_style2 li a, .footer_dark .widget_links_style3 li a, .footer_dark .widget_links_style4 li a, .footer_dark .footer_link li a, .footer_dark .post_content a,.footer_dark .newsletter_form .btn-submit span,.footer_dark .tags a {
	color: #fff;
}
.widget_links li a:hover,
.widget_links_style1 li a:hover,
.widget_links_style2 li a:hover,
.footer_link li a:hover,
.widget_links_style3 li a:hover,
.widget_links_style4 li a:hover,
.footer_dark .tags a:hover {
	color: #0e93d8;
}
.widget_links_style1 li,
.widget_links_style3 li {
    float: left;
    width: 50%;
    padding-top: 10px;
}
.widget_links_style1 li:nth-child(-n+2) {
	padding-top: 0;
}
.contact_info {
	display: inline-block;
	width: 100%;
}
.contact_info > li {
    margin-top: 10px;
    float: left;
    width: 100%;
	list-style: none;
}
.contact_info li:first-child {
	margin-top: 0;
}
.contact_info.contact_info_style1  > li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center ;
}
.contact_info li span {
    display: inline-block;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 18px;
	vertical-align: top;
}
.contact_info span + * {
    overflow: hidden;
    font-size: 14px;
    color: #888888;
	margin: 0;
	vertical-align: middle;
	max-width: 78%;
	display: inline-block;
}
.contact_info_light span + * {
	color: #fff;
}
.contact_info_light li span, .contact_info_light.contact_info_style1 li span {
	border-color: #fff;
	color: #fff;
}
.contact_info_style1 li span {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #888888;
    border-radius: 100%;
    margin-top: 0;
	vertical-align: middle;
}
.contact_info_style2 > li,
.contact_info_style6 > li {
    margin-top: 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center; 
	align-items: center;
}
.contact_info_style2 li span + *,
.contact_info_style6 li span + *{
	font-size: 16px;
}
.contact_info_style2 li span {
	margin-top:0;
	vertical-align: middle;
}
.contact_info_style6 li span {
	color: #333;
	margin-top: 0;
}
.contact_info .contact_icon span {
	font-size: 40px;
	margin: 0;
}
.contact_icon {
	margin-right: 20px;
	float: left;
}
.contact_text {
	overflow: hidden;
}
.contact_info_style3 li {
	margin-top: 30px;
}
.contact_info .contact_text span {
	font-size: 14px;
	display: block;
	margin: 0;
	text-transform: uppercase;
	color: #9AA1AA;
}
.contact_text p {
	font-size: 14px;
	margin: 0;
}
.contact_info_light .contact_text p {
	color: #fff;
}
.contact_info.contact_info_style3 span + * {
	max-width: 100%;
}
.contact_info_style4 li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 15px;
}
.contact_info_style4 li span {
	background-color: #fff;
	padding: 7px;
	color: #000;
	border-radius: 3px;
	margin-top: 0;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}
.contact_info_style5 li {
	width: auto;
	margin: 0 15px 0 0;
}
.contact_info_style5 li i {
	margin-right: 8px;
	color: #EC212B;
	vertical-align: middle;
}
.contact_info_style5 li span {
	margin: 0;
	line-height: normal;
	vertical-align: middle;
	font-size: 14px;
}
.post_img {
    float: left;
    margin-right: 10px;
}
.post_content {
	overflow: hidden;
}
footer .post_content h6 a {
	color: #777;
}
.recent_post li {
    display: inline-block;
    width: 100%;
	margin-bottom: 15px;
}
.border_bottom_dash > li {
    border-bottom: 1px dashed #999;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.border_bottom_dash > li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.border_bottom_dash_white > li {
	 border-bottom: 1px dashed #fff;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.border_bottom_dash_white > li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.border_bottom_solid > li {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.border_bottom_solid > li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.post_content h6 {
	font-size: 14px;
	line-height: normal;
	margin-bottom: 5px;
}
.newsletter_form {
	position: relative;
}
.newsletter_form input {
	padding: 10px 45px 10px 15px;
	width: 100%;
	border: 0;
	color: #777777;
	height: 45px;
}
.input_border input {
	border: 1px solid #888;
}
.input_border2 input {
	border: 1px solid #dfdfdf;
}
.outline_input input {
    background-color: transparent;
    border: 1px solid #fff;
	color: #fff;
}
.outline_input-black input {
    background-color: transparent;
    border: 1px solid #dddddd;
}
.newsletter_form .btn.btn-submit {
	border-right: 0;
	border-top: 0;
	border-bottom: 0;
	background-color: transparent;
	border-left: 1px solid #999;
	border-radius: 0;
	height: 45px;
	line-height: 42px;
	text-transform: uppercase;
	padding: 6px 12px;
	top: 0;
	right: 0;
}
.newsletter_form .btn.btn-submit .ion-android-send { 
	line-height: normal;
}
.newsletter_form button {
	position: absolute;
	right: 4px;
	top: 4px;
}
.newsletter_form .btn {
	color: #6f6f6f;
    font-size: 14px;
    padding: 6px 25px;
}
.newsletter_form .btn-submit span {
    font-size: 22px;
}
.newslattter_small {
    margin: 0 auto;
    max-width: 400px;
}
.newsletter_box {
	padding: 70px 50px;
}
.newsletter_box::before {
	content: "";
	position: absolute;
	left: 10px;
	right: 0px;
	bottom: 0px;
	top: 10px;
	box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
	z-index: 0;
}
.newsletter_style1 button {
	top: 0;
	right: 0;
	bottom: 0;
}
.rounded_input input, .rounded_input .custom_select select,.rounded_input .custome_select select,.rounded_input .custom-file-label {
	border-radius: 40px;
}
.rounded_input .custom-file-label::after {
	border-radius: 0 40px 40px 0 !important;
}
.rounded_input .input-group-prepend .input-group-text {
	border-radius: 40px 0 0 40px;
}
.radius_input input,.radius_input .custom_select select {
    border-radius: 4px;
}
.bottom_footer {
	padding: 30px 0;
	position: relative;
}
.footer_social li {
	display: inline-block;
	margin-right: 5px;
}
.footer_social li:last-child {
    margin-right: 0;
}
.footer_social li a {
    color: #fff;
    border: 1px solid #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    text-align: center;
    border-radius: 100%;
}
.footer_social_dark.footer_social li a {
	color: #888888;
	border-color: #888888;
}
.footer_social_dark.footer_social li a:hover {
	color: #ffffff;
}
.footer_social li a:hover {
	background-color: #0e93d8;
	border-color: #0e93d8;
}
.footer_link li {
	display: inline-block;
	position: relative;
}
.footer_link li a {
	font-size: 14px;
	padding: 0 5px;
	color: #888;
}
.contact_info a:hover,
.newsletter_form .btn-submit:hover,
.newsletter_form .btn-submit:hover span,
.post_content h6 a:hover,
.footer_link li a:hover {
	color: #0e93d8;
}
.custome_select {
	position: relative;
}
.custome_select select {
    -moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.custome_select::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid #0e93d8;
	pointer-events: none;
    -moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.widget_contact .form-control {
	background-color: #191C1E;
	border: 0;
	color: #6c757d;
	padding: 8px 15px;
}
.widget_contact .textarea.form-control, .widget_contact textarea.form-control:focus {
	padding: 8px 15px;
}
.widget_contact button {
	padding: 10px 20px;
}
.instafeed {
    display: inline-block;
}
.instafeed li {
	float: left;
	width: 33.33%;
	padding: 2px;
	position: relative;
}
.instafeed li a {
    display: block;
    position: relative;
	overflow: hidden;
}
.instafeed li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
	opacity: 0;
    background-color: rgba(17,144,211,0.8);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.instafeed li:hover a:before,
.instafeed li:hover .insta_counter {
	opacity: 1;
}
.instafeed img {
	width: 100%;
    transition: all 0.5s ease-in-out;
}
.instafeed li:hover img {
    -moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.insta_counter i {
    margin-right: 5px;
	vertical-align: middle;
}
.insta_counter {
	color: #fff;
    font-size: 14px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	opacity: 0;
	text-align: center;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.5s ease-in-out;
	z-index: 2;
}
.payment_plan {
	font-size: 0;
}
.payment_plan li {
	display: inline-block;
	font-size: 16px;
	margin-left: 2px;
}
/*===================================*
  11. END FOOTER SECTION
*===================================*/

/*===================================*
  12. VIDEO SECTION
*===================================*/
.video_play {
    position: absolute;
    right: 0;
	display: table;
    left: 50%;
    top: 50%;
	-moz-transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
}
.video_play img {
	max-width: 100px;
}
.bounce_img {
	-webkit-animation: bounce_img 1.5s ease-in-out 0s infinite alternate;
	animation: bounce_img 1.5s ease-in-out 0s infinite alternate;
}
@-webkit-keyframes bounce_img {
  from {
    -webkit-transform: translateY(0px);
	transform: translateY(0px); }
  to {
    -webkit-transform: translateY(-10px);
	transform: translateY(-10px); } }

@keyframes bounce_img {
from {
	-webkit-transform: translateY(0px);
	transform: translateY(0px); }
to {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px); } }
		
/*===================================*
  12. END VIDEO SECTION
*===================================*/

/*===================================*
  13. PROGRESS BAR SECTION
*===================================*/
.progrees_bar_text {
	margin-bottom: 10px;
}
.skill_content {
	position:relative;
	margin-bottom: 15px;
}
.skill_content .progress-bar {
	background-color: #0e93d8;
	border-radius: 20px;
	width: 0;
	-webkit-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
     transition: all 2s ease-in-out; 
}
.skill_content .progress {
	border-radius: 20px;
	height: 5px;
}
.skill_content .count_pr {
	margin-left: -20px;
    position: absolute;
	left: 0;
    top: 0px;
    background-color: #333;
    padding: 5px;
    border-radius: 100%;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 24px;
	text-align: center;
	-webkit-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
     transition: all 2s ease-in-out; 
}
.skill_content .count_pr::before {
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #333 transparent transparent transparent;
    content: " ";
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    margin: -2px auto;
}
.skill_content.pr_style1 .count_pr {
	background-color: transparent;
	color: #888;
	right: 0;
	left: auto !important;
	padding: 0;
	height: auto;
	width: auto;
	font-size: 14px;
}
.skill_content.pr_style1 .count_pr::before {
	content: normal;
}
.text_white .skill_content.pr_style1 .count_pr {
	color: #fff;
}
.skill_content.pr_style2 .progress {
	height: 15px;
}
.skill_content.pr_style2 .count_pr::before {
	content: normal;
}
.skill_content.pr_style2 .count_pr {
	background-color: transparent;
	height: auto;
	width: auto;
	padding: 0;
	top: 30px;
	margin-left: -30px;
}
/*===================================*
  13. END PROGRESS BAR SECTION
*===================================*/

/*===================================*
  14. TEAM SECTION
*===================================*/
.team_box {
	padding-bottom: 20px;
}
.team_img img {
    width: 100%;
	transition: all 0.5s ease-in-out;
}
.team_title {
    padding: 15px;
	text-transform: capitalize;
}
.border_social li a {
    border: 1px solid #333;
}
.team_social_style1 li a,
.rounded_social li a {
    border-radius: 100%;
}
.radius_social li a {
	border-radius: 5px;
}
.team_hover_style1 .team_img,
.team_hover_style2 .team_img {
	position:relative;
}
.team_hover_style1.team_box,
.team_hover_style2.team_box {
	padding-bottom: 0;
}
.team_hover_style1 .social_icons {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
	opacity: 0;
	-moz-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.team_hover_style1 .team_img::before,
.team_hover_style2 .team_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.social_white .social_icons li a,
.social_white.social_icons li a {
	color: #fff;
	border-color: #fff;
}
.social_white .border_social li a:hover,
.social_white.border_social li a:hover {
	background-color: #fff;
	color: #0e93d8;
	border-color: #fff;
}
.social_icons li a:hover,
.social_icons.hover_style1 li a {
    background-color: #000;
    color: #fff;
}
.social_icons.hover_style1 li a:hover {
    background-color: transparent;
    color: #000;
}
.social_icons.hover_style1.social_white li a {
    background-color: #fff;
    color: #000;
}
.social_icons.hover_style1.social_white li a:hover {
    background-color: transparent;
    color: #fff;
}
.social_icons.hover_style2 li a:hover {
	background-color: transparent;
	color: #0073b8;
}
.social_icons [class*="sc_"] {
	color: #fff !important;
}
.social_icons [class*="sc_"]:hover {
	opacity: 0.8;
}
.sc_facebook {
	background-color: #3b5998 !important;
	border-color: #3b5998 !important;
}
.sc_gplus,
.sc_google {
	background-color:#dd4b39 !important;
	border-color: #dd4b39 !important;
}
.sc_linkedin {
	background-color:#0e76a8 !important;
	border-color: #0e76a8 !important;
}
.sc_rss {
	background-color:#ee802f !important;
	border-color: #ee802f !important;
}
.sc_skype {
	background-color:#00aff0 !important;
	border-color: #00aff0 !important;
}
.sc_twitter {
	background-color:#00acee !important;
	border-color: #00acee !important;
}
.sc_youtube {
	background-color:#c4302b !important;
	border-color: #c4302b !important;
}
.sc_vimeo {
	background-color:#86c9ef !important;
	border-color: #86c9ef !important;
}
.sc_yahoo {
	background-color:#720e9e !important;
	border-color: #720e9e !important;
}
.sc_tumblr {
	background-color:#34526f !important;
	border-color: #34526f !important;
}
.sc_instagram {
	background-color:#3f729b !important;
	border-color: #3f729b !important;
}
.sc_pinterest {
	background-color:#c8232c !important;
	border-color: #c8232c !important;
}
.sc_dribbble {
	background-color:#EA4C89 !important;
	border-color: #EA4C89 !important;
}
.sc_reddit {
	background-color: #C6C6C6 !important;
	border-color: #C6C6C6 !important;
}
.sc_github {
	background-color: #171515 !important;
	border-color: #171515 !important;
}
.sc_android {
	background-color: #A4C639 !important;
	border-color: #A4C639 !important;
}
.sc_windows {
	background-color: #00A7E7 !important;
	border-color: #00A7E7 !important;
}
.sc_tux {
	background-color: #C1C1C1 !important;
	border-color: #C1C1C1 !important;
}
.sc_delicious {
    background-color: #205cc0!important;
	border-color: #205cc0 !important;
}
.sc_paypal {
    background-color: #00588b!important;
	border-color: #00588b !important;
}
.sc_blogger {
    background-color: #fc4f08!important;
	border-color: #fc4f08!important;
}
.sc_flickr {
    background-color: #ff0084!important;
	border-color: #ff0084!important;
}
.sc_yahoo {
    background-color: #720e9e!important;
	border-color: #720e9e!important;
}
.sc_dropbox {
    background-color: #3d9ae8!important;
	border-color: #3d9ae8!important;
}
.sc_ebay {
    background-color: #89c507!important;
	border-color: #89c507!important;
}
.sc_wordpress {
    background-color: #1e8cbe!important;
	border-color: #1e8cbe !important;
}
.sc_yelp {
    background-color: #c41200!important;
}

.team_hover_style1.team_box:hover .team_img::before,
.team_hover_style2.team_box:hover .team_img::before {
	opacity: 1;
}
.team_hover_style1.team_box:hover .social_icons {
	-moz-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}
.team_hover_style1:hover .team_title {
	background-color: #0e93d8;
	color: #fff;
}
.team_hover_style1:hover .team_title * {
	color: #fff;
}
.team_hover_style2 .social_icons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
	opacity: 0;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.team_hover_style2.team_box:hover .social_icons {
	opacity: 1;
}
.team_hover_style2.team_box .team_img {
	overflow: hidden;
}
.team_hover_style2.team_box:hover .team_img img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.team_box_style1 {
	padding-top: 20px;
}
.team_box_style1 .team_img {
	padding: 0 20px;
}
.team_box_style1 .team_img img,
.team_box_style2 .team_img img {
	border-radius: 100%;
}
.team_box_style2.team_box {
	padding-bottom: 0px;
}
.team_box_style2 .team_img {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	border-radius: 100%;
	max-width: 255px;
}
.team_box_style2 .team_img img {
	border: 10px solid #ffffff;
}
.team_box_style2 .social_icons {
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.team_hover_style3 .team_img::before {
	background-color: #000;
	border-radius: 100%;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	margin: 10px;
	opacity: 0.6;
	position: absolute;
	right: 0;
	top: 0;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.5s ease 0s;
}
.team_hover_style3 .social_icons li {
	display: inline-block;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease 0s;
}
.team_hover_style3:hover .team_img::before {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.team_hover_style3:hover .team_img .social_icons li {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.team_box_style3 .team_title {
	background-color: #fff;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	top: -20px;
	margin: 0 15px;
}
.team_box.team_box_style4 {
	padding-bottom: 0;
}
.team_box_style4 .team_img {
	position: relative;
	overflow: hidden;
}
.team_box_style4 .team_title {
	background-color: #fff;
	margin-top: -20px;
	position: relative;
	margin-right: 20px;
	margin-left: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.team_box_style4 .social_icons {
	left: -50px;
	position: absolute;
	top: 50%;
	text-align: left;
	background-color: rgba(0,0,0,0.8);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.5s ease-in-out;
}
.team_box_style4:hover .social_icons {
	left: 0;
	transition-delay: 500ms;
}
.team_box_style4 .team_img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-moz-transform: skewX(-25deg);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.team_box_style4 .team_img img {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}
.team_box_style4:hover .team_img img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
}
.team_box_style4:hover .team_img::before {
	-webkit-animation: shine .60s;
	animation: shine .60s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/*===================================*
  14. END TEAM SECTION
*===================================*/

/*===================================*
  15. ACCORDION DESIGN
*===================================*/
.accordion .card,
.accordion_style1 .card {
	background-color: transparent;
}
.accordion .card-header {
	border: 0;
	background-color: transparent;
	padding: 0px;
}
.accordion .card-header a {
	padding: 10px 40px 10px 10px;
	display: block;
}
.accordion .card-body {
	padding: 10px;
}
.accordion .card-header a::after {
	content: "\f126";
	font-family: "Ionicons";
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	right: 15px;
	top: 10px;
}
.accordion .card-header a.collapsed:after {
    content: "\f123";
}
.accordion_style1 .card {
	border-radius: 0;
}
.accordion_style1 .card-header {
	border-bottom: 0;
}
.accordion_style1 .card-body {
	border-top: 1px solid rgba(0,0,0,.15);
	padding: 10px;
}
.accordion_style1 .card-header a::after {
	content: "\f208";
	font-family: "Ionicons";
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	right: 15px;
	top: 10px;
}
.accordion_style1 .card-header a.collapsed:after {
    content: "\f217";
}
.accordion_style2 .card {
    border: 0;
	margin: 0;
}
.accordion_style2 .card-body {
	padding: 10px 0;
}
.accordion_style2.accordion .card-header a {
	border-bottom: 1px solid rgba(0,0,0,.15);
    padding: 15px 25px 15px 0;
}
.accordion_style2.accordion .card-header a::after {
	right: 0;
    top: 15px;
}
.accordion_style3.accordion .card, .accordion_style3.accordion .card-header:first-child {
	border-radius: 0;
}
.accordion_style3 .card,
.accordion_style4 .card,
.accordion_style5 .card,
.accordion_style6 .card {
    border: 0;
	margin-bottom: 10px;
}
.accordion_style3 .card:last-child,
.accordion_style4 .card:last-child,
.accordion_style5 .card:last-child {
	margin-bottom: 0px;
}
.accordion_style3.accordion .card-header a {
    background-color: #000;
    color: #fff;
    padding: 15px 35px 15px 15px;
}
.accordion_style3.accordion .card-header a::after{
    top: 15px;
}
.accordion_style2.accordion_light.accordion .card-header a {
	border-bottom-color: #fff;
}
.accordion_light .card {
    border-color: #fff;
}
.accordion_light.accordion .card-header a,
.accordion_light.accordion .card-body {
	color: #fff;
}
.accordion_light.accordion_style1 .card-body {
	border-top-color: #fff;
}
.accordion_style3.accordion_light.accordion .card-header a {
	background-color: #fff;
	color: #000;
}
.accordion_style4.accordion .card-header a::after {
	top: 18px;
}
.accordion_style4.accordion .card-header a {
	background-color: #0e93d8;
	color: #fff;
	padding: 18px 35px 18px 15px;
	border-radius: 4px;
}
.accordion_style4.accordion .card-header a[aria-expanded="true"] {
	border-radius: 4px 4px 0 0;
}
.accordion_style4.accordion .card-body {
	border-left: 1px solid #c0c6c9;
	border-right: 1px solid #c0c6c9;
	border-bottom: 1px solid #c0c6c9;
}
.accordion_style5.accordion .card,
.accordion_style5.accordion .card-header {
	border-radius: 0;
}
.accordion_style5.accordion .card-header a::after {
	top: 18px;
}
.accordion_style5.accordion .card-header a {
	background-color: #F3F3F3;
	color: #333;
	padding: 18px 35px 18px 15px;
	border-radius: 0px;
	text-transform: capitalize;
}
.accordion_style5.accordion .card-header a[aria-expanded="true"] {
	background-color: #0e93d8;
	color: #fff;
}
.accordion_style5.accordion .card-body {
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
}
.accordion_style6.accordion > .card .card-header {
	margin-bottom: 0;
}
.accordion_style6.accordion .card-header a::after {
	top: 18px;
}
.accordion_style6.accordion .card {
	background-color: rgba(255,255,255,0.2);
	border-radius: 5px !important;
}
.accordion_style6.accordion .card-header a {
	color: #fff;
	padding: 15px 35px 15px 15px;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 22px;
}
.accordion_style6.accordion .card-body {
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.2);
}
.accordion_style6.accordion .card-body * {
	color: #fff;
}
/*===================================*
  15. END ACCORDION DESIGN
*===================================*/

/*===================================*
  16. CALL TO ACTION SECTION
*===================================*/
.cta_section_small {
    padding: 50px;
}
.cta_section_mini {
	padding: 50px 30px;
}
/*===================================*
  16. END CALL TO ACTION SECTION
*===================================*/

/*===================================*
  17. CONTACT SECTION
*===================================*/
iframe {
    border: 0;
	display: block;
}
.map {
    display: none;
}
.map iframe {
	width: 100%;
    height: 315px;
    display: block;
}
.contact_map iframe {
    width: 100%;
    height: 430px;
    display: block;
}
.contact_box {
    box-shadow: 0 0 5px rgba(0,0,0,0.16);
}
.contact_box div[class*="col-"] {
	border-right: 1px solid #dedede;
}
.contact_box div[class*="col-"]:last-child {
    border-right: 0;
}
.map_box, .map_box iframe {
	height: 100%;
	width: 100%;
}
.form_style2 label,
.form_style2 .custome-radio .form-check-label, 
.form_style2 .custome-checkbox .form-check-label {
	color: #fff;
}
.form_style2 .custom-file-input:focus ~ .custom-file-label {
	color: #fff;
	border-color: #fff;
}
.form_style2 .form-control  {
	border-color: #fff;
	background-color: transparent;
	border-width: 2px;
	color: #fff;
	padding: 5px 15px;
	height: 45px;
}
.form_style2 .form_icon {
	color: #fff;
}
.form_style2 .form-control:focus {
	border-color: #fff;
	background-color: transparent;
	color: #fff;
}
.form_style2 textarea.form-control,
.form_style2 textarea.form-control:focus {
	height: auto;
	padding: 10px 15px;
}
.rounded_input .custom_select::before {
	right: 20px;
	top: 50%;
	right: 20px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.custom-file-label,
.custom-file,
.custom-file-input { 
	height: 45px;
	padding: 8px 15px;
}
.form_style2 .custom_select::before {
	color: #fff;
}
.form_style2 select.form-control {
	padding: 5px 40px 5px 15px;
}
.form_style2 .custom-file-label {
	background-color: transparent;
	border-width: 2px;
	border-color: #fff;
	height: 45px;
	padding: 8px 15px;
}
.custom-file-label::after {
	height: 43px;
	border: 0;
	line-height: 30px;
	border-radius: 0;
}
.rounded_input textarea,
.rounded_input textarea:focus  {
	border-radius: 30px;
	height: auto;
	padding: 10px 15px;
}
textarea.form-control, textarea.form-control:focus  {
	height: auto;
	padding: 10px 15px;
}
.form_style2 .form-control::-webkit-input-placeholder {
	color:#ffffff;
	opacity:1
}
.form_style2 .form-control::-moz-placeholder {
	color:#ffffff;
	opacity:1
}
.form_style2 .form-control:-ms-input-placeholder {
	color:#ffffff;
	opacity:1
}
.form_style2 .form-control::-ms-input-placeholder {
	color:#ffffff;
	opacity:1
}
.form_style2 .form-control::placeholder {
	color:#ffffff;
	opacity:1
}
.form_style2 select.not_chosen,
.form_style2 select.not_chosen:focus,
.form_style2 select.form-control.not_chosen,
.form_style2 select.not_chosen.form-control:focus {
	color: #fff;
}
.form_style2 select option {
	color: #333;
}
.form_style2 select[multiple] option {
	color: #fff;
}
.form_style2 .custome_select::before {
	border-top-color: #fff;
}
select[multiple] option {
    padding: 5px;
}
.form_style3 .form-control {
	background-color: transparent;
	border-bottom: 2px solid #ddd;
	border-left: 0;
	border-radius: 0;
	border-top: 0;
	border-right: 0;
	padding: 10px 0 !important;
	height: auto;
	position: relative;
}
.form_style3 .form-control:focus {
	border-color: #0e93d8;
}
.form_style4 .form-group {
	position: relative;
}
.form_style4 .form-group[class*="col-"] label:not(.form-check-label),
.form_style4 .form-group label:not(.form-check-label)  {
	background-color: #fff;
	position: absolute;
	left: 30px;
	top: 10px;
	padding: 0 5px;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
}
.form_style4 .form-group label:not(.form-check-label) {
	left: 15px;
}
.form_style4 .form-group .input-group input + label:not(.form-check-label) {
	left: 50px;
	z-index: 9;
}
.form_style4 .form-group[class*="col-"] .input-group input:focus ~ label:not(.form-check-label),
.form_style4 .form-group[class*="col-"] .input-group input:valid ~ label:not(.form-check-label) {
	left: 50px;
}
.form_style4 .form-group input,
.form_style4 .form-group input:focus,
.form_style4 .form-group .custom_select select {
	padding: 10px 15px 5px;
}
.form_style4 .form-group[class*="col-"] input:focus ~ label:not(.form-check-label) , .form_style4 .form-group[class*="col-"] input:valid ~ label:not(.form-check-label) , 
.form_style4 .form-group[class*="col-"] textarea:focus ~ label:not(.form-check-label) , .form_style4 .form-group[class*="col-"] textarea:valid ~ label:not(.form-check-label)  {
	top: -10px;
	font-size: 14px;
	padding: 0 5px;
	left: 25px;
}
.form_style4 .form-group input:focus ~ label:not(.form-check-label) , .form_style4 .form-group input:valid ~ label:not(.form-check-label) , 
.form_style4 .form-group textarea:focus ~ label:not(.form-check-label) , .form_style4 .form-group textarea:valid ~ label:not(.form-check-label)  {
	top: -10px;
	font-size: 14px;
	padding: 0 5px;
	left: 10px;
}
.form_style4 .form-group[class*="col-"] select:not(.not_chosen) ~ label:not(.form-check-label)  {
	top: -10px;
	font-size: 14px;
	padding: 0 5px;
	left: 10px;
}
.form_style4 .form-group[class*="col-"] select ~ label:not(.form-check-label)  {
	left: 15px;
}
.form_style4 .form-control::-webkit-input-placeholder {
	font-size:0;
}
.form_style4 .form-control::-moz-placeholder {
	font-size:0;
}
.form_style4 .form-control:-ms-input-placeholder {
	font-size:0;
}
.form_style4 .form-control::-ms-input-placeholder {
	font-size:0;
}
.form_style4 .form-control::placeholder {
	font-size:0;
}
.form_control {
	position: relative;
}
.form_control input {
	padding-right: 40px !important;
}
.form_icon {
	position: absolute;
	right: 14px;
	top: 12px;
	pointer-events: none;
}
/*===================================*
  17. END CONTACT SECTION
*===================================*/

/*===================================*
  18. BREADCRUMB SECTION
*===================================*/
.page-title-light *,
.page-title-light .breadcrumb-item,
.page-title-light .breadcrumb-item:before {
	color: #fff;
}
.page-title-light .breadcrumb-item a:hover {
	color: #fff;
	text-decoration: underline;
}
.page-title h1 {
    font-size: 36px;
	margin: 0;
	text-transform: capitalize;
	font-weight: bold;
}
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
.breadcrumb li a, .breadcrumb li {
	text-transform: capitalize;
}
.header_wrap.fixed-top + .breadcrumb_section {
	padding-top: 160px;
}
.header_wrap.fixed-top + .breadcrumb_section2 {
	padding-top: 200px;
}
/*===================================*
  18. END BREADCRUMB SECTION
*===================================*/

/*===================================*
  19. PRICING TABLE SECTION
*===================================*/
.pricing_box {
	border: 1px solid rgba(0,0,0,0.10);
	text-align: center;
	overflow: hidden;
	position: relative;
}
.pr_title {
	padding: 30px 15px 30px;
}
.pr_list li {
	padding: 12px;
}
.pr_list li:nth-child(even) {
	background-color: #f8fafe;
}
.pr_content {
	background-color: #fff;
}
.pr_footer {
	background-color: #fff;
	padding: 20px;
}
.pr_title * {
    text-transform: capitalize;
	position: relative;
}
.price_tage h2 {
    font-size: 40px;
    font-weight: bold;
	margin: 0;
}
.price_tage h2 span {
	font-size: 14px;
	font-weight: normal;
}
.pricing_box.highlight_box {
	-webkit-animation-fill-mode: none;
	animation-fill-mode: none;
	box-shadow: 0 0 8px rgba(0,0,0,.1);
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
	position: relative;
	z-index: 1;
}
.pricing_style1 .pr_title {
    padding: 0;
}
.pricing_style1 .pr_title h4 {
    background-color: rgba(0,0,0,0.15);
    padding: 10px;
	margin: 0;
}
.pricing_style1 .pr_title .price_tage {
    padding: 25px;
}
.pricing_box.pricing_style2{
    border-radius: 10px;
	box-shadow: 0 0 8px rgba(0,0,0,.2);
	border: 0;
}
.pricing_box.pricing_style2 .pr_title {
    border-radius: 10px 10px 0 0;
}
.pricing_box.pricing_style2 .pr_footer {
    border-radius: 0 0 10px 10px;
}
.pricing_style2 .pr_list li:nth-child(even) {
	background-color: #fff;
}
.pricing_box.pricing_style3 {
    border: 0;
	box-shadow: 0 0 8px rgba(0,0,0,.2);
}
.pricing_style3 .pr_title {
    background-color: #fff;
}
.pricing_box.pricing_style3.highlight_box {
    border: 3px solid #0e93d8;
}
.pricing_style3 .pr_list li:nth-child(even) {
    background-color: #fff;
}
.pricing_style3 .pr_list li {
    border-top: 1px solid #eee;
}
.pricing_box.pricing_style4{
    border-radius: 10px;
	box-shadow: 0 0 8px rgba(0,0,0,.2);
	border: 0;
}
.pricing_style4 .pr_list li:nth-child(even) {
	background-color: transparent;
}
.pricing_style4 .price_tage h2 {
	font-size: 50px;
}
.pricing_style4 .price_tage {
	padding-top: 10px;
}
.sliding_tab .tab_bg {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #0E93D8;
	left: 0;
	border-radius: 45px;
	z-index: 0;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
.pricing_ribbon {
	background-color: #0e93d8;
	color: #fff;
	position: absolute;
	display: block;
	top: 18px;
	right: -30px;
	width: 128px;
	padding: 8px 20px 8px;
	margin: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	height: 32px;
	z-index: 2;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	box-sizing: border-box;
	font-size: 13px;
}
.price_tage .hide {
	display: none;
}
/*===================================*
  19. END PRICING TABLE SECTION
*===================================*/

/*===================================*
  20. ERROR 404 SECTION
*===================================*/
.error_txt {
	color: #333;
	font-size:240px;
	font-weight: bold;
	line-height: 1.2;
}
.search_form input {
    padding: 15px;
}
.search_form .search_icon {
    top: 0;
    right: 0;
    padding: 0px 15px;
}
.particle_effect {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.form_border input {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.form_border input:focus {
    background-color: transparent;
	border-color: #fff;
	color: #fff;
}
/*===================================*
  20. END ERROR 404 SECTION
*===================================*/

/*===================================*
  21. COMMING SOON SECTION
*===================================*/
.countdown_time {
	display: inline-block;
	width: 100%;
}
.countdown_time .countdown_box {
	float: left;
	width: 25%;
	text-align: center;
}
.countdown_time .cd_text {
	display: block;
	color: #333;
}
.countdown_box .countdown {
	color: #333;
	font-size: 40px;
	font-weight: bold;
}
.countdown_white .countdown_box .countdown, .countdown_white .countdown_box .cd_text {
    color: #fff;
}
.countdown_style1 .countdown_box {
    position: relative;
}
.countdown_style1 .countdown_box::before {
    content: ":";
    font-size: 40px;
    font-weight: bold;
    color: #000;
    position: absolute;
    right: -6px;
}
.countdown_style1.countdown_white .countdown_box::before {
	color: #fff;
}
.countdown_style1 .countdown_box:last-child:before {
	content: normal;
}
.countdown_style2 .countdown {
    background-color: #000;
    color: #fff;
    padding: 15px;
    line-height: normal;
    border-radius: 5px;
    max-width: 100px;
    display: block;
    text-align: center;
    margin: 0 auto 5px;
}
.countdown_style2.countdown_white .countdown {
	background-color: #fff;
	color: #000;
}

/*===================================*
  21. END COMMING SOON SECTION
*===================================*/

/*===================================*
  22. PAGINATION DESIGN
*===================================*/
.pagination .page-item a i {
	font-size: 24px;
	vertical-align: middle;
}
.pagination .page-item a {
	color: #0E93D8;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0px;
	z-index: 1;
}
.page-item.active .page-link,
.page-item .page-link:hover {
    background-color: #0E93D8;
    border-color: #0E93D8;
	color: #fff;
}
.page-link:focus {
    box-shadow: none;
}
.pagination_style2 .page-item:first-child a {
    border-radius: 40px 0 0 40px;
}
.pagination_style2 .page-item:last-child a {
    border-radius: 0 40px 40px 0;
}
.pagination_style3 .page-item a {
	border: 0;
	border-radius: 4px;
	margin-left: 0px;
}
.pagination_style4 .page-item a {
	border: 0;
	border-radius: 100%;
	margin-left: 0px;
}
.pagination_style4 li,
.pagination_style3 li,
.pagination_style5 li,
.pagination_style6 li,
.pagination_style7 li,
.pagination_style8 li {
    margin-right: 5px;
}
.pagination_style4 li:last-child,
.pagination_style3 li:last-child,
.pagination_style5 li:last-child,
.pagination_style6 li:last-child,
.pagination_style7 li:last-child {
    margin-right: 0px;
}
.pagination_style4 .page-item:first-child .page-link,
.pagination_style4 .page-item:last-child .page-link,
.pagination_style6 .page-item:first-child .page-link,
.pagination_style6 .page-item:last-child .page-link {
	border-radius: 100%;
}
.pagination_style5 .page-item a {
	border: 2px solid #dee2e6;
	border-radius: 4px;
	color: #888888;
	line-height: 38px;
	margin-left: 0px;
}
.pagination_style5 .page-item.active .page-link,.pagination_style5 .page-item .page-link:hover {
    background-color: transparent;
    border-color: #0E93D8;
    color: #0E93D8;
}
.pagination_style6 .page-item a {
	border: 2px solid #dee2e6;;
	border-radius: 100%;
	color: #888888;
	line-height: 38px;
	margin-left: 0px;
}
.pagination_style6 .page-item.active .page-link,.pagination_style6 .page-item .page-link:hover {
    background-color: transparent;
    border-color: #0E93D8;
    color: #0E93D8;
}
.pagination.pagination_style7 .page-item a {
	background-color: #eee;
	border: 0;
	border-radius: 0;
	color: #888888;
	line-height: 40px;
	margin-left: 0px;
}
.pagination_style7 .page-item.disabled .page-link {
	color: #888888;
	background-color: #eaeaea;
}
.pagination_style7 .page-item.active .page-link,.pagination_style7 .page-item .page-link:hover {
    background-color: #0E93D8;
    color: #fff;
}
.pagination.pagination_style8 .page-item a {
	border-radius: 5px;
	border: 2px solid #eee;
	color: #888888;
	line-height: 38px;
	margin-left: 0px;
}
.pagination_style8 .page-item.active .page-link,.pagination_style8 .page-item .page-link:hover {
    background-color: #0E93D8;
    color: #fff;
	border-color: #0E93D8;
}
.pagination.pagination_style8 .page-item a i {
	vertical-align: top;
}
/*===================================*
  22. END PAGINATION DESIGN
*===================================*/

/*===================================*
  23. SIDEBAR DESIGN
*===================================*/
.sidebar .widget {
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
    padding-bottom: 30px;
}
.sidebar .widget:last-child {
	border-bottom: 0;
	margin-bottom: 0px;
    padding-bottom: 0px;
}
.tags a {
    border: 1px solid #ddd;
	font-size: 14px;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 7px;
}
.tweet_feed {
	padding-left: 25px;
}
.tweet_feed li {
    list-style: none;
    position: relative;
    font-size: 14px;
	padding-bottom: 15px;
}
.tweet_feed li:last-child {
	padding-bottom: 0px;
}
.tweet_feed li::before {
    content: "\e74b";
    font-family: 'themify';
    position: absolute;
    left: -25px;
    top: 0;
    color: #0e93d8;
}
.tweet_date {
	color:#333;
	margin-bottom: 5px;
	display: block;
}
.tweet_feed a {
	color: #0e93d8;
}
.widget_categories .categories_num,
.widget_archive .archive_num {
	float: right;
}
.widget_search_box form {
	position: relative;
}
.widget_search_box input {
	padding-right: 50px;
}
.widget_search_box .btn, .widget_search_box button {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #0e93d8;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	color: #fff;
}
/*===================================*
  23. END SIDEBAR DESIGN
*===================================*/

/*===================================*
  24. PORTFOLIO DETAIL PAGE
*===================================*/
.portfolio_info_box > li {
	border-bottom: 1px solid #999;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.portfolio_info_box > li:last-child {
	border-bottom: 0;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.portfolio_info_box span {
	display: block;
	color: #333;
	font-weight: bold;
	margin-bottom: 5px
}
.portfolio_info_box p {
	margin-bottom: 10px;
}
.post_navigation i {
    font-size: 32px;
}
.post_navigation span {
    display: block;
	font-weight: bold;
	text-transform: capitalize;
}
.post_navigation .nav_meta {
	font-size: 14px;
	color: #999;
	transition: all .5s ease;
}
.post_navigation a:hover .nav_meta {
	color: #0E93D8;
}
.pr_info_text_white, .pr_info_text_white li span {
    color: #fff;
}
.pr_info_text_white.portfolio_info_box > li {
	border-color: rgba(255,255,255,0.5);
}

/*===================================*
  24. END PORTFOLIO DETAIL PAGE
*===================================*/

/*===================================*
  25. GALLERY DESIGN
*===================================*/
.image_gallery_item {
	position: relative;
}
.gallary_hover_box {
	background-color: rgba(0,0,0,0.80);
    bottom: 0px;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    top: 0px;
	opacity: 0;
	visibility: hidden;
    right: 0px;
    left: 0px;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
.gallary_hover_box i {
	color: #fff;
	font-size: 24px;
}
.image_gallery_item:hover .gallary_hover_box {
	opacity: 1;
	visibility: visible;
}
.gallery_img img {
	transition: all 0.5s ease;
}
.gallery_hover_style1 .image_gallery_item,
.gallery_hover_style2 .image_gallery_item {
	overflow: hidden;
}
.gallery_hover_style1 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.gallery_hover_style2 .gallary_hover_box {
	top: 15px;
	left: 15px;
	bottom: 15px;
	right: 15px;
}
.gallery_hover_style2 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-filter: blur(5px); 
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
     filter: blur(5px);
}
.gallery_hover_style3 .gallary_hover_box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0px;
    border: 2px solid rgba(255,255,255,0.5);
    margin: 10px;
}
/*===================================*
  25. END GALLERY DESIGN
*===================================*/

/*===================================*
  26. SHOP DESIGN
*===================================*/

.product_title * {
    font-size: 16px;
}
.product_info {
    padding-top: 15px;
    font-size: 14px;
}
.product_price {
	color: #333;
    font-size: 18px;
    font-weight: 700;
}
.product_price del {
    font-weight: 400;
    font-size: 90%;
	margin-right: 5px;
}
.product_price ins {
    text-decoration: none;
}
.product_action_box {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
}
.product:hover .product_action_box {
	opacity: 1;
	visibility: visible;
}
.product_action_box li {
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
    filter: alpha(opacity=0);
}
.shop-item:hover .product_action_box li {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100);
}
.product_action_box li:nth-child(1) {
	-webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.product_action_box li:nth-child(2) {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.product_action_box li:nth-child(3) {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.shop_container.list {
	height: auto !important;
}
.shop_container.list > li {
	width: 100%;
	float: none;
	position: static !important;
	display: inline-block;
}
.shop_container.list > li.grid-sizer {
	display: none;
}
.shorting_icon.active {
	color: #0e93d8;
}
.shop_container.list .product_img {
	float: left;
	max-width: 200px;
	margin-right: 15px;
}
.shop_container.list .product_info {
	overflow: hidden;
	text-align: left;
	padding-top: 0;
}
.shop_container.list .product_desc {
	display: block;
}
.shop_container.list .product_img .product_action_box,
.shop_container.grid .product_info .product_action_box {
	display: none;
}
.shop_container.list .product_info .product_action_box, .shop_container.list .product_info .product_action_box li {
	position: static;
	opacity: 1;
	visibility: visible;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}
.shop_container.list .pr_action_btn {
	display: block;
	margin: 0;
}
.shop_container.list .pr_action_btn li.add-to-cart a span {
	display: inline-block;
}
.shop_container.list .pr_action_btn li.add-to-cart a {
	width: auto;
	padding: 0 15px;
}
.product_desc {
	display: none;
}
.product_img {
    position: relative;
	overflow: hidden;
}
.product_img > a:nth-of-type(2) {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.product:hover .product_img > a:nth-of-type(2) {
    opacity: 1;
    z-index: 0;
}
.product_img a, .product_img a img {
    display: block;
    width: 100%;
}
.pr_action_btn {
    display: table;
    margin: 0 auto;
}
.pr_action_btn li {
	float: left;
	position: relative;
	margin: 0 3px;
}
.pr_action_btn li a {
	font-size: 20px;
	text-transform: uppercase;
	transition: all 0.5s ease-in;
	border-radius: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	border: 0;
	display: block;
	text-align: center;
}
.pr_action_btn li a:not(.btn):hover {
	color: #fff;
	background-color: #0E93D8;
}
.pr_action_btn li a:not(.btn) {
	background-color: #000;
	color: #fff;
}
.pr_action_btn li a span {
	margin-left: 10px;
	font-size: 14px;
	display: none;
	vertical-align: top;
}
.pr_action_btn li a i {
	vertical-align: middle;
	font-size: 20px;
	margin: 0;
}
.mfp-ajax-holder .mfp-content {
	background-color: #fff;
    max-width: 900px;
}
.mfp-ajax-holder .ajax_quick_view {
    padding: 30px;
}
.zoomContainer {
	z-index: 99;
}
.zoom_image .zoomContainer {
	z-index: 9999;
}
.product-description p {
    width: 100%;
    display: inline-block;
}
.quantity {
    float: left;
    margin-right: 25px;
}
.quantity .minus, .quantity .plus {
    display: block;
    float: left;
    cursor: pointer;
    border: 0 transparent;
    padding: 0;
    width: 36px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    background-color: #eee;
    font-size: 20px;
}
.quantity .qty {
    float: left;
    width: 70px;
	height: 44px;
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background-color: #eee;
    text-align: center;
    margin-bottom: 0;
}
.btn-addtocart {
	padding: 5px 20px;
	margin-right: 10px;
}
.btn-addtocart i {
	font-size: 20px;
	margin-left: 0;
	margin-right: 5px;
}
.product-meta {
    padding-left: 15px;
}
.product-meta li {
    margin-top: 10px;
}
.product_share {
	margin-top: 15px;
}
.product_share span {
    margin-right: 5px;
    display: block;
}
.add_wishlist, .add_compare {
    padding: 7px 7px;
	font-size: 22px;
	vertical-align: middle;
	display: inline-block;
	line-height: normal;
}
.product-rate i {
    color: #ffc300;
	font-size: 18px;
}
.flash {
    position: absolute;
    top: 15px;
    right: -50px;
    background-color: #0E93D8;
    color: #fff;
    padding: 2px 35px;
	max-width: 150px;
	width: 100%;
	text-transform: capitalize;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	text-align: center;
	z-index: 9;
}
.color_box_item {
	border-radius: 3px;
    height: 20px;
    width: 20px;
    display: block;
    border: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    margin: 3px;
	position: relative;
}
.color_box_item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: 1px solid #ddd;
    margin: -3px;
    border-radius: 3px;
}
.color_filter span {
	vertical-align: middle;
}
.color_filter {
    margin: 15px 0;
}
.color_filter_blue {
	background-color: #7CB7FF;
}
.color_filter_yellow {
	background-color: #FCC140;
}
.color_filter_green {
	background-color: #74D265;
}
.color_filter_orange {
	background-color: #F88359;
}
.color_filter_brown {
	background-color: #967669;
}
.color_filter_pink {
	background-color: #D459D8;
}
.color_filter_black {
	background-color: #000000;
}
.product_size, .product_size li {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.product_size li a {
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 3px;
    line-height: 35px;
}
.ajax_quick_view .product_size li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.sidebar .product_price {
    font-size: 16px;
}
.filter_price .ui-widget.ui-widget-content {
    border: 0;
	border-radius: 0;
    background-color: #ddd;
	height: 4px;
}
.filter_price .ui-slider .ui-slider-range {
	background-color: #1083c8;
}
.filter_price .ui-slider {
    margin-bottom: 15px;
}
.filter_price .ui-slider .ui-slider-handle {
	background-color: #1083c8;
    border-radius: 100%;
    border: 0;
    height: 15px;
    top: -6px;
    width: 15px;
}
.filter_price .btn {
    padding: 8px 15px;
    font-size: 14px;
}
.filter_price {
	color: #222;
}
#flt_price {
    font-weight: bold;
}
.custom_select {
	position: relative;
}
.custom_select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 8px 35px 8px 15px;
	width: 100%;
	height: 45px;
}
.custom_select::before {
    content: "\e64b";
    font-family: 'themify';
    position: absolute;
    display: block;
    top: 50%;
    right: 15px;
    font-weight: 900;
    pointer-events: none;
    font-size: 12px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.shorting_icon {
	font-size: 30px;
	vertical-align: middle;
	margin-left: 10px;
}
.owl-thumbs-slider {
	margin-top: 10px;
}
.product_gallery_item a img {
	opacity: 0.5;
	transition: all 0.5s ease-in-out;
}
.product_gallery_item a.active img {
	opacity: 1;
}
.tab-content p:last-child {
    margin: 0;
}
.nav-tabs li a {
	display: block;
}
.tab-style1 .nav-tabs,
.tab-style2 .nav-tabs,
.tab-style7 .nav-tabs,
.tab-style3 ul,
.tab-style10 .nav-tabs,
.tab-style11 .nav-tabs {
    border: 0;
}
.tab-style1 .tab-content {
    padding: 20px;
	border: 1px solid #ddd;
}
.shop_info_tab table {
	margin: 0;
}
.tab-style1 .nav-tabs .nav-item a,
.tab-style1 .nav-tabs .nav-item a:hover {
	background-color: #f7f7f7;
	border: 1px solid #dee2e6;
	border-radius: 0;
	padding: 15px 30px;
	text-transform: capitalize;
	border-right-color: transparent;
}
.tab-style1 .nav-tabs li.nav-item:first-child a {
	border-radius: 5px 0 0 0;
}
.tab-style1 .nav-tabs li.nav-item:last-child a {
	border-radius: 0 5px 0 0;
	border-right-color: #dee2e6;
}
.tab-style1 .nav-tabs .nav-item a.active {
	background-color: #fff;
	border-bottom-color: transparent;
	color: #0E93D8;
}
.tab-style2 .nav-tabs {
	margin-bottom: 20px;
}
.tab-style2 .nav-item {
	margin-right: 40px;
	margin-top: 10px;
}
.tab-style2 .nav-item:last-child,
.tab-style3 ul li:last-child,
.tab-style4 .nav-tabs li.nav-item:last-child,
.tab-style10 ul li:last-child, {
    margin-right: 0;
}
.tab-style2 .nav-tabs .nav-item a {
	background-color: transparent;
	border-bottom: 1px solid rgba(0,0,0,0);
	border-right: 0;
	border-top: 0;
	border-left: 0;
	border-radius: 0;
	padding: 0 0 5px 0px;
	text-transform: capitalize;
}
.tab-style2 .nav-tabs .nav-item a.active {
	border-bottom-color: #0E93D8;
	color: #0E93D8;
}
.tab-style3 .nav-tabs li {
    display: inline-block;
	margin-right: 10px;
	margin-top: 10px;
}
.tab-style3 li a {
	background-color: #eee;
    border: 0 !important;
    border-radius: 4px;
    padding: 10px 30px;
    display: block;
    text-align: center;
}
.tab-style3 .nav-tabs .nav-item a.active {
	background-color: #0E93D8;
	color: #fff;
}
.tab-style3 .tab-content,
.tab-style4 .tab-content,
.tab-style5 .tab-content {
	margin-top: 20px;
}
.tab-style4 .nav-tabs {
    border-bottom: 1px solid rgba(14, 147, 216, 0.2);
}
.tab-style4 .nav-tabs li.nav-item {
   margin-right: 20px 
}
.tab-style4 .nav-tabs .nav-item a.active {
    border-bottom-color: #0E93D8;
	color: #0E93D8;
}
.tab-style4 .nav-tabs li.nav-item a {
	background-color: transparent;
	display: block;
	padding: .5rem 1rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
	border-bottom: 2px solid rgba(0,0,0,0);
    text-align: center;
    text-transform: uppercase;
}
.tab-style5 .nav-tabs .nav-item a {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	padding: .5rem 1rem;
}
.tab-style5 .nav-tabs .nav-item a.active {
	border-color: #0E93D8;
    background-color: #0E93D8;
	color: #fff;
}
.tab-style5 .nav-tabs .nav-item a:hover {
	border-color: transparent;
}
.tab-style6 .nav-tabs {
    display: block;
	margin-bottom: 20px;
}
.tab-style6 .nav-tabs .nav-item a {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 15px;
}
.tab-style6 .nav-tabs .nav-item a.active {
	color: #0E93D8;
}
.tab-style7 .nav-tabs {
	position: relative;
}
.tab-style7 .nav-item:after {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    content: '';
    width: 100%;
    background: url(../images/line.png) repeat 0 0;
    z-index: -1;
    animation: slide 1s linear infinite;
}
.tab-style7 .nav-item:last-child::after {
	content: normal;
}
@keyframes slide {
  from {
    background-position: 0 0; }
  to {
    background-position: 40px 0; } 
}
.tab-style7 .nav-item {
	margin-right: 20px;
}
.tab-style7 .nav-item:last-child {
	margin-right: 0px;
}
.tab-style7 li a {
	background-color: #fff;
	border: 0 !important;
	border-radius: 5px;
	display: block;
	font-size: 0;
	padding: 0;
	height: 50px;
	width: 50px;
	line-height: 60px;
	position: relative;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.tab-style7 li a i {
	margin: 0;
	font-size: 24px;
	line-height: 48px;
}
.tab-style7 .nav-tabs a.active,
.tab-style7 .nav-tabs a:hover {
	background-color: #0E93D8;
	color: #fff;
}
.tab-style7 li a.active::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin: 0 auto;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #0E93D8 transparent transparent transparent;
	width: 0;
	height: 0;
}
.tab-style8 ul {
	border-radius: 45px;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 13px 0 rgba(0,11,40,.08);
	box-shadow: 0 3px 13px 0 rgba(0,11,40,.08);
	border: 0;
	padding: 7px;
	position: relative;
	display: inline-block;
}
.tab-style8 ul li {
	display: inline-block;
}
.tab-style8 .nav-item a.active_hover {
	border: 0;
	border-radius: 45px;
	background: 0 0;
	color: #fff;
}
.tab-style8 .nav-item a.active {
	background-color: #0E93D8;
	color: #fff;
}
.tab-style8 .nav-item a.active.active_hover {
	background-color: transparent;
}
.tab-style8 .nav-item a {
	padding: 12px 30px;
	display: inline-block;
	border: 0;
	border-radius: 45px;
	text-align: center;
	-webkit-transition: color .3s linear;
	-o-transition: color .3s linear;
	transition: color .3s linear;
	position: relative;
	z-index: 1;
}
.tab-style9 ul {
	border: 0;
}
.tab-style9 ul li.nav-item {
	padding: 0 5px 0px 0;
}
.tab-style9 .nav-item a {
	background-color: rgba(255,255,255,0.2);
	color: #677294;
	padding: 8px 25px;
	display: block;
	border: 0;
	border-radius: 5px;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}
.tab-style9 .nav-item a.active,
.tab-style9 .nav-item a:hover {
	background-color: #0E93D8;
	color: #fff;
}
.tab-style10 .nav-tabs li {
    display: inline-block;
	margin-right: 10px;
	margin-top: 10px;
}
.tab-style10 li a {
	background-color: #eee;
    border: 0 !important;
    border-radius: 0px !important;
    padding: 10px 30px;
    display: block;
    text-align: center;
}
.tab-style10 .nav-tabs .nav-item a.active {
	background-color: #0E93D8;
	color: #fff;
}
.tab-style11 .nav-tabs {
	display: block;
}
.tab-style11 .nav-tabs .nav-item {
	margin-bottom: 10px;
}
.tab-style11 li .nav-link {
	text-transform: uppercase;
	border: 2px solid #e8e8e8;
	border-radius: 0px !important;
	padding: 10px 30px;
	display: block;
	text-align: center;
}
.tab-style11 .nav-tabs .nav-item span {
	display: block;
	transition: all 0.5s ease-in-out;
}
.tab-style11 .nav-tabs .nav-item a:hover,
.tab-style11 .nav-tabs .nav-item a.active {
	background-color: #0E93D8;
	border-color: #0E93D8;
	color: #fff;
}
.tab-style11 .nav-tabs .nav-item a:hover span,
.tab-style11 .nav-tabs .nav-item a.active span {
	color: #fff;
}
.tab_content_slider.tab-content > .tab-pane.active {
	height: auto;
	display: block;
	z-index: 1;
}
.tab_content_slider.tab-content > .tab-pane {
	display: block;
	height: 0;
	transition: all 0s ease-in-out;
	position: relative;
	z-index: -3;
}
.nav-tabs i {
    margin-right: 5px;
}
.tab-style2.tab_white .nav-tabs .nav-item a,
.tab-style4.tab_white .nav-tabs li.nav-item a,
.tab-style5.tab_white .nav-tabs li.nav-item a,
.tab-style5.tab_white .nav-tabs li.nav-item a.active:hover,
.tab-style6.tab_white .nav-tabs li.nav-item a,
.tab-style9.tab_white .nav-item a {
	color: #fff;
}
.tab-style2.tab_white .nav-tabs .nav-item a:hover,
.tab-style2.tab_white .nav-tabs .nav-item a.active,
.tab-style4.tab_white .nav-tabs li.nav-item a:hover,
.tab-style4.tab_white .nav-tabs li.nav-item a.active,
.tab-style5.tab_white .nav-tabs li.nav-item a:hover,
.tab-style6.tab_white .nav-tabs li.nav-item a:hover,
.tab-style6.tab_white .nav-tabs li.nav-item a.active {
	color: #0E93D8;
}
.tab-style4.tab_white .nav-tabs {
	border-color: rgba(255,255,255,0.2);
}
.comment_img {
    float: left;
	text-align: center;
}
.comment_img img {
    border-radius: 100%;
	max-width: 60px;
}
.comment_block {
    padding-left: 80px;
}
.comment-date {
    margin-left: 5px;
    border-left: 1px solid #888888;
    padding-left: 10px;
}
.comments li {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
.rating span {
	cursor: pointer;
	display: inline-block;
}
.rating span i {
	font-size: 30px;
}
.rating > span.selected {
    color: #ffc300;
}
.rating > span.selected i:before {
    content: "\f2fc"
}
.shop_cart_table th,
.shop_cart_table td {
	vertical-align: middle;
	text-align: center;
}
.shop_cart_table th,
.product-subtotal {
    color: #222;
	font-weight: 600;
}
.product-thumbnail img {
	max-width: 70px;
}
.shop_cart_table th.product-name,
.shop_cart_table td.product-name {
    text-align: left;
}
.product-quantity .quantity {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    float: none;
    margin: 0 auto;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.product-thumbnail {
    width: 1%;
}
.shop_cart_table input {
	height: 45px;
}
.shop_cart_table .btn {
	padding: 10px 25px;
}
.coupon {
    position: relative;
}
.coupon button {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 4px 4px 0px;
    bottom: 0;
}
.cart_total_amount {
    color: #000;
}
.shop_cart_table tfoot td {
    padding-top: 30px;
}
.toggle_info {
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.toggle_info * {
	font-size: 14px;
	color: #000;
}
.toggle_info a {
	color: #0E93D8;
}
.required {
    color: #f00;
}
.panel-body {
    padding: 15px;
}
.login_footer {
	text-align: left;
}
.login_footer a {
	float: right;
}
.login_form ,
.coupon_form {
	border: 1px solid #ddd;
}
.chek-form .custome-radio:first-child .payment-text {
    display: block;
}
.payment-text {
    display: none;
	margin-top: 5px;
}
.chek-form .custome-radio {
    margin-bottom: 10px;
}
.custome-radio .form-check-label,
.custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
    color: #333;
    padding: 0;
}
.custome-radio .form-check-input,
.custome-checkbox .form-check-input {
    display: none;
}
.chek-form label {
    text-transform: capitalize;
}
.custome-radio .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 14px;
    width: 14px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin: -2px 8px 0 0;
}
.custome-radio input[type="radio"] + .form-check-label::after {
    content: "";
    background-color: #0E93D8;
    height: 6px;
    width: 6px;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 4px;
    opacity: 0;
}
.custome-radio input[type="radio"]:checked + .form-check-label::before {
	border-color: #0E93D8;
}
.custome-radio input[type="radio"]:checked + .form-check-label::after {
    opacity: 1;
}
.custome-checkbox .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 17px;
    width: 17px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 8px 0 0;
}
.custome-checkbox input[type="checkbox"] + .form-check-label::after {
    content: """";
    width: 11px;
    position: absolute;
    top: 8px;
    left: 3px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
	background-color: #0E93D8;
	border: 0;
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
    opacity: 1;
}
.form-check-input:disabled ~ .form-check-label {
    opacity: 0.7;
}
.lead strong {
    font-weight: bold;
}
/*===================================*
  26. END SHOP DESIGN
*===================================*/

/*===================================*
  27. PAGE TITLE DESIGN
*===================================*/

.page_title_video video {
    width: 100%;
}
.page_title_video {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -3;
}
/*===================================*
  27. END PAGE TITLE DESIGN
*===================================*/

/*===================================*
  28. LOGIN REGISTER PAGE DESIGN
*===================================*/

.login_register_wrap {
	padding: 50px 0;
}
.big_logo img {
	max-width: 400px;
}
.lr_form {
    max-width: 400px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 100%;
}
.different_login span {
    background-color: #fff;
    padding: 0 15px;
	position: relative;
}
.different_login {
    text-align: center;
    position: relative;
	margin: 20px 0;
}
.different_login span {
	text-transform: uppercase;
}
.different_login::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid #ddd;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn-login li {
	margin: 20px 5px 0;
	display: inline-block;
	font-size: 0;
}
.btn-login li a {
    border-radius: 5px;
    padding: 10px 20px;
	font-size: 16px;
    color: #fff;
    display: block;
}
.btn-login li a i {
    margin-right: 6px;
}
.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
    box-shadow: 0px 2px 18px 2px rgba(59,89,152,0.25);
}
.btn-facebook:hover{
    color: #fff;
    background: #344e86;
    border-color: #344e86;
}
.btn-google {
    background: #d85040;
    border-color: #d85040;
    box-shadow: 0px 2px 18px 2px rgba(216,80,64,0.25);
}
.btn-google:hover {
    color: #fff;
    background: #d33d2b;
    border-color: #d33d2b;
}
.btn-twitter {
    background: #00ABF0;
    border-color: #00ABF0;
    box-shadow: 0px 2px 18px 2px rgba(0,160,250,0.25);
}
.btn-twitter:hover {
    color: #fff;
    background: #009BE0;
    border-color: #009BE0;
}
.btn-linkdin {
    background: #0A80AF;
    border-color: #0A80AF;
    box-shadow: 0px 2px 18px 2px rgba(0,160,250,0.25);
}
.btn-linkdin:hover {
    color: #fff;
    background: #00709F;
    border-color: #00709F;
}
.lr_form .mfp-close {
	position: absolute;
	left: 100%;
	top: 0;
	background-color: #fff;
	margin-left: 1px;
}
.lr_wrap {
	background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.form_lr {
	padding: 40px;
}
/*===================================*
  28. END LOGIN REGISTER PAGE DESIGN
*===================================*/

/*===================================*
  29. ELEMENT DESIGN
*===================================*/

.alert:last-child {
	margin: 0;
}
.alert > i {
    margin-right: 5px;
	font-size: 18px;
}
.alert.alert_style1 {
    padding: 14px 14px 14px 14px;
    border-radius: 0;
    border-left: 3px solid;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
}
.alert_style2 {
    border-radius: 30px;
    border: 0;
    padding: 15px 20px;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.2);
}
.table-dark > td, .table-dark > th {
    background: transparent;
}
.blockquote {
    font-size: 16px;
    padding: 15px;
    background-color: #f5f5f5;
    border-left: 3px solid #0E93D8;
}
.blockquote-footer {
	background-color: transparent;
}
.blockquote.quote_light {
	border-left-color: #fff;
}
.blockquote.quote_style1,
.blockquote.quote_style3 {
    border: 0;
}
.quote_style1:before {
    font-family: "Ionicons";
    content: "\f347";
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 42px;
    color: #cdcdcd;
}
.blockquote.quote_style2 {
    background-color: transparent;
	padding-top: 0;
	padding-bottom: 0;
}
.blockquote.quote_style3 {
	background-color: transparent;
	padding: 0;
}
.quote_style3:before {
    font-family: "Ionicons";
    content: "\f347";
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 42px;
    color: #fff;
}
.quote_light > * {
	color: #fff;
}
.blockquote.quote_style4 {
    background-color: rgba(255,255,255,0.3);
}
.blockquote.quote_style5 {
	background-color: transparent;
}
.blockquote.quote_style5 p {
	font-style: italic;
	color: #333;
	font-size: 20px;
}
.blockquote.quote_style5 p:last-child {
	margin: 0;
}
.blockquote.quote_style6 {
	background-color: transparent;
	border: 0;
	padding: 0 0 0px 50px;
	font-style: italic;
	font-size: 18px;
	position: relative;
}
.blockquote.quote_style6 * {
	color: #444444;
}
.quote_style6::before {
	font-family: "Ionicons";
	content: "\f347";
	line-height: 48px;
	font-size: 42px;
	color: #cdcdcd;
	position: absolute;
	font-style: normal;
	left: 0;
	top: 0;
}
.grid_box [class^="col-"] {
    background-color: rgba(86,61,124,.15);
    border: 1px solid rgba(86,61,124,.2);
	color: #212529;
    margin-bottom: 15px;
    padding: 10px 0;
    text-align: center;
}
.flip_box{
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}
.front,
.back{
  background-size: cover;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-align: center;
	min-height: 280px;
	height: auto;
	border-radius: 10px;
	color: #fff;
}
.front:before,
.back:before {
    border-radius: 10px;
}
.flip_box:hover .front,
.flip_box:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.inner{
	-webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
	transform: translateY(-50%) translateZ(60px) scale(0.94);
	top: 50%;
	position: absolute;
	left: 0;
	width: 100%;
	padding: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 1px solid transparent;
	-webkit-perspective: inherit;
	perspective: inherit;
	z-index: 2;
}
.flip_box .inner h5 {
	font-weight: 600;
}
.flip_box * {
	line-height:  inherit;
}
.flip_box .back{
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.flip_box .front,
.flip_box:hover .back{
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.flip_box:hover .front{
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.flip_box i {
	font-size: 40px;
	display: inline-block;
}
.flip_vertical.flip_box .back{
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.flip_vertical.flip_box .front,
.flip_vertical.flip_box:hover .back{
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.flip_vertical.flip_box:hover .front{
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.datepicker-panel > ul > li {
	color: #000;
}
.mdtp__wrapper {
	bottom: auto;
	top: 50%;
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.mdtp__clock .mdtp__minute_holder .mdtp__digit:not(.marker) span {
	top: -2px;
	position: relative;
}
.cs_content_box {
	position: absolute;
	left: 0;
	right:0;
	top: 50%;
	z-index: 9;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.cs_box {
	background-color: rgba(0,0,0,0.5);
	padding: 50px 30px;
	position: relative;
}
.cs_fancy_style::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 2px;
	background-color: rgba(0,0,0,0.5);
	height: 100%;
	right: 0;
	margin: 0 auto;
}
.cs_fancy_style::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 10px;
	height: 10px;
	background-color: rgba(255,255,255,0.8);
	border-radius: 100%;
	top: 10px;
}
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	min-width: 48px;
	height: 26px;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	background-color: #fff;
	overflow: hidden;
	margin-bottom: 0;
	vertical-align: middle;
	margin: 0 10px;
}
.switch_slide {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	background-color: #0e93d8;
}
.switch_checkbox {
	display: none;
}
.switch_checkbox:checked + .switch_slide::before {
	-webkit-transform: translateX(22px);
	-ms-transform: translateX(22px);
	transform: translateX(22px);
}
.switch_slide::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	top: 3px;
	background-color: #fff;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.switch_checkbox:checked + .switch_slide::before {
	-webkit-transform: translateX(22px);
	-ms-transform: translateX(22px);
	transform: translateX(22px);
}
.pt_switch_active {
	color: #333;
}
.scene {
	overflow: hidden;
}
#thumb_img {
	margin-top: 15px;
}
#thumb_img:hover img {
    opacity: 0.5;
}
#thumb_img img:hover {
    opacity: 1;
}
.service_box {
	margin-bottom: 30px;
}
.setvice_content {
	padding: 15px;
	background-color: #fff;
}
.setvice_content p:last-child {
	margin: 0;
}
.service_img {
	overflow: hidden;
}
.service_img img {
    -moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
    transition: all 0.5s ease-in-out;
	width: 100%;
}
.service_box:hover img {
    -moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
/*===================================*
  29. END ELEMENT DESIGN
*===================================*/

.alert-msg-failure {
	color: #721c24;
	background-color: #efa0a0;
	border-radius: 3px;
	margin-top: 10px;
}
.alert-msg-success {
	color: #155724;
	background-color: #d4edda;
	border-radius: 3px;
	margin-top: 10px;
}



/*Demo Switcher Css*/
span.statcounter {
    display: none;
}
.demo_switcher {
	position: fixed;
	right: 0;
	z-index: 9999;
	top: 20%;
}
.demo > ul > li > a {
	font-size: 22px;
	text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	transition: all 0.5s ease-in-out;
}
.demo > ul > li > a.menu_icon {
	line-height: 44px;
	font-size: 25px;
}
.bg-green {
	background-color: #73e080;
}
.bg-red {
	background-color: #f94551;
}
.demo_list ul {
	list-style: none;
	display: inline-block;
}
.demo_list {
	background-color: #fff;
	position: fixed;
	right: -360px;;
	max-width: 360px;
	padding: 5px;
	overflow: auto;
	top: 0;
	bottom: 0;
	transition: all 0.5s ease-in-out;
	z-index: 9999;
}
.demo_list.switch-active {
	right: 0;
}
.demo_list li {
	float: left;
	 width: 50%;
	 padding: 5px;
}
.demo_list li a {
	display: block;
	border: 1px solid #ddd;
	padding: 4px;
	position: relative;
}
.demo_list li a::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 4px;
	bottom: 4px;
	right: 4px;
	opacity: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 9;
	transition: all 0.5s ease-in-out;
}
.demo_list li a:hover:before {
	opacity: 1;
}
body.switch-open {
	overflow: hidden;
	padding-right: 15px;
}
.switch-open::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 9999;
}
.demo li {
	position: relative;
}
.demo > ul > li > a.demo_icon.switch-active {
	position: relative;
	transition: all 0.5s ease-in-out;
	-moz-transform: translateX(-360px);
	-webkit-transform: translateX(-360px);
	transform: translateX(-360px);
}
.demo > ul > li > a.demo_icon.switch-active i::before {
	content: "\f129";
	font-size: 20px;
	vertical-align: middle;
}
.demo > ul > li > a.menu_icon.switch-active {
	line-height: 36px;
}
.demo_list h5 {
	margin: 10px 0;
}
.demo li.switch-active .color_icon {
	transition: all 0.5s ease-in-out;
	-moz-transform: translateX(-200px);
	-webkit-transform: translateX(-200px);
	transform: translateX(-200px);
}
.color-switch {
	background: #212121;
	right: -200px;
	padding: 10px;
	position: absolute;
	top: 0;
	transition: all .5s ease-in-out;;
	width: 200px;
	z-index: 999;
}
.switch-active {
	right: 0;
}
.color-switch button::after {
	color: #ffffff;
	content: "\f122";
	font-family: "Ionicons";
	font-size: 18px;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 2px;
}
.color-switch button.active::after {
	opacity: 1;
}
.color-switch button {
	border: 0 none;
	border-radius: 3px;
	cursor: pointer;
	height: 25px;
	line-height: 20px;
	margin: 2px;
	padding: 0;
	position: relative;
	text-align: center;
	width: 25px;
}
.default {
	background-color: #0e93d8;
}
.blue {
	background-color: #304FFE;
}
.green {
	background-color: #00C382;
}
.orange {
	background-color: #86a006;
}
.pink {
	background-color: #E8105F;
}
.red {
	background-color: #f0222c;
}
.yellow {
	background-color: #FDB415;
}
.demo_list li a span {
	position: absolute;
	left: 0;
	right: 0;
	color: #fff;
	z-index: 9;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-shadow: 0 0 4px rgba(0,0,0,0.8);
	opacity: 0;
	padding: 0 10px;
	transition: all 0.5s ease-in-out;
}
.demo_list li a:hover span {
    opacity: 1;
}
@media only screen and (max-width: 480px) {
.demo_list {
	right: -270px;
	max-width: 270px;
}
.demo > ul > li > a.demo_icon.switch-active {
	-moz-transform: translateX(-270px);
	-webkit-transform: translateX(-270px);
	transform: translateX(-270px);
}
}
.overflow-hidden {
	overflow: hidden;
}
.bg-icon {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: -80px -100px -50px;
	width: 300px;
	opacity: 0.1;
	overflow: hidden;
}

/* ===== responsive.css ===== */
/* -------------------------------------------------
  (min-width: 991px) and (max-width: 1199px)
---------------------------------------------------*/
@media only screen and (min-width: 991px) and (max-width: 1199px) {
.work_col2.blog_both_sidebar > li {
	width: 100%;
}
}

/* -------------------------------------------------
  (min-width: 767px) and (max-width: 991px)
---------------------------------------------------*/
@media only screen and (min-width: 767px) and (max-width: 991px) {
.pr_action_btn li a {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.quantity {
    margin-right: 10px;
}
.inner {
    padding: 10px;
}
}

/* -------------------------------------------------
  max-width: 1199px
---------------------------------------------------*/
@media only screen and (max-width: 1199px) {
section,
.top_footer,
.large_py {
    padding: 80px 0;
}
section.pb_70, .pb_70 {
	padding-bottom: 50px;
}
section.pb_20, .pb_20 {
	padding-bottom: 10px;
}
.angle_top {
	border-top: 80px solid #ffffff;
}
.angle_bottom{
	border-bottom: 80px solid #ffffff;
}
section.small_pt,
.top_footer.small_pt {
    padding-top: 40px;
}
section.small_pb,
.top_footer.small_pb {
    padding-bottom: 40px;
}
.h1, h1 {
    font-size: 34px;
}
.h2, h2 {
    font-size: 30px;
}
.h3, h3 {
    font-size: 26px;
}
.h4, h4 {
    font-size: 22px;
}
.h5, h5 {
    font-size: 18px;
}
.heading_s4 .sub_title {
	font-size: 90px;
}
.heading_s7 h2 {
	font-size: 32px;
}
.large_divider {
    height: 80px;
}
.medium_divider {
	height: 40px;
}
.small_divider {
    height: 20px;
}
.medium_padding {
	padding: 40px;
}
.link_container a {
    font-size: 18px;
    width: 36px;
    height: 36px;
    line-height: 35px;
}
.work_col4.portfolio_style3 > li,
.work_col4.portfolio_style5 > li {
    width: 33.33%;
}
.work_col5 > li {
    width: 25%;
}
.page-title h1 {
    font-size: 36px;
}
.pr_action_btn li a i {
    font-size: 20px;
}
.pr_action_btn li a span {
    margin-left: 5px;
}
.quantity .qty {
    width: 60px;
}
.add_wishlist, .add_compare {
    padding: 7px 4px;
    font-size: 20px;
}
.navbar .btn {
	padding: 8px 15px;
	line-height: normal;
}
.icon_box_style_8,.icon_box_style_10 {
	padding: 25px 15px;
}
.header_wrap.fixed-top + .breadcrumb_section {
	padding-top: 150px;
}
.icon_box_style_12 {
	padding: 20px 0;
}
.icon_box_style_12 .box_icon i {
	height: 60px;
	width: 60px;
	line-height: 55px;
}
.contact_info span + * {
	max-width: 76%;
}
.banner_content3 h2 {
	font-size: 90px;
}
.banner_content4 h2 {
    font-size: 54px;
}
.icon_box_style_14 {
	padding: 20px;
}
}
@media only screen and (min-width: 992px) {
.navbar-expand-lg .navbar-nav li:hover > .dropdown-menu,
.overlay_menu .navbar-expand-lg .navbar-nav li:hover > .dropdown-menu.cart_box {
	display: block;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu {
	display: none;
	left: 100%;
	top: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu.dropdown-reverse {
    left: auto;
    right: 100%;
}
.overlay_menu .navbar-expand-lg .navbar-nav .dropdown-menu.cart_box {
    position: absolute;
}
.navbar-nav .dropdown-menu.show {
	display: none;
}
.overlay_menu .navbar-nav .dropdown-menu.show {
	display: block;
}
.heading_s1.text-lg-left::before {
	margin: 0;
	right: auto;
}
.heading_s1.text-lg-center::before {
	margin: 0 auto;
    right: 0;
}
.heading_s1.text-lg-right::before {
	margin: 0;
    right: 0;
	left: auto;
}
.heading_s2.text-lg-left::before {
	margin: 0;
	right: auto;
}
.heading_s2.text-lg-center::before {
	margin: 0 auto;
    right: 10px;
}
.heading_s2.text-lg-right::before {
	margin: 0;
    right: 0px;
	left: auto;
}
.heading_s2.text-lg-left::after {
	margin: 0;
}
.heading_s2.text-lg-center::after {
	margin: 0 auto;
    right: 0;
}
.heading_s2.text-lg-right::after {
	margin: 0;
    right: 65px;
	left: auto;
}
.banner_section .banner_slide_content.banner_content_bottom {
	bottom: 0;
	top: auto;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}
.hover_menu_style2.nav-fixed .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	bottom: 10px;
}
	.banner_section .banner_slide_content,
	.banner_fs .banner_slide_content {
		left: 0;
		position: absolute;
		right: 0;
		top: 50%;
		text-align: left;
		margin-bottom: 0;
		padding-top: 0;
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}
/* -------------------------------------------------
  max-width: 991px
---------------------------------------------------*/
@media only screen and (max-width: 991px) {
.padding_eight_all {
	padding: 8% 15px;
}
.navbar-brand {
    padding: 10px 0;
	vertical-align: top;
}
.brand_150X50.navbar-brand img {
	max-width: 122px;
}
.header_wrap .navbar-expand-lg .navbar-nav.attr-nav {
	display: block;
	float: right;
}
.header_wrap .navbar {
	display: block;
}
.cart_box {
    position: absolute !important;
    right: 0;
    top: 100%;
    left: auto;
}
.navbar-toggler {
    margin: 10px 0;
}
.toggler_style1.navbar-toggler {
	padding: 3px 8px;
	margin: 12px 0;
}
.navbar-expand-lg .navbar-nav.attr-nav li {
    float: left;
}
.header_wrap .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
	z-index: 999;
}
.navbar-expand-lg .attr-nav li .nav-link {
    padding: 15px 10px !important;
}
.dropdown-toggle::after {
	float: right;
	margin-top: 3px;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link {
	margin: 0;
	padding: 10px 0px;
}
.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	bottom: 0;
}
.cart_count {
    top: 9px;
}
.navbar-expand-lg .navbar-nav > li {
    margin-left: 0;
}
.header_wrap #navbarSupportedContent .navbar-nav {
	background-color: #343a40;
	padding: 10px;
} 
.header_wrap.transparent-header.light_skin.nav-fixed #navbarSupportedContent .navbar-nav, .header_wrap.light_skin.nav-fixed[class*="overlay_"] #navbarSupportedContent .navbar-nav {
	background-color: #ffffff;
}
.header_wrap.dark_skin #navbarSupportedContent .navbar-nav,
.header_wrap.dd_dark_skin #navbarSupportedContent .navbar-nav {
    background-color: #fff;
}
.dd_dark_skin .navbar-expand-lg .navbar-collapse > .navbar-nav > li > a{
	color: #000;
}
.hover_menu_style2.dd_dark_skin .navbar-expand-lg .navbar-nav > li > .nav-link::before {
	background-color: #000;
}
.header_wrap.dd_light_skin #navbarSupportedContent .navbar-nav {
    background-color: #343a40;
}
.dd_light_skin .navbar-expand-lg .navbar-collapse > .navbar-nav > li > a {
	color: #fff;
}
.dd_light_skin.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link::before {
    background-color: #fff;
}
.mega-menu {
    padding: 0;
}
.mega-menu-col {
    border-right: 0;
}
#navbarSupportedContent .navbar-nav {
    max-height: 80vh;
    overflow-y: auto;
}
.navbar-expand-lg .navbar-nav > li > .nav-link,
.nav-fixed .navbar-expand-lg .navbar-nav > li > .nav-link,
.bottom-header .navbar-expand-lg .navbar-nav > li > .nav-link {
    padding: 10px 10px;
}
.dropdown-toggler::after {
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.overlay_menu .navbar-expand-lg .navbar-collapse > .navbar-nav > li > .nav-link {
    font-size: 20px;
}
.overlay_menu .navbar-collapse .navbar-nav {
	background-color: transparent !important;
    max-width: 240px;
}
.overlay_menu .navbar-expand-lg .navbar-toggler {
    margin: 12px 0;
}
.nav-fixed.hover_menu_style2 .navbar-expand-lg .navbar-nav > li > .nav-link {
    margin: 0;
}
header .attr-nav + .social_icons {
	border-left: 0;
	padding: 0 5px 0 0;
	float: right;
	margin: 15px 5px 15px 0;
	border-right: 1px solid #333;
}
.navbar-nav .dropdown-menu .dropdown-menu {
	margin-left: 10px;
}
.dark_skin .navbar-nav .dropdown-menu,
.dd_dark_skin .navbar-nav .dropdown-menu, 
.dd_dark_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
	box-shadow: none;
	border: 0;
	margin-top: 0;
}
.search_wrap {
    width: 90%;
}
.slide_height_700 .carousel-item {
	height: 600px;
}
.banner_content h2 {
    font-size: 60px;
}
.banner_content2 h2 {
	font-size: 50px;
}
.banner_content.bc_info h2 {
	font-size: 50px;
}
.banner_content.bc_info p {
	font-size: 18px;
}
.banner_content3 h2 {
	font-size: 70px;
}
.banner_content4 h2 {
    font-size: 46px;
}
.content_overlay_bg {
    padding: 30px;
}
.work_col4 > li {
    width: 33.33%;
}
.widget_title {
    margin-bottom: 15px;
}
.md-height-300 {
    height: 300px !important;
}
.slider_tab li {
    font-size: 14px;
}
.slider_tab li i {
    font-size: 26px;
}
.portfolio_style3 .portfolio_content,
.portfolio_style5 .portfolio_content {
    bottom: 5px;
    top: 5px;
    right: 5px;
    left: 5px;
}
.work_col5 > li {
    width: 33.33%;
}
.portfolio_content p {
    min-height: 44px;
    max-height: 40px;
    font-size: 14px;
}
.portfolio_content {
    padding: 10px;
}
.couter_border {
    padding: 25px;
}
.error_txt {
    font-size: 200px;
}
.blog_container.work_col3 > li {
    width: 50%;
}
.shop_cart_table .btn {
    padding: 10px 15px;
}
.counter_style2.box_counter {
	padding: 10px;
}
.navbar .btn {
	float: right;
	margin: 12px 0;
	font-size: 14px;
}
.header_info li {
	display: block;
	padding-left: 20px;
	text-align: center;
}
.header_info li i {
	font-size: 22px;
}
.header_info li .hd_info {
	padding-left: 0;
}
.search_box {
	max-width: 260px;
	float: right;
	margin: 10px 0;
}
.fancy_style2 {
	margin-left: 0;
}
.icon_box_style_12.icon_right .box_icon {
	float: left;
	margin-right: 20px;
	margin-left: 0;
}
.price_tage h2 {
	font-size: 34px;
}
.pricing_ribbon {
	top: 15px;
	right: -34px;
	padding: 8px 20px 8px;
	height: 30px;
	font-size: 12px;
}
.heading_s4 .sub_title {
	font-size: 80px;
}
.contact_box .col-md-6:nth-child(2n) {
    border-right: 0;
}
.icon_box_style_7 {
	padding: 15px;
}
.banner_fs {
	height: auto;
	min-height: 100%;
}
.banner_fs .banner_slide_content {
	position: static;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
	margin: 30px 0 0;
}
.language_dropdown .lng_dropdown {
	margin: 13px 0;
}
.banner_half_content {
	padding-top: 170px;
}
.tab-style11 li .nav-link {
	padding: 10px 15px;
}
.contact_icon {
	margin-right: 15px;
}
.contact_info .contact_icon span {
	font-size: 30px;
}
}
/* -------------------------------------------------
  min-width: 768px
---------------------------------------------------*/
@media only screen and (min-width: 768px) {
.heading_s1.text-md-left::before {
	margin: 0;
    right: auto;
}
.heading_s1.text-md-center::before {
	margin: 0 auto;
    right: 0;
}
.heading_s1.text-md-right::before {
	margin: 0;
    right: 0;
	left: auto;
}
.heading_s2.text-md-left::before {
	margin: 0;
	right: auto;
}
.heading_s2.text-md-center::before {
	margin: 0 auto;
    right: 10px;
}
.heading_s2.text-md-right::before {
	margin: 0;
    right: 0px;
	left: auto;
}
.heading_s2.text-md-left::after {
	margin: 0;
}
.heading_s2.text-md-center::after {
	margin: 0 auto;
    right: 0;
}
.heading_s2.text-md-right::after {
	margin: 0;
    right: 65px;
	left: auto;
}
	.bg-icon {
		width: 400px;
	}
}
/* -------------------------------------------------
  max-width: 767px
---------------------------------------------------*/
@media only screen and (max-width: 767px) {
.h1, h1 {
    font-size: 32px;
}
.h2, h2 {
    font-size: 28px;
}
.h3, h3 {
    font-size: 24px;
}
.h4, h4 {
    font-size: 20px;
}
.heading_s4 .sub_title {
    font-size: 70px;
    margin-bottom: -30px;
}
section,
.top_footer,
.large_py {
    padding: 50px 0;
}
section.pb_70, .pb_70 {
	padding-bottom: 35px;
}
.angle_top {
	border-top: 50px solid #ffffff;
}
.angle_bottom{
	border-bottom: 50px solid #ffffff;
}
section.small_pt,
.top_footer.small_pt {
    padding-top: 25px;
}
section.small_pb,
.top_footer.small_pb {
    padding-bottom: 25px;
}
.large_divider {
    height: 50px;
}
.medium_divider {
	height: 25px;
}
.small_divider {
    height: 15px;
}
.medium_padding {
	padding: 25px;
}
.padding_eight_all {
	padding: 8% 15px;
}
.sm-height-300 {
	height: 300px !important;
}
.heading_s7 h2 {
	font-size: 28px;
}
.slide_height_700 .carousel-item {
	height: 500px;
}
.banner_content h2 {
    font-size: 50px;
}
.banner_content2 h2 {
	font-size: 40px;
}
.banner_content.bc_info h2 {
	font-size: 40px;
}
.banner_content p,
.banner_content2 p {
    font-size: 18px;
}
.banner_content4 h2 {
    font-size: 36px;
}
.carousel-control-next, .carousel-control-prev {
	height: 50px;
	width: 50px;
}
.carousel-control-prev {
    left: 0px;
}
.carousel-control-next {
    right: 0px;
}
.arrow_style1 .carousel-control-next {
	right: 20px;
}
.arrow_style1 .carousel-control-prev {
    left: 20px;
}
.heading_s1,
.heading_s2 {
    margin-bottom: 15px;
}
.heading_s3,
.heading_s4,
.heading_s7 {
	margin-bottom: 15px;
}
.work_col4 > li,
.work_col3 > li,
.work_col4.portfolio_style3 > li, 
.work_col4.portfolio_style5 > li,
.work_col5 > li {
    width: 50%;
}
.portfolio_content p {
	max-height: 45px;
    min-height: 45px;
}
.testimonial_box {
    padding: 15px;
}
.testimonial_img img {
    max-width: 60px;
}
.testimonial_style1 .testi_meta {
    margin-top: 5px;
}
.blog_wrap [class^="col-"]:nth-child(-n+2) {
    margin-top: 30px;
}
.blog_wrap [class^="col-"]:first-child {
    margin-top: 0px;
}
.copyright {
    margin-bottom: 10px;
}
.scrollup {
    font-size: 20px;
    height: 40px;
    line-height: 40px;
	right: 10px;
    width: 40px;
}
.page-title h1 {
    font-size: 30px;
}
.contact_box div[class*="col-"] {
    border-right: 0;
}
.contact_map iframe {
	height: 300px;
}
.error_txt {
    font-size: 160px;
}
.blog_thumbs .blog_img {
	float: none;
	width: 100%;
}
.blog_thumbs .blog_content {
    padding: 15px 0;
    overflow: hidden;
}
.user_img img {
    max-width: 70px;
}
.mfp-ajax-holder .mfp-content {
    margin: 20px auto;
}
.shipping_calculator {
	margin-bottom: 20px;
}
.shop_cart_table .product-name {
    white-space: nowrap;
}
.pricing_box.highlight_box {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.owl-theme.nav_top .owl-nav [class*="owl-"] {
	top: -45px;
	padding: 4px 14px;
	font-size: 16px;
}
.owl-theme.nav_top .owl-nav .owl-prev {
	right: 40px;
}
.counter_style2.box_counter {
	padding: 10px;
	height: auto;
	margin: 15px 0px;
}
.overlap_video {
	margin-bottom: -30px;
}
.about_radius {
	border-radius: 10px 10px 0 0px;
}
.skill_radius {
	border-radius: 0px 0px 10px 10px;
}
.box_counter {
	margin-top: 15px;
}
[class*="col-"]:nth-child(-n+2) .box_counter {
	margin-top: 0;
}
.map_box, .map_box iframe {
	height: 300px;
}
.sm-height-300 { 
	height: 300px !important;
}
.header_wrap.fixed-top + .breadcrumb_section {
	padding-top: 100px;
}
.icon_box_style_9 {
	padding: 20px;
}
.blockquote.quote_style5 p {
	font-size: 18px;
}
.counter_style5 img {
	max-width: 50px;
}
.banner_content5 h2 {
	font-size: 36px;
}
.icon_box_style_15 {
	margin-top: 15px;
}
.header_right_info {
	-ms-flex-pack: center;
	justify-content: center;
}
.widget_links_style4 li {
	padding-bottom: 5px;
}
.icon_box_style_16 {
	padding: 20px;
}
.icon_box_style_7 i {
	font-size: 40px;
}
.contact_info_style3 li {
	margin-top: 20px;
}
}
/* -------------------------------------------------
  max-width: 640px
---------------------------------------------------*/
@media only screen and (max-width: 640px) {
.banner_content h2 {
    font-size: 40px;
}
.scroll_link {
	font-size: 12px;
	left: -10px;
}
.scroll_link span::before {
	width: 50px;
	top: 7px;
}
}
/* -------------------------------------------------
  max-width: 580px
---------------------------------------------------*/
@media only screen and (max-width: 580px) {
.link_container a {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 38px;
}
.portfolio_content p {
    font-size: 14px;
}
.portfolio_filter li a {
    padding: 5px 18px;
}
.xs-height-200 {
	height: 200px !important;
}
.btn-default,
.btn-black,
.btn-outline-white,
.btn-outline-black,
.btn-outline-default,
.btn-white,
.btn-outline-white,
.btn-outline-black {
	padding: 10px 25px;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 7px 15px;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 15px 40px;
}
.btn-xs {
    padding: 4px 15px;
    font-size: 12px;
}
.btn-md {
    padding: 10px 25px;
    font-size: 16px;
}
.btn-lg {
    padding: 10px 25px;
    font-size: 18px;
}
.btn.btn-xs i {
    font-size: 12px;
}
.btn.btn-lg i {
    font-size: 24px;
}
.slider_tab li {
	width: 50%;
    padding: 10px;
}
.work_col4.portfolio_style3 > li, 
.work_col4.portfolio_style5 > li,
.work_col5 > li {
	width: 100%;
}
.cta_section_small {
    padding: 40px;
}
.breadcrumb {
    padding: 0;
}
.breadcrumb-item {
    font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before {
    padding-right: 5px;
    padding-left: 5px;
}
.quantity {
    margin-right: 20px;
}
.btn-addtocart {
    margin-right: 5px;
	padding: 5px 20px;
}
.add_wishlist, .add_compare {
    font-size: 20px;
}
.product-thumbnail img {
    max-width: 50px;
}
}

/* -------------------------------------------------
  max-width: 576px
---------------------------------------------------*/
@media only screen and (min-width: 576px) {
.heading_s1.text-sm-left::before {
	margin: 0;
	right: auto;
}
.heading_s1.text-sm-center::before {
	margin: 0 auto;
    right: 0;
}
.heading_s1.text-sm-right::before {
	margin: 0;
    right: 0;
	left: auto;
}
.heading_s2.text-sm-left::before {
	margin: 0;
	right: auto;
}
.heading_s2.text-sm-center::before {
	margin: 0 auto;
    right: 10px;
}
.heading_s2.text-sm-right::before {
	margin: 0;
    right: 0px;
	left: auto;
}
.heading_s2.text-sm-left::after {
	margin: 0;
}
.heading_s2.text-sm-center::after {
	margin: 0 auto;
    right: 0;
}
.heading_s2.text-sm-right::after {
	margin: 0;
    right: 65px;
	left: auto;
}
}

/* -------------------------------------------------
  max-width: 575px
---------------------------------------------------*/
@media only screen and (max-width: 575px) {
.page-title h1 {
    margin-bottom: 10px;
}
.tab-style1 .nav-tabs .nav-item a, .tab-style1 .nav-tabs .nav-item a:hover {
    padding: 10px 20px;
}
.comment_img img {
    max-width: 50px;
}
.comment_block {
    padding-left: 65px;
}
.owl-theme.nav_top .owl-nav .owl-prev {
	right: auto;
	left: 0;
}
.owl-theme.nav_top .owl-nav [class*="owl-"] {
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.overlap_video {
	margin: 0;
}
.slide_height_700 .carousel-item {
	height: 400px;
}
.icon_box_style_8,.icon_box_style_10,.icon_box_style_11 {
	margin-top: 15px;
}
.icon_box_style_12 {
	padding: 15px 0;
}
.icon_box_style_16 {
	margin-bottom: 15px;
}
.heading_s4 .sub_title {
	font-size: 60px;
}
.shop_container.list .product_img {
	max-width: 110px;
	margin-right: 10px;
}
.arrow_style1 .carousel-control-next, .arrow_style1 .carousel-control-prev {
    top: auto;
}
.icon_box_style_14 {
	margin-bottom: 15px;
}
.banner_content5 h2 {
	font-size: 32px;
}
.tab-style9 ul li.nav-item {
	padding: 0 5px 5px 0;
	width: 50%;
}
.tab-style9 .nav-item a {
    padding: 8px 15px;
}
.header_wrap.fixed-top + .breadcrumb_section2 {
	padding-top: 180px;
}
.service_box {
	margin-bottom: 15px;
}
}
/* -------------------------------------------------
  max-width: 480px
---------------------------------------------------*/
@media only screen and (max-width: 480px) {
.h1, h1 {
    font-size: 24px;
}
.h2, h2 {
    font-size: 22px;
}
.h3, h3 {
    font-size: 20px;
}
.h4, h4 {
    font-size: 18px;
}
.h5, h5 {
    font-size: 16px;
}
.h6, h6 {
    font-size: 14px;
}
.heading_s4 .sub_title {
    font-size: 50px;
    margin-bottom: -20px;
}
.loader_grid {
    height: 40px;
    width: 40px;
}
section,
.top_footer,
.large_py {
    padding: 30px 0;
}
section.pb_70, .pb_70 {
	padding-bottom: 15px;
}
section.pb_20, .pb_20 {
	padding-bottom: 0;
}
.angle_top {
	border-top: 30px solid #ffffff;
}
.angle_bottom{
	border-bottom: 30px solid #ffffff;
}
section.small_pt,
.top_footer.small_pt {
    padding-top: 15px;
}
section.small_pb,
.top_footer.small_pb {
    padding-bottom: 15px;
}
.large_divider {
    height: 30px;
}
.medium_divider {
	height: 15px;
}
.small_divider {
    height: 10px;
}
.medium_padding {
	padding: 15px;
}
.padding_ten_all {
	padding: 30px;
}
.overlay_menu .dropdown-toggle::after {
    font-size: 18px;
	margin-top: 2px;
}
.overlay_menu .navbar-expand-lg .navbar-collapse > .navbar-nav > li > .nav-link {
    font-size: 16px;
}
.heading_s7 h2 {
	font-size: 24px;
}
.banner_content h2,
.banner_head2,
.banner_content2 h2 {
    font-size: 30px;
}
.banner_content.bc_info h2 {
	font-size: 30px;
}
.banner_content p,
.banner_content2 p {
    font-size: 16px;
	margin: 10px 0 15px !important;
}
.banner_content4 h2 {
    font-size: 28px;
}
.content_overlay_bg {
    padding: 20px;
}
.btn-default,
.btn-white,
.btn-black, .btn-outline-white, .btn-outline-black, .btn-outline-default {
	padding: 8px 20px;
}
.banner_content .btn,
.btn-default,
.btn-black,
.btn-outline-white,
.btn-outline-black,
.btn-outline-default,
.btn-white {
	font-size: 14px;
}
.btn + .btn {
    margin-left: 5px;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 7px 15px;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 15px 40px;
}
.btn-xs {
    padding: 4px 15px;
    font-size: 12px;
}
.btn-md {
    padding: 10px 22px;
    font-size: 14px;
}
.btn-lg {
    padding: 10px 22px;
    font-size: 16px;
}
.btn i {
	font-size: 18px;
}
.btn.btn-lg i {
    font-size: 22px;
}
.banner_content3 h2 {
	font-size: 60px;
}
.work_col4 > li,
.work_col3 > li,
.work_col2 > li,
.blog_container.work_col3 > li {
    width: 100%;
}
.portfolio_filter li {
    display: block;
    margin: 0 0 10px 0;
}
.bottom_footer {
    padding: 15px 0;
}
.video_play img {
    max-width: 60px;
}
.cta_section_small {
    padding: 20px;
}
.icon_box_style_1 i,
.icon_box_style_3 i {
    font-size: 28px;
    height: 60px;
    line-height: 60px;
    width: 60px;
}
.blog_wrap [class^="col-"]:nth-child(-n+2),
.blog_wrap [class^="col-"] {
    margin-top: 15px;
}
.blog_wrap [class^="col-"]:first-child {
    margin-top: 0px;
}
.page-title h1 {
    font-size: 22px;
}
.error_txt {
    font-size: 80px;
}
.countdown_box .countdown {
	font-size: 30px;
}
.countdown_time .cd_text {
	font-size: 14px;
}
.countdown_style1 .countdown_box::before {
    font-size: 30px;
}
.countdown_style2 .countdown {
    padding: 15px 5px;
    max-width: 65px;
}
.filter_tab3 li a, .filter_tab3 li:first-child a, .filter_tab3 li:last-child a {
    border-radius: 40px;
}
.author_img img {
    width: 50px;
}
.user_img img {
    max-width: 50px;
}
.comment_info {
    padding: 15px 20px 5px;
}
.comment_content {
    padding-left: 10px;
}
.card-body {
    padding: 15px;
}
.comment_info.reply {
    padding-left: 40px;
}
.quantity {
    margin-right: 10px;
    display: inline-block;
	float: none;
}
.quantity .qty {
    width: 50px;
}
.btn-default.btn-addtocart {
	padding: 5px 20px;
}
.btn-addtocart {
    margin-right: 0;
}
.comment-date {
    margin-left: 0;
    border-left: 0;
	margin-top: 10px;
    padding-left: 0;
    display: block;
}
.comment_block {
    padding-left: 0px;
}
.comment_img {
    margin-right: 10px;
}
.tab-style1 .tab-content {
    padding: 15px;
}
.tab-style1 .nav-tabs .nav-item a, .tab-style1 .nav-tabs .nav-item a:hover {
    padding: 10px 12px;
    font-size: 15px;
}
.tab-style3 li a {
	padding: 8px 20px;
}
.video_play span {
	font-size: 20px;
	padding-top: 5px;
}
.widget_title {
	font-size: 18px;
}
.signature {
	max-width: 250px;
}
.border_shape {
	border: 10px solid rgba(255,255,255,0.5);
	padding: 15px;
}
.carousel-control-next, .carousel-control-prev {
	height: 35px;
	width: 35px;
	font-size: 16px;
}
.cta_section_mini {
	padding: 30px 15px;
}
.shop_banner h5 {
	font-size: 13px;
}
.shop_banner h4 {
	font-size: 14px;
}
.header_wrap.fixed-top + .breadcrumb_section {
	padding-top: 80px;
}
.nav_lr_btn {
	display: none !important;
}
.btn_group .btn {
	padding: 8px 12px;
}
.banner_ripple {
	font-size: 14px;
}
.ripple {
	margin-right: 20px;
}
.banner_ripple .ripple {
	height: 35px;
	width: 35px;
	line-height: 35px;
}
.tab-style8 .nav-item a {
	padding: 12px 25px;
}
.cs_box {
	padding: 30px 15px;
}
.shop_container.list .product_img {
	max-width: 100%;
	float: none;
	margin-right: 0px;
}
.shop_container.list .product_info {
	padding-top: 15px;
}
.blockquote.quote_style5 {
	padding: 5px 15px;
}
.blockquote.quote_style5 p {
	font-size: 16px;
}
.blog_title {
    font-size: 16px;
}
.attr-nav .language_dropdown + .nav-btn {
	display: none;
}
.banner_fs .banner_slide_content {
	margin: 50px 0 0;
}
.banner_content5 h2 {
	font-size: 28px;
}
.icon_box_style_16 .box_icon i {
	font-size: 46px;
	line-height: 46px;
}
.accordion .card-body {
	font-size: 14px;
}
.form_lr {
	padding: 20px;
}
.slide_tab li {
	padding: 15px;
}
.slide_tab .icon_box {
	margin-right: 15px;
	width: 50px;
	height: 50px;
	line-height: 50px;
}
.slide_tab .icon_box i {
	line-height: 50px;
	font-size: 24px;
}
}
/* -------------------------------------------------
  max-width: 380px
---------------------------------------------------*/
@media only screen and (max-width: 380px) {
.heading_s4 .sub_title {
    font-size: 40px;
}
.middle-header {
	padding: 0;
}
.navbar-brand img {
    max-width: 140px;
}
.navbar-brand {
    padding: 15px 0;
	margin: 0;
}
.brand_150X50.navbar-brand {
	padding: 10px 0;
}
.overlay_menu .navbar-brand {
    padding: 15px 0 0;
}
.navbar-expand-lg .navbar-nav.attr-nav li {
	position: static;
}
.cart_box {
    right: 0px;
}
.banner_content h2,
.banner_head2,
.banner_content2 h2 {
    font-size: 24px;
}
.banner_content.bc_info h2 {
	font-size: 22px;
}
.banner_content3 h2 {
	font-size: 45px;
}
.banner_content4 h2 {
    font-size: 22px;
}
.box_counter i {
    font-size: 40px;
}
.box_counter p {
    font-size: 13px;
}
.newsletter_form input {
    padding: 10px 15px;
}
.newsletter_form .btn {
    padding: 6px 20px;
}
.sub_title,
.comment-reply,
.comment_content p {
    font-size: 14px;
}
.user_img img {
    max-width: 40px;
}
.comment_info {
    padding: 15px 15px 5px;
}
.comment_info.reply {
    padding-left: 30px;
}
.comment-time {
	font-size: 12px;
}
.mfp-ajax-holder .ajax_quick_view {
    padding: 30px 20px;
}
.tab-style1 .nav-tabs {
    display: block;
}
.tab-style1 .nav-tabs .nav-item a, .tab-style1 .nav-tabs .nav-item a:hover {
    border-right-color: #dee2e6;
}
.tab-style1 .nav-tabs li.nav-item:first-child a {
    border-radius: 0;
}
.tab-style1 .nav-tabs li.nav-item:last-child a {
    border-radius: 0;
}
.comment-date {
    font-size: 14px;
}
.lr_form {
    padding: 20px;
}
.btn-login li {
    margin: 20px 3px 0;
}
.login_footer a {
    float: none;
	display: block;
	margin-bottom: 8px;
}
.login_footer {
    text-align: center;
}
.alert {
    padding: 10px 15px;
}
.tab-style3 li a {
	padding: 5px 15px;
	font-size: 14px;
}
.tab-style5 .nav-tabs .nav-item a {
    padding: 10px 12px;
	font-size: 14px;
}
.tab-style4 .nav-tabs li.nav-item {
    margin-right: 5px;
	font-size: 14px;
}
.icon_box_style_7 i {
    font-size: 30px;
}
.pagination .page-item a {
    height: 38px;
    width: 38px;
    line-height: 38px;
}
.pagination_style5 .page-item a,
.pagination_style6 .page-item a {
	 line-height: 34px;
}
.signature {
	max-width: 150px;
}
.social_banner {
	right: 15px;
}
.search_box {
	max-width: 200px;
}
.countdown_box .countdown {
	font-size: 20px;
}
.countdown_style1 .countdown_box::before {
	font-size: 20px;
}
.countdown_time .cd_text {
	font-size: 12px;
}
.counter_style3 img {
	max-width: 35px;
	float: left;
	margin-right: 14px;
}
.icon_box_style_11 {
	padding: 15px;
}
.icon_box_style_11 .box_icon img {
	max-width: 40px;
}
.banner_content5 h2 {
	font-size: 24px;
}
.blockquote.quote_style6 {
	padding: 0 0 0px 40px;
}
.quote_style6::before {
	font-size: 36px;
}
}


/* ===== app.css ===== */
body {
    color: #7F8096;
}
body,h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: #252740;
}
.heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6, .heading_s2 h1, .heading_s2 h2, .heading_s2 h3, .heading_s2 h4, .heading_s2 h5, .heading_s2 h6, .heading_s3 h1, .heading_s3 h2, .heading_s3 h3, .heading_s3 h4, .heading_s3 h5, .heading_s3 h6, .heading_s4 h1, .heading_s4 h2, .heading_s4 h3, .heading_s4 h4, .heading_s4 h5, .heading_s4 h6 {
    font-weight: 600;
}
p {
    color: #7F8096;
}
.banner_img {
    position: relative;
    z-index: 1;
}
.wave_shape_bottom {
    overflow: hidden;
}
.wave_shape_bottom:before {
    background-image: url(../images/banner_shape.png);
    background-position: center bottom;
    background-repeat: repeat-x;
    content: "";
    position:absolute;
    left: 0;
    bottom: -1px;
    height: 119px;
    width: 100%;
}

.wave_shape_top {
    background-image: url(../images/wave_shape.html);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.wave_shape_top2 {
    background-image: url(../images/wave_shape2.html);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.wave_shape_top3 {
    background-image: url(../images/wave_shape3.html);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ripple_effect {
    position: absolute;
    width: 700px;
    height: 700px;
    overflow: hidden;
    top: 50%;
    z-index: 0;
    left: 50%;
    margin: 0 auto;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.ripple_effect_left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 700px;
    height: 700px;
    z-index: -1;
}
.ripple_effect_left .circle_bg1 {
    bottom: -40%;
    left: -40%;
    top: auto;
    right: auto;
}
.circle_bg1 {
    border-radius: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.circle_bg1 span{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation-name:ripple2;
    -moz-animation-name:ripple2;
    -o-animation-name:ripple2;
    animation-name:ripple2;
    -webkit-animation-duration:4s;
    -moz-animation-duration:4s;
    -o-animation-duration:4s;
    animation-duration:4s;
    -webkit-animation-delay:6s;
    -moz-animation-delay:6s;
    -o-animation-delay:6s;
    animation-delay:6s;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    -o-animation-iteration-count:infinite;
    animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -moz-animation-timing-function:linear;
    -o-animation-timing-function:linear;
    animation-timing-function:linear;
    background-color: rgba(255,255,255,0.1);
}
.circle_bg1 span:nth-child(2) {
    -webkit-animation-delay:5s;
    -moz-animation-delay:5s;
    -o-animation-delay:5s;
    animation-delay:5s;
}
.circle_bg1 span:nth-child(3) {
    -webkit-animation-delay:4s;
    -moz-animation-delay:4s;
    -o-animation-delay:4s;
    animation-delay:4s;
}
.circle_bg1 span:nth-child(4) {
    -webkit-animation-delay:3s;
    -moz-animation-delay:3s;
    -o-animation-delay:3s;
    animation-delay:3s;
}
.circle_bg1 span:nth-child(5) {
    -webkit-animation-delay:2s;
    -moz-animation-delay:2s;
    -o-animation-delay:2s;
    animation-delay:2s;
}
.circle_bg1 span:nth-child(6) {
    -webkit-animation-delay:1s;
    -moz-animation-delay:1s;
    -o-animation-delay:1s;
    animation-delay:1s;
}

@-webkit-keyframes ripple2{
    0% {-webkit-transform:scale(0.1);transform:scale(.01); opacity:1;}
    50% {-webkit-transform:scale(.5);transform:scale(.5); opacity:1;}
    100% {-webkit-transform:scale(1);transform:scale(1); opacity:0;}
}
@-moz-keyframes ripple2 {
    0% {-moz-transform:scale(0.1);transform:scale(.01); opacity:1;}
    50% {-moz-transform:scale(.5);transform:scale(.5); opacity:1;}
    100% {-moz-transform:scale(1);transform:scale(1); opacity:0;}
}
@-o-keyframes ripple2 {
    0% {-o-transform:scale(0.1);transform:scale(.01); opacity:1;}
    50% {-o-transform:scale(.5);transform:scale(.5); opacity:1;}
    100% {-o-transform:scale(1);transform:scale(1); opacity:0;}
}
@keyframes ripple2 {
    0% {transform:scale(0.1);transform:scale(0.1); opacity:1;}
    50% {transform:scale(.5);transform:scale(.5); opacity:1;}
    100% {transform:scale(1);transform:scale(1); opacity:0;}
}

.app_screenshot .owl-item img {
    -webkit-transform: scale(.9);
    transform: scale(.9);
    opacity: .6;
    -webkit-transition: .3s;
    transition: .3s;
}
.app_screenshot .owl-item.active.center img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.app_btn {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.app_btn i {
    margin-left: 0;
    margin-right: 10px;
    font-size: 30px;
    float: left;
    line-height: 46px;
}
.btn span {
    font-weight: normal;
    font-size: 14px;
}


@media only screen and (min-width: 991px) and (max-width: 1199px) {
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (max-width: 767px) {
    .app_btn {
        font-size: 16px;
    }
}
@media only screen and (max-width: 575px) {
}
@media only screen and (max-width: 480px) {
    .app_btn {
        margin: 5px 0;
    }
}
@media only screen and (max-width: 380px) {

}

header.teaser {
    padding: 25px;
}

.grecaptcha-badge { display: none!important; }

/* ===== theme.css ===== */
a:hover,
.hover_menu_style1 .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style1 .navbar-expand-lg .navbar-nav > li > a.active,
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav > li > a.active,
.hover_menu_style1 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a,
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav li a.active,
.hover_menu_style2 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a,
.hover_menu_style3 .navbar-expand-lg .navbar-nav > li > a.active,
.hover_menu_style3 .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav > li > a.active,
.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a,
.top-header.light_skin .list_menu li a:hover,
.social_white .border_social li a:hover,
.social_white.border_social li a:hover,
.btn-outline-default,
.link_container a,
.list_style_1.color_blue li::before,
.list_style_2.color_blue li::before,
.list_style_4.color_blue li::before,
.btn-outline-white:hover,
.contact_info a:hover,
.newsletter_form .btn-submit:hover,
.newsletter_form .btn-submit:hover span,
.post_content h6 a:hover,
.footer_link li a:hover,
.widget_links li a:hover,
.widget_links_style1 li a:hover,
.icon_box_style_3 i,
.owl-theme .owl-nav [class*="owl-"]:hover,
.social_icons.hover_style2 li a:hover,
header.light_skin.nav-fixed .social_icons li a:hover,
.sub_title,
.icon_box_style_4 i,
.slider_tab li.active i,
.slider_tab li:hover i,
.icon_box_style_5 i,
.overlay_menu .navbar-collapse > .navbar-nav > li > a:hover,
.tab-style4 .nav-tabs .nav-item a.active,
.portfolio_filter li a.current,
.portfolio_filter li a:hover,
.tweet_feed li::before,
.tweet_feed a,
.post_navigation a:hover .nav_meta,
.pagination .page-item a,
.pagination_style5 .page-item.active .page-link,
.pagination_style5 .page-item .page-link:hover,
.pagination_style6 .page-item.active .page-link,
.pagination_style6 .page-item .page-link:hover,
.tab-style1 .nav-tabs .nav-item a.active,
.tab-style2 .nav-tabs .nav-item a.active,
.tab-style6 .nav-tabs .nav-item a.active,
.toggle_info a,
.indicators_style1.carousel-indicators li.active::before,
.menu_price span,
.header_info li i,
.icon_box_style_9 .box_icon i,
.list_menu li a:hover,
.widget_links_style2 li a:hover,
.icon_box_style_11 .box_icon i,
.icon_box_style_13 .box_icon i,
.widget_links_style3 li a:hover,
.postcontent_light .blog_heading a:hover,
.postcontent_light .blog_author_data a:hover,
.postcontent_light .blog_postmeta li a:hover,
.shorting_icon.active,
.classes_schedule li i,
.event_meta li i,
.single_event_info li i,
.tab-style2.tab_white .nav-tabs .nav-item a:hover,
.tab-style2.tab_white .nav-tabs .nav-item a.active,
.tab-style4.tab_white .nav-tabs li.nav-item a:hover,
.tab-style4.tab_white .nav-tabs li.nav-item a.active,
.tab-style5.tab_white .nav-tabs li.nav-item a:hover,
.tab-style6.tab_white .nav-tabs li.nav-item a:hover,
.tab-style6.tab_white .nav-tabs li.nav-item a.active,
.discount_num,
.footer_dark .tags a:hover,
.domain_price li span,
.icon_box_style_16 .box_icon i,
.widget_links_style4 li a:hover,
.event_info li i,
.author_info span  {
    color: #86a006;
}

.btn-default.btn-aylen:hover,
.blog_heading *:hover,
.blog_postmeta a:hover {
    color: #86a006 !important;
}

.btn-default,
.cart_buttons .view-cart,
.cart_buttons .checkout,
.heading_s1::before,
.btn-outline-default:hover,
.icon_box_style_1 i,
.filter_tab1 li a.current,
.filter_tab1 li a:hover,
.testimonial_slider[data-center="true"] .owl-item.center .testimonial_box,
.testimonial_slider[data-center="true"] .owl-item.center .testimonial_box::before,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.list_style_3.color_blue li::before,
.bg_blue,
.footer_social li a:hover,
.scrollup:hover,
.loader_grid .loader_box,
.icon_box_style_3 i::after,
.icon_box_style_4 i::after,
.filter_tab3 li a.current, .filter_tab3 li a:hover,
.filter_tab4 li a.current, .filter_tab4 li a:hover,
.heading_s2::after,
.heading_s2::before,
.skill_content .progress-bar,
.filter_tab2 li a.current,
.filter_tab2 li a:hover,
.filter_tab5 li a.current,
.filter_tab5 li a:hover,
.icon_box_style_5::before,
.team_hover_style1:hover .team_title,
.portfolio_style4 .portfolio_content,
.icon_box_style_2 i,
.page-item.active .page-link,
.page-item .page-link:hover,
.custome-radio input[type="radio"] + .form-check-label::after,
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before,
.tab-style3 .nav-tabs .nav-item a.active,
.tab-style5 .nav-tabs .nav-item a.active,
.icon_box_style_9:hover,
.cart_count,
.accordion_style4.accordion .card-header a,
.ripple,.ripple::before,.ripple::after,
.tab-style7 .nav-tabs .nav-item a.active,
.tab-style7 .nav-tabs .nav-item a:hover,
.sliding_tab .tab_bg,
.tab-style8 .nav-item a.active,
.list_style_5 li::before,
.pricing_ribbon,
.hover_menu_style4 .navbar-expand-lg .navbar-nav > li:hover > a,
.hover_menu_style4 .navbar-expand-lg .navbar-nav > li > a.active,
.filter_tab6 li a.current, .filter_tab6 li a:hover,
.filter_tab li a.active,
.heading_s5::before, .widget_title3::before,
.pagination_style7 .page-item.active .page-link,
.pagination_style7 .page-item .page-link:hover,
.pr_action_btn li a:not(.btn):hover,
.filter_price .ui-slider .ui-slider-range,
.filter_price .ui-slider .ui-slider-handle,
.event_date,
.event_date::before,
.cl_price,
.accordion_style5.accordion .card-header a[aria-expanded="true"],
.tab-style9 .nav-item a.active,
.tab-style9 .nav-item a:hover,
.progress-bar::before,
.tk_counter_inner .progress-bar,
.roadmap_box.rd_complete::after,
.roadmap_box.rd_complete::before,
.domain_search .dropdown .ddChild li:hover,
.icon_box_style_16::before,
.switch_slide,
.tab-style10 .nav-tabs .nav-item a.active,
.circle_list::before,
.affiliate_table thead tr td.populet_txt,
.tab-style11 .nav-tabs .nav-item a:hover,
.tab-style11 .nav-tabs .nav-item a.active,
.slide_tab li.active .icon_box,
.pagination_style8 .page-item.active .page-link,
.pagination_style8 .page-item .page-link:hover,
.room_services i:hover,
.widget_reservation h5,
.widget_search_box .btn, .widget_search_box button {
    background-color: #86a006;
}

.btn-default:hover,
.cart_buttons .view-cart:hover,
.cart_buttons .checkout:hover {
    background-color: #ED4A28;
}

.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav li a.active,
.hover_menu_style4 .navbar-expand-lg .navbar-nav.attr-nav > li:hover > a {
    background-color: transparent;
}

.btn-default,
.btn-outline-default,
.filter_tab1 li a.current,
.filter_tab1 li a:hover,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.footer_social li a:hover,
.icon_box_style_3 i,
.filter_tab3 li a.current, .filter_tab3 li a:hover,
.filter_tab4 li a.current, .filter_tab4 li a:hover,
.icon_box_style_4 i,
.filter_tab2 li a.current,
.filter_tab2 li a:hover,
.tab-style4 .nav-tabs .nav-item a.active,
.portfolio_filter li a.current,
.portfolio_filter li a:hover,
.page-item.active .page-link,
.page-item .page-link:hover,
.blockquote,
.custome-radio input[type="radio"]:checked + .form-check-label::before,
.pagination_style5 .page-item.active .page-link,
.pagination_style5 .page-item .page-link:hover,
.pagination_style6 .page-item.active .page-link,
.pagination_style6 .page-item .page-link:hover,
.pricing_box.pricing_style3.highlight_box,
.tab-style2 .nav-tabs .nav-item a.active,
.tab-style5 .nav-tabs .nav-item a.active,
.newsletter-pop-up::before,
.form_style3 .form-control:focus,
.filter_tab6 li a.current, .filter_tab6 li a:hover,
.affiliate_table colgroup:nth-child(3),
.tab-style11 .nav-tabs .nav-item a:hover,
.tab-style11 .nav-tabs .nav-item a.active,
.dw_event_schedule a:hover,
.pagination_style8 .page-item.active .page-link,
.pagination_style8 .page-item .page-link:hover {
    border-color: #86a006;
}

.btn-default:hover {
    border-color: #ED4A28;
}

.portfolio_style1 .portfolio_item::before,
.portfolio_style2 .portfolio_content,
.portfolio_style3 .portfolio_content,
.blue_overlay_bg::before,
.portfolio_style5 .portfolio_content,
.instafeed li a::before,
.bg_blue_transparent {
    background-color: rgba(253,90,56,0.80);
}

.post_date::before,
.cl_price::before,
.event_date:after {
    border-color: transparent #ED4A28 transparent transparent;
}
.tab-style4 .nav-tabs {
    border-color: rgba(253,90,56,0.2)
}
.text_default {
    color: #FF7A58 !important
}
.filter_tab1 li a.current, .filter_tab1 li a:hover,
.filter_tab2 li a.current, .filter_tab2 li a:hover,
.filter_tab3 li a.current, .filter_tab3 li a:hover,
.filter_tab4 li a.current, .filter_tab4 li a:hover,
.filter_tab5 li a.current, .filter_tab5 li a:hover,
.filter_tab6 li a.current, .filter_tab6 li a:hover {
    color: #fff;
}

.custome_select::before {
    border-top-color: #86a006;
}

.classis_box:hover:before {
    background: -moz-linear-gradient(90deg, rgba(253,90,56,1) 0%, rgba(255,255,255,0.06) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.06)), color-stop(100%, rgba(253,90,56,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(90deg, rgba(253,90,56,1) 0%, rgba(255,255,255,0.06) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(90deg, rgba(253,90,56,1) 0%, rgba(255,255,255,0.06) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(90deg, rgba(253,90,56,1) 0%, rgba(255,255,255,0.06) 100%); /* ie10+ */
    background: linear-gradient(0deg, rgba(253,90,56,1) 0%, rgba(255,255,255,0.06) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#86a006',GradientType=0 ); /* ie6-9 */
}

.filter_tab li a.active {
    box-shadow: 0 0 10px #86a006;
}


.btn_box_shadow:hover,
.btn_box_shadow:focus,
.btn_box_shadow.active:focus,
.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #86a006 !important;
}
.tab-style7 li a.active::before {
    border-color: #86a006 transparent transparent transparent
}

@font-face {
    font-family: 'Spy-Agency-Condensed-Italic';
    src:  url('/assets/fonts/Spy-Agency-Condensed-Italic.ttf.woff') format('woff'),
    url('/assets/fonts/Spy-Agency-Condensed-Italic.ttf.svg#Spy-Agency-Condensed-Italic') format('svg'),
    url('/assets/fonts/Spy-Agency-Condensed-Italic.ttf.eot'),
    url('/assets/fonts/Spy-Agency-Condensed-Italic.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
.headerFont {
     font-family: 'Spy-Agency-Condensed-Italic';
 }

/* ===== nexum.css ===== */
/* SYT prototype layout fixes — applied site-wide via _partials integration */

/* ============================================================
   "INDUSTRIAL CONFIDENCE" DESIGN REFRESH
   Deep navy + signal-orange accent, technical blueprint texture,
   sturdy display type. Loaded last so it wins over the theme.
   ============================================================ */
:root {
	--syt-navy: #0c1a36;
	--syt-navy-2: #1d3f7a;
	--syt-blue: #2259b7;
	--syt-accent: #9fbd07;       /* signal orange — action colour only */
	--syt-accent-dark: #86a006;
	--syt-ink: #15203a;
	--syt-muted: #5a6473;
}

/* Display typography: sturdy grotesk for headings, Poppins for body */
body { font-family: 'Poppins', -apple-system, sans-serif; }
h1, h2, h3, h4, h5, .display, .banner_section h1,
.content-prose h2, .content-prose h3, .price-card h3, .fgrid-card h5 {
	font-family: 'Archivo', 'Poppins', sans-serif;
	letter-spacing: -0.01em;
}
h1, .banner_section h1 { font-weight: 800; letter-spacing: -0.02em; }

/* Navy hero + blueprint grid (replaces the blue→lavender gradient) */
.bg_gd_moonpurple {
	background-color: var(--syt-navy) !important;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		radial-gradient(130% 130% at 82% -10%, var(--syt-navy-2) 0%, var(--syt-navy) 58%) !important;
	background-size: 46px 46px, 46px 46px, 100% 100%, 100% 100% !important;
}

/* Buttons keep the casing as written (theme forces capitalize; homepage loads
   this file before style.css, so !important is needed to win there) */
.btn { text-transform: none !important; }

/* Primary action = orange. Used on white sections (aside, pricing, FAQ-twijfel). */
.btn-primary {
	background: var(--syt-accent) !important;
	border-color: var(--syt-accent) !important;
	color: #fff !important;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(12, 26, 54, 0.18);
}
.btn-primary:hover { background: var(--syt-accent-dark) !important; border-color: var(--syt-accent-dark) !important; }

/* Hero/CTA primary button (was outline-white) → solid orange to pop on navy */
.banner_section .btn-outline-white,
.cta_section .btn-outline-white {
	background: var(--syt-accent);
	border-color: var(--syt-accent);
	color: #fff;
	font-weight: 600;
}
.banner_section .btn-outline-white:hover,
.cta_section .btn-outline-white:hover { background: var(--syt-accent-dark); border-color: var(--syt-accent-dark); color: #fff; }

/* (header backdrop + dropdown navy colours live in the header block below) */

/* === Hero dashboard-frame placeholder (replaces lone-icon glass box) === */
.hero-mock {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	backdrop-filter: blur(2px);
	transform: rotate(-1.2deg);
	transition: transform .3s ease;
}
.hero-mock:hover { transform: rotate(0deg) translateY(-4px); }
.hero-mock__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero-mock__bar span:nth-child(1) { background: var(--syt-accent); }
.hero-mock__bar em { margin-left: 10px; font-style: normal; font-size: 12px; color: rgba(255,255,255,.6); font-family: 'Archivo', sans-serif; }
.hero-mock__body { padding: 30px 28px 34px; }
.hero-mock__icon {
	width: 64px; height: 64px; border-radius: 14px;
	background: var(--syt-accent);
	color: #fff; font-size: 28px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 20px rgba(12, 26, 54, 0.26);
	margin-bottom: 22px;
}
.hero-mock__rows { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.hero-mock__rows span { height: 11px; border-radius: 6px; background: rgba(255,255,255,.18); }
.hero-mock__chips { display: flex; gap: 10px; }
.hero-mock__chips b { width: 60px; height: 26px; border-radius: 7px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12); }
.hero-mock__chips b:first-child { background: rgba(159,189,7,.30); border-color: rgba(159,189,7,.45); }

/* "Bekijk volledige tarievenpagina" link under the homepage pricing teaser */
.price-more {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15px;
	color: var(--syt-accent); text-decoration: none;
}
.price-more:hover { color: var(--syt-accent-dark); text-decoration: none; }
.price-more i { transition: transform .2s; }
.price-more:hover i { transform: translateX(4px); }

/* Footer → design-system navy (theme default #252740 is indigo/purple) */
footer.footer_dark.bg_black3 { background-color: var(--syt-navy); }
footer.footer_dark .widget_title { font-family: 'Archivo', sans-serif; }
footer.footer_dark a:hover { color: var(--syt-accent); }
footer.footer_dark .footer_social a:hover { color: var(--syt-accent); }

/* === Scroll-reveal (syt.js adds .in-view when a section enters view) === */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
html { scroll-behavior: smooth; }

/* === Active nav state (syt.js adds .active to current page + parent) === */
.header_wrap .navbar-nav .nav-link.active,
.header_wrap .navbar-nav .dropdown-item.active { color: var(--syt-accent) !important; }
.header_wrap .navbar-nav .dropdown-item.active { border-left-color: var(--syt-accent); }

/* === Section rhythm: accent rule under centered section headings === */
.text-center h2 { position: relative; padding-bottom: 16px; }
.text-center h2::after {
	content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
	width: 46px; height: 3px; border-radius: 2px; background: var(--syt-accent);
}
/* keep the orange rule off dark CTA headings (they sit on navy) */
.cta_section .text-center h2::after { display: none; }
/* subtle outline divider on the grey alternating bands */
section[style*="f7f9fc"], section[style*="#f7f9fc"] {
	box-shadow: inset 0 1px 0 #e8eef7, inset 0 -1px 0 #e8eef7;
}

/* === Accessibility: skip link + visible focus ===================== */
.skip-link {
	position: absolute; left: 8px; top: -60px; z-index: 2000;
	background: var(--syt-navy); color: #fff; padding: 10px 18px;
	border-radius: 0 0 8px 8px; font-weight: 600; text-decoration: none;
	transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; outline: 3px solid var(--syt-accent); }
/* Clear, consistent focus ring (theme strips outlines) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
.fgrid-card:focus-visible, .dropdown-item:focus-visible, summary:focus-visible {
	outline: 3px solid var(--syt-accent);
	outline-offset: 2px;
	border-radius: 4px;
}
.header_wrap.fixed-top a:focus-visible { outline-color: #fff; }

/* === Language selector (compact code + dropdown) ================= */
.nav-lang { display: flex; align-items: center; margin-left: 8px; }
.nav-lang .lang-toggle {
	font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .06em;
	border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px;
	padding: 4px 12px !important; line-height: 1.6;
}
.nav-lang .lang-toggle:hover { background: rgba(255, 255, 255, .1); }
.nav-lang .dropdown-menu { min-width: 168px; }
.nav-lang .dropdown-item { display: flex; align-items: center; gap: 8px; }
.nav-lang .lang-code {
	font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .05em;
	color: var(--syt-accent); min-width: 24px;
}

/* === Breadcrumbs ================================================== */
.breadcrumb-bar { background: #fff; border-bottom: 1px solid #eef1f6; }
.breadcrumb-bar .crumbs {
	display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
	margin: 0; padding: 11px 0; list-style: none; font-size: 13px;
}
.breadcrumb-bar .crumbs li { display: flex; align-items: center; color: var(--syt-muted); }
.breadcrumb-bar .crumbs li + li::before { content: "\203A"; margin: 0 8px 0 2px; color: #c4ccd8; }
.breadcrumb-bar .crumbs a { color: var(--syt-muted); text-decoration: none; }
.breadcrumb-bar .crumbs a:hover { color: var(--syt-accent); }
.breadcrumb-bar .crumbs li[aria-current] { color: var(--syt-ink); font-weight: 600; }

/* === Glossary / begrippenlijst (pillar page) ===================== */
.glossary { margin: 0; }
.glossary div { padding: 16px 0; border-bottom: 1px solid #eef1f6; }
.glossary dt { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--syt-ink); margin-bottom: 4px; }
.glossary dd { margin: 0; color: #555; }

/* === Trust strip (under hero) === */
.trust-bar { background: #fff; border-bottom: 1px solid #eef1f6; }
.trust-bar__inner {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 14px 34px; padding: 18px 0;
}
.trust-item {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 14px; font-weight: 600; color: var(--syt-ink);
	letter-spacing: .01em;
}
.trust-item i { color: var(--syt-accent); font-size: 16px; }

/* === Wider container on desktop (was Bootstrap default 1140px) === */
@media (min-width: 1200px) {
	.container { max-width: 1320px; }
}

/* === Banner / hero section === */
/* Push H1 below the fixed header (which is ~85-95px tall) */
.banner_section {
	padding-top: 140px !important;
	padding-bottom: 60px !important;
	position: relative;
}

/* Force banner content visible — many module pages have fadeIn classes
   that leave opacity stuck at <1 without an inline override */
.banner_section .animation,
.banner_section .animated,
.banner_section [class*="fadeIn"] {
	opacity: 1 !important;
}

.banner_section h1,
.banner_section h2,
.banner_section p,
.banner_section .lead {
	color: #fff !important;
	opacity: 1 !important;
}

.banner_section h1 {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	margin-bottom: 16px;
}

.banner_section .lead {
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.55;
}

/* === Fixed header backdrop ===
   The transparent-header class makes the nav invisible when scrolled
   past the blue hero. A subtle dark backdrop keeps text readable. */
.header_wrap.fixed-top {
	background-color: rgba(12, 26, 54, 0.92);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	transition: background-color .2s ease;
}

.header_wrap.fixed-top .nav-link,
.header_wrap.fixed-top .navbar-brand,
.header_wrap.fixed-top .btn {
	color: #fff !important;
}

.header_wrap.fixed-top .navbar-toggler {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

/* Logo: only show the LIGHT variant, hide the colored versions */
.header_wrap.fixed-top .logo_dark,
.header_wrap.fixed-top .logo_default {
	display: none !important;
}

.header_wrap.fixed-top .logo_light {
	display: inline-block !important;
}

/* Dropdown menus open on hover (BS4 doesn't do this by default) */
.header_wrap.fixed-top .navbar-nav li.dropdown:hover > .dropdown-menu {
	display: block;
}

.header_wrap.fixed-top .dropdown-menu {
	background: rgba(12, 26, 54, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 0;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.header_wrap.fixed-top .dropdown-menu .dropdown-item {
	color: rgba(255, 255, 255, 0.85) !important;
	padding: 10px 18px;
	border-left: 2px solid transparent;
	transition: background .15s, border-color .15s, color .15s;
}

.header_wrap.fixed-top .dropdown-menu .dropdown-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-left-color: var(--syt-accent);
	color: #fff !important;
}

/* CTA button in nav */
.header_wrap.fixed-top .btn-outline-white {
	border: 2px solid rgba(255, 255, 255, 0.7);
	padding: 8px 22px;
}

.header_wrap.fixed-top .btn-outline-white:hover {
	background: #fff;
	color: #2259b7 !important;
	border-color: #fff;
}

/* === Hero illustration placeholder ===
   For pages without a custom hero image/mock, show a clean centered placeholder
   that's nicer than a logo at half-opacity */
.banner_section .hero-illustration {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 40px;
	min-height: 260px;
	color: rgba(255, 255, 255, 0.55);
}

.banner_section .hero-illustration i {
	font-size: 96px;
	opacity: 0.85;
}

/* === Shared module-page components (centralized so generated pages get them) === */
.benefit-list { list-style: none; padding-left: 0; }
.benefit-list li { padding: 10px 0 10px 30px; position: relative; list-style: none; }
.benefit-list li:before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 12px; color: #2259b7; }
.step-card { padding: 24px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06); height: 100%; }
.step-card .step-num { font-size: 32px; font-weight: 700; color: #2259b7; line-height: 1; }
.step-card h4 { font-size: 17px; margin: 8px 0; }
.step-card p { font-size: 14px; color: #555; margin: 0; }
/* icon variant (homepage process steps) */
.step-card.has-icon .step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.step-card.has-icon .step-icon {
	width: 52px; height: 52px; border-radius: 13px; flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--syt-accent); color: #fff; font-size: 21px;
	box-shadow: 0 4px 12px rgba(12, 26, 54, 0.16);
}
.step-card.has-icon .step-no { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 34px; line-height: 1; color: #e9edf3; }
.step-card.has-icon h4 { margin-top: 0; }
.link-card { display: block; padding: 20px; background: #fff; border-radius: 10px; border: 1px solid #eaeaea; color: inherit; text-decoration: none; transition: all .2s; height: 100%; }
.link-card:hover { border-color: #2259b7; text-decoration: none; transform: translateY(-2px); }
/* FAQ — card-style accordion (full styling in the FAQ section below) */
.faq-item p { margin: 0; }
.acronym-box { padding: 24px; background: #fff; border-radius: 12px; border: 1px solid #eaeaea; height: 100%; }
.acronym-box .acro { font-size: 28px; font-weight: 700; color: #2259b7; }
.feature-tag { display: inline-block; padding: 4px 12px; background: #eef2fb; color: #2259b7; border-radius: 999px; font-size: 13px; font-weight: 500; margin: 3px; }

/* === Timeline (oplossingen "dag in het leven") === */
.timeline { position: relative; padding-left: 30px; }
.timeline:before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: #2259b7; }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:before { content: ""; position: absolute; left: -25px; top: 6px; width: 12px; height: 12px; background: #2259b7; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px #2259b7; }
.timeline-item .time { font-size: 13px; color: #999; font-weight: 600; text-transform: uppercase; }

/* === Quote block === */
.quote-block { padding: 32px; background: #f7f9fc; border-left: 4px solid #2259b7; font-style: italic; font-size: 18px; border-radius: 0 12px 12px 0; }

/* === Pricing cards === */
.price-card { padding: 32px 28px; background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.08); height: 100%; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid #2259b7; transform: scale(1.03); position: relative; }
.price-card.featured .price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #2259b7; color: #fff; padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; white-space: nowrap; }
.price-card h3 { font-size: 22px; }
.price-card .price { font-size: 38px; font-weight: 700; color: #2259b7; }
.price-card .price small { font-size: 14px; color: #777; font-weight: 400; display: block; margin-top: 4px; }
.price-card ul { padding-left: 0; list-style: none; margin: 24px 0; flex-grow: 1; }
.price-card ul li { padding: 6px 0 6px 26px; position: relative; font-size: 15px; }
.price-card ul li:before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #2259b7; position: absolute; left: 0; top: 8px; }
.price-card ul li.missing { color: #999; }
.price-card ul li.missing:before { content: "\f068"; color: #ccc; }

/* === Compare table === */
table.compare { width: 100%; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
table.compare th, table.compare td { padding: 14px 16px; border-bottom: 1px solid #eef; text-align: center; }
table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 500; }
table.compare thead th { background: #f7f9fc; font-weight: 700; }
table.compare i.fa-check { color: #2259b7; }
table.compare i.fa-minus { color: #ccc; }

/* === Embed placeholder (demo agenda) === */
.embed-placeholder { padding: 60px 32px; text-align: center; background: #f7f9fc; border-radius: 12px; border: 2px dashed #c7d0e0; }

/* === Contact === */
.contact-card { padding: 28px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06); height: 100%; }
.contact-card .ico { font-size: 32px; color: #2259b7; margin-bottom: 12px; }
.form-control { border: 1px solid #d8d8d8; border-radius: 8px; padding: 12px 14px; }

/* === Placeholder note (work-in-progress banner) === */
.placeholder-note { padding: 18px; background: #fff8e6; border-left: 4px solid #ff9800; border-radius: 8px; }
.placeholder-note strong { color: #d97706; }

/* === Functionaliteiten grid (icon_box style) — generated partial === */
.fgrid-card {
	display: block;
	text-align: center;
	padding: 32px 20px;
	background: #fff;
	border-radius: 14px;
	border: 1px solid #eef1f6;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
	height: 100%;
	color: inherit;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: box-shadow .2s, transform .2s, border-color .2s;
}
/* orange accent bar slides in on hover */
.fgrid-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--syt-accent); transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
}
.fgrid-card:hover { box-shadow: 0 14px 30px rgba(12,26,54,.13); transform: translateY(-4px); text-decoration: none; color: inherit; border-color: #dfe6f1; }
.fgrid-card:hover::before { transform: scaleX(1); }
/* icon in a tinted chip */
.fgrid-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; margin-bottom: 18px;
	font-size: 26px; color: var(--syt-blue); line-height: 1;
	background: #eef2fb; border-radius: 14px;
	transition: background .2s, color .2s;
}
.fgrid-card:hover .fgrid-icon { background: var(--syt-accent); color: #fff; }
.fgrid-card h5 { font-size: 18px; margin-bottom: 8px; color: #1c2530; }
.fgrid-card p { font-size: 14px; color: #666; margin: 0; }

/* === Referenties — generated partial === */
.ref-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px 40px;
}
.ref-logo {
	max-height: 54px;
	max-width: 130px;
	width: auto;
	filter: grayscale(100%);
	opacity: .65;
	transition: filter .2s, opacity .2s;
}
.ref-logo:hover { filter: grayscale(0); opacity: 1; }
.ref-testi {
	background: #f7f9fc;
	border: 1px solid #e1e7f3;
	border-radius: 14px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.ref-testi-quote { font-size: 15px; line-height: 1.6; color: #3a3f4a; font-style: italic; flex-grow: 1; }
.ref-testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.ref-testi-author img { height: 36px; width: auto; max-width: 80px; }
.ref-testi-author span { font-weight: 600; font-size: 14px; color: #1c2530; }

/* === Rich prose content block ===
   For the "more text next to the intro" content section on detail pages.
   Flowing editorial copy with comfortable measure and rhythm. */
.content-prose {
	font-size: 17px;
	line-height: 1.7;
	color: #3a3f4a;
}
.content-prose h2 {
	font-size: clamp(24px, 2.4vw, 30px);
	margin-bottom: 18px;
}
.content-prose h3 {
	font-size: 20px;
	margin: 32px 0 10px;
	color: #1c2530;
}
.content-prose p { margin-bottom: 18px; }
.content-prose p:last-child { margin-bottom: 0; }
.content-prose .lead-intro {
	font-size: 19px;
	color: #1c2530;
	font-weight: 500;
	line-height: 1.6;
}
/* Answer-first definition line (GEO / AI-citation) — distinct callout, not a heading */
.content-prose .prose-definition {
	font-size: 17px;
	font-style: italic;
	font-weight: 500;
	color: #2a3340;
	background: #f4f7fb;
	border-left: 4px solid var(--syt-accent);
	border-radius: 0 10px 10px 0;
	padding: 16px 22px;
	margin: 0 0 26px;
	line-height: 1.6;
}
/* on grey sections, lift the callout to white so it still stands out */
section[style*="f7f9fc"] .content-prose .prose-definition { background: #fff; }
.content-prose a { color: #2259b7; font-weight: 500; }
.content-prose a:hover { text-decoration: underline; }
.content-prose strong { color: #1c2530; }

/* Sticky side panel next to prose (quick facts / CTA) */
.prose-aside {
	background: #f7f9fc;
	border: 1px solid #e1e7f3;
	border-radius: 14px;
	padding: 28px;
	position: sticky;
	top: 110px;
}
.prose-aside h4 { font-size: 17px; margin-bottom: 16px; }
.prose-aside ul { list-style: none; padding: 0; margin: 0 0 20px; }
.prose-aside ul li {
	padding: 8px 0 8px 26px;
	position: relative;
	font-size: 14px;
	border-bottom: 1px solid #eef;
}
.prose-aside ul li:last-child { border-bottom: none; }
.prose-aside ul li:before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #2259b7;
	position: absolute;
	left: 0;
	top: 8px;
}

/* Export-services list with descriptions */
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li {
	padding: 16px 0 16px 44px;
	position: relative;
	border-bottom: 1px solid #eef;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li i {
	position: absolute;
	left: 0;
	top: 18px;
	font-size: 22px;
	color: #2259b7;
}
.svc-list li strong { display: block; font-size: 16px; color: #1c2530; }
.svc-list li span { font-size: 14px; color: #666; }

/* === Branche / section illustration card ===
   Themed placeholder block for the right column of branche/module page
   "Specifiek voor X" sections. Replace with real screenshots later. */
.branche-illustration {
	background: linear-gradient(135deg, #eef2fb 0%, #f7f9fc 100%);
	border-radius: 16px;
	padding: 40px 32px;
	text-align: center;
	border: 1px solid #e1e7f3;
	position: relative;
	overflow: hidden;
}

.branche-illustration::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(34, 89, 183, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.branche-illustration__icon {
	font-size: 80px;
	color: #2259b7;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.branche-illustration__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	position: relative;
	z-index: 1;
}

.branche-illustration__pills span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #e1e7f3;
	border-radius: 999px;
	font-size: 13px;
	color: #2259b7;
	font-weight: 500;
}

.branche-illustration__pills span i {
	font-size: 12px;
	opacity: 0.7;
}

.branche-illustration__caption {
	margin-top: 20px;
	font-size: 12px;
	color: #aaa;
	font-style: italic;
	position: relative;
	z-index: 1;
}

/* === FAQ — card-style accordion === */
.faq-item {
	background: #fff;
	border: 1px solid #e7ecf3;
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #c3d0e8; }
.faq-item[open] {
	border-color: #2259b7;
	box-shadow: 0 6px 22px rgba(34, 89, 183, 0.10);
}
.faq-item summary {
	cursor: pointer;
	list-style: none;
	position: relative;
	font-weight: 600;
	font-size: 17px;
	color: #1c2530;
	padding: 18px 60px 18px 22px;
	transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #2259b7; }
/* circular +/− toggle */
.faq-item summary::after {
	content: "\f067"; /* plus */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 12px;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #eef2fb;
	color: #2259b7;
	border-radius: 50%;
	transition: background .2s, color .2s, transform .2s;
}
.faq-item[open] summary::after {
	content: "\f068"; /* minus */
	background: #2259b7;
	color: #fff;
	transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
	margin: 0;
	padding: 0 22px 20px;
	color: #555;
	line-height: 1.65;
}

/* === Section spacing tweaks === */
section.py-5 { padding-top: 64px !important; padding-bottom: 64px !important; }

/* CTA section — make sure it has comfortable padding */
.cta_section {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

/* === Mobile === */
@media (max-width: 991px) {
	.banner_section {
		padding-top: 120px !important;
		padding-bottom: 40px !important;
		text-align: center;
	}
	.banner_section .hero-illustration {
		min-height: 180px;
		margin-top: 24px;
	}
	.header_wrap.fixed-top .navbar-collapse {
		background: rgba(12, 26, 54, 0.98);
		padding: 16px;
		border-radius: 8px;
		margin-top: 8px;
	}
}

/* ============================================================
   Brand "kringel" (logo-swoosh) als decoratief accent op alle
   paarse secties: home-hero, subpagina-hero's en CTA-banden.
   Eén regel, schaalt mee met de hoogte van elke sectie.
   ============================================================ */
.bg_gd_moonpurple { position: relative; overflow: hidden; }
.bg_gd_moonpurple > .container { position: relative; z-index: 1; }
.bg_gd_moonpurple::after {
	content: "";
	position: absolute; top: -12%; bottom: -12%; left: -3%; width: 36%;
	background: url("/assets/img/logo_icon_single_white.svg") left center / contain no-repeat;
	opacity: .09; pointer-events: none; z-index: 0;
}
/* CTA-banden zijn laag: zet de kringel iets rechts zodat hij naast de tekst staat */
.cta_section.bg_gd_moonpurple::after { left: auto; right: 4%; width: 22%; opacity: .10; }
@media (max-width: 991px) {
	.bg_gd_moonpurple::after { width: 60%; left: -14%; opacity: .07; }
	.cta_section.bg_gd_moonpurple::after { width: 38%; right: -6%; }
}

/* ============================================================
   "software"-sublabel onder het logo → SellYourTruck software
   (feedback V5). Logo is wit in beide header-states, dus wit.
   ============================================================ */
.navbar-brand { position: relative; }
.navbar-brand .logo-sub {
	position: absolute; right: -2px; bottom: 4px;
	font-family: "Archivo", "Poppins", sans-serif;
	font-weight: 800; font-style: italic; font-size: 21px; line-height: 1;
	letter-spacing: .2px; text-transform: lowercase; color: #fff; pointer-events: none;
}
@media (max-width: 575px) {
	.navbar-brand .logo-sub { font-size: 14px; right: 0; bottom: 3px; }
}


/* ===== nexum-theme.css ===== */
/* ==========================================================================
   Nexum IT theme layer — laadt NA syt-fixes.css en overschrijft gericht.
   Palet: SYT-navy/blauw blijft; accent is Nexum-lime (#9fbd07), primair
   gereserveerd voor CTA's. Componenten voor de homepage dragen het
   nx-prefix en staan los van de generieke template.
   ========================================================================== */

:root {
	--syt-accent: #9fbd07;        /* lime vervangt signaaloranje */
	--syt-accent-dark: #86a006;
	--nx-navy: #0c1a36;
	--nx-navy-2: #1d3f7a;
	--nx-blue: #2259b7;
	--nx-ink: #15203a;
	--nx-muted: #5a6473;
	--nx-mist: #a5b3ca;
	--nx-tint: #f5f8fc;
}

/* Lime knoppen met witte tekst (verzoek gebruiker) */
.btn-default, .btn-primary {
	color: #fff !important;
	font-weight: 600;
}
.btn-default:hover, .btn-primary:hover { color: #fff !important; }

/* ==== CTA-knoppen ==== */
.nx-btn-cta {
	background: var(--syt-accent);
	border: 2px solid var(--syt-accent);
	color: #fff !important;
	font-weight: 700;
	padding: 12px 30px;
	box-shadow: 0 4px 14px rgba(12, 26, 54, 0.18);
	transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.nx-btn-cta:hover, .nx-btn-cta:focus {
	background: var(--syt-accent-dark);
	border-color: var(--syt-accent-dark);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(12, 26, 54, 0.26);
}
.header_wrap .nx-btn-cta { padding: 8px 22px; box-shadow: none; }

.nx-btn-ghost {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.65);
	color: #fff !important;
	font-weight: 600;
	padding: 12px 28px;
	transition: background .18s, border-color .18s, color .18s;
}
.nx-btn-ghost:hover { background: #fff; border-color: #fff; color: var(--nx-blue) !important; }

.nexum-header-tel {
	color: rgba(255, 255, 255, 0.88) !important;
	font-weight: 600;
	font-size: 15px;
	align-items: center;
	white-space: nowrap;
	margin-left: 18px;
}
.nexum-header-tel:hover { color: #fff !important; text-decoration: none; }
.nexum-header-tel i { color: var(--syt-accent); margin-right: 4px; }

/* ==== Hero ==== */
.nx-hero {
	position: relative;
	background: linear-gradient(148deg, var(--nx-navy) 0%, #122a5a 55%, var(--nx-navy-2) 100%);
	color: #fff;
	padding: 168px 0 0;
	overflow: hidden;
}

/* zachte gloed achter de visual + lime aura linksonder */
.nx-hero::before {
	content: "";
	position: absolute;
	top: 4%;
	right: -8%;
	width: 720px;
	height: 720px;
	background: radial-gradient(closest-side, rgba(34, 89, 183, 0.45), transparent 70%);
	pointer-events: none;
}
.nx-hero::after {
	content: "";
	position: absolute;
	bottom: -180px;
	left: -120px;
	width: 520px;
	height: 520px;
	background: radial-gradient(closest-side, rgba(159, 189, 7, 0.10), transparent 70%);
	pointer-events: none;
}

/* isometrisch lijnenspel — knipoog naar het 3D-logo */
.nx-hero-iso {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
		repeating-linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px);
	-webkit-mask-image: radial-gradient(110% 90% at 70% 20%, #000 30%, transparent 78%);
	mask-image: radial-gradient(110% 90% at 70% 20%, #000 30%, transparent 78%);
}

.nx-hero .container { position: relative; }
.nx-hero-row { padding-bottom: 56px; }

.nx-hero-kicker {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nx-mist);
	border: 1px solid rgba(165, 179, 202, 0.35);
	border-radius: 999px;
	padding: 6px 16px;
	margin-bottom: 22px;
}

.nx-hero h1 {
	color: #fff;
	font-size: clamp(34px, 4.6vw, 54px);
	line-height: 1.12;
	margin-bottom: 18px;
}
.nx-hero h1 em {
	font-style: normal;
	color: var(--syt-accent);
	background-image: linear-gradient(rgba(159, 189, 7, 0.28), rgba(159, 189, 7, 0.28));
	background-repeat: no-repeat;
	background-size: 100% 10px;
	background-position: 0 88%;
	padding: 0 2px;
}

.nx-hero-sub {
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
	max-width: 565px;
	margin-bottom: 30px;
}

.nx-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.nx-hero-usps {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	padding: 0;
	margin: 0;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.75);
}
.nx-hero-usps i { color: var(--syt-accent); margin-right: 7px; font-size: 13px; }

/* hero-visual + zwevende chips */
.nx-hero-visual { position: relative; padding: 10px 0 30px; }
.nx-hero-visual svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35)); }

.nx-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--nx-ink);
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 999px;
	padding: 8px 16px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
	animation: nx-float 5.2s ease-in-out infinite;
}
.nx-chip i { color: var(--nx-blue); }
.nx-chip-1 { top: 6%; left: -4%; }
.nx-chip-2 { top: 44%; right: -6%; animation-delay: 1.6s; }
.nx-chip-3 { bottom: 4%; left: 12%; animation-delay: 3.1s; }

@keyframes nx-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-9px); }
}

.nx-iso-dot { animation: nx-float 6s ease-in-out infinite; }
.nx-iso-dot-2 { animation-delay: 2s; }
.nx-iso-dot-3 { animation-delay: 3.4s; }

/* trust-strip in de hero */
.nx-trust {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 22px 0 30px;
}
.nx-trust-label {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nx-mist);
	margin-bottom: 10px;
}
.nx-trust-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 38px;
	padding: 0;
	margin: 0;
}
.nx-trust-list li {
	font-family: 'Archivo', 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	transition: color .2s;
}
.nx-trust-list li:hover { color: rgba(255, 255, 255, 0.9); }

/* ==== Secties ==== */
.nx-section { padding: 84px 0; }
.nx-section-tint { background: var(--nx-tint); }
.nx-section-navy {
	background: linear-gradient(148deg, var(--nx-navy) 0%, #13294f 100%);
	color: #fff;
}

/* sectie-kicker: klein label boven elke h2 voor ritme */
.nx-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nx-blue);
	margin-bottom: 14px;
}
.nx-kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--syt-accent);
	transform: rotate(45deg);
}
.nx-section-navy .nx-kicker { color: var(--nx-mist); }

.nx-section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.nx-section-head h2 {
	font-size: clamp(27px, 3vw, 38px);
	color: var(--nx-ink);
	margin-bottom: 14px;
	position: relative;
	padding-bottom: 18px;
}
.nx-section-head h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 46px;
	height: 3px;
	border-radius: 2px;
	background: var(--syt-accent);
}
.nx-section-navy .nx-section-head h2 { color: #fff; }
.nx-section-head p { font-size: 17px; color: var(--nx-muted); margin: 0; }

/* ==== Pijlers: Bouwen / Verbeteren / Beheren ==== */
.nx-pillar {
	background: #fff;
	border: 1px solid #e6ecf5;
	border-radius: 14px;
	padding: 34px 30px;
	height: 100%;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}
.nx-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(12, 26, 54, 0.10);
	border-color: #d3deee;
}
.nx-pillar-icon {
	width: 56px;
	height: 56px;
	border-radius: 13px;
	background: linear-gradient(135deg, rgba(34, 89, 183, 0.12), rgba(159, 189, 7, 0.10));
	color: var(--nx-blue);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.nx-pillar h3 { font-size: 20px; color: var(--nx-ink); margin-bottom: 10px; }
.nx-pillar p { color: var(--nx-muted); margin: 0; line-height: 1.65; }

/* ==== Branchetegels ==== */
.nx-branche {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border: 1px solid #e6ecf5;
	border-radius: 14px;
	padding: 30px 26px;
	height: 100%;
	text-decoration: none;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}
.nx-branche:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 44px rgba(12, 26, 54, 0.12);
	border-color: var(--nx-blue);
	text-decoration: none;
}
.nx-branche-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(34, 89, 183, 0.12), rgba(159, 189, 7, 0.10));
	color: var(--nx-blue);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition: background .2s, color .2s;
}
.nx-branche:hover .nx-branche-icon { background: linear-gradient(135deg, var(--nx-blue), var(--nx-navy-2)); color: #fff; }
.nx-pillar:hover .nx-pillar-icon { background: linear-gradient(135deg, var(--nx-blue), var(--nx-navy-2)); color: #fff; }
.nx-pillar-icon, .nx-branche-icon { transition: background .2s, color .2s; }
.nx-branche h3 { font-size: 18px; color: var(--nx-ink); margin-bottom: 8px; }
.nx-branche p { font-size: 14.5px; color: var(--nx-muted); margin-bottom: 16px; line-height: 1.6; }
.nx-branche-case {
	display: inline-block;
	margin-top: auto;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--nx-blue);
	background: rgba(34, 89, 183, 0.08);
	border-radius: 999px;
	padding: 5px 12px;
}
.nx-branche-other {
	text-align: center;
	color: var(--nx-muted);
	max-width: 640px;
	margin: 6px auto 18px;
}

/* ==== Platform-band (tweede pijler) ==== */
.nx-platform-band {
	position: relative;
	background: linear-gradient(120deg, var(--nx-navy-2) 0%, var(--nx-blue) 100%);
	color: #fff;
	padding: 56px 0;
	overflow: hidden;
}
.nx-platform-band::before { content: ""; position: absolute; top: 0; left: 0; right: 40%; height: 3px; background: linear-gradient(90deg, var(--syt-accent), transparent); }
.nx-platform-band .container { position: relative; }
.nx-platform-band h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.nx-platform-band p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 620px; }

/* ==== Cases ==== */
.nx-case {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6ecf5;
	border-radius: 16px;
	padding: 34px 30px;
	height: 100%;
	text-decoration: none;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}
.nx-case:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 48px rgba(12, 26, 54, 0.13);
	border-color: var(--nx-blue);
	text-decoration: none;
}
.nx-case-stat { position: relative; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid #edf2f9; }
.nx-case-stat::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 44px; height: 2px; background: var(--syt-accent); }
.nx-case-num {
	display: block;
	font-family: 'Archivo', 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 46px;
	line-height: 1;
	color: var(--nx-blue);
	letter-spacing: -0.02em;
}
.nx-case-num small { font-size: 24px; font-weight: 700; color: var(--nx-mist); }
.nx-case-unit { display: block; font-size: 13.5px; color: var(--nx-muted); margin-top: 6px; }
.nx-case h3 { font-size: 19px; color: var(--nx-ink); margin-bottom: 10px; line-height: 1.35; }
.nx-case p { color: var(--nx-muted); line-height: 1.65; margin-bottom: 18px; }
.nx-case .nx-arrow-link { margin-top: auto; }

.nx-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--nx-blue);
	text-decoration: none;
}
.nx-arrow-link i { transition: transform .18s; font-size: 13px; }
.nx-arrow-link:hover { color: var(--nx-navy-2); text-decoration: none; }
.nx-arrow-link:hover i { transform: translateX(4px); }
.nx-arrow-link-light { color: #fff; }
.nx-arrow-link-light:hover { color: var(--syt-accent); }

/* ==== Werkwijze-stappen ==== */
.nx-step {
	position: relative;
	padding: 30px 24px 0;
	height: 100%;
}
.nx-step-num {
	display: block;
	font-family: 'Archivo', 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 42px;
	line-height: 1;
	color: var(--syt-accent);
	opacity: 0.95;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}
.nx-step-num::after {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	margin-top: 12px;
	background: linear-gradient(90deg, rgba(159, 189, 7, 0.85), transparent);
}
.nx-step h3 { font-size: 19px; color: #fff; margin-bottom: 10px; }
.nx-step p { color: rgba(255, 255, 255, 0.72); font-size: 15px; line-height: 1.65; margin: 0; }
.nx-steps { margin-bottom: 18px; }

/* ==== Quote ==== */
.nx-quote { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.nx-quote::before {
	content: "\201C";
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	font-family: Georgia, serif;
	font-size: 280px;
	line-height: 1;
	color: rgba(34, 89, 183, 0.06);
	pointer-events: none;
}
.nx-quote-mark { font-size: 34px; color: var(--nx-blue); opacity: 0.35; margin-bottom: 18px; }
.nx-quote blockquote {
	font-family: 'Archivo', 'Poppins', sans-serif;
	font-size: clamp(21px, 2.4vw, 27px);
	font-weight: 600;
	line-height: 1.45;
	color: var(--nx-ink);
	border: 0;
	margin: 0 0 18px;
	padding: 0;
}
.nx-quote-author { color: var(--nx-muted); font-size: 15px; margin-bottom: 10px; }
.nx-quote-rating { color: var(--nx-muted); font-size: 15px; margin: 0; }
.nx-quote-rating i { color: var(--syt-accent); font-size: 14px; margin-right: 1px; }
.nx-quote-rating strong { color: var(--nx-ink); }

/* ==== FAQ ==== */
.nx-faq {
	background: #fff;
	border: 1px solid #e6ecf5;
	border-radius: 12px;
	padding: 24px 26px;
	margin-bottom: 20px;
}
.nx-faq { transition: border-color .2s, box-shadow .2s; }
.nx-faq:hover { border-color: #c9d8ee; box-shadow: 0 10px 26px rgba(12, 26, 54, 0.06); }
.nx-faq h3 { font-size: 16.5px; color: var(--nx-ink); margin-bottom: 9px; }
.nx-faq h3::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--syt-accent);
	transform: rotate(45deg);
	margin-right: 10px;
	vertical-align: 2px;
}
.nx-faq p { color: var(--nx-muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ==== Slot-CTA ==== */
.nx-final-cta {
	position: relative;
	background: linear-gradient(148deg, var(--nx-navy) 0%, #122a5a 60%, var(--nx-navy-2) 100%);
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.nx-final-cta .container { position: relative; }
.nx-final-cta h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 14px; }
.nx-final-cta > .container > p { color: rgba(255, 255, 255, 0.8); font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.nx-final-cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 22px;
}
.nx-final-tel { color: #fff; font-weight: 600; font-size: 16.5px; }
.nx-final-tel:hover { color: var(--syt-accent); text-decoration: none; }
.nx-final-tel i { color: var(--syt-accent); margin-right: 6px; }
.nx-final-note { color: var(--nx-mist); font-size: 14px; margin: 0; }

/* ==== Footer (licht) ==== */
.nx-footer { position: relative; background: var(--nx-tint); border-top: 1px solid #e6ecf5; }
.nx-footer::before { content: ""; position: absolute; top: -1px; left: 0; width: 38%; height: 3px; background: linear-gradient(90deg, var(--syt-accent), transparent); }
.nx-footer .top_footer { padding: 64px 0 30px; }
.nx-footer p { color: var(--nx-muted); }
.nx-footer .widget_title { color: var(--nx-ink); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.nx-footer .widget_links_style1 li {
	float: none;
	width: 100%;
	padding-top: 0;
	padding-bottom: 6px;
}
.nx-footer .widget_links_style1 li a {
	color: var(--nx-muted);
	font-size: 14.5px;
	line-height: 1.7;
}
.nx-footer .widget_links_style1 li a:hover { color: var(--nx-blue); }
.nx-footer .contact_info li { border: 0; padding: 4px 0; }
.nx-footer .contact_info li span { color: var(--nx-blue); min-width: 22px; }
.nx-footer .contact_info li a, .nx-footer .contact_info address { color: var(--nx-muted); margin: 0; }
.nx-footer .contact_info li a:hover { color: var(--nx-blue); }
.nx-footer-social li a { color: var(--nx-blue); font-size: 20px; }
.nx-footer-social li a:hover { color: var(--nx-navy-2); }
.nx-footer-trust { font-size: 12.5px; color: var(--nx-mist); margin-top: 18px; line-height: 1.7; }
.nx-footer .bottom_footer { border-top: 1px solid #e6ecf5; padding: 18px 0; }
.nx-footer .copyright { color: var(--nx-muted); font-size: 14px; }
.nx-footer .copyright a { color: var(--nx-blue); }

/* ==== Responsive & toegankelijkheid ==== */
@media (max-width: 991px) {
	.nx-hero { padding-top: 128px; }
	.nx-section { padding: 60px 0; }
	.nx-step { padding: 20px 8px 0; }

	/* --- mobiel menu: strak paneel onder de header --- */
	.header_wrap.fixed-top .navbar-brand img { width: 148px; height: auto; }
	.header_wrap.fixed-top .navbar { padding-top: 6px; padding-bottom: 6px; }
	.header_wrap.fixed-top .navbar-collapse {
		background: var(--nx-navy);
		margin: 6px -15px 0;
		padding: 8px 22px 18px;
		border-radius: 0 0 16px 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.10);
		box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
		max-height: calc(100vh - 92px);
		overflow-y: auto;
	}
	/* paneel sluit naadloos aan op de headerbalk */
	.header_wrap.fixed-top { background-color: rgba(12, 26, 54, 0.97); }
	.header_wrap.fixed-top .navbar-nav > li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
	.header_wrap.fixed-top .navbar-nav > li:last-child { border-bottom: 0; }
	.header_wrap.fixed-top .navbar-nav .nav-link { padding: 13px 0; font-size: 16.5px; }
	.header_wrap.fixed-top .dropdown-menu {
		position: static !important;
		float: none;
		width: 100%;
		background: rgba(255, 255, 255, 0.05) !important;
		border: 0 !important;
		border-left: 2px solid var(--syt-accent) !important;
		border-radius: 0 10px 10px 0;
		box-shadow: none !important;
		margin: 0 0 12px 4px;
		padding: 4px 0;
	}
	.header_wrap.fixed-top .dropdown-menu ul { margin: 0; padding: 0; list-style: none; }
	.header_wrap.fixed-top .dropdown-menu .dropdown-item {
		padding: 10px 16px !important;
		font-size: 15px;
		border-left: 0 !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nx-chip, .nx-iso-dot { animation: none; }
	.nx-btn-cta:hover, .nx-pillar:hover, .nx-branche:hover, .nx-case:hover { transform: none; }
}


/* ==== Navy banden: leesbare inline links + iso-lijnen i.p.v. SYT-watermerk ==== */
.cta_section a:not(.btn),
.banner_section p a:not(.btn) {
	color: var(--syt-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.cta_section a:not(.btn):hover,
.banner_section p a:not(.btn):hover { color: #c4dd33; }

.bg_gd_moonpurple::after {
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: auto !important;
	background: repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
		repeating-linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px) !important;
	opacity: 1 !important;
	-webkit-mask-image: radial-gradient(120% 100% at 78% 12%, #000 30%, transparent 80%);
	mask-image: radial-gradient(120% 100% at 78% 12%, #000 30%, transparent 80%);
}

/* hero-mock: eerste chip in lime i.p.v. SYT-oranje */
.hero-mock__chips b:first-child { background: rgba(159, 189, 7, 0.30); border-color: rgba(159, 189, 7, 0.45); }

/* ==== v4: pagina-eigen hero-mocks ==== */
.hm-bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin-bottom: 16px; }
.hm-bars i { flex: 1; background: rgba(255,255,255,.22); border-radius: 6px 6px 2px 2px; }
.hm-bars i.hm-lime { background: rgba(159,189,7,.85); }
.hm-legend { display: flex; align-items: center; gap: 8px; }
.hm-legend b { width: 10px; height: 10px; border-radius: 3px; background: rgba(255,255,255,.35); }
.hm-legend b.hm-lime { background: #9fbd07; }
.hm-legend span { height: 8px; border-radius: 4px; background: rgba(255,255,255,.18); }
.hm-doc { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.hm-doc span, .hm-doc em { height: 10px; border-radius: 5px; }
.hm-doc span { background: rgba(255,255,255,.2); }
.hm-doc em { background: rgba(255,255,255,.34); }
.hm-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.25); padding-top: 12px; margin-top: 4px; }
.hm-total span { width: 30%; height: 12px; border-radius: 6px; background: rgba(255,255,255,.4); }
.hm-total b { background: rgba(159,189,7,.9); color: #0c1a36; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 4px 12px; }
.hm-iso { display: flex; justify-content: center; margin-bottom: 12px; }
.hm-iso svg { width: 116px; height: 90px; }
.hm-slider { position: relative; height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); margin: 18px 4px; }
.hm-slider i { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: #9fbd07; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hm-cards { display: flex; gap: 10px; margin-bottom: 14px; }
.hm-cards b { flex: 1; height: 44px; border-radius: 8px; background: rgba(255,255,255,.14); }
.hm-cards b.hm-lime { background: rgba(159,189,7,.5); }
.hm-btnrow { margin-top: 14px; }
.hm-btnrow b { display: inline-block; width: 88px; height: 22px; border-radius: 999px; background: rgba(159,189,7,.85); }
.hm-quote { height: 34px; border-left: 3px solid #9fbd07; background: rgba(255,255,255,.08); border-radius: 0 8px 8px 0; margin-bottom: 14px; }
.hm-split { display: flex; gap: 12px; margin-bottom: 14px; }
.hm-side { width: 34px; display: flex; flex-direction: column; gap: 8px; }
.hm-side i { height: 10px; border-radius: 5px; background: rgba(255,255,255,.25); }
.hm-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hm-main span { height: 10px; border-radius: 5px; background: rgba(255,255,255,.18); }

/* ==== v4: navy ritme-band op binnenpagina's ==== */
.nx-navy-band { background: linear-gradient(148deg, #0c1a36 0%, #13294f 100%) !important; }
.nx-navy-band h2, .nx-navy-band h3, .nx-navy-band h4 { color: #fff; }
.nx-navy-band p, .nx-navy-band .lead, .nx-navy-band li { color: rgba(255,255,255,.82); }
.nx-navy-band .step-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.nx-navy-band .step-card h4 { color: #fff; }
.nx-navy-band .step-card p { color: rgba(255,255,255,.75); }
.nx-navy-band .step-head .step-no { color: rgba(255,255,255,.25); }
.nx-navy-band .benefit-list li { color: rgba(255,255,255,.85); }
.nx-navy-band .fgrid-card { background: #fff; }
.nx-navy-band .fgrid-card h4, .nx-navy-band .fgrid-card h5 { color: var(--nx-ink); }
.nx-navy-band .fgrid-card p { color: var(--nx-muted); }

/* ==== v4: Lees ook ==== */
.nx-leesook .fgrid-card { text-align: left; height: 100%; display: flex; flex-direction: column; }
.nx-leesook .fgrid-card h5 { font-size: 17px; margin-bottom: 8px; }
.nx-leesook .fgrid-card p { font-size: 14px; color: var(--nx-muted); margin-bottom: 12px; }
.nx-leesook .fgrid-card .nx-arrow-link { margin-top: auto; font-size: 14px; }

/* navy band: inline-gekleurde intro's en links leesbaar maken */
.nx-navy-band p[style], .nx-navy-band .lead { color: rgba(255, 255, 255, 0.8) !important; }
.nx-navy-band p a:not(.btn), .nx-navy-band li a:not(.btn) { color: var(--syt-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.nx-navy-band p a:not(.btn):hover, .nx-navy-band li a:not(.btn):hover { color: #c4dd33; }
.nx-navy-band .fgrid-card, .nx-navy-band .fgrid-card * { text-decoration: none; }
.nx-navy-band .fgrid-card p a { color: var(--nx-blue); }

/* vinkjes in benefit-lijsten: lime i.p.v. blauw */
.benefit-list li:before { color: var(--syt-accent) !important; }

/* ==== klantlogo's in case-hero en kaarten ==== */
.nx-hero-logocard {
	background: #fff;
	border-radius: 18px;
	padding: 48px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
	max-width: 420px;
	margin: 0 auto;
}
.nx-hero-logocard img { max-width: 100%; max-height: 110px; }
.fgrid-logo { display: flex; align-items: center; justify-content: center; height: 64px; margin-bottom: 14px; }
.fgrid-logo img { max-height: 48px; max-width: 78%; }
.prose-aside ul li:before, .price-card ul li:before { color: var(--syt-accent) !important; }

/* tekstlinks: dikker + lime hover */
p a:not(.btn), li a:not(.btn):not(.nav-link):not(.dropdown-item), .content-prose a:not(.btn) { font-weight: 600; }
p a:not(.btn):hover, li a:not(.btn):hover, .content-prose a:hover { color: var(--syt-accent-dark) !important; }

/* homepage-FAQ: kaarten in beide kolommen even hoog */
.nx-faq-grid > [class*="col-"] { display: flex; flex-direction: column; }
.nx-faq-grid .nx-faq { flex: 1 1 auto; }

/* Lees ook: logo bovenin, links op gelijke hoogte */
.nx-leesook .row > [class*="col-"] { display: flex; }
.nx-leesook .fgrid-card { width: 100%; height: auto; }
.nx-leesook .fgrid-logo { justify-content: flex-start; height: 48px; margin-bottom: 12px; }
.nx-leesook .fgrid-logo img { max-height: 40px; }

/* ==== mini-visuals in Lees ook (licht thema) ==== */
.nx-mini { height: 64px; margin-bottom: 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.nx-mini-center { align-items: flex-start; justify-content: center; }
.nx-mini .hm-bars { height: 56px; margin-bottom: 0; gap: 7px; max-width: 180px; }
.nx-mini .hm-bars i { background: rgba(34, 89, 183, 0.16); }
.nx-mini .hm-bars i.hm-lime { background: rgba(159, 189, 7, 0.8); }
.nx-mini .hm-doc { margin-bottom: 0; max-width: 220px; }
.nx-mini .hm-doc span { background: rgba(12, 26, 54, 0.10); }
.nx-mini .hm-doc em { background: rgba(12, 26, 54, 0.18); }
.nx-mini .hm-total { border-top-color: rgba(12, 26, 54, 0.14); padding-top: 8px; margin-top: 0; max-width: 220px; }
.nx-mini .hm-total span { background: rgba(12, 26, 54, 0.22); height: 10px; }
.nx-mini .hm-total b { background: var(--syt-accent); color: #fff; }
.nx-mini-iso { width: 76px; height: 58px; }
.nx-mini .hm-cards { margin-bottom: 0; max-width: 200px; width: 100%; }
.nx-mini .hm-cards b { height: 40px; background: rgba(34, 89, 183, 0.12); }
.nx-mini .hm-cards b.hm-lime { background: rgba(159, 189, 7, 0.45); }
.nx-mini .hm-quote { height: 22px; background: rgba(159, 189, 7, 0.12); margin-bottom: 0; max-width: 200px; width: 100%; }
.nx-mini .hero-mock__rows { gap: 7px; margin-bottom: 0; max-width: 200px; }
.nx-mini .hero-mock__rows span { height: 8px; background: rgba(12, 26, 54, 0.10); }
.nx-mini .hm-split { margin-bottom: 0; max-width: 200px; width: 100%; }
.nx-mini .hm-side i { background: rgba(12, 26, 54, 0.16); height: 8px; }
.nx-mini .hm-main span { background: rgba(12, 26, 54, 0.10); height: 8px; }

/* ==== subtiele animaties configurator-hero ==== */
.hm-iso svg { overflow: visible; }
.nx-cfg-top { animation: nx-cfg-lift 4.5s ease-in-out infinite; }
@keyframes nx-cfg-lift {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
.nx-cfg-side { animation: nx-cfg-settle 4.5s ease-in-out infinite; }
@keyframes nx-cfg-settle {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(1.5px); }
}
.nx-cfg-thumb1 { animation: nx-cfg-slide1 7s ease-in-out infinite; }
@keyframes nx-cfg-slide1 {
	0%, 100% { left: 62%; }
	45% { left: 36%; }
	60% { left: 36%; }
}
.nx-cfg-thumb2 { animation: nx-cfg-slide2 9s ease-in-out infinite; }
@keyframes nx-cfg-slide2 {
	0%, 100% { left: 34%; }
	40% { left: 68%; }
	55% { left: 68%; }
}
@media (prefers-reduced-motion: reduce) {
	.nx-cfg-top, .nx-cfg-side, .nx-cfg-thumb1, .nx-cfg-thumb2 { animation: none; }
}

/* ==== subtiele animaties voor alle hero-visuals (alleen in de header-mock) ==== */
/* dashboard: balkjes ademen zachtjes, gestaffeld */
.hero-mock .hm-bars i { transform-origin: bottom; animation: nx-bar-pulse 5s ease-in-out infinite; }
.hero-mock .hm-bars i:nth-child(2) { animation-delay: .6s; }
.hero-mock .hm-bars i:nth-child(3) { animation-delay: 1.2s; }
.hero-mock .hm-bars i:nth-child(4) { animation-delay: 1.8s; }
.hero-mock .hm-bars i:nth-child(5) { animation-delay: 2.4s; }
@keyframes nx-bar-pulse {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(0.88); }
}

/* factuur: regels worden om de beurt "verwerkt", daarna stempelt "Betaald" */
.hero-mock .hm-doc em { animation: nx-doc-paid 7s ease infinite; }
.hero-mock .hm-doc:nth-of-type(2) em { animation-delay: .9s; }
.hero-mock .hm-doc:nth-of-type(3) em { animation-delay: 1.8s; }
@keyframes nx-doc-paid {
	0%, 4% { background: rgba(255, 255, 255, 0.34); }
	10%, 86% { background: rgba(159, 189, 7, 0.85); }
	94%, 100% { background: rgba(255, 255, 255, 0.34); }
}
.hero-mock .hm-total b { animation: nx-stamp 7s cubic-bezier(0.2, 1.4, 0.3, 1) infinite; }
@keyframes nx-stamp {
	0%, 42% { transform: scale(0) rotate(-14deg); opacity: 0; }
	48% { transform: scale(1.3) rotate(4deg); opacity: 1; }
	53% { transform: scale(0.96) rotate(-2deg); }
	57% { transform: scale(1) rotate(0deg); }
	88% { transform: scale(1); opacity: 1; }
	96%, 100% { transform: scale(1); opacity: 0; }
}
@keyframes nx-badge-pulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(159, 189, 7, 0); }
	50% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(159, 189, 7, 0.12); }
}

/* portaal: kaartjes zweven gestaffeld */
.hero-mock .hm-cards b { animation: nx-card-float 5.5s ease-in-out infinite; }
.hero-mock .hm-cards b:nth-child(2) { animation-delay: 1.1s; }
.hero-mock .hm-cards b:nth-child(3) { animation-delay: 2.2s; }
.hero-mock .hm-btnrow b { animation: nx-badge-pulse 4.5s ease-in-out infinite 1s; }
@keyframes nx-card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

/* artikel: tekstregels lichten gestaffeld op; laatste regel typt zichzelf met caret */
.hero-mock .hero-mock__rows span { animation: nx-row-shimmer 4.5s ease-in-out infinite; }
.hero-mock .hero-mock__rows span:nth-child(2) { animation-delay: .7s; }
.hero-mock .hero-mock__rows span:nth-child(3) { animation-delay: 1.4s; }
.hero-mock .hero-mock__rows span:nth-child(4) { animation-delay: 2.1s; }
@keyframes nx-row-shimmer {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}
.hero-mock .hm-art .hm-type {
	position: relative; background: rgba(255, 255, 255, 0.3);
	animation: nx-type 6.5s steps(22, end) infinite; overflow: visible;
}
@keyframes nx-type {
	0% { width: 0; }
	55% { width: 62%; }
	90% { width: 62%; }
	100% { width: 0; }
}
.hero-mock .hm-art .hm-type::after {
	content: ""; position: absolute; right: -7px; top: -2px; width: 3px; height: 15px;
	background: #9fbd07; animation: nx-caret 1s steps(1) infinite;
}
@keyframes nx-caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
/* quote-balk: een marker-streep veegt eroverheen */
.hero-mock .hm-quote {
	background: linear-gradient(90deg, rgba(159, 189, 7, 0.18), rgba(159, 189, 7, 0.18)) no-repeat, rgba(255, 255, 255, 0.08);
	background-size: 0% 100%;
	animation: nx-mark 6.5s ease-in-out infinite;
}
@keyframes nx-mark {
	0%, 12% { background-size: 0% 100%; }
	42%, 82% { background-size: 100% 100%; }
	96%, 100% { background-size: 0% 100%; }
}

/* systeem: er wordt door het menu "geklikt": items worden om de beurt actief (lime) */
.hero-mock .hm-side i { animation: nx-side-active 5.4s ease infinite; }
.hero-mock .hm-side i:nth-child(2) { animation-delay: 1.8s; }
.hero-mock .hm-side i:nth-child(3) { animation-delay: 3.6s; }
@keyframes nx-side-active {
	0%, 4% { background: rgba(255, 255, 255, 0.25); }
	8%, 30% { background: rgba(159, 189, 7, 0.85); }
	36%, 100% { background: rgba(255, 255, 255, 0.25); }
}
.hero-mock .hm-main span { animation: nx-row-shimmer 4.8s ease-in-out infinite; }
.hero-mock .hm-main span:nth-child(2) { animation-delay: .8s; }
.hero-mock .hm-main span:nth-child(3) { animation-delay: 1.6s; }
.hero-mock .hm-main span:nth-child(4) { animation-delay: 2.4s; }

/* ==== v5: pagina-eigen hero-scènes ==== */
/* dashboard: lijngrafiek tekent zichzelf over de balken */
.hm-chart { position: relative; }
.hm-spark { position: absolute; left: 0; right: 0; top: -6px; height: calc(100% - 14px); width: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.hm-spark polyline {
	stroke-dasharray: 330; stroke-dashoffset: 330;
	filter: drop-shadow(0 2px 6px rgba(159, 189, 7, 0.45));
	animation: nx-spark-draw 7s ease-in-out infinite;
}
@keyframes nx-spark-draw {
	0% { stroke-dashoffset: 330; opacity: 1; }
	38% { stroke-dashoffset: 0; opacity: 1; }
	82% { stroke-dashoffset: 0; opacity: 1; }
	94%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

/* api/koppelingen: datapakketjes reizen tussen twee systemen */
.hm-api { display: flex; align-items: center; gap: 14px; margin: 16px 0 24px; }
.hm-api-node {
	width: 56px; height: 56px; border-radius: 14px; flex: 0 0 auto;
	background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.22);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255, 255, 255, 0.85); font-size: 20px;
}
.hm-api-node--lime { background: rgba(159, 189, 7, 0.26); border-color: rgba(159, 189, 7, 0.55); color: #d9ef6a; }
.hm-api-wire { position: relative; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 6px, transparent 6px 12px); }
.hm-api-dot {
	position: absolute; top: 50%; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%;
	background: #9fbd07; box-shadow: 0 0 10px rgba(159, 189, 7, 0.8);
	animation: nx-api-go 3.2s linear infinite; opacity: 0;
}
.hm-api-d2 { animation-delay: 1.4s; }
.hm-api-back { background: rgba(255, 255, 255, 0.9); box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); animation: nx-api-back 4.6s linear infinite 0.7s; }
@keyframes nx-api-go {
	0% { left: 0; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { left: calc(100% - 9px); opacity: 0; }
}
@keyframes nx-api-back {
	0% { left: calc(100% - 9px); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { left: 0; opacity: 0; }
}
.hm-api-status {
	display: inline-flex; align-items: center; gap: 9px;
	border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.07);
	border-radius: 999px; padding: 7px 15px;
}
.hm-api-status b { width: 9px; height: 9px; border-radius: 50%; background: #9fbd07; animation: nx-ping 2.4s ease-out infinite; }
.hm-api-status span { font-size: 12px; color: rgba(255, 255, 255, 0.78); font-family: 'Archivo', sans-serif; }
@keyframes nx-ping {
	0% { box-shadow: 0 0 0 0 rgba(159, 189, 7, 0.5); }
	70% { box-shadow: 0 0 0 9px rgba(159, 189, 7, 0); }
	100% { box-shadow: 0 0 0 0 rgba(159, 189, 7, 0); }
}

/* excel: rommelig grid → pijl → strakke app */
.hm-xl { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.hm-xl-sheet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; flex: 1; }
.hm-xl-sheet i { height: 18px; border-radius: 4px; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.10); animation: nx-xl-flicker 3.8s ease-in-out infinite; }
.hm-xl-sheet i:nth-child(2) { animation-delay: .7s; }
.hm-xl-sheet i:nth-child(3) { animation-delay: 1.9s; }
.hm-xl-sheet i:nth-child(4) { animation-delay: 2.6s; }
.hm-xl-sheet i:nth-child(5) { animation-delay: .3s; }
.hm-xl-sheet i:nth-child(6) { animation-delay: 1.2s; }
.hm-xl-sheet i:nth-child(7) { animation-delay: 3.1s; }
.hm-xl-sheet i:nth-child(8) { animation-delay: 1.6s; }
.hm-xl-sheet i:nth-child(9) { animation-delay: 2.2s; }
@keyframes nx-xl-flicker {
	0%, 100% { opacity: 1; }
	18% { opacity: 0.35; }
	38% { opacity: 0.9; }
	55% { opacity: 0.5; }
	75% { opacity: 1; }
}
.hm-xl-arrow { color: #9fbd07; font-size: 20px; flex: 0 0 auto; animation: nx-xl-nudge 2.6s ease-in-out infinite; }
@keyframes nx-xl-nudge {
	0%, 100% { transform: translateX(0); opacity: 0.75; }
	50% { transform: translateX(6px); opacity: 1; }
}
.hm-xl-app {
	flex: 1.15; position: relative;
	background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(159, 189, 7, 0.45); border-radius: 12px;
	padding: 14px; display: flex; flex-direction: column; gap: 9px;
	box-shadow: 0 0 24px rgba(159, 189, 7, 0.12);
}
.hm-xl-app span { height: 9px; border-radius: 5px; background: rgba(255, 255, 255, 0.30); animation: nx-row-shimmer 4.2s ease-in-out infinite; }
.hm-xl-app span:nth-child(2) { animation-delay: .8s; }
.hm-xl-app span:nth-child(3) { animation-delay: 1.6s; }
.hm-xl-app b {
	position: absolute; top: -10px; right: -10px; width: 26px; height: 26px; border-radius: 50%;
	background: #9fbd07; color: #0c1a36; font-size: 11px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	animation: nx-badge-pulse 4s ease-in-out infinite;
}

/* legacy: oud haperend venster → refresh → fris venster */
.hm-lgc { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.hm-lgc-old, .hm-lgc-new { flex: 1; border-radius: 12px; padding: 13px; display: flex; flex-direction: column; gap: 8px; }
.hm-lgc-old { background: rgba(255, 255, 255, 0.05); border: 1px dashed rgba(255, 255, 255, 0.25); transform: rotate(-2deg); animation: nx-lgc-flicker 5s steps(2, end) infinite; }
.hm-lgc-old span { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.16); }
.hm-lgc-bar { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, 0.22); width: 55%; margin-bottom: 2px; }
@keyframes nx-lgc-flicker {
	0%, 100% { opacity: 0.65; }
	12% { opacity: 0.38; }
	14% { opacity: 0.65; }
	48% { opacity: 0.52; }
	50% { opacity: 0.65; }
	80% { opacity: 0.42; }
	82% { opacity: 0.65; }
}
.hm-lgc-swap {
	flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid rgba(159, 189, 7, 0.5); background: rgba(159, 189, 7, 0.12);
	color: #9fbd07; font-size: 15px; display: flex; align-items: center; justify-content: center;
}
.hm-lgc-swap i { animation: nx-lgc-spin 6s linear infinite; }
@keyframes nx-lgc-spin { to { transform: rotate(360deg); } }
.hm-lgc-new {
	background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(159, 189, 7, 0.5);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 22px rgba(159, 189, 7, 0.10);
	animation: nx-card-float 5.5s ease-in-out infinite;
}
.hm-lgc-new span { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.34); }
.hm-lgc-bar--lime { background: rgba(159, 189, 7, 0.8); }
.hm-lgc-new b { width: 54px; height: 16px; border-radius: 999px; background: rgba(159, 189, 7, 0.9); margin-top: 2px; animation: nx-badge-pulse 4.5s ease-in-out infinite; }

/* webapp: de interface bouwt zichzelf op en herhaalt */
.hm-web { border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 12px; padding: 13px; background: rgba(255, 255, 255, 0.04); margin-top: 4px; }
.hm-web-nav { display: block; height: 14px; border-radius: 7px; background: rgba(255, 255, 255, 0.25); margin-bottom: 12px; animation: nx-web-nav 9s cubic-bezier(0.2, 0.7, 0.2, 1) infinite; }
.hm-web-cols { display: flex; gap: 12px; }
.hm-web-side { width: 34px; border-radius: 8px; background: rgba(255, 255, 255, 0.14); align-self: stretch; animation: nx-web-side 9s cubic-bezier(0.2, 0.7, 0.2, 1) infinite; }
.hm-web-main { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.hm-web-main span { height: 9px; border-radius: 5px; background: rgba(255, 255, 255, 0.20); animation: nx-web-row 9s ease infinite; }
.hm-web-main span:nth-child(2) { animation-delay: .3s; }
.hm-web-main span:nth-child(3) { animation-delay: .6s; }
.hm-web-main b { width: 74px; height: 18px; border-radius: 999px; background: rgba(159, 189, 7, 0.9); margin-top: 2px; animation: nx-web-btn 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
@keyframes nx-web-nav {
	0% { transform: translateY(-24px); opacity: 0; }
	6%, 88% { transform: none; opacity: 1; }
	96%, 100% { transform: none; opacity: 0; }
}
@keyframes nx-web-side {
	0%, 6% { transform: translateX(-24px); opacity: 0; }
	13%, 88% { transform: none; opacity: 1; }
	96%, 100% { transform: none; opacity: 0; }
}
@keyframes nx-web-row {
	0%, 13% { transform: translateY(10px); opacity: 0; }
	21%, 88% { transform: none; opacity: 1; }
	96%, 100% { transform: none; opacity: 0; }
}
@keyframes nx-web-btn {
	0%, 26% { transform: scale(0); opacity: 0; }
	34%, 88% { transform: scale(1); opacity: 1; }
	96%, 100% { transform: scale(1); opacity: 0; }
}

/* saas: één codebase-fundering, pulsen rollen omhoog naar de tenant-venstertjes */
.hm-saas-apps { display: flex; gap: 10px; }
.hm-saas-app {
	flex: 1; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 10px;
	padding: 10px; display: flex; flex-direction: column; gap: 6px;
	animation: nx-saas-glow 6s ease-in-out infinite;
}
.hm-saas-app:nth-child(2) { animation-delay: .5s; }
.hm-saas-app:nth-child(3) { animation-delay: 1s; }
.hm-saas-app i { display: block; height: 8px; width: 40%; border-radius: 4px; background: rgba(159, 189, 7, 0.65); }
.hm-saas-app span { display: block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.20); }
@keyframes nx-saas-glow {
	0%, 8% { border-color: rgba(255, 255, 255, 0.16); box-shadow: none; transform: translateY(0); }
	16% { border-color: rgba(159, 189, 7, 0.6); box-shadow: 0 0 18px rgba(159, 189, 7, 0.18); transform: translateY(-3px); }
	30%, 100% { border-color: rgba(255, 255, 255, 0.16); box-shadow: none; transform: translateY(0); }
}
.hm-saas-links { display: flex; justify-content: space-around; padding: 0 13%; }
.hm-saas-links b { position: relative; width: 2px; height: 20px; background: linear-gradient(to top, rgba(159, 189, 7, 0.65), rgba(255, 255, 255, 0.10)); }
.hm-saas-links b::after {
	content: ""; position: absolute; left: -3px; bottom: 0; width: 8px; height: 8px; border-radius: 50%;
	background: #9fbd07; box-shadow: 0 0 8px rgba(159, 189, 7, 0.8); opacity: 0;
	animation: nx-saas-up 6s ease-in infinite;
}
.hm-saas-links b:nth-child(2)::after { animation-delay: .5s; }
.hm-saas-links b:nth-child(3)::after { animation-delay: 1s; }
@keyframes nx-saas-up {
	0% { bottom: -2px; opacity: 0; }
	4% { opacity: 1; }
	13% { bottom: 16px; opacity: 0; }
	100% { bottom: 16px; opacity: 0; }
}
.hm-saas-base {
	display: flex; align-items: center; gap: 10px;
	background: rgba(159, 189, 7, 0.16); border: 1px solid rgba(159, 189, 7, 0.5); border-radius: 10px;
	padding: 11px 14px; color: #d9ef6a;
	animation: nx-saas-base 6s ease-in-out infinite;
}
.hm-saas-base i { font-size: 14px; }
.hm-saas-base span { font-size: 12px; font-family: 'Archivo', sans-serif; color: rgba(255, 255, 255, 0.82); }
@keyframes nx-saas-base {
	0%, 100% { box-shadow: 0 0 0 0 rgba(159, 189, 7, 0); }
	4% { box-shadow: 0 0 22px 2px rgba(159, 189, 7, 0.25); }
	14% { box-shadow: 0 0 0 0 rgba(159, 189, 7, 0); }
}

/* flow: een order reist door het proces, elke stap licht op */
.hm-flow { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.hm-flow-node {
	width: 48px; height: 48px; border-radius: 12px; flex: 0 0 auto;
	background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.85); font-size: 17px;
	display: flex; align-items: center; justify-content: center;
	animation: nx-flow-node 6s ease-in-out infinite;
}
.hm-flow-node:nth-child(3) { animation-delay: 2s; }
.hm-flow-node:nth-child(5) { animation-delay: 4s; }
@keyframes nx-flow-node {
	0%, 8% { border-color: rgba(159, 189, 7, 0.7); background: rgba(159, 189, 7, 0.22); box-shadow: 0 0 16px rgba(159, 189, 7, 0.25); }
	18%, 100% { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.10); box-shadow: none; }
}
.hm-flow-line { position: relative; flex: 1; height: 2px; background: rgba(255, 255, 255, 0.22); }
.hm-flow-line b {
	position: absolute; top: 50%; margin-top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%;
	background: #9fbd07; box-shadow: 0 0 10px rgba(159, 189, 7, 0.8); opacity: 0;
	animation: nx-flow-pkt 6s ease-in-out infinite;
}
.hm-flow-pkt2 { animation-delay: 2s !important; }
@keyframes nx-flow-pkt {
	0% { left: 0; opacity: 0; }
	8% { left: 0; opacity: 1; }
	30% { left: calc(100% - 8px); opacity: 1; }
	34% { left: calc(100% - 8px); opacity: 0; }
	100% { left: calc(100% - 8px); opacity: 0; }
}
.hm-flow-rows { margin-top: 20px; margin-bottom: 0 !important; }

/* werkwijze: de checklist vinkt zichzelf af */
.hm-stp { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.hm-stp-row { display: flex; align-items: center; gap: 12px; }
.hm-stp-row b {
	width: 22px; height: 22px; border-radius: 7px; flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.06);
	color: #0c1a36; font-size: 10px;
	display: flex; align-items: center; justify-content: center;
	animation: nx-stp-check 8s ease infinite;
}
.hm-stp-row b i { opacity: 0; animation: nx-stp-tick 8s ease infinite; }
.hm-stp-row span { height: 9px; border-radius: 5px; background: rgba(255, 255, 255, 0.18); animation: nx-stp-line 8s ease infinite; }
.hm-stp-row:nth-child(2) b, .hm-stp-row:nth-child(2) b i, .hm-stp-row:nth-child(2) span { animation-delay: 1.3s; }
.hm-stp-row:nth-child(3) b, .hm-stp-row:nth-child(3) b i, .hm-stp-row:nth-child(3) span { animation-delay: 2.6s; }
.hm-stp-row:nth-child(4) b, .hm-stp-row:nth-child(4) b i, .hm-stp-row:nth-child(4) span { animation-delay: 3.9s; }
@keyframes nx-stp-check {
	0%, 5% { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3); }
	10%, 84% { background: #9fbd07; border-color: #9fbd07; }
	92%, 100% { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3); }
}
@keyframes nx-stp-tick {
	0%, 5% { opacity: 0; transform: scale(0.4); }
	10%, 84% { opacity: 1; transform: scale(1); }
	92%, 100% { opacity: 0; transform: scale(0.4); }
}
@keyframes nx-stp-line {
	0%, 5% { background: rgba(255, 255, 255, 0.18); }
	10%, 84% { background: rgba(255, 255, 255, 0.36); }
	92%, 100% { background: rgba(255, 255, 255, 0.18); }
}

/* regio: kaart met droppende pin en radarringen */
.hm-map {
	position: relative; height: 152px; border-radius: 12px; overflow: hidden; margin-top: 4px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.2px, transparent 1.3px);
	background-size: 18px 18px;
}
.hm-map-pin {
	position: absolute; left: 44%; top: 26%; color: #9fbd07; font-size: 28px; line-height: 1;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
	animation: nx-map-drop 6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
@keyframes nx-map-drop {
	0% { transform: translateY(-30px); opacity: 0; }
	8% { transform: translateY(0); opacity: 1; }
	88% { transform: translateY(0); opacity: 1; }
	98%, 100% { transform: translateY(0); opacity: 0; }
}
.hm-map-ring {
	position: absolute; left: calc(44% + 5px); top: calc(26% + 26px); width: 12px; height: 12px;
	border-radius: 50%; border: 2px solid rgba(159, 189, 7, 0.7); opacity: 0;
	animation: nx-map-ring 3s ease-out infinite .6s;
}
.hm-map-ring--2 { animation-delay: 2.1s; }
@keyframes nx-map-ring {
	0% { transform: scale(0.4); opacity: 0.9; }
	100% { transform: scale(5); opacity: 0; }
}
.hm-map-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); animation: nx-row-shimmer 4s ease-in-out infinite; }
.hm-map-dot:nth-of-type(2) { animation-delay: 1.3s; }
.hm-map-dot:nth-of-type(3) { animation-delay: 2.6s; }

/* portaal: topbar met avatar en notificatie-ping */
.hm-portal-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hm-avatar {
	width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
	background: rgba(159, 189, 7, 0.85); color: #0c1a36; font-size: 12px;
	display: flex; align-items: center; justify-content: center;
}
.hm-portal-top > span { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.16); width: 38%; }
.hm-bell { position: relative; margin-left: auto; color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.hm-bell u { position: absolute; top: -3px; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: #9fbd07; animation: nx-ping 2.6s ease-out infinite; }

/* mini-visuals (Lees ook, licht thema): mini-scènes per paginatype */
.nx-mini { height: 72px; }
/* verbinding: node — lijn — node (api, flow, excel, legacy) */
.nxm-link { display: flex; align-items: center; gap: 9px; width: 100%; max-width: 230px; }
.nxm-node {
	width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
	background: rgba(34, 89, 183, 0.10); border: 1px solid rgba(34, 89, 183, 0.18);
	color: #2259b7; font-size: 12px;
	display: flex; align-items: center; justify-content: center;
}
.nxm-node--lime { background: rgba(159, 189, 7, 0.18); border-color: rgba(159, 189, 7, 0.55); color: #6f8404; }
.nxm-wire { position: relative; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, rgba(12, 26, 54, 0.22) 0 5px, transparent 5px 10px); }
.nxm-wire--line { background: rgba(12, 26, 54, 0.14); }
.nxm-wire u {
	position: absolute; top: 50%; left: 0; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%;
	background: #9fbd07; box-shadow: 0 0 6px rgba(159, 189, 7, 0.7); opacity: 0;
	animation: nx-api-go 3.4s linear infinite;
}
.nxm-wire u.nxm-u2 { animation-delay: 1.7s; }
/* spreadsheet-grid en app-kaartjes (excel, legacy) */
.nxm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; flex: 1; }
.nxm-grid u { height: 12px; border-radius: 3px; background: rgba(12, 26, 54, 0.10); border: 1px solid rgba(12, 26, 54, 0.07); }
.nxm-arr { flex: 0 0 auto; color: var(--syt-accent); font-size: 15px; }
.nxm-app {
	flex: 1.1; display: flex; flex-direction: column; gap: 5px;
	background: #fff; border: 1px solid rgba(159, 189, 7, 0.55); border-radius: 9px; padding: 8px;
	box-shadow: 0 4px 14px rgba(159, 189, 7, 0.16);
}
.nxm-app em { height: 6px; border-radius: 3px; background: rgba(12, 26, 54, 0.14); }
.nxm-app--old { background: transparent; border: 1px dashed rgba(12, 26, 54, 0.22); box-shadow: none; opacity: 0.6; transform: rotate(-2deg); }
/* dashboard: spark over balken */
.nxm-chart { position: relative; max-width: 190px; width: 100%; }
.nxm-chart svg { position: absolute; left: 0; right: 0; top: -6px; width: 100%; height: calc(100% - 4px); pointer-events: none; overflow: visible; filter: drop-shadow(0 1px 3px rgba(159, 189, 7, 0.4)); }
/* factuur: eerste regel verwerkt (lime) */
.nx-mini .nxm-paid { background: rgba(159, 189, 7, 0.75) !important; }
/* configurator: mini-slider onder de kubus */
.nx-mini .nxm-slider { position: relative; width: 110px; height: 4px; border-radius: 2px; background: rgba(12, 26, 54, 0.12); margin-top: 9px; }
.nx-mini .nxm-slider i { position: absolute; top: 50%; left: 58%; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; background: var(--syt-accent); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); }
/* portaal: topbar met avatar + ping */
.nxm-bar { display: flex; align-items: center; gap: 8px; max-width: 200px; width: 100%; margin-bottom: 9px; }
.nxm-ava { width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto; background: var(--syt-accent); color: #fff; font-size: 8px; display: flex; align-items: center; justify-content: center; }
.nxm-bar > span { flex: 1; height: 6px; border-radius: 3px; background: rgba(12, 26, 54, 0.10); max-width: 45%; }
.nxm-ping { width: 8px; height: 8px; border-radius: 50%; background: #9fbd07; margin-left: auto; animation: nx-ping 2.6s ease-out infinite; }
/* artikel: typende regel met caret */
.nx-mini .nxm-type { position: relative; background: rgba(12, 26, 54, 0.16) !important; overflow: visible; }
.nx-mini .nxm-type::after { content: ""; position: absolute; right: -6px; top: -2px; width: 2px; height: 12px; background: #9fbd07; animation: nx-caret 1s steps(1) infinite; }
/* webapp: mini-browservenster */
.nxm-web { border: 1px solid rgba(12, 26, 54, 0.12); border-radius: 9px; padding: 8px; max-width: 200px; width: 100%; background: #fff; box-shadow: 0 3px 10px rgba(12, 26, 54, 0.06); }
.nxm-web-nav { display: block; height: 8px; border-radius: 4px; background: rgba(34, 89, 183, 0.16); margin-bottom: 7px; }
.nxm-web-cols { display: flex; gap: 7px; }
.nxm-web-side { width: 18px; border-radius: 5px; background: rgba(12, 26, 54, 0.10); align-self: stretch; }
.nxm-web-main { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.nxm-web-main em { height: 6px; border-radius: 3px; background: rgba(12, 26, 54, 0.12); }
/* saas: tenants boven lime fundering */
.nxm-saas { display: flex; flex-direction: column; gap: 6px; max-width: 200px; width: 100%; }
.nxm-saas-row { display: flex; gap: 6px; }
.nxm-saas-row b { flex: 1; height: 22px; border-radius: 6px; background: rgba(34, 89, 183, 0.10); border: 1px solid rgba(34, 89, 183, 0.14); }
.nxm-saas-row b.nxm-saas-lime { background: rgba(159, 189, 7, 0.22); border-color: rgba(159, 189, 7, 0.5); }
.nxm-base { height: 18px; border-radius: 6px; background: rgba(159, 189, 7, 0.6); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 9px; }
/* werkwijze: checklist met open laatste stap */
.nx-mini-stp { display: flex; align-items: center; gap: 8px; max-width: 200px; }
.nx-mini-stp b { width: 15px; height: 15px; border-radius: 5px; background: var(--syt-accent); color: #fff; font-size: 8px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.nx-mini-stp b.nxm-open { background: transparent; border: 1px solid rgba(12, 26, 54, 0.25); }
.nx-mini-stp span { height: 7px; border-radius: 4px; background: rgba(12, 26, 54, 0.10); }
/* regio: kaartje met pin en ring */
.nx-mini-map { position: relative; width: 96px; height: 60px; border-radius: 9px; background-image: radial-gradient(rgba(12, 26, 54, 0.2) 1px, transparent 1.1px); background-size: 12px 12px; border: 1px solid rgba(12, 26, 54, 0.12); display: flex; align-items: center; justify-content: center; color: var(--syt-accent); font-size: 18px; }
.nxm-ring { position: absolute; left: 50%; top: 58%; width: 10px; height: 10px; margin: -5px; border-radius: 50%; border: 2px solid rgba(159, 189, 7, 0.7); opacity: 0; animation: nx-map-ring 3s ease-out infinite .4s; }
/* systeem: actief menu-item */
.nx-mini .hm-side i.nxm-active { background: rgba(159, 189, 7, 0.7); }

@media (prefers-reduced-motion: reduce) {
	.hero-mock .hm-bars i, .hero-mock .hm-total b, .hero-mock .hm-cards b, .hero-mock .hm-btnrow b,
	.hero-mock .hero-mock__rows span, .hero-mock .hm-quote, .hero-mock .hm-side i, .hero-mock .hm-main span,
	.hero-mock .hm-doc em, .hero-mock .hm-art .hm-type, .hero-mock .hm-art .hm-type::after,
	.hm-spark polyline, .hm-api-dot, .hm-api-status b, .hm-xl-sheet i, .hm-xl-arrow, .hm-xl-app span, .hm-xl-app b,
	.hm-lgc-old, .hm-lgc-swap i, .hm-lgc-new, .hm-lgc-new b,
	.hm-web-nav, .hm-web-side, .hm-web-main span, .hm-web-main b,
	.hm-saas-app, .hm-saas-links b::after, .hm-saas-base,
	.hm-flow-node, .hm-flow-line b, .hm-stp-row b, .hm-stp-row b i, .hm-stp-row span,
	.hm-map-pin, .hm-map-ring, .hm-map-dot, .hm-bell u,
	.nxm-wire u, .nxm-ping, .nx-mini .nxm-type::after, .nxm-ring { animation: none; }
	.nxm-wire u { opacity: 1; left: 45%; }
	.hm-spark polyline { stroke-dashoffset: 0; }
	.hm-flow-line b, .hm-saas-links b::after { opacity: 1; }
	.hero-mock .hm-art .hm-type { width: 62%; }
	.hm-stp-row b { background: #9fbd07; border-color: #9fbd07; }
	.hm-stp-row b i { opacity: 1; }
}

/* klantlogo bovenin de homepage-casekaarten */
.nx-case-logo { height: 44px; display: flex; align-items: center; margin-bottom: 16px; }
.nx-case-logo img { max-height: 38px; max-width: 60%; }

/* formulier: honeypot + statusmeldingen */
.nx-honing { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.nx-form-status { border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; font-weight: 600; }
.nx-status-ok { background: rgba(159, 189, 7, 0.14); border: 1px solid rgba(159, 189, 7, 0.5); color: #5a6c04; }
.nx-status-fout { background: rgba(220, 60, 60, 0.08); border: 1px solid rgba(220, 60, 60, 0.35); color: #a33; }
