@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Simonetta:400,900');

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

/*
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper, .owl-carousel  .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
*   Owl Carousel Owl Demo Theme
* v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */

/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center
}

/*----- 1. Reset.css -----*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- Common Styles ---*/
h1 {
  font-size: 16px;
}

/*----- Helper Classes -----*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
::-webkit-scrollbar {
  display: none;
}
*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif;
}
p {
  font-family: 'Noto Sans', sans-serif;
}
::-moz-selection {
  color: #FFFFFF;
  background: #565656;
}
::selection {
  color: #FFFFFF;
  background: #565656;
}
.nopadding {
  padding: 0;
}
.custompadding {
  padding-left: 5px;
  padding-right: 5px;
}
.no-margin {
  margin-right: 0;
  margin-left: 0;
}
.error-message {
  color: #FF3333;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 5px;
}
.success-message {
  color: #009900;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 5px;
}
#loading {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  opacity: 1;
  background-color: #F2F2F2;
  z-index: 9999;
  text-align: center;
}
#loading-image {
  display: inline;
  top: 40%;
  position: relative;
  z-index: 9999;
}
.logo {
  margin: 0 auto;
  padding: 0px 0px;
  z-index: 111;
}
.logo:hover, .logo:focus {
  text-decoration: none;
  color: #FFF;
}

/* ------ Navbar Styling Starts ----- */
.navbar {
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  padding-top: 0;
  letter-spacing: 1px;
  height: 120px;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-backface-visibility: hidden;
}
.navbar-default {
  transition: all 0.6s ease;
  border-color: transparent;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
}
.navbar-default .navbar-toggle {
  border-radius: 0px;
  border-color: transparent;
}
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}
.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #111111;
}
.navbar-default .navbar-brand .navbar-toggle .collapsed {
  padding: 4px 6px;
  font-size: 14px;
  color: #111111;
}
.navbar-default .navbar-brand {
  padding-top: 5px;
  color: #111111;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
.navbar-default .navbar-brand:hover {
  transition: 1s;
}
.navbar-default .navbar-nav > li > a {
  color: #111111;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5;
  transition: all 0.5s;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #A1A1A1;
}
.navbar-default .navbar-nav > .active > a {
  background: transparent;
  color: #222222;
}
.navbar-default .navbar-nav > .active > a:hover {
  background: transparent;
  color: #333333;
}
.navbar-default .navbar-nav > .active > a:focus {
  background: transparent;
  color: #111111;
}
.navbar-default .navbar-collapse {
  border-color: transparent;
  background-color: transparent;
  margin-top: 25px;
  font-weight: bold;
}
.navbar-default .navbar-nav .open .dropdown-toggle {
  color: #111111;
}
.navbar-default .nav-white > li > a {
  color: #FFFFFF;
}
.navbar-default .nav-white > li > a:hover {
  color: #999999;
}
.navbar-default .navbar-brand.nav-white {
  padding-top: 15px;
  color: #FFFFFF;
  font-size: 21px;
  letter-spacing: 1px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

/*---------- Media Queries ---------*/
@media only screen and (max-width:767px) {
  .navbar {
    padding-top: 5px;
    height: 60px;
  }
  .navbar-default {
    border: 0px;
    background-color: transparent;
  }
  .navbar-default .navbar-collapse {
    text-align: center;
    border-color: transparent;
    background-color: #FFFFFF;
  }
  .navbar-default .navbar-collapse {
    border: 0;
    border-color: transparent;
  }
  .navbar-default .navbar-nav > li> a {
    color: #222222;
    margin-top: 10px;
  }
  .navbar-default .navbar-nav > li> a:hover {
    color: #222222;
  }
  .navbar-default .navbar-brand {
    color: #FFFFFF;
  }
  .navbar-default .navbar-brand img{
    height: 50px;
  }
  .navbar-default .navbar-brand.nav-white {
    color: #FFFFFF;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #111111;
  }
}
@media only screen and (min-width:240px) {
  .navbar.past-main {
    font-size: 14px;
    padding-top: 5px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.99);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }
  .navbar-default.past-main .navbar-brand {
    color: #111111;
  }
  .navbar-default.past-main .navbar-toggle .icon-bar {
    background-color: #111111;
  }
  .navbar-default.past-main .navbar-nav > li > a {
    color: #222222;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
  .navbar-default.past-main .navbar-nav > li > a:hover {
    color: #111111;
  }
  .navbar-default.past-main .navbar-nav > .active > a {
    background: transparent;
    color: #5924EC;
  }
  .navbar-default.past-main .navbar-nav > .active > a:hover {
    background: transparent;
    color: #222222;
  }
  .navbar-default.past-main .navbar-nav > .active > a:focus {
    background: transparent;
    color: #222222;
  }
}
.navbar-default .nav-white .navbar-toggle .icon-bar {
  background-color: #FFFFFF;
}
.navbar-default.past-main .nav-white .navbar-toggle .icon-bar {
  background-color: #111111;
}

/* ------------------------------------------------------
-------------- Main Section Styling Starts --------------
--------------------------------------------------------*/
#main {
  height: 100%;
}

/* ----- Hero Section Styling Starts ----- */
.hero-section {
  height: 100%;
  background: #FFFFFF;
  padding: 150px 0 0 0;
  position: relative;
}
.hero-content {
  padding: 100px 0 0 0;
  overflow: hidden;
}
.hero-content h1 {
  font-size: 34px;
  font-weight: 400;
  color: #262626;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}
p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 25px 0;
}
.hero-content p {
  color: #A1A1A1;
  line-height: 1.5;
}
.btn-action {
  font-family: 'Noto Sans', sans-serif;
  background-color: #565656;
  border: 1px solid #565656;
  border-radius: 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  padding: 15px 26px;
  text-transform: uppercase;
  outline: none;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
.btn-action:hover, .btn-action:focus, .btn-action:active, .btn-action:active:focus {
  background: transparent;
  outline: none;
  color: #565656;
  background: transparent;
  border-color: #565656;
}
.product .btn-action {
  background-color: #82714a;
  border: 1px solid #92714A;
  color: #ffffff;
}
.product .btn-action:hover, .product  .btn-action:focus {
  background: #92714A;
  color: #FFFFFF;
  border-color: #82714A;
}

/* ----------- App Home ---------*/
.software .hero-section {
  padding: 100px 0 0 0;
  background: #F9F9F9;
}
.software .hero-content h1 {
  font-size: 34px;
  font-weight: 600;
  color: #444444;
  margin: 0 0 20px 0;
}
.software .btn-action {
  font-family: Arial;
  background-color: #3f51b5;
  border: 1px solid #3f51b5;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  padding: 12px 24px;
  text-transform: uppercase;
  outline: none;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
.software .btn-action:hover, .software .btn-action:focus, .software .btn-action:active, .software .btn-action:active:focus {
  background: transparent;
  outline: none;
  color: #3f51b5;
  background: transparent;
  border-color: #3f51b5;
}
.software .hero-section img {
  margin: 0 auto;
}

/*---------------- Form Home Styling ------------------- */
.form .hero-section {
  background: #F2F2F2;
  background-size: cover;
  padding: 150px 0 0 0;
}
.form .hero-content {
  padding: 50px 0 50px 0;
  overflow: hidden;
}
.form img {
  margin: 0 auto;
}
.form .hero-content h1 {
  font-size: 34px;
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}
.form .hero-content p {
  color: #A1A1A1;
}
.form .sub-form {
  padding: 30px 0 0 0;
  text-align: left;
}
.form .subscribe-form .submit-button {
  font-size: 0.9em;
  height: 40px;
  border: 2px solid;
  border-radius: 0 5px 5px 0;
  margin: 0;
  padding: 0 25px 0 25px;
  border-color: #FFFFFF;
  background-color: #565656;
  color: #FFFFFF;
  box-shadow: 0 0 1px transparent;
  outline: none;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}
.form .subscribe-form .submit-button:hover {
  border-color: #565656;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}
.form .btn-action {
  background: #565656;
  border-color: #565656;
  color: #FFFFFF;
}
.form .btn-action:hover {
  background: transparent;
  border-color: #565656;
  color: #565656;
}

/*-----------------------------------------------------
-------------- Image Bg Styling Starts ----------------
------------------------------------------------------*/
.image-bg .hero-section {
  // background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint2.jpg) no-repeat center center;
  background-size: cover;
  padding: 250px 0 0 0;
}
.image-bg .hero-content h1 {
  font-weight: 600;
  color: #000000;
}
.image-bg .hero-content p {
  color: #000000;
}

/* ------------ Signup Hero Section ------------ */
.signup .hero-section {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url(../images/app_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 150px 0 100px 0;
}
.signup .hero-content {
  padding: 50px 0 100px 0;
}
.signup .hero-content h1 {
  font-size: 34px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0;
}
.signup .hero-content p {
  color: #FFFFFF;
}
.signup-form {
  padding: 25px 25px 30px 25px;
  background: #565656;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  text-align: left;
}
.signup-form h1 {
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: capitalize;
  text-align: center;
  margin: 20px 0 30px 0;
}
.signup-form form textarea {
  height: 100px;
}
.signup-form form .input-error {
  border-color: #19b9e7;
}

/*-------------------------------------------------------
---------------- Slider Section Styling -----------------
--------------------------------------------------------*/
.slider-pro .sp-slide {
  background: #222222;
}
.slider-pro h2.sp-layer {
  font-size: 44px !important;
  color: #111111;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.3;
  text-align: left;
}
.slider-pro p.sp-layer {
  font-size: 16px;
  color: #A1A1A1;
  line-height: 1.4;
}
.slider-pro a {
  text-decoration: none;
  color: #444444;
  -webkit-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  transition: 0.5s !important;
}
.slider-pro .link-color {
  text-decoration: none;
  color: #111;
  -webkit-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  transition: 0.5s !important;
}
.slider-pro a:hover {
  color: #999999;
}
@media only screen and (max-width:768px) {
  .slider-pro h2.sp-layer {
    font-size: 34px !important;
  }
}

/* -----------------------------------------------------
--------------- App Home Styling starts ----------------
--------------------------------------------------------*/
.app .hero-section {
  padding: 50px 0 0 0;
}
.app .hero-content {
  padding: 100px 0 0 0;
}
.app img {
  margin: 0 auto;
}
.app-info h1 {
  font-size: 34px;
  font-weight: 600;
  color: #404040;
  margin-top: 30px !important;
}
.app-info h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3C4B5D;
  line-height: 1.4;
  margin-top: 20px;
}
.app-info i {
  margin-top: 15px;
  display: inline-block;
}
.app-info span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #222222;
}
.app-info .ion {
  font-size: 1em;
  color: #ff8000;
}
.download-buttons {
  margin-top: 25px;
  margin-bottom: 25px;
}
.download-buttons img {
  margin-left: 5px;
  margin-right: 5px;
}
.app .btn-action {
  color: #FFFFFF;
  background: #565656;
  border-color: #565656;
}
.app .btn-action:hover {
  color: #565656;
  background: transparent;
  border-color: #565656;
}

/*----------------------------------------------------
-------------- Split Home Coming Soon ----------------
-----------------------------------------------------*/
.cs-main .left-section {
  background-color: #F2F2F2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.cs-main .right-section {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px 0 20px;
  width: 50%;
  height: 100%;
  background: #FFFFFF;
  z-index: 99;
  overflow: hidden;
  overflow-y: auto;
}
.cs-main .hero-section {
  padding: 120px 0 0 0;
  background: #FFFFFF !important;
}
.cs-main .hero-content {
  padding: 50px 0 0 0;
}
.cs-main .app-info h1 {
  font-weight: 600;
  font-size: 42px;
}
.cs-main .left-section {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../images/split-bg.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width:801px) {
  .cs-main .right-section {
    position: relative;
    width: 100%;
  }
  .cs-main .hero-section {
    padding: 50px 0 0 0;
  }
  .cs-main .left-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
  }
}

/*-------------------------------------------------
----------- About Section Styling Starts ----------
--------------------------------------------------*/
.about {
  padding: 100px 0 100px 0;
  background: #F1F1F1;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: 'Simonetta', cursive;
  font-size: 24px;
  line-height: 1.2;
  color: #111111;
}
.about-content h3 {
  font-family: 'Simonetta', cursive;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #111111;
  margin: 50px 0 0 0;
}

/* ----- Client Sectiion Styling ----- */
.client-section {
  background-color: #F3F3F3;
  padding: 5px 0 0 0;
}
.clients .single {
  padding: 25px 0 25px 0;
}
.clients .single img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
}

/*----------------------------------------------------
----------- Pitch Section Styling Starts ----------
-----------------------------------------------------*/
.pitch {
  padding: 100px 0 100px 0;
  background: #FFFFFF;
}
.pitch-intro {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 100px 0;
}
.pitch-intro h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #454545;
  margin: 0 0 30px 0;
}
.pitch-intro p {
  font-family: ''Noto Sans', sans-serif';
  font-size: 14px;
  line-height: 1.5;
  color: #A1A1A1;
  letter-spacing: 0;
}
.pitch-icon {
  margin: 0 0 10px 0;
  background: #565656;
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
}
.pitch-icon i {
  font-size: 34px;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
}
.pitch-content {
  padding: 10px 0 50px 0;
}
.pitch-content h1 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #454545;
  margin: 0 0 10px 0;
}
.pitch-content p {
  font-family: ''Noto Sans', sans-serif';
  font-size: 14px;
  line-height: 1.5;
  color: #A1A1A1;
  letter-spacing: 0;
}

