@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.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% {
    -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% {
    -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 hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==== Google font ==== */
/*@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');*/

body {
	width: 100%;
	height: 100%;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif !important;
	color: #666;
	background-color: #fff;
}

html {
	width: 100%;
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 30px;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif;
	font-weight: 300;
}

p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {
	color: #28c3ab;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

a:hover, a:focus {
	text-decoration: none;
	color: #176e61;
}

.light {
	font-weight: 400;
}

address {
	margin-left: 0;
	padding: 0;
}

/* misc */
hr {
	margin-top: 10px;
}

/* margins */
.marginbot-0 {
	margin-bottom: 0 !important;
}
.marginbot-10 {
	margin-bottom: 10px !important;
}
.marginbot-20 {
	margin-bottom: 20px !important;
}
.marginbot-30 {
	margin-bottom: 30px !important;
}
.marginbot-40 {
	margin-bottom: 40px !important;
}
.marginbot-50 {
	margin-bottom: 50px !important;
}

/* ===========================
 --- General sections
 ============================ */

.home-section {
	padding-top: 70px;
	padding-bottom: 60px;
	display: block;
	position: relative;
	/*z-index: 120;*/
}

.section-heading h2 {
	font-size: 40px;
}
.section-heading i {
	margin-bottom: 20px;
}

/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #F8F8F8;
	border-top: 1px solid #e6e9ea;
	border-bottom: 1px solid #e6e9ea;
}

.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}

/* ============================
 --- Menu
 ============================= */

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'ecoicons';
	src: url("module/Application/assets/smartadmin/frontend/fonts/ecoicons/ecoicons.eot");
	src: url("module/Application/assets/smartadmin/frontend/fonts/ecoicons/ecoicons.eot?#iefix") format("embedded-opentype"), url("module/Application/assets/smartadmin/frontend/fonts/ecoicons/ecoicons.woff") format("woff"), url("module/Application/assets/smartadmin/frontend/fonts/ecoicons/ecoicons.ttf") format("truetype"), url("module/Application/assets/smartadmin/frontend/fonts/ecoicons/ecoicons.svg#ecoicons") format("svg");
}

.gn-menu-main, .gn-menu-main ul {
	margin: 0;
	padding: 0;
	background-color: #f3f3f3;
	background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
	background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
	background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
	background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
	background-repeat: repeat-x;
	border-bottom: 1px solid #B6B6B6;
	color: #303030;
	list-style: none;
	text-transform: none;
	font-weight: 300;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif;;
	line-height: 60px;
	z-index: 150;
}

.gn-menu-main ul.company-social {
	border-bottom: none;
	line-height: 59px;
}

.gn-menu-main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	font-size: 13px;
}

.gn-menu-main a {
	display: block;
	height: 100%;
	color: #303030;
	text-decoration: none;
	cursor: pointer;
}

.no-touch .gn-menu-main a:hover, .no-touch .gn-menu li.gn-search-item:hover, .no-touch .gn-menu li.gn-search-item:hover a {
	background: #303030;
	color: white;
}

.gn-menu-main > li {
	display: block;
	float: left;
	height: 100%;
	border-right: 1px solid #c6d0da;
	text-align: center;
}

/* icon-only trigger (menu item) */