/*----------------------------------------------------
----------- Features Icon Styling Starts -------------
-----------------------------------------------------*/
.icon-features {
  padding: 100px 0 50px 0;
}
.icon-features-intro {
  padding: 0 0 50px 0;
}
.icon-features-intro h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0 0 10px 0;
  text-align: center;
}
.icon-features-intro p {
  font-size: 16px;
  color: #A1A1A1;
  text-align: center;
  margin: 0 0 30px 0;
}
.f-single {
  position: relative;
  padding: 10px 0 80px 0;
}
.f-icon i {
  font-size: 54px;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.f-content {
  padding-left: 80px;
}
.f-content h2 {
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.f-content p {
  font-family: ''Noto Sans', sans-serif';
  font-size: 14px;
  font-weight: 300;
  color: #4D4D4D;
  line-height: 1.5;
  text-align: left;
}

/*----------------------------------------------------
----------- Features Section Styling Starts ----------
-----------------------------------------------------*/
.features {
  padding: 25px 0 25px 0;
}
.features-inner {
  width: 100%;
}
.features .features-list {
  padding: 20px 0 0 0;
  text-align: center;
}
.features .features-list h1 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: #222222;
  margin: 0 0 30px 0;
}
.features .features-list ul {
  list-style-type: circle;
  padding-left: 20px;
  text-align: center;
}
.features .features-list ul li {
  display: block;
  margin: 0 0 15px 0;
  font-family: 'Simonetta', cursive;
  font-size: 16px;
  line-height: 1.2;
  color: #A1A1A1;
}

/* ----- App Features List ----- */
.software .features {
  padding: 100px 0 100px 0;
}
.software .features .features-list h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #222222;
  margin: 20px 0 20px 0;
}
.software .features-list p {
  margin: 0 0 25px 0;
  font-family: 'Simonetta', cursive;
  font-size: 18px;
  line-height: 1.2;
  color: #A1A1A1;
}
.software .features .features-list ul {
  list-style-type: disc;
  padding-left: 20px;
}
.software .features .features-list ul li {
  font-family: 'Noto Sans', sans-serif;
  display: block;
  font-size: 13px;
  margin: 0 0 15px 0;
  color: #A1A1A1;
}

/* --------------- Feature Sub ------------ */
.feature-sub.gold {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(146, 127, 84, 0.99));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 150px 0;
}
.feature-sub.silver {
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(156, 156, 155, 0.7));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 150px 0;
}
.product .sub-inner {
  max-width: 500px;
  float: right;
}
.feature-sub .sub-inner h1 {
  font-family: 'Simonetta', cursive;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: #FFFFFF;
  margin: 0 0 30px 0;
}
.feature-sub.silver .sub-inner h1 {
  font-family: 'Simonetta', cursive;
  font-size: 39px;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  margin: 0 0 30px 0;
}
.feature-sub .sub-inner .btn-action {
  color: #FFFFFF;
  background: #565656;
  border-color: #565656;
}
.feature-sub .sub-inner .btn-action:hover {
  color: #565656;
  background: transparent;
  border-color: #565656;
}
.product .feature-sub .sub-inner .btn-action {
  color: #FFFFFF;
  background: #82714a;
  border-color: #82714a;
}
.product .feature-sub .sub-inner .btn-action:hover {
  color: #82714a;
  background: transparent;
  border-color: #82714a;
}
.sub-inner {
  max-width: 500px;
  float: left;
}

/* --------- App Features Sub ------- */
.feature-sub {
  background: linear-gradient(to left, rgba(183, 179, 192, 0.12), rgb(132, 102, 81));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 150px 0;
}
.software .feature-sub .sub-inner h1 {
  font-family: 'Simonetta', cursive;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 30px 0;
}