.gn-menu-main li.gn-trigger {
	position: relative;
	width: 60px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.gn-menu-main > li:last-child {
	float: right;
	border-right: none;
}

.gn-menu-main > li > a {
	padding: 0 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
}

.gn-menu-main:after {
	display: table;
	clear: both;
	content: "";
}

.gn-menu-wrapper {
	position: fixed;
	top: 60px;
	bottom: 0;
	left: 0;
	overflow: hidden;
	width: 60px;
	border-top: 1px solid #c6d0da;
	background: #3a3633;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…BoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(left,#3a3633 93%,#2a2725 100%);
	background: -webkit-gradient(linear,left top,right top,color-stop(93%,#3a3633),color-stop(100%,#2a2725));
	background: -webkit-linear-gradient(left,#3a3633 93%,#2a2725 100%);
	background: -o-linear-gradient(left,#3a3633 93%,#2a2725 100%);
	background: -ms-linear-gradient(left,#3a3633 93%,#2a2725 100%);
	background: linear-gradient(to right,#3a3633 93%,#2a2725 100%);
	min-height: 100%;
	-webkit-transform: translateX(-60px);
	-moz-transform: translateX(-60px);
	transform: translateX(-60px);
	-webkit-transition: -webkit-transform 0.3s, width 0.3s;
	-moz-transition: -moz-transform 0.3s, width 0.3s;
	transition: transform 0.3s, width 0.3s;
}

.gn-scroller {
	position: absolute;
	overflow-y: scroll;
	width: 370px;
	height: 100%;
}

.gn-menu {
	border-bottom: 1px solid #c6d0da;
	text-align: left;
	font-size: 18px;
}

.gn-menu li:not(:first-child), .gn-menu li li {
	box-shadow: inset 0 1px #c6d0da
}

.gn-submenu li {
	overflow: hidden;
	height: 0;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.gn-submenu li a {
	color: #c1c9d1
}

input.gn-search {
	position: relative;
	z-index: 10;
	padding-left: 60px;
	outline: none;
	border: none;
	background: transparent;
	color: #303030;
	font-weight: 300;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif;;
	cursor: pointer;
}

/* placeholder */

.gn-search::-webkit-input-placeholder {
	color: #303030
}

.gn-search:-moz-placeholder {
	color: #303030
}

.gn-search::-moz-placeholder {
	color: #303030
}

.gn-search:-ms-input-placeholder {
	color: #303030
}

/* hide placeholder when active in Chrome */

.gn-search:focus::-webkit-input-placeholder, .no-touch .gn-menu li.gn-search-item:hover .gn-search:focus::-webkit-input-placeholder {
	color: transparent
}

input.gn-search:focus {
	cursor: text
}

.no-touch .gn-menu li.gn-search-item:hover input.gn-search {
	color: white
}

/* placeholder */

.no-touch .gn-menu li.gn-search-item:hover .gn-search::-webkit-input-placeholder {
	color: white
}

.no-touch .gn-menu li.gn-search-item:hover .gn-search:-moz-placeholder {
	color: white
}

.no-touch .gn-menu li.gn-search-item:hover .gn-search::-moz-placeholder {
	color: white
}

.no-touch .gn-menu li.gn-search-item:hover .gn-search:-ms-input-placeholder {
	color: white
}

.gn-menu-main a.gn-icon-search {
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
}

.gn-icon::before {
	display: inline-block;
	width: 60px;
	text-align: center;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'ecoicons';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

.gn-icon-help::before {
	content: "\e000"
}

.gn-icon-earth::before {
	content: "\e004"
}

.gn-icon-cog::before {
	content: "\e006"
}

.gn-icon-search::before {
	content: "\e005"
}

.gn-icon-download::before {
	content: "\e007"
}

.gn-icon-photoshop::before {
	content: "\e001"
}

.gn-icon-illustrator::before {
	content: "\e002"
}

.gn-icon-archive::before {
	content: "\e00d"
}

.gn-icon-article::before {
	content: "\e003"
}

.gn-icon-pictures::before {
	content: "\e008"
}

.gn-icon-videos::before {
	content: "\e009"
}

/* if an icon anchor has a span, hide the span */

.gn-icon span {
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}

.gn-icon-menu::before {
	margin-left: -15px;
	vertical-align: -2px;
	width: 30px;
	height: 3px;
	background: #505050;
	box-shadow: 0 3px transparent, 0 -6px #505050, 0 -9px white, 0 -12px #505050;
	content: '';
}

.no-touch .gn-icon-menu:hover::before, .no-touch .gn-icon-menu.gn-selected:hover::before {
	background: #505050;
	box-shadow: 0 3px transparent, 0 -6px #505050, 0 -9px white, 0 -12px #505050;
}

.gn-icon-menu.gn-selected::before {
	background: #505050;
	box-shadow: 0 3px transparent, 0 -6px #505050, 0 -9px white, 0 -12px #505050;
}

/* styles for opening menu */

.gn-menu-wrapper.gn-open-all, .gn-menu-wrapper.gn-open-part {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

.gn-menu-wrapper.gn-open-all {
	width: 340px
}

.gn-menu-wrapper.gn-open-all .gn-submenu li {
	height: 60px
}

@media screen and (max-width: 422px) {
	.gn-menu-wrapper.gn-open-all {
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		transform: translateX(0px);
		width: 100%;
	}

	.gn-menu-wrapper.gn-open-all .gn-scroller {
		width: 130%
	}
}

/* ===========================
 --- Intro
 ============================ */

.intro {
	width: 100%;
	position: relative;
}

#intro {
	background-image: url(module/Application/assets/smartadmin/frontend/img/img-bg.jpg);
	background-size: cover;
}

.intro .slogan {
	padding: 250px 0 60px;
	text-align: center;
}
.intro .slogan h1 {
	color: #fff;
	line-height: 1.1em;
	margin-bottom: 20px;
	font-size: 40px;
}
.intro .slogan p {
	color: #eee;
	margin-bottom: 50px;
	font-size: 20px;
}

.brand-heading {
	font-size: 40px;
}

.intro-text {
	font-size: 18px;
}

/* slider */

.tp-caption.custom_large_white {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption a.btn {
	color: #fff;
}

/* ===========================
 --- About
 ============================ */

.boxed-grey {
	background: #eee;
	padding: 20px;
}

.bg-gray .boxed-grey {
	background: #fff;
}

.team h5 {
	margin-bottom: 10px;
}

.team p.subtitle {
	margin-bottom: 10px;
}

.avatar {
	margin-bottom: 20px;
}

.team-social {
	margin-left: 0;
	padding-left: 0;
}

.team-social {
	text-align: center;
}

.team-social li {
	display: inline-block;
	margin: 0 !important;
	padding: 0;
}

.team-social a {
	margin: 0;
	padding: 0;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #3bbec0;
	color: #fff;
	-webkit-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}
.team-social a i {
	text-align: center;
	margin: 0;
	padding: 0;
}
.team-social .social-facebook a {
	background: #3873ae;
}
.team-social .social-twitter a {
	background: #62c6f8;
}
.team-social .social-dribble a {
	background: #d74980;
}
.team-social .social-deviantart a {
	background: #8da356;
}
.team-social .social-google a {
	background: #000;
}
.team-social .social-vimeo a {
	background: #51a6d3;
}
.team-social .social-facebook a:hover {
	background: #4893ce;
}
.team-social .social-twitter a:hover {
	background: #82e6ff;
}
.team-social .social-dribble a:hover {
	background: #f769a0;
}
.team-social .social-deviantart a:hover {
	background: #adc376;
}
.team-social .social-google a:hover {
	background: #333;
}
.team-social .social-vimeo a:hover {
	background: #71c6f3;
}

/* ===========================
 --- Services
 ============================ */

.service-icon {
	margin-bottom: 20px;
}

/* ===========================
 --- Works
 ============================ */

.gallery-item > div {
	margin-bottom: 30px;
}

/* ===========================
 --- Contact
 ============================ */

form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}
form#contact-form input, form#contact-form select, form#contact-form textarea,
form#subscribe-form input, form#subscribe-form select, form#subscribe-form textarea {
	border-radius: 0;
	border: 1px solid #eee;
	-webkit-box-shadow: none;
	box-shadow: none;
}

form#contact-form input:focus, form#contact-form select:focus, form#contact-form textarea:focus {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.input-group-addon {
	background-color: #fefefe;
	border: 1px solid #eee;
	border-radius: 0;
}

.widget-contact {
	text-align: left;
	margin-top: 30px;
}

.company-social {
	margin-left: 0;
	padding-left: 0;
	margin-top: 10px;
}

.company-social {
	text-align: left;
}

.company-social li {
	display: inline-block;
	margin: 0 !important;
	padding: 0;
}

.company-social a {
	margin: 0;
	padding: 0;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #3bbec0;
	color: #fff;
	-webkit-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}
.company-social a i {
	text-align: center;
	margin: 0;
	padding: 0;
}
.company-social .social-facebook a {
	background: #3873ae;
}
.company-social .social-twitter a {
	background: #62c6f8;
}
.company-social .social-dribble a {
	background: #d74980;
}
.company-social .social-deviantart a {
	background: #8da356;
}
.company-social .social-google a {
	background: #000;
}
.company-social .social-vimeo a {
	background: #51a6d3;
}
.company-social .social-slack a {
	background: #e22563;
}
.company-social .social-facebook a:hover {
	background: #4893ce;
}
.company-social .social-twitter a:hover {
	background: #82e6ff;
}
.company-social .social-dribble a:hover {
	background: #f769a0;
}
.company-social .social-deviantart a:hover {
	background: #adc376;
}
.company-social .social-google a:hover {
	background: #333;
}
.company-social .social-vimeo a:hover {
	background: #71c6f3;
}
.company-social .social-slack a:hover {
	background: #f74c84;
}

/* ===========================
 --- bottom-content
 ============================ */

.bottom-content {
	padding: 50px 0;
	color: #333;
	font-weight: 300;
	border: none;
	background: url('module/Application/assets/smartadmin/frontend/img/back-img1.png') center center, #ECECEC;
	overflow: hidden;
	margin-bottom: -1px;
}
.bottom-content p {
	font-size: 16px;
	line-height: 30px;
}
.bottom-content h2 {
	font-size: 36px;
	margin-bottom:15px;
	font-weight: 300;
}
.bottom-content .purchase {
	margin-top: 15px;
	border: none;
	text-transform: uppercase;
	padding: 10px 18px;
}

/* ===========================
 --- Footer
 ============================ */

footer {
	background-color: #474544;
	margin-top: 1px;
}
.top-footer {
	padding: 19px 0;
	border-bottom: 1px solid #293136;
}
.footer-content {
	border-top: 1px solid #3a464d;
	padding: 70px 8px 60px 0px;
}
.footer-content a.footer-logo {
	color: #FF5454;
	font-size: 25px;
	text-decoration: none;
	font-weight: 300;
	line-height: 52px;
}
.footer-content a.footer-logo strong {
	color: #d5e9f8;
}
.footer-content a.footer-logo img {
	padding-right: 12px;
}
.footer-content p {
	color: #c2c2c2;
	font-size: 13px;
	line-height: 20px;
	margin: 11px 0 10px 3px;
}
.footer-content a.learn-more {
	color: #FF5454;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: underline;
	margin-left: 3px;
}
.footer-content h3 {
	font-size: 14px;
	color: #B9B9B9;
	line-height: 46px;
	font-weight: 700;
	padding-left: 2px;
	margin-bottom: 12px;
}
.footer-content .recent-post {
	margin: 0 2px 20px 2px;
	cursor: pointer;
	position: relative;
	min-height: 54px;
}
.recent-post .footer-thumb-img {
	width: 54px;
	height: 54px;
	background-color: #ddd;
	position: absolute;
	top: 0;
	left: 0
}
.recent-post .footer-thumb-img span.footer-overlay-img {
	background: no-repeat;
	display: block;
	width: 54px;
	height: 54px;
	opacity: 0;
}
.recent-post p {
	margin: 0;
	line-height: 18px;
	padding-left: 65px;
}
.recent-post p span.date {
	color: #FF5454;
	font-size: 12px;
	display: block;
}
.recent-post:hover .footer-thumb-img span.footer-overlay-img {
	opacity: 1;
}
.recent-post:hover p {
	color: #feffff;
}
.footer-tags ul {
	padding: 0;
	list-style: none;
}
.footer-tags ul li {
	display: inline-block;
	background-color: #A32323;
	margin-bottom: 4px;
	margin-left: 2px;
}
.footer-tags ul li a {
	color: #E9E3DA;
	font-size: 14px;
	text-decoration: none;
	padding: 5px 12px 6px 13px;
	display: block;
}
.flicker-widget a {
	width: 80px;
	height: 80px;
	background-color: #DDD;
	display: inline-block;
	margin-right: 2px;
}
.bottom-footer {
	background-color: #292827;
	padding: 0;
}
.bottom-footer p {
	color: #C0C0C0;
	font-size: 13px;
	padding: 10px 0;
}
.footer-nav {
	padding: 10px 0;
}
.bottom-footer ul {
	list-style: none;
}
.bottom-footer ul li {
	display: inline-block;
	margin-left: 3px;
}
.bottom-footer ul li a {
	font-size: 13px;
	color: #C0C0C0;
	text-decoration: none;
	padding-left: 30px;
}
.bottom-footer ul li:first-child a {
	padding-left: 0;
}
.bottom-footer ul li.active a {
	color: #C0C0C0;
	font-weight:bold;
}
.footer-content a.footer-logo img {
	display: inline-block;
}

/* ===========================
 --- Elements
 ============================ */

.btn {
	border-radius: 0;
	text-transform: uppercase;
	font-family: "Open Sans", Arial, Helvetica, Sans-Serif;
	font-weight: 400;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn-circle {
	width: 70px;
	height: 70px;
	margin-top: 15px;
	padding: 7px 16px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 40px;
	color: #fff;
	background: 0 0;
	-webkit-transition: background .3s ease-in-out;
	-moz-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
	border: 2px solid #666;
	color: #666;
}

.btn-circle:hover, .btn-circle:focus {
	outline: 0;
	color: #fff;
	background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover, .btn-circle.btn-dark :focus {
	outline: 0;
	color: #999;
	background: #fff;
}

.btn-circle.btn-dark :hover i, .btn-circle.btn-dark :focus i {
	color: #999;
}

.page-scroll .btn-circle i.animated {
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 1s;
	-moz-transition-property: -moz-transform;
	-moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
}

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

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

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

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

50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}

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

#text {
	color: #fff;
	background: #ffcc00;
}

#map {
	height: 500px;
}

.btn-skin:hover, .btn-skin:focus, .btn-skin:active, .btn-skin.active {
	color: #fff;
	background-color: #666;
	border-color: #666;
}


.btn-huge {
	padding: 25px;
	font-size: 26px;
}

.banner-social-buttons {
	margin-top: 0;
}

/* Media queries */

@media (min-width: 767px) {

	.intro {
		height: 100%;
		padding: 0;
	}

	.brand-heading {
		font-size: 100px;
	}

	.intro-text {
		font-size: 25px;
	}

}
@media (max-width: 768px) {

	.team.boxed-grey {
		margin-bottom: 30px;
	}

	.boxed-grey {
		margin-bottom: 30px;
	}
	.intro .slogan {
		padding: 100px 0 60px;
	}

}

@media (max-width: 480px) {

	.intro .slogan {
		padding: 170px 0 60px;
	}

}

/*

PRICING TABLES

*/

/*
 * CSS TABLES
 */



.the-price {
	background-color: rgba(220,220,220,.17);
	box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #fff;
	padding: 20px;
	margin: 0;
}

.the-price h1 {
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.subscript {
	font-size: 21px;
	color:#999;
}


/*
 * RIBBON
 */

.ribbon {
	position: absolute;
	right: 9px;
	top: -4px;
}


/*
 * Price BIG
 */

.pricing-big {
	border-radius: 7px;
	border-color: rgba(153, 153, 153, 0.4) !important;
}

.pricing-big .panel-heading {
	border-radius: 5px 5px 0 0;
	border-color: rgba(153, 153, 153, 0.4) !important;
}

.pricing-big .panel-title {
	text-transform: capitalize;
	font-size: 18px;
	padding: 20px 0;
	text-align: center;
	border-radius: 5px 5px 0 0;
	margin:0;
	font-weight:bold;
}

.pricing-big .the-price {
	padding: 20px 0;
	background: #333;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
	box-shadow:none !important;
	-moz-box-shadow:none !important;
}

.pricing-big .subscript {
	font-size: 18px;
	color: #999;
	margin-left: 5px;
}

.price-features {
	background: #FAFAFA;
	padding: 20px 15px;
	min-height: 230px;
	font-size:13.5px;
}


.price-features li + li {
	margin-top: 10px;
}

.pricing-big .panel-footer {
	border-radius: 0 0 5px 5px;
}

.pricing-big .panel-footer .btn {
	padding: 15px 0;
	border-radius:3px;
	font-weight:bold;
	font-size:14px;
}

.pricing-big .panel-footer .btn span {
	font-weight:normal;
	font-style:italic;
}

.pricing-big .panel-footer {
	background-color:#F2F2F2 !important;
}


.pricing-big .panel-footer > div {
	padding:15px 0 10px;
	display:block;
	font-size:13px;
}

.pricing-big table {
	background: #FAFAFA;
	padding: 20px 15px;
	height: 230px;
	text-align:left;
}

/* QUOTES */

/*-------------------------------*/
/*      Code snippet by          */
/*      @maridlcrmn              */
/*-------------------------------*/


section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.quote {
    color: rgba(0,0,0,.1);
    text-align: center;
    margin-bottom: 30px;
}

/*-------------------------------*/
/*    Carousel Fade Transition   */
/*-------------------------------*/

#fade-quote-carousel.carousel {
  padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
  opacity: 1;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
  bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li {
  background-color: #e84a64;
  border: none;
}
#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
}
#fade-quote-carousel .profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 100px;
}

/* TIMELINE */




.img-rounded
{
	border-radius: 3px;
}
.img-thumbnail
{
	background-color: #fff;
	border: 1px solid #ededf0;
	border-radius: 3px;
	display: inline-block;
	height: auto;
	line-height: 1.428571429;
	max-width: 100%;
	moz-transition: all .2s ease-in-out;
	o-transition: all .2s ease-in-out;
	padding: 2px;
	transition: all .2s ease-in-out;
	webkit-transition: all .2s ease-in-out;
}
.img-circle
{
	border-radius: 50%;
}
.timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

    .timeline-centered:before, .timeline-centered:after {
        content: " ";
        display: table;
    }

    .timeline-centered:after {
        clear: both;
    }

    .timeline-centered:before, .timeline-centered:after {
        content: " ";
        display: table;
    }

    .timeline-centered:after {
        clear: both;
    }

    .timeline-centered:before {
        content: '';
        position: absolute;
        display: block;
        width: 4px;
        background: #f5f5f6;
        left: 50%;
        top: 20px;
        bottom: 20px;
        margin-left: -4px;
    }

    .timeline-centered .timeline-entry {
        position: relative;
        width: 50%;
        float: right;
        margin-bottom: 70px;
        clear: both;
    }

        .timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
            content: " ";
            display: table;
        }

        .timeline-centered .timeline-entry:after {
            clear: both;
        }

        .timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
            content: " ";
            display: table;
        }

        .timeline-centered .timeline-entry:after {
            clear: both;
        }

        .timeline-centered .timeline-entry.begin {
            margin-bottom: 0;
        }

        .timeline-centered .timeline-entry.left-aligned {
            float: left;
        }

            .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
                margin-left: 0;
                margin-right: -18px;
            }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
                    left: auto;
                    right: -100px;
                    text-align: left;
                }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
                    float: right;
                }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
                    margin-left: 0;
                    margin-right: 70px;
                }

                    .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
                        left: auto;
                        right: 0;
                        margin-left: 0;
                        margin-right: -9px;
                        -moz-transform: rotate(180deg);
                        -o-transform: rotate(180deg);
                        -webkit-transform: rotate(180deg);
                        -ms-transform: rotate(180deg);
                        transform: rotate(180deg);
                    }

        .timeline-centered .timeline-entry .timeline-entry-inner {
            position: relative;
            margin-left: -22px;
        }

            .timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
                content: " ";
                display: table;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:after {
                clear: both;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
                content: " ";
                display: table;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:after {
                clear: both;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
                position: absolute;
                left: -100px;
                text-align: right;
                padding: 10px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
                    display: block;
                }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
                        font-size: 15px;
                        font-weight: bold;
                    }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
                        font-size: 12px;
                    }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
                background: #fff;
                color: #737881;
                display: block;
                width: 40px;
                height: 40px;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                border-radius: 20px;
                text-align: center;
                -moz-box-shadow: 0 0 0 5px #f5f5f6;
                -webkit-box-shadow: 0 0 0 5px #f5f5f6;
                box-shadow: 0 0 0 5px #f5f5f6;
                line-height: 40px;
                font-size: 15px;
                float: left;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
                    background-color: #303641;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-secondary {
                    background-color: #ee4749;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
                    background-color: #00a651;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
                    background-color: #21a9e1;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
                    background-color: #fad839;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
                    background-color: #cc2424;
                    color: #fff;
                }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
                position: relative;
                background: #f5f5f6;
                padding: 1.7em;
                margin-left: 70px;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                border-radius: 3px;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 9px 9px 9px 0;
                    border-color: transparent #f5f5f6 transparent transparent;
                    left: 0;
                    top: 10px;
                    margin-left: -9px;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2, .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
                    color: #737881;
                    font-family: "Noto Sans",sans-serif;
                    font-size: 12px;
                    margin: 0;
                    line-height: 1.428571429;
                }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
                        margin-top: 15px;
                    }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 a {
                        color: #303641;
                    }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 span {
                        -webkit-opacity: .6;
                        -moz-opacity: .6;
                        opacity: .6;
                        -ms-filter: alpha(opacity=60);
                        filter: alpha(opacity=60);
                    }