/*  --------------------------------------------------
------------- Reviews Section Styling ----------------
-----------------------------------------------------*/
.app-features {
  background: #F9F9F9;
  padding: 100px 0 100px 0;
}
.app-features h1 {
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.app-features p {
  font-size: 16px;
  font-weight: 400;
  color: #A1A1A1;
  line-height: 1.4;
  margin: 10px 0 50px 0;
}
.app-features img {
  margin: 0 auto;
}
.app-features .features-left, .app-features .features-right {
  padding: 50px 0 0 0;
}
.app-features .icon {
  margin-top: 10px;
  margin-bottom: 20px;
}
.app-features .icon i {
  font-size: 42px;
  color: #565656;
}
.app-features .feature-single {
  margin-left: 0;
  margin-bottom: 50px;
}
.app-features .feature-single h1 {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}
.app-features .feature-single p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #A1A1A1;
  line-height: 1.4;
  margin: 10px 0 0 0;
}

/*-------------------------------------------------------
------------- Split Features Section Styling ------------
--------------------------------------------------------*/
.split-features {
  background: #FFFFFF;
  padding: 50px 0 50px 0;
  overflow: hidden;
}
.signup .split-features {
  background: #F2F2F2;
}
.split-image img {
  margin: 0 auto;
}
.split-content {
  padding: 20px;
}
.split-content h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}
.split-content p {
  font-size: 16px;
  line-height: 1.4;
  color: #A1A1A1;
  letter-spacing: 0;
}
.split-content ul {
  list-style-type: disc;
  display: inline-block;
  margin: 30px 0 0 0;
}
.split-content ul li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 15px;
  margin-left: 15px;
  color: #A1A1A1;
}

/*  --------------------------------------------------
------------- Reviews Section Styling ----------------
-----------------------------------------------------*/
.review-section {
  padding: 150px 0 150px 0;
  text-align: center;
  background: #F4F4F4;
}
.reviews {
  width: 100%;
}
.review-single img {
  width: 80px;
  height: 80px;
}
.review-text h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  color: #000000;
}
.review-text .ion {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: #ff8000;
}
.review-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 10px 20px 10px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #A1A1A1;
}

/*  --------------------------------------------------
------------- guarantee Section Styling ----------------
-----------------------------------------------------*/
.guarantee {
  padding: 0 0 100px 0;
}
.guarantee-content {
  padding: 120px 0 0 0;
  text-align: center;
}
.guarantee h1 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.2;
}
.guarantee h4 {
  font-size: 14px;
  font-weight: 400;
  color: #A1A1A1;
  margin: 10px 0 30px 0;
}
.guarantee p {
  font-family: ''Noto Sans', sans-serif';
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.4;
}
.guarantee .btn-buy {
  padding: 40px 0 20px 0;
}
.guarantee .btn-buy img {
  display: inline;
}
.guarantee h2 {
  font-family: 'Simonetta', cursive;
  font-size: 28px;
  font-weight: 400;
  color: #808080;
  margin: 0 0 20px 0;
}
.guarantee a.btn.btn-action.fadeIn {
  font-size: 24px;
  padding: 20px 100px;
}