/* SCROLL TO TOP */

/* Tab style */
#scrollUp {
    bottom: 0;
    right: 30px;
    width: 70px;
    height: 70px;
    margin-bottom: -10px;
    padding: 10px 5px;
    font: 14px/20px sans-serif;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    color: #828282;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    background-color: #E6E6E6;
    background-image: -moz-linear-gradient(top, #EBEBEB, #DEDEDE);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#EBEBEB), to(#DEDEDE));
    background-image: -webkit-linear-gradient(top, #EBEBEB, #DEDEDE);
    background-image: -o-linear-gradient(top, #EBEBEB, #DEDEDE);
    background-image: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
    background-repeat: repeat-x;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
}

#scrollUp:hover {
    margin-bottom: 0;
}


a,.tp-caption a.btn:hover {
	color: inherit;
}
.top-nav-collapse {
	background: inherit;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	color: inherit;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background-color: inherit;
}

.widget-avatar .avatar:hover {
    border: 5px solid inherit;
}

.bg-skin {
	background: inherit;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
	border-color: inherit;
}

footer {

}

.btn-skin {
  color:inherit;
  background-color: inherit;
  border-color: inherit;
}


/* NAVIGATION BS3 - CUSTOM START */

nav ul li.active>a:before {
    content: "";
}

.navbar-nav {
    float: none;
}

.navbar {
    border: 0px;
    border-radius: 0px;
    min-height: 80px;
}

nav ul li a {
    font-size: 13px;
}

.nav {
    /*margin: 7px;*/
}
.collapse .in,
.navbar-collapse{
    background-color: #f3f3f3;
    background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
    background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
    background-repeat: repeat-x;
    border-bottom: 1px solid #B6B6B6;
}

.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px;
    min-height: 60px;
}
.navbar-toggle .icon-bar {
    /*margin-top: 27px*/
    background-color: #b6b6b6;
}
.navbar-toggle {
    background-color: #fafafa!important;
}
#navigation > .navbar-nav a{
    color: #303030!important;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase!important;
    letter-spacing: 1px;
    font-weight: bold!important;
}
#navigation > .navbar-nav > li{
    height: 100%;
    border-right: 1px solid #c6d0da;
}

#desk-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 61px;
    font-size: 13px;
    z-index: 9999;
    background-color: #f3f3f3;
    background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
    background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
    background-repeat: repeat-x;
    border-bottom: 1px solid #B6B6B6;
}

/* NAVIGATION BS3 END */

.navbar-brand {
    border-right: 1px solid #c6d0da;
    height: 60px;
    padding: 5px;
}

.logo-perfectmine {
    width: 75px!important;
    padding: 10px!important;
    margin-left: 0px;
}

.error-custom ul > li{
    color: #e72f3d;
    text-align: left;
    padding-left: 0px;
}

.error li {
    color: #e72f3d;
    text-align: left;
    padding-left: 0px;
}

.custom-pull {
    float: left;
    height: 100%;
    border-left: 1px solid #c6d0da;
    text-align: center;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.register-footer {
    background: rgb(234, 227, 227)!important;
}

.custom-error input,
.custom-error select,
.custom-error textarea{
    border-color: #b94a48!important;
    color: #b94a48;
}
.custom-error .input-group-addon {
    border-left: 1px solid #b94a48;
    border-top: 1px solid #b94a48;
    border-bottom: 1px solid #b94a48;
    background: #f2dede;
    border-radius: 0;
}
#table-details td{
    text-align: left;
}
.custom-table-fix {
    border: solid 1px #dddddd!important;
}
table.dataTable {
    margin-top: 0px!important;
    margin-bottom: 6px!important;
}
.custom-table-fix tbody {
    border: solid 1px #dddddd!important;
    border-bottom-width: 1px!important;
}
.main-table tr.odd{
    background-color: #f3f3f3;
}

.custom-table-fix tr.odd,
.custom-table-fix tr.even{
    background-color: #fff!important;
}

.li-item-fix {
    padding-top:15px;
}
.border-l-r-b {
    margin-bottom: 1px;
    border-left: solid 1px #76a076;
    border-right: solid 1px #76a076;
    border-bottom: solid 1px #76a076;
}
.border-t {
    border-top: solid 1px #76a076!important;
}
.border-l {
    border-left: solid 1px #76a076!important;
}
.border-r {
    border-right: solid 1px #76a076!important;
}
.red {
    color: #e5091a!important;
}

#packages-section {
    padding-top: 30px;
    padding-bottom: 0px;
}

.table .btn-group a.active {
    color: #f00000;
}
.table td {
	vertical-align: middle !important;
}
.table td .editable {
	border-bottom: none;
}

.dataTable tr.alert-danger .details-control:before {
	color: #000;
}

.fan {
	position: absolute;
	z-index: 1000;
}
.fan .ui-slider-handle {
	width: 3em;
    height: 1.6em;
    margin-left: -.8em;
    text-align: center;
    line-height: 1.6em;
}

.row.uniform-height {
	display: table;
}
.row.uniform-height [class*="col-"] {
	display: table-cell;
	vertical-align: middle;
	float: none;
}
/* disabled package*/
.row [class*="col-"].disabled {
	opacity: 0.3;
}
.row [class*="col-"].disabled .panel-footer * {
	visibility: hidden;
}
.payment {
    margin-left: 11px;
}
.payment img:hover {
    cursor: hand;
}

.footer-content {
    padding: 20px 8px 10px 0px;
}

.home-section {
    padding-top: 30px;
    padding-bottom: 30px;
}
.top-section {
    padding-top: 90px;
}
.recent-post .footer-thumb-img {
    background-color: transparent;
}

.footer-content {
    padding: 20px 8px 10px 0px;
}

.recent-post .footer-thumb-img {
    background-color: transparent;
}

.nav ul li {
    display: none;
    background-color: #f3f3f3;
    background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
    background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
    background-repeat: repeat-x;
    border-bottom: 0px solid #B6B6B6;
}

.nav ul li a,
.nav a {
    color:#3276b1!important;
}

.nav ul li a:hover,
.nav a:hover{
    color:#176e61;!important;
}

#desk-menu .active>a{
    color:#e50012!important;
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0px;
    border-top: 0px;
}

#desk-menu {
    background-color: #f3f3f3;
    background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
    background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
    background-repeat: repeat-x;
    border-bottom: 1px solid #B6B6B6;
    color: #303030;
    list-style: none;
    text-transform: none;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, Sans-Serif;
    line-height: 60px;
    z-index: 150;
}
.navbar-nav>li>a {
    line-height: 30px;
}
.dropdown-menu {
    background-color: #f3f3f3;
    background-image: -moz-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2));
    background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: -o-linear-gradient(top,#f3f3f3,#e2e2e2);
    background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2);
    background-repeat: repeat-x;
    border-bottom: 1px solid #B6B6B6;
}

.collapse .in {
    width:100%;
}
.the-price h1 {
    letter-spacing: -1px;
    font-size: 24px;
    margin: 10px 0;
}
.price-features-small {
    min-height: 380px!important;
    padding-top: 35px;
}
.price-features-large {
    min-height: 380px!important;
    padding-top: 35px;
}