/* ----- guarantee Tables Styling Starts ----- */
.guarantee-section {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #FFFFFF;
}
.guarantee-intro {
  padding-bottom: 30px;
}
.guarantee-intro h1 {
  font-size: 28px;
  color: #111111;
  font-weight: 600;
  line-height: 1.4;
}
.guarantee-intro p {
  font-size: 15px;
  color: #303030;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 50px;
}
.guarantee-section .table-left, .guarantee-section .table-right {
  padding: 20px 20px 50px 20px;
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, .1);
  border: transparent;
  max-width: 400px;
}
.table-left .icon, .table-right .icon {
  padding: 50px 50px 40px 50px;
}
.table-left .icon img, .table-right .icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.table-left .guarantee-details span, .table-right .guarantee-details span {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 20px;
}
.table-left .guarantee-details h2, .table-right .guarantee-details h2 {
  font-size: 18px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 30px;
}
.table-left .guarantee-details p, .table-right .guarantee-details p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #505050;
  letter-spacing: 1px;
  line-height: 1.4;
}
.table-left .guarantee-details ul, .table-right .guarantee-details ul {
  margin-top: 30px;
  margin-bottom: 50px;
}
.table-left .guarantee-details li, .table-right .guarantee-details li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #505050;
  line-height: 1.4;
  margin-bottom: 10px;
}
.guarantee-section .table-left:hover, .guarantee-section .table-right:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.guarantee-section .table-left, .guarantee-section .table-right {
  margin-top: 20px;
}
.guarantee-section .table-center {
  margin-top: 0;
}

/* ----- guarantee Section Styling Ends ----- */

/* ----- Counter Section Styling Starts -----*/

.counter-section {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #F1F1F1;
}
.counter-section h3 {
  font-size: 28px;
  font-weight: 400;
  color: #222222;
}
.counter-icon {
  padding: 15px;
}
.counter-icon i {
  font-size: 48px;
  color: #565656;
}
.counter-text {
  margin-top: 10px;
  margin-bottom: 20px;
}
.counter-text h4 {
  font-size: 16px;
  font-weight: 400;
  padding: 0.5em;
  color: #222222;
}

/* -------- Counter Section Styling Ends --------- */

/* ----- CTA Section Styling Starts ----- */


.cta-sub {
  padding-top: 150px;
  padding-bottom: 150px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url(../images/cta_bg.jpg) no-repeat center center;
  background-size: cover;
}
.cta-inner {
  max-width: 500px;
  float: none;
}
.cta-sub .cta-inner h1 {
  font-size: 28px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 0;
}
.cta-sub .cta-inner p {
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 40px;
}
.subscribe-form {
  text-align: left;
}

/*
.subscribe-form .mail {
 background-color: #F9F9F9;
 border: none;
 border-radius: 5px 0 0 5px;
 border-color: #FFFFFF;
 outline: none;
 height: 40px;
 padding: 0 150px 0 20px;
 box-shadow: none;
 -webkit-box-sizing: content-box;
 -moz-box-sizing: content-box;
 box-sizing: content-box;
 transition: all .3s;
}


.subscribe-form input {
  color: #222222;
  font-family: 'Noto Sans', sans-serif;
  padding: 0;
  font-size: 0.9em;
}
*/
.subscribe-form .submit-button {
  font-size: 0.9em;
  height: 40px;
  border: 2px solid;
  border-radius: 0 5px 5px 0;
  margin: 0;
  padding: 0 25px 0 25px;
  border-color: #FFFFFF;
  background-color: #927f54;
  color: #FFFFFF;
  box-shadow: 0 0 1px transparent;
  outline: none;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}
.subscribe-form .submit-button:hover {
  border-color: #927f54;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}
.product .subscribe-form .submit-button {
  border-color: #FFFFFF;
  background-color: #927f54;
}
.product .subscribe-form .submit-button:hover {
  border-color: #927f54;
}
.formee {
  position: relative;
}
.formee .mail {
  position: relative;
  background-color: #F9F9F9;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  transition: all .3s;
}
.formee input {
  color: #222222;
  font-family: 'Noto Sans', sans-serif;
  padding: 0;
  font-size: 0.9em;
  height: 49px;
  border: 2px solid #FFF;
  border-radius: 5px 0 0 5px;
  border-color: #FFFFFF;
  outline: none;
  padding: 0 150px 0 20px;
}
.formee input:focus {
  border: 2px solid #FFF;
  border-color: #FFFFFF;
}
.formee .right {
  height: 49px;
  border: 2px solid #FFF;
  border-radius: 0 5px 5px 0;
  margin: 0;
  padding: 0 25px 0 25px;
  background-color: #565656;
  color: #FFFFFF;
  box-shadow: 0 0 1px transparent;
  outline: none;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
}
#email-error {
  position: absolute;
  left: 0;
  top: 150%;
  font-family: ''Noto Sans', sans-serif';
  font-size: 14px;
  color: #FF0000;
}
#response {
  color: #FFFFFF;
  font-family: ''Noto Sans', sans-serif';
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.4;
}
.product .formee .right {
  background-color: #927f54;
}

/* ----- CTA Section Styling Ends ----- */

/* ------- Footer Section Styling Starts ------- */


.footer {
  background-color: #F3F3F3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 75px;
  padding-bottom: 20px;
}
.contact {
  text-align: left;
}
.contact i {
  font-size: 42px;
  color: #565656;
}
.contact h1 {
  font-family: 'Simonetta', cursive;
  font-size: 21px;
  font-weight: 400;
  color: #565656;
  margin: 10px 0 10px 0;
}
.contact p {
  font-family: 'Simonetta', cursive;
  font-size: 16px !important;
  font-weight: 400;
  color: #111111;
  line-height: 1.3;
  margin: 10px 0 20px 0 !important;
}
.contact a {
  font-family: 'Simonetta', cursive;
  font-size: 18px;
  font-weight: 400;
  color: #565656;
  text-decoration: none;
  display: inline-block;
}
.footer img {
  margin-bottom: 20px;
}
.footer-menu ul {
  list-style-type: none;
}
.footer-menu li {
  display: inline;
  line-height: 2;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  padding-right: 15px;
  text-transform: capitalize;
}
.footer-menu li a {
  color: #707570;
  text-decoration: none;
}
.footer p {
  font-family: 'Simonetta', cursive;
  font-size: 16px;
  font-weight: 400;
  color: #A1A1A1;
  line-height: 1.3;
  margin: 10px 0 30px 0;
}
.footer-text p {
  color: #565656;
  margin-top: 10px;
}
.product .footer .contact h1, .product .contact i, .product .footer .contact a, .product .footer-text p {
  color: #927f54;
}

/* -------------------------------------------------------
----------- Bact-to-Top Styling Starts Here --------------
---------------------------------------------------------*/
.back-to-top {
  background: rgba(51, 51, 204, 0.5);
  margin: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 90;
  display: none;
  text-decoration: none;
  color: #0E1729;
}
.back-to-top i {
  position: relative;
  left: 13px;
  top: 8px;
  font-size: 24px;
  color: #FFFFFF;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
.back-to-top:hover {
  background: rgba(51, 51, 204, 0.9);
  color: #FFFFFF;
}
.back-to-top:hover i {
  top: 6px;
}
.back-to-top:focus {
  color: #FFFFFF;
}
.product .back-to-top {
  background: rgba(146, 127, 84, 0.5);
}
.product .back-to-top:hover {
  background: rgba(146, 127, 84, 0.9);
}

/*----------------------------------------------------
------------- All ------------------------------------
--------------------- Media --------------------------
------------------------------- Queries --------------
-----------------------------------------------------*/
@media only screen and (min-width:767px) {
  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .hero-section {
    padding: 150px 0 100px 0;
  }
  .form .hero-section {
    padding: 150px 0 50px 0;
  }
  .form .hero-content {
    padding: 100px 0 100px 0;
    overflow: hidden;
  }
  .form .hero-content h1 {
    font-size: 54px;
  }
  .product .hero-content {
    padding: 150px 0 0 0;
    text-align: left;
  }
  .hero-content h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
  }
  .about-content h2 {
    font-size: 38px;
  }
  .software .hero-content h1 {
    font-size: 42px;
  }
  .image-bg .hero-content h1 {
    font-size: 54px;
  }
  .signup .hero-content h1 {
    font-size: 48px;
  }
  .features .features-list {
    padding: 100px 0 0 0;
    text-align: left;
  }
  .features .features-list ul li {
    font-size: 18px;
    display: list-item;
    text-align: left;
  }
  .software .features {
    padding: 100px 0 100px 0;
  }
  .software .features .features-list h1 {
    font-size: 34px;
  }
  .software .features .features-list {
    padding: 30px 0 0 0;
  }
  .software .features .features-list ul li {
    display: list-item;
    font-size: 14px;
    text-align: left;
  }
  .feature-sub {
    padding: 150px 0 150px 0;
  }
  .feature-sub .sub-inner h1 {
    font-size: 40px;
  }
  .software .feature-sub .sub-inner h1 {
    font-size: 42px;
  }
  .split-content {
    padding: 120px 100px 50px 10px;
    text-align: left;
  }
  .split-content h1 {
    font-size: 42px;
  }
  .guarantee {
    padding: 0 0 100px 0;
  }
  .guarantee-content {
    text-align: left;
  }
  .cta-sub .cta-inner h1 {
    font-size: 36px;
  }
  .cta-inner {
    max-width: 500px;
    float: right;
  }
}
@media only screen and (min-width:767px) and (max-width:1024px) {
  .features .features-list {
    padding: 80px 0 0 0;
  }
  .split-content {
    padding: 100px 100px 50px 50px;
    text-align: left;
  }
}
@media only screen and (min-width:991px) and (max-width:1201px) {
  .app-features .features-left, .app-features .features-right {
    padding: 0 0 0 0;
  }
  .software .features .features-list {
    padding: 0 0 0 0;
  }
}