@media only screen and (max-width : 1063px) {
    .nav>li>a {
        font-size:11px!important;
        padding: 15px 7px!important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 992px) {
    .price-features-small {
        min-height: 150px!important;
    }
    .price-features-large {
        min-height: 360px!important;
    }
}

@media only screen and (max-width : 813px) {
    .nav>li>a {
        font-size:10px!important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .price-features-small {
        min-height: auto!important;

    }
    .price-features-large {
        min-height: auto!important;
    }
    .nav>li>a {
        font-size:13px!important;
    }
}


@import url(http://fonts.googleapis.com/css?family=Raleway:300,400,600,700,800,900);

/* Reset
=====================================================================*/
*{padding:0;margin:0;}
body{
    height: 100%;
    background:#ffffff;
    font-family: 'Raleway',sans-serif;
    overflow-x: hidden;
    text-rendering: optimizelegibility;
}
.content {
    min-height: 100%;
    height: auto;
    margin: 0 auto -269px;
    padding: 0 0 269px;
}
#footer {
    height:269px;
}
@media (max-width: 1200px){
    #footer {
        height:auto!important;
    }
}
#benchmark .row {
    margin-left:0px;
    margin-right:0px;
}
a {
    color:#ffffff; text-decoration:none;
}
a:hover {

    text-decoration:none;
}
a:focus {
    color:#e50012;
    outline: medium none;
    outline-offset: 0;
}

/* Headings */
h1          { font-size:2em; font-weight:normal; line-height:1.15; }
h2          { font-size:1.5em; line-height:1.25; margin-bottom:.45em; }
h3          { font-size:1.35em; line-height:1.25; margin-bottom:.45em; }
h4          { font-size:1.05em; line-height:1.35; margin-bottom:.45em; }
h5          { font-size:1.05em; line-height:1.35; margin-bottom:.45em; }
h6          { font-size:1em; line-height:1.35; margin-bottom:1em; }

/* Forms */
form          { display:inline; }
fieldset      { border:0; }
legend        { display:none; }

/* Table */
table         { border:0; /*border-collapse:collapse;*/ border-spacing:0; empty-cells:show; font-size:100%; }
caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }

/* Content */
p             { margin:0 0 1em; }
strong        { font-weight:bold; }
address       { font-style:normal; line-height:1.35; }
cite          { font-style:normal; }
q,
blockquote    { quotes:none; }
q:before,
q:after       { content:''; }
small         { font-size:1em; }
big           { font-size:1.15em; }
/*sup           { font-size:1em; vertical-align:top; }*/

/* Lists */
ul,ol         { list-style:none; }



/* Show Messages
=====================================================================*/
.gen{
    background: none repeat scroll 0 0 #fff;
    color: #008900;
    font-size: 20px;
    margin: 15px auto;
    padding: 5px;
    text-align: center;
}
.err{
    background: none repeat scroll 0 0 #FF0000;
    color: #008900;
    font-size: 20px;
    margin: 15px auto;
    padding: 5px;
    text-align: center;
}



/* Section Title
=====================================================================*/
.section-title{
    margin-bottom: 35px;
    margin-top: 80px;
    text-align: center;
}
.section-title h2{
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
    padding: 0 0 15px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.section-title h2:before {
    border: 2px solid #59a3fc;
    bottom: 0;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 100px;
}
.section-title p{
    color: #9c9c9c;
    font-size: 16px;
    font-style: italic;
    text-align: center;
}


/* Site Header Part
=====================================================================*/
.overlay {
    background: #F8F8F8;
    border-top: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    height: 100%;
    width: 100%;
}

.site_logo{
    margin-top: 80px;
    text-align: center;
}
.menu_area{
    background: url("module/Application/assets/css/images/menu_bg.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
    bottom: 0;
    height: 50px;
    position: absolute;
    width: 100%;
}
.stick_menu{
    position: fixed;
    top: 0;
    z-index: 9999;
}

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}
.logo a{
    color: #ffffff !important;
}
.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #fff;
}
.site_title{}
.site_title h1{
    color: #494949;
    font-size: 50px;
    font-weight: 700;
    margin: 30px auto;
    text-align: center;
}
.site_title p{
    color: #494949;
    font-size: 18px;
    text-align: center;
}
/* About Section
=====================================================================*/
.welcome_section{
    overflow: hidden;
}
.about{
    margin: 0 auto;
    padding: 60px 20px;
}
.about h2{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}
.about p{
    margin: 20px;
    text-align: center;
}
.welcome_part{
    margin: 50px auto 80px;
}
.welcome_icon{
    background: none repeat scroll 0 0 transparent;
    border: 2px solid #59a3fc;
    border-radius: 100%;
    color: #59a3fc;
    margin: 0 auto;
    padding: 35px;
    text-align: center;
    width: 140px;
}
.welcome_part h2{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}
.welcome_part p{
    color: #9c9c9c;
    font-size: 14px;
    text-align: center;
}

/* Email Subscribe Section
=====================================================================*/
.email_subscribe_section{
    background: none repeat scroll 0 0 #ecf0f1;
    color: #000;
    height: auto;
    overflow: hidden;
    width: 100%;
}
.email_subscriber_head{
    margin: 100px auto 30px;
}
.email_subscriber_head h2{
    font-size: 35px;
    text-align: center;
}
.email_subscriber_head p{
    text-align: center;
}
.email_subscribe_form_part{
    margin-bottom: 80px;
    text-align: center;
}
.email_input_box{
    background: none repeat scroll 0 0 #fff;
    border-radius: 30px;
    color: #000;
    display: inline;
    font-size: 15px;
    height: auto;
    margin: 20px 30px;
    padding: 15px;
    width: 40%;
}
.email_submit_box{
    border-radius: 30px;
    margin-top: -5px;
    padding: 15px 40px;
}
.email_submit_box:focus, .email_submit_box:active:focus, .email_submit_box.active:focus {
    outline: medium none;
    outline-offset: -2px;
}


/* Contact Section
=====================================================================*/
.contact_section{
    overflow: hidden;
    background: none repeat scroll 0 0 #18191a;
    color: #fff;
}
.contact_head{
    padding: 80px 0 30px;
    text-align: center;
}
.contact_head h2{
    font-size: 35px;
    font-weight: bold;
}
.contact_head p{}
.address_part{}
.address{
    margin: 10px auto;
    font-weight: 600;
}
.phone{
    margin: 10px auto;
    font-weight: 600;
}
.header_part {
    overflow: hidden;
    height: 380px;
    margin-top: 50px;
}
.email{
    margin: 10px auto;
    font-weight: 600;
}
.social_icons{}
.social_icons ul{}
.social_icons ul li{
    display: inline;
    font-size: 20px;
    margin-right: 10px;
}
.social_icons ul li a{
    font-size: 40px;
}
.contact_form{
    margin-bottom: 60px;
}
.contact_input_box{
    background: none repeat scroll 0 0 transparent;
    border: 1px solid #494949;
    border-radius: 30px;
    color: #fff;
    height: auto;
    margin-bottom: 30px;
    padding: 15px;
    resize: none;
}
.contact_button{
    border-radius: 30px;
    font-size: 18px;
    height: auto;
    padding: 10px 25px;
}
.contact_button:focus, .contact_button:active:focus, .contact_button.active:focus {
    outline: medium none;
    outline-offset: -2px;
}
.item-installed strong,
.section-heading strong {
    color: #494949!important;
}
.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
.item-installed h1{
    margin:0px;
}
.service-box-installed {
    border: solid 1px #494949;
}
.service-box {
    margin-top:10px;
}
#container {
    margin-top: 80px;
}
#defaultCountdown {
    margin: auto;

}

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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 25px;
        margin: 15px 30px auto;
        padding: 30px 12px;
        text-align: center;
        width: 130px;
    }

}

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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 15px;
        margin: 15px 30px auto;
        padding: 18px 12px;
        text-align: center;
        width: 100px;
    }

}


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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 25px;
        margin: 15px 30px auto;
        padding: 53px 12px;
        text-align: center;
        width: 175px;
    }

}

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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 7px;
        margin: 15px 22px auto;
        padding: 6px 12px;
        text-align: center;
        width: 55px;
    }

}

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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 5px;
        margin: 15px 20px auto;
        padding: 5px 12px;
        text-align: center;
        width: 55px;
    }

}

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

    .countdown_section{
        background: none repeat scroll 0 0 transparent;
        border: 1px solid #494949;
        border-radius: 100%;
        display: block;
        float: left;
        font-size: 14px;
        margin: 15px 10px auto;
        padding: 28px 12px;
        text-align: center;
        width: 120px;
    }

}

.panel-body-text {
    padding-left: 5px;
}

a{
    color: #3276b1;
    text-decoration: none;
}

.service-icon {
    margin-top: 20px;
}
.pricing-big {
    border: none!important;
}

.pricing-big .panel-heading {
    border-radius: 5px 5px 0 0;
}

.pricing-big .panel-title {
    text-transform: capitalize;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px 5px 0 0;
    margin: 0;
    font-weight: 700;
}

.pricing-big .the-price {
    padding: 20px 0;
    background: #333;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    box-shadow: none!important;
    -moz-box-shadow: none!important;
}

.pricing-big .subscript {
    font-size: 18px;
    color: #999;
    margin-left: 5px;
}


.pricing-big .panel-footer {
    border-radius: 0 0 5px 5px;
}

.pricing-big .panel-footer .btn {
    padding: 15px 0;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-big .panel-footer .btn span {
    font-weight: 400;
    font-style: italic;
}

.pricing-big .panel-footer {
    background-color: #F2F2F2!important;
}

.pricing-big .panel-footer>div {
    padding: 15px 0 10px;
    display: block;
    font-size: 13px;
}

.pricing-big table {
    background: #FAFAFA;
    padding: 20px 15px;
    height: 230px;
    text-align: left;
}
.panel-darken {
    border-color: #333;
}

.panel-darken>.panel-heading {
    color: #fff;
    background-color: #404040;
    border-color: #404040;
}
.panel-teal {
    border-color: #568a89;
}

.panel-teal>.panel-heading {
    color: #fff;
    background-color: #568a89;
    border-color: #568a89;
}
.panel-body {
    padding: 0px;
}
.panel-heading {
    border-bottom: 1px solid transparent;
}
.price-features {
    min-height: 385px!important;
    padding-top: 35px;
    padding-bottom: 0px;
}
.price-features ul.list-unstyled {
    margin-bottom: 0px;
}
.service-box {
    border: solid 1px #d8d0d0;
    padding: 10px;
    background-color: #e3e3e3;
}
#power .service-box {
    min-height: 200px;
}

.currently-manging-section .service{
    background-color: rgba(2, 2, 2, 0.31);
    min-height: 230px;
}

.currently-manging-section .service-icon {
    margin: 0px;
    /*padding: 20px 20px 20px 20px;*/
    font-weight: bolder;
    font-size: 30px;
}
.currently-manging-section .service-desc {
    margin: 0px;
    padding: 20px 20px 20px 20px;
    transition: all 1s;
}
.currently-manging-section .service {
    background-color: rgba(2, 2, 2, 0.3);
    border: solid 1px #b0b0b0;;
    transition: all 1s;

}
.currently-manging-section .service:hover {
    background-color: rgba(2, 2, 2, 0.6);
    border: solid 1px #494949;
    transition: all 1s;
}
.currently-manging-section .service:hover h1{
    padding-top:40px;
    font-size: 75px;
    background-color: rgba(0, 0, 0, 0);
    transition: all 1s;
}