/*---------------------------------------------------
------- Media Queries for Split Layout Ends ---------
---------------------------------------------------*/
h1, h2, h3, h4, h5 {
  font-family: 'Simonetta', cursive;
}
.hero-section > figure {
  animation: imageAnimation 21s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  color: transparent;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
}
.hero-section > figure:nth-child(1) {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint.jpg) no-repeat center center;
  background-size: cover;
}
.hero-section > figure:nth-child(2) {
  animation-delay: 7s;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint2.jpg) no-repeat center center;
  background-size: cover;
}
.hero-section > figure:nth-child(3) {
  animation-delay: 14s;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint3.jpg) no-repeat center center;
  background-size: cover;
}
@keyframes imageAnimation {
  0% {
    opacity: 0
  }
  13% {
    opacity: 1
  }
  30% {
    opacity: 1
  }
  43% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}
.navbar-nav {
  font-family: 'Noto Sans', sans-serif;
}
.product .feature-sub .sub-inner a.btn.btn-action {
  border-color: #bfb0a7;
}
.caption {
  font-family: 'Noto Sans', sans-serif;
  display: block;
  text-align: center;
  color: #4e4e4e;
  font-size: 14px;
}
@media only screen and  (min-width:1200px) {
  .crop {
    width: 100%;
    overflow: hidden;
  }
  .crop img {
    width: 100%;
    margin: 0 0 -100px 0;
  }
}
.coupon{
  font-size: 25px;
  margin-bottom: -110px;
  color: #960000;
  margin-top: 40px;
}
@media screen and (max-width:991px) {
  .hero-section > figure:nth-child(1) {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint.jpg) no-repeat center center;
    background-size: cover;
  }
  .hero-section > figure:nth-child(2) {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint2.jpg) no-repeat center center;
    background-size: cover;
  }
  .hero-section > figure:nth-child(3) {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url(../assets/Jerusalem_paint3.jpg) no-repeat center center;
    background-size: cover;
  }
  a.btn.btn-action{
    margin-bottom: 40px;
  }
  .feature-sub.silver, .feature-sub.gold, .feature-sub {
    padding: 50px 0 50px 0;
  }
  .caption{
    margin-bottom: 30px;
  }
  .guarantee-content{
    padding: 0;
  }
  .feature-sub {
    background: linear-gradient(to left, rgba(132, 102, 81, 0.5), rgb(132, 102, 81));
  }
  .feature-sub.gold {
    background: linear-gradient(to right, rgba(146, 127, 84, 0.7), rgba(146, 127, 84, 0.99));
  }
  .navbar-default, .navbar.past-main{
    height: 70px;
  }
  .image-bg .hero-section {
    padding: 90px 0 0 0;
  }
  .hero-content {
    padding: 30px 0 50px 0;
  }

}
@media only screen and (max-width:767px) {
  .coupon{
    margin-bottom: 0;
  }
}