.currently-manging-section .service:hover h3{
    padding: 10px;
    transition: all 1s;
}
.currently-manging-section .service:hover .service-desc {
    margin: 0px;
    padding: 51px 0px 0px 0px;
    transition: all 1s;
}
.currently-manging-section h1,
.currently-manging-section h3 {
    margin: 0px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.72);
    color:#ffffff;
    transition: all 1s;
}
.rig {
    background-image: url("module/Application/assets/img/rig.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.gpu {
    background-image: url("module/Application/assets/img/gpu.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.cpu {
    background-image: url("module/Application/assets/img/cpu.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.user {
    background-image: url("module/Application/assets/img/user.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}

.price-features li + li {
    margin-top: 0px;
}
.list-unstyled li {
    padding-bottom: 10px;
}
.tooltip-inner {
    max-width: none;
    white-space: nowrap;
}
.company-social a i {
    font-size: 4em;
    padding: 15px 10px 10px 10px;
}
.company-social li {
    padding-bottom: 5px;
}
.company-social .social-youtube a {
    background: #e62117;
}
.company-social .social-youtube a:hover {
    background: #ff5e48;
}
.bottom-footer p{
    margin: 0 0 0em;
}
iframe {
    border: 0px;
}
/* login|logout button */
.navbar-nav li:last-child, .navbar-nav li:nth-child(9) {
    float: right;
    border-right: 0px solid #c6d0da!important;
    border-left: 1px solid #c6d0da;
}
/* dashboard|register button */
.navbar-nav li:nth-child(8) {
    float: right;
    border-left: 1px solid #c6d0da;
}
.collapse .in > .nav > li {
    border-bottom:solid 0px #b6b6b6;
}
.dropdown-menu li {
    border-left: 0px solid #c6d0da!important;
    float: none!important;
}
@media only screen and (max-width : 768px) {
    .in .navbar-nav li:last-child {
        border-left: 0px solid #c6d0da;
        float: none;
    }

    .in > .nav > li {
        border-bottom: solid 1px #b6b6b6;
    }
}

a {
    color: #3276b1;
    text-decoration: none;
}

.service-icon {
    margin-top: 20px;
}
.pricing-big {
    border: none!important;
}

.pricing-big .panel-heading {
    border-radius: 5px 5px 0 0;
}

.pricing-big .panel-title {
    text-transform: capitalize;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px 5px 0 0;
    margin: 0;
    font-weight: 700;
}

.pricing-big .the-price {
    padding: 20px 0;
    background: #333;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    box-shadow: none!important;
    -moz-box-shadow: none!important;
}

.pricing-big .subscript {
    font-size: 18px;
    color: #999;
    margin-left: 5px;
}


.pricing-big .panel-footer {
    border-radius: 0 0 5px 5px;
}

.pricing-big .panel-footer .btn {
    padding: 15px 0;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-big .panel-footer .btn span {
    font-weight: 400;
    font-style: italic;
}

.pricing-big .panel-footer {
    background-color: #F2F2F2!important;
}

.pricing-big .panel-footer>div {
    padding: 15px 0 10px;
    display: block;
    font-size: 13px;
}

.pricing-big table {
    background: #FAFAFA;
    padding: 20px 15px;
    height: 230px;
    text-align: left;
}
.panel-darken {
    border-color: #333;
}

.panel-darken>.panel-heading {
    color: #fff;
    background-color: #404040;
    border-color: #404040;
}
.panel-teal {
    border-color: #568a89;
}

.panel-teal>.panel-heading {
    color: #fff;
    background-color: #568a89;
    border-color: #568a89;
}
.panel-body {
    padding: 0px;
}
.panel-heading {
    border-bottom: 1px solid transparent;
}

.service-box {
    border: solid 1px #d8d0d0;
    padding: 10px;
    background-color: #e3e3e3;
}

.currently-manging-section .service-box{
    background-color: transparent!important;
    min-height: 250px;
}
.currently-manging-section .service{
    background-color: rgba(2, 2, 2, 0.31);
    min-height: 232px;
}
.currently-manging-section .service-icon {
    margin: 0px;
    /*padding: 20px 20px 20px 20px;*/
    font-weight: bolder;
    font-size: 30px;
}
.currently-manging-section .service-desc {
    margin: 0px;
    padding: 20px 20px 20px 20px;
    transition: all 1s;
}
.currently-manging-section .service {
    background-color: rgba(2, 2, 2, 0.3);
    border: solid 1px #b0b0b0;;
    transition: all 1s;

}
.currently-manging-section .service:hover {
    background-color: rgba(2, 2, 2, 0.6);
    border: solid 1px #494949;
    transition: all 1s;
}
.currently-manging-section .service:hover h1{
    padding-top:40px;
    font-size: 75px;
    background-color: rgba(0, 0, 0, 0);
    transition: all 1s;
}

.currently-manging-section .service:hover h3{
    padding: 10px;
    transition: all 1s;
}
.currently-manging-section .service:hover .service-desc {
    margin: 0px;
    padding: 51px 0px 0px 0px;
    transition: all 1s;
}
.currently-manging-section h1,
.currently-manging-section h3 {
    margin: 0px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.72);
    color:#ffffff;
    transition: all 1s;
}
.rig {
    background-image: url("module/Application/assets/img/rig.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.gpu {
    background-image: url("module/Application/assets/img/gpu.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.cpu {
    background-image: url("module/Application/assets/img/cpu.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}
.user {
    background-image: url("module/Application/assets/img/user.png");
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: 50% 50%;
}

.header_part .overlay{
    background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.7) 100%), url("module/Application/assets/img/banner-homepage-v2.png") no-repeat right top;
    background-position: 80% -40px;
}
#header_part{
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%), url("module/Application/assets/img/banner-homepage-v2-mountains.png") no-repeat right top;
    background-position: 100% 0px;
    background-size: 100% 100%;
}
.price-features li + li {
    margin-top: 0px;
}
.list-unstyled li {
    padding-bottom: 10px;
}
.tooltip-inner {
    max-width: none;
    white-space: nowrap;
}
.company-social a i {
    font-size: 4em;
    padding: 15px 10px 10px 10px;
}
.company-social li {
    padding-bottom: 5px;
}
.company-social .social-youtube a {
    background: #e62117;
}
.company-social .social-youtube a:hover {
    background: #ff5e48;
}
.bottom-footer p{
    margin: 0 0 0em;
}
iframe {
    border: 0px;
}
.footer-logo-container {
    margin-top:20px;
    margin-bottom: 20px;
    padding:10px;
    background-color: #292827;
}
.footer-logo {
    height: 40px;
    margin-top: 13px;
}
.bottom-footer-logo {
    border-bottom: solid 1px #504b4b;
}
.navbar-nav {
    margin: -1px -15px;
}

.error-custom {
    color: #e72f3d;
    text-align: left;
    padding-left: 0px;
}

.has-error input, .has-error select, .has-error textarea{
    border-color: #a94442!important;
}
.compare {
    margin:0 auto;
    width: 80%;
}

.compare-th {
    width: 20%;
    border: 1px solid #ddd!important;
}
.compare td {
    border: 1px solid #ddd;
}
.no-border {
    border: 0px!important;
}
@media only screen and (max-width : 768px) {
    .price-features {
        min-height: auto!important;
    }

}
.flicker-widget a {
    width: 60px;
    height: 60px;
}
.company-social a i {
    font-size: 2em;
}
@media only screen and (max-width: 768px) {
    .in > .nav > li {
        float:none;
    }
    /*#navigation .navbar-nav {*/
        /*margin: 0px;*/
    /*}*/
}
@media (max-width: 991px) {
    #desk-menu {
        position: relative!important;
    }
    .header_part {
        margin-top: 0px!important;
    }
    .navbar-header {
        border-bottom: 1px solid #B6B6B6;
    }
}
.navbar-collapse.in {
    overflow-y: hidden!important;
}
.spacing {
    padding-bottom:15px;
}
.contact-address {
    padding-left: 90px
}

.question-body {
    font-size: 12px
}
.terms-list {
    list-style: disc;
    margin-left:30px;
}
.border-button {
    border: 1px solid #ddd;
}
.button-packages {
    margin-top:-20px;
    margin-bottom: 20px;
}
.mobile-col-padding {
    padding-left:0px;
    padding-right:0px;
}
.small-test {
    font-size: 0.65em!important;
    text-transform:lowercase;

}
.navbar-nav>li>.dropdown-menu{
    width: auto;
}
#features .row {
    margin-right: 0px!important;
    margin-left: 0px!important;
}

.site_title .btn {
    border-radius: 6px;
}
#benchmark .form-inline .form-control{
    width: 100%;
}
#lc_chat_layout {
    z-index: 149!important;
}
@font-face {
  font-family: 'cryptocoins';
  src:url('module/Application/assets/fonts/ecoicons/cryptocoins.eot?d2eit9');
  src:  url('module/Application/assets/fonts/ecoicons/cryptocoins.eot?d2eit9#iefix') format('embedded-opentype'),
    url('module/Application/assets/fonts/ecoicons/cryptocoins.ttf?d2eit9') format('truetype'),
    url('module/Application/assets/fonts/ecoicons/cryptocoins.woff?d2eit9') format('woff'),
    url('module/Application/assets/fonts/ecoicons/cryptocoins.svg?d2eit9#cryptocoins') format('svg');
  font-weight: normal;
  font-style: normal;
}

i.cc {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'cryptocoins' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

i.cc.SAR:before {
  content: "\e900";
}
i.cc.SAR-alt:before {
  content: "\e901";
}
i.cc.SCOT:before {
  content: "\e902";
}
i.cc.SCOT-alt:before {
  content: "\e903";
}
i.cc.SDC:before {
  content: "\e904";
}
i.cc.SDC-alt:before {
  content: "\e905";
}
i.cc.SIA:before {
  content: "\e906";
}
i.cc.SIA-alt:before {
  content: "\e907";
}
i.cc.SJCX:before {
  content: "\e908";
}
i.cc.SJCX-alt:before {
  content: "\e909";
}
i.cc.SLG:before {
  content: "\e90a";
}
i.cc.SLG-alt:before {
  content: "\e90b";
}
i.cc.SLS:before {
  content: "\e90c";
}
i.cc.SLS-alt:before {
  content: "\e90d";
}
i.cc.SNRG:before {
  content: "\e90e";
}
i.cc.SNRG-alt:before {
  content: "\e90f";
}
i.cc.START:before {
  content: "\e910";
}
i.cc.START-alt:before {
  content: "\e911";
}
i.cc.STEEM:before {
  content: "\e912";
}
i.cc.STEEM-alt:before {
  content: "\e913";
}
i.cc.STR:before {
  content: "\e914";
}
i.cc.STR-alt:before {
  content: "\e915";
}
i.cc.STRAT:before {
  content: "\e916";
}
i.cc.STRAT-alt:before {
  content: "\e917";
}
i.cc.SWIFT:before {
  content: "\e918";
}
i.cc.SWIFT-alt:before {
  content: "\e919";
}
i.cc.SYNC:before {
  content: "\e91a";
}
i.cc.SYNC-alt:before {
  content: "\e91b";
}
i.cc.SYS:before {
  content: "\e91c";
}
i.cc.SYS-alt:before {
  content: "\e91d";
}
i.cc.TX:before {
  content: "\e91e";
}
i.cc.TX-alt:before {
  content: "\e91f";
}
i.cc.UNITY:before {
  content: "\e920";
}
i.cc.UNITY-alt:before {
  content: "\e921";
}
i.cc.USDT:before {
  content: "\e922";
}
i.cc.USDT-alt:before {
  content: "\e923";
}
i.cc.VIOR:before {
  content: "\e924";
}
i.cc.VIOR-alt:before {
  content: "\e925";
}
i.cc.VNL:before {
  content: "\e926";
}
i.cc.VNL-alt:before {
  content: "\e927";
}
i.cc.VPN:before {
  content: "\e928";
}
i.cc.VPN-alt:before {
  content: "\e929";
}
i.cc.VRC:before {
  content: "\e92a";
}
i.cc.VRC-alt:before {
  content: "\e92b";
}
i.cc.VTC:before {
  content: "\e92c";
}
i.cc.VTC-alt:before {
  content: "\e92d";
}
i.cc.XAI:before {
  content: "\e92e";
}
i.cc.XAI-alt:before {
  content: "\e92f";
}
i.cc.XBS:before {
  content: "\e930";
}
i.cc.XBS-alt:before {
  content: "\e931";
}
i.cc.XCP:before {
  content: "\e932";
}
i.cc.XCP-alt:before {
  content: "\e933";
}
i.cc.XEM:before {
  content: "\e934";
}
i.cc.XEM-alt:before {
  content: "\e935";
}
i.cc.XMR:before {
  content: "\e936";
}
i.cc.XPM:before {
  content: "\e937";
}
i.cc.XPM-alt:before {
  content: "\e938";
}
i.cc.XRP:before {
  content: "\e939";
}
i.cc.XRP-alt:before {
  content: "\e93a";
}
i.cc.XVG:before {
  content: "\e93b";
}
i.cc.XVG-alt:before {
  content: "\e93c";
}
i.cc.YBC:before {
  content: "\e93d";
}
i.cc.YBC-alt:before {
  content: "\e93e";
}
i.cc.ZEIT:before {
  content: "\e93f";
}
i.cc.ZEIT-alt:before {
  content: "\e940";
}
i.cc.MAID:before {
  content: "\e941";
}
i.cc.MAID-alt:before {
  content: "\e942";
}
i.cc.MINT:before {
  content: "\e943";
}
i.cc.MINT-alt:before {
  content: "\e944";
}
i.cc.MONA:before {
  content: "\e945";
}
i.cc.MONA-alt:before {
  content: "\e946";
}
i.cc.MRC:before {
  content: "\e947";
}
i.cc.MSC:before {
  content: "\e948";
}
i.cc.MSC-alt:before {
  content: "\e949";
}
i.cc.MTR:before {
  content: "\e94a";
}
i.cc.MTR-alt:before {
  content: "\e94b";
}
i.cc.MUE:before {
  content: "\e94c";
}
i.cc.MUE-alt:before {
  content: "\e94d";
}
i.cc.NBT:before {
  content: "\e94e";
}
i.cc.NEOS:before {
  content: "\e94f";
}
i.cc.NEOS-alt:before {
  content: "\e950";
}
i.cc.NEU:before {
  content: "\e951";
}
i.cc.NEU-alt:before {
  content: "\e952";
}
i.cc.NLG:before {
  content: "\e953";
}
i.cc.NLG-alt:before {
  content: "\e954";
}
i.cc.NMC:before {
  content: "\e955";
}
i.cc.NMC-alt:before {
  content: "\e956";
}
i.cc.NOTE:before {
  content: "\e957";
}
i.cc.NOTE-alt:before {
  content: "\e958";
}
i.cc.NVC:before {
  content: "\e959";
}
i.cc.NVC-alt:before {
  content: "\e95a";
}
i.cc.NXT:before {
  content: "\e95b";
}
i.cc.NXT-alt:before {
  content: "\e95c";
}
i.cc.OK:before {
  content: "\e95d";
}
i.cc.OK-alt:before {
  content: "\e95e";
}
i.cc.OMNI:before {
  content: "\e95f";
}
i.cc.OMNI-alt:before {
  content: "\e960";
}
i.cc.OPAL:before {
  content: "\e961";
}
i.cc.OPAL-alt:before {
  content: "\e962";
}
i.cc.PIGGY:before {
  content: "\e963";
}
i.cc.PIGGY-alt:before {
  content: "\e964";
}
i.cc.PINK:before {
  content: "\e965";
}
i.cc.PINK-alt:before {
  content: "\e966";
}
i.cc.POT:before {
  content: "\e967";
}
i.cc.POT-alt:before {
  content: "\e968";
}
i.cc.PPC:before {
  content: "\e969";
}
i.cc.PPC-alt:before {
  content: "\e96a";
}
i.cc.QRK:before {
  content: "\e96b";
}
i.cc.QRK-alt:before {
  content: "\e96c";
}
i.cc.RBIES:before {
  content: "\e96d";
}
i.cc.RBIES-alt:before {
  content: "\e96e";
}
i.cc.RBT:before {
  content: "\e96f";
}
i.cc.RBT-alt:before {
  content: "\e970";
}
i.cc.RBY:before {
  content: "\e971";
}
i.cc.RBY-alt:before {
  content: "\e972";
}
i.cc.RDD:before {
  content: "\e973";
}
i.cc.RDD-alt:before {
  content: "\e974";
}
i.cc.RISE:before {
  content: "\e975";
}
i.cc.RISE-alt:before {
  content: "\e976";
}
i.cc.GDC:before {
  content: "\e977";
}
i.cc.GDC-alt:before {
  content: "\e978";
}
i.cc.GEMZ:before {
  content: "\e979";
}
i.cc.GEMZ-alt:before {
  content: "\e97a";
}
i.cc.GLD:before {
  content: "\e97b";
}
i.cc.GLD-alt:before {
  content: "\e97c";
}
i.cc.GRC:before {
  content: "\e97d";
}
i.cc.GRC-alt:before {
  content: "\e97e";
}
i.cc.GRS:before {
  content: "\e97f";
}
i.cc.IFC:before {
  content: "\e980";
}
i.cc.IFC-alt:before {
  content: "\e981";
}
i.cc.IOC:before {
  content: "\e982";
}
i.cc.IOC-alt:before {
  content: "\e983";
}
i.cc.JBS:before {
  content: "\e984";
}
i.cc.JBS-alt:before {
  content: "\e985";
}
i.cc.KOBO:before {
  content: "\e986";
}
i.cc.KORE:before {
  content: "\e987";
}
i.cc.KORE-alt:before {
  content: "\e988";
}
i.cc.LBC:before {
  content: "\e989";
}
i.cc.LBC-alt:before {
  content: "\e98a";
}
i.cc.LDOGE:before {
  content: "\e98b";
}
i.cc.LDOGE-alt:before {
  content: "\e98c";
}
i.cc.LISK:before {
  content: "\e98d";
}
i.cc.LISK-alt:before {
  content: "\e98e";
}
i.cc.LTC:before {
  content: "\e98f";
}
i.cc.LTC-alt:before {
  content: "\e990";
}
i.cc.ADC:before {
  content: "\e991";
}
i.cc.ADC-alt:before {
  content: "\e992";
}
i.cc.AEON:before {
  content: "\e993";
}
i.cc.AEON-alt:before {
  content: "\e994";
}
i.cc.AMP:before {
  content: "\e995";
}
i.cc.AMP-alt:before {
  content: "\e996";
}
i.cc.ANC:before {
  content: "\e997";
}
i.cc.ANC-alt:before {
  content: "\e998";
}
i.cc.ARCH:before {
  content: "\e999";
}
i.cc.ARCH-alt:before {
  content: "\e99a";
}
i.cc.BANX:before {
  content: "\e99b";
}
i.cc.BANX-alt:before {
  content: "\e99c";
}
i.cc.BAY:before {
  content: "\e99d";
}
i.cc.BAY-alt:before {
  content: "\e99e";
}
i.cc.BC:before {
  content: "\e99f";
}
i.cc.BC-alt:before {
  content: "\e9a0";
}
i.cc.BCN:before {
  content: "\e9a1";
}
i.cc.BCN-alt:before {
  content: "\e9a2";
}
i.cc.BSD:before {
  content: "\e9a3";
}
i.cc.BSD-alt:before {
  content: "\e9a4";
}
i.cc.BTA:before {
  content: "\e9a5";
}
i.cc.BTC:before {
  content: "\e9a6";
}
i.cc.BTC-alt:before {
  content: "\e9a7";
}
i.cc.BTCD:before {
  content: "\e9a8";
}
i.cc.BTCD-alt:before {
  content: "\e9a9";
}
i.cc.BTS:before {
  content: "\e9aa";
}
i.cc.BTS-alt:before {
  content: "\e9ab";
}
i.cc.CLAM:before {
  content: "\e9ac";
}
i.cc.CLAM-alt:before {
  content: "\e9ad";
}
i.cc.CLOAK:before {
  content: "\e9ae";
}
i.cc.CLOAK-alt:before {
  content: "\e9af";
}
i.cc.DAO:before {
  content: "\e9b0";
}
i.cc.DAO-alt:before {
  content: "\e9b1";
}
i.cc.DASH:before {
  content: "\e9b2";
}
i.cc.DASH-alt:before {
  content: "\e9b3";
}
i.cc.DCR:before {
  content: "\e9b4";
}
i.cc.DCR-alt:before {
  content: "\e9b5";
}
i.cc.DGB:before {
  content: "\e9b6";
}
i.cc.DGB-alt:before {
  content: "\e9b7";
}
i.cc.DGD:before {
  content: "\e9b8";
}
i.cc.DGX:before {
  content: "\e9b9";
}
i.cc.DMD:before {
  content: "\e9ba";
}
i.cc.DMD-alt:before {
  content: "\e9bb";
}
i.cc.DOGE:before {
  content: "\e9bc";
}
i.cc.DOGE-alt:before {
  content: "\e9bd";
}
i.cc.EMC:before {
  content: "\e9be";
}
i.cc.EMC-alt:before {
  content: "\e9bf";
}
i.cc.ERC:before {
  content: "\e9c0";
}
i.cc.ERC-alt:before {
  content: "\e9c1";
}
i.cc.ETC:before {
  content: "\e9c2";
}
i.cc.ETC-alt:before {
  content: "\e9c3";
}
i.cc.ETH:before {
  content: "\e9c4";
}
i.cc.ETH-alt:before {
  content: "\e9c5";
}
i.cc.FC2:before {
  content: "\e9c6";
}
i.cc.FC2-alt:before {
  content: "\e9c7";
}
i.cc.FCT:before {
  content: "\e9c8";
}
i.cc.FCT-alt:before {
  content: "\e9c9";
}
i.cc.FRK:before {
  content: "\e9ca";
}
i.cc.FRK-alt:before {
  content: "\e9cb";
}
i.cc.FTC:before {
  content: "\e9cc";
}
i.cc.FTC-alt:before {
  content: "\e9cd";
}

