@charset "utf-8";/**
 * @package Helix Framework
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2013 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
 */

 .sp-main-menu-toggler.btn{
    padding: 6px 14px 5px;
   display: none !important;
 }

  .sp-main-menu-toggler{
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
 }

.sp-mobile-menu{
  position: absolute !important;
  top: 70px;
  left: 0;
  width: 100%;
}

.sp-mobile-menu ul{
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-mobile-menu ul li{
  display: block;
  margin: 0;
  padding: 0 10px;
  background: #333;
  cursor: pointer;
}

.sp-mobile-menu ul li span.sp-menu-toggler{
  display: block;
  width: 30px;
  float: right;
  cursor: pointer;
  color: #fff;
  line-height: 40px;
  text-align: center;
}

.sp-mobile-menu ul li span.sp-menu-toggler i{
  display: block;
  line-height: 40px;
}

.sp-mobile-menu ul li span.sp-menu-toggler .icon-angle-right,
.sp-mobile-menu ul li span.sp-menu-toggler.collapsed .icon-angle-down{
  display: none;
}

.sp-mobile-menu ul li span.sp-menu-toggler .icon-angle-down,
.sp-mobile-menu ul li span.sp-menu-toggler.collapsed .icon-angle-right{
  display: block;
}

.sp-mobile-menu ul li a{
  display: inline-block;
  line-height: 40px;
  font-size: 15px;
  color: #777;
}

.sp-mobile-menu ul li.active > a,
.sp-mobile-menu ul li:hover > a{
  color: #fff;
}
/*!
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;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 14px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  *line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  text-shadow: 0 1px 1px rgba(255,255,255,0.75);
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
  background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
  background-image: -o-linear-gradient(top,#fff,#e6e6e6);
  background-image: linear-gradient(to bottom,#fff,#e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5e5e5', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #e6e6e6;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border: 1px solid #bbb;
  *border: 0;
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *margin-left: .3em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.btn:active,
.btn.active {
  background-color: #cccccc \9;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover {
  color: #333;
  text-decoration: none;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
  background-position: 0 -15px;
  -webkit-transition: background-position .1s linear;
  -moz-transition: background-position .1s linear;
  -o-transition: background-position .1s linear;
  transition: background-position .1s linear;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active,
.btn:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-large {
  padding: 9px 14px;
  font-size: 16px;
  line-height: normal;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-large [class^="icon-"] {
  margin-top: 2px;
}
.btn-small {
  padding: 3px 9px;
  font-size: 12px;
  line-height: 18px;
}
.btn-small [class^="icon-"] {
  margin-top: 0;
}
.btn-mini {
  padding: 2px 6px;
  font-size: 11px;
  line-height: 16px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255,255,255,0.75);
}
.btn {
  border-color: #c5c5c5;
  border-color: rgba(0,0,0,0.15) rgba(0,0,0,0.15) rgba(0,0,0,0.25);
}
.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top,#08c,#0044cc);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0044cc));
  background-image: -webkit-linear-gradient(top,#08c,#0044cc);
  background-image: -o-linear-gradient(top,#08c,#0044cc);
  background-image: linear-gradient(to bottom,#08c,#0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0043cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #0044cc;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #fff;
  background-color: #0044cc;
  *background-color: #003bb3;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #003399 \9;
}
.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #faa732;
  background-image: -moz-linear-gradient(top,#fbb450,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));
  background-image: -webkit-linear-gradient(top,#fbb450,#f89406);
  background-image: -o-linear-gradient(top,#fbb450,#f89406);
  background-image: linear-gradient(to bottom,#fbb450,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffab44f', endColorstr='#fff89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #f89406;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  color: #fff;
  background-color: #f89406;
  *background-color: #df8505;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}
.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #da4f49;
  background-image: -moz-linear-gradient(top,#ee5f5b,#bd362f);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));
  background-image: -webkit-linear-gradient(top,#ee5f5b,#bd362f);
  background-image: -o-linear-gradient(top,#ee5f5b,#bd362f);
  background-image: linear-gradient(to bottom,#ee5f5b,#bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #bd362f;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  color: #fff;
  background-color: #bd362f;
  *background-color: #a9302a;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}
.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #5bb75b;
  background-image: -moz-linear-gradient(top,#62c462,#51a351);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));
  background-image: -webkit-linear-gradient(top,#62c462,#51a351);
  background-image: -o-linear-gradient(top,#62c462,#51a351);
  background-image: linear-gradient(to bottom,#62c462,#51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #51a351;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #fff;
  background-color: #51a351;
  *background-color: #499249;
}
.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}
.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #49afcd;
  background-image: -moz-linear-gradient(top,#5bc0de,#2f96b4);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));
  background-image: -webkit-linear-gradient(top,#5bc0de,#2f96b4);
  background-image: -o-linear-gradient(top,#5bc0de,#2f96b4);
  background-image: linear-gradient(to bottom,#5bc0de,#2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #2f96b4;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #fff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}
.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}
.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #363636;
  background-image: -moz-linear-gradient(top,#444,#222);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));
  background-image: -webkit-linear-gradient(top,#444,#222);
  background-image: -o-linear-gradient(top,#444,#222);
  background-image: linear-gradient(to bottom,#444,#222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  border-color: #222 #222 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  *background-color: #222;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #fff;
  background-color: #222;
  *background-color: #151515;
}
.btn-inverse:active,
.btn-inverse.active {
  background-color: #090909 \9;
}
button.btn,
input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-link,
.btn-link:active {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #08c;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-link:hover {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
#sp-subheader h2 {
  line-height: normal;
  margin: 0;
}
a,
a:hover {
  text-decoration: none;
}
.page-header {
  padding-bottom: 10px;
  margin: 0 0 20px;
}
.entry-meta.muted {
  padding: 5px;
  margin-bottom: 20px;
  font-size: 12px;
}
.entry-meta.muted >span,
.entry-meta.muted >time {
  margin: 0 5px;
}
.entry-meta ul {
  margin: 0 5px;
}
.entry-meta ul.actions {
  float: right;
}
.entry-meta ul.actions li {
  display: inline-block;
}
.entry-meta ul.actions li.print-icon a::before {
  content: "\f02f";
}
.entry-meta ul.actions li.email-icon a::before {
  content: "\f003";
}
.entry-meta ul.actions li.edit-icon a::before {
  content: "\f044";
}
.entry-meta ul.actions li a {
  font-family: FontAwesome;
  display: block;
  font-size: 14px;
  margin-left: 5px;
}
.entry-meta ul.actions li a img {
  display: none;
}
.entry-meta ul.actions li a span {
  display: none;
}
ul.pagenav {
  list-style: none;
  padding: 0;
  clear: both;
  margin-top: 10px;
  margin-left: 0;
  overflow: hidden;
}
ul.pagenav .pagenav-prev {
  float: left;
}
ul.pagenav .pagenav-next {
  float: right;
}
dl dt,
dl dd {
  display: inline;
}
#editor-xtd-buttons {
  display: inline-block;
  margin-right: 10px;
}
.button2-left {
  display: inline-block;
  margin-right: 10px;
  margin-top: 15px;
}
.toggle-editor {
  display: inline-block;
}
.edit .modal {
  position: inherit;
  top: auto;
  left: auto;
  width: auto;
  margin-left: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
}
.pagination ul>li>a,
.pagination ul>li>span {
  background: #d1d1d1;
  color: #fff;
  border: 0;
  margin-right: 10px;
  box-shadow: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.pagination ul {
  box-shadow: none;
}
input[type="submit"],
input[type="button"],
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  text-shadow: none;
  font-weight: normal;
  color: #ccc;
  min-height: 30px;
  box-shadow: none;
  border: 0;
  border: 1px solid #ccc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
textarea:hover,
textarea:focus,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="datetime"]:hover,
input[type="datetime"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:focus,
input[type="date"]:hover,
input[type="date"]:focus,
input[type="month"]:hover,
input[type="month"]:focus,
input[type="time"]:hover,
input[type="time"]:focus,
input[type="week"]:hover,
input[type="week"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="url"]:hover,
input[type="url"]:focus,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="color"]:hover,
input[type="color"]:focus,
.uneditable-input:hover,
.uneditable-input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input.input-block-level {
  min-height: 45px;
}
.search .hasTooltip {
  padding: 10px 30px;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0;
  text-shadow: 0;
}
body {
  font-size: 13px;
  line-height: 21px;
  font-weight: 300;
  color: #888;
}
.center {
  text-align: center;
}
.center th,
.center tr,
.center td {
  text-align: center;
}
.body-innerwrapper {
  overflow-x: hidden;
}
.row-fluid {
  margin-bottom: 20px;
}
.row-fluid:first-child {
  margin-bottom: 0;
}
.homepage #sp-main-body-wrapper {
  padding: 0px 0 !important;
}
.homepage #sp-main-body-wrapper #sp-component-area {
  min-height: 0;
}
#pageloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #2D3E48;
  z-index: 999999;
}
#pageloader .loader-item {
  position: absolute;
  width: auto;
  margin: -25px 0 0 -25px;
  top: 50%;
  left: 50%;
  text-align: center;
}
.btn,
.btn.btn-primary,
button {
  color: #fff;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.btn:hover,
.btn.btn-primary:hover,
button:hover {
  color: #fff;
}
.btn.btn-danger {
  background: #da4f49;
}
.btn.btn-danger:hover {
  background: #c72f29;
}
#sp-top-wrapper {
  background: #1c2d3e;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}
#sp-top-wrapper ul {
  line-height: 29px;
}
#sp-top-wrapper ul.contact-details {
  float: left;
  margin: 0px;
}
#sp-top-wrapper ul.contact-details li {
  display: inline;
  padding-right: 26px;
  list-style: none;
}
#sp-top-wrapper ul.contact-details li a {
  color: #fff;
}
#sp-top-wrapper ul.contact-details li a i {
  padding-right: 8px;
}
#sp-top-wrapper #sp-topmenu ul {
  float: right;
  margin: 0px;
}
#sp-top-wrapper #sp-topmenu ul li {
  display: inline-block;
  padding-right: 10px;
  list-style: none;
}
#sp-top-wrapper #sp-topmenu ul li a {
  color: #fff;
}
#sp-header-wrapper {
  background-color: #fafafa;
  min-height: 15px;
  font-size: 16px;
  color: #5d6e80;
  border-bottom: px solid #eee;
  position: relative;
  z-index: 1;
}
#sp-header-wrapper .logo-wrapper .logo {
  background-position: 0 50%;
  background-repeat: no-repeat;
}
#sp-header-wrapper .logo-wrapper .logo-text {
  font-size: 24px;
}
#sp-header-wrapper .logo-wrapper .logo-slogan {
  font-size: 11px;
}
#sp-header-wrapper #sp-menu {
  float: right;
}
#sp-header-wrapper #sp-menu #sp-main-menu {
  text-align: right;
  margin-left: 0px;
  float: right;
  margin-right: 15px;
}
#sp-header-wrapper #sp-menu #sp-main-menu ul {
  text-align: left;
}
#sp-header-wrapper #sp-menu #sp-main-menu .sp-submenu-wrap {
  margin-top: 22px !important;
}
#sp-header-wrapper #sp-menu #sp-main-menu .sp-submenu-wrap .menu-image {
  margin-right: 10px;
}
#sp-header-wrapper #sp-menu #sp-main-menu ul.level-0 > li {
  margin: 0 30px 0 0;
}
#sp-header-wrapper #sp-menu #sp-main-menu ul.level-0 > li.last {
  margin: 0 10px 0px 0px;
}
#sp-header-wrapper #sp-social {
  position: fixed;
  right: 0px;
  width: 128px;
  top: -15px;
}
#sp-header-wrapper #sp-social ul.social-icons {
  list-style: none;
  margin: 15px 0;
  display: inline-block;
}
#sp-header-wrapper #sp-social ul.social-icons li {
  display: inline-block;
}
#sp-header-wrapper #sp-social ul.social-icons i {
  width: 32px;
  height: 33px;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
#sp-header-wrapper #sp-social ul.social-icons i:hover {
  color: #fff;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-facebook {
  background: #5d82d1;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-twitter {
  background: #40bff5;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-google-plus {
  background: #eb5e4c;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-pinterest {
  background: #e13138;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-linkedin {
  background: #1284ce;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-dribbble {
  background: #d77fa9;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-youtube {
  background: #de332c;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-flickr {
  background: #333;
}
#sp-header-wrapper #sp-social ul.social-icons .icon-search {
  background: #ddd;
  cursor: pointer;
}
#sp-slideshow-wrapper #sp-slider .row-fluid {
  margin-bottom: 0px;
}
#sp-quote-wrapper {
  background-color: #1c2d3e;
}
#sp-quote-wrapper h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #c5c5c5;
  line-height: 10px;
}
#sp-quote-wrapper h1 strong {
  font-size: 28px;
  font-style: italic;
  font-weight: bold;
  color: #1bc4a3;
}
#sp-quote-wrapper p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a;
}
#sp-quote-wrapper #sp-quote .row-fluid {
  margin-bottom: 0px;
}
#sp-feature-wrapper .tm_left_icon {
  margin-bottom: 100px;
  margin-right: 15px;
  float: left;
}
#sp-feature-wrapper .tm_left_icon:first-child {
  padding: 0;
}
#sp-feature-wrapper .tm_left_icon i {
  font-size: 18px;
}
#sp-feature-wrapper .tm_right_content h3 {
  color: #5d6e80;
  padding-bottom: 6px;
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  margin: 0;
}
#sp-feature-wrapper .tm_right_content a {
  font-weight: 500;
  color: #5d6e80;
}
#sp-feature-wrapper .row-fluid {
  margin-bottom: 30px;
}
#sp-parallax-wrapper {
  background: url(/templates/ps_boxite/images/service_bg.jpg) 50% 0 no-repeat fixed;
  background-size: cover;
  min-height: 200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#sp-parallax-wrapper #parallax {
  background-image: url("/templates/ps_boxite/images/pixel.png");
  background-color: rgba(0,0,0,0.52);
  padding: 60px 0px 80px;
}
#sp-parallax-wrapper h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 55px;
  padding-bottom: 20px;
}
#sp-parallax-wrapper p {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 30px;
}
#sp-parallax-wrapper a {
  margin-left: 10px;
  margin-right: 10px;
}
#sp-services-wrapper {
  background: url(/templates/ps_boxite/images/service_bg.jpg) 50% 0 no-repeat fixed;
  min-height: 200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-size: cover;
  color: #fff;
}
#sp-services-wrapper .tm-services-main {
  background-image: url("/templates/ps_boxite/images/pixel.png");
  padding: 60px 0px 80px;
  background: transparent;
}
#sp-services-wrapper .tm-services-main i {
  font-size: 85px;
  text-shadow: 0px 3px 5px #6E6E6E;
}
#sp-services-wrapper h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
  color: #fff;
}
#sp-services-wrapper h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  text-align: center;
}
#sp-services-wrapper h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: normal;
  margin-bottom: 24px;
  color: #fff;
}
#sp-services-wrapper p {
  line-height: 24px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
}
#sp-gallery-wrapper .sp-portfolio h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
#sp-gallery-wrapper .sp-portfolio p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  width: 60%;
  text-align: center;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item {
  height: 290px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item .sp-portfolio-thumb img {
  position: relative;
  display: block;
  min-height: 100%;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item .sp-portfolio-thumb:hover img {
  opacity: 0.7;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption {
  top: auto;
  bottom: 0;
  padding: 0;
  width: 100%;
  color: #fff;
  -webkit-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  -moz-transform: translate3d(0,100%,0);
  -o-transform: translate3d(0,100%,0);
  position: absolute;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h3 {
  bottom: 200px;
  position: relative;
  opacity: 0;
  float: left;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h3 a {
  font-size: 20px;
  text-transform: capitalize;
  text-shadow: 0px 0px 1px #FFFFFF;
  font-weight: 300;
  background: rgba(255,255,255,0.62);
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.43);
  border-radius: 5px;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h4 {
  display: inline-block;
  float: left;
  font-size: 20px;
  text-transform: uppercase;
  padding: 25px 0px 25px 15px;
  margin: 0;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span {
  display: inline-block;
  padding: 20px 10px;
  float: right;
  speak: none;
  -webkit-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  -moz-transform: translate3d(0,100%,0);
  -o-transform: translate3d(0,100%,0);
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span i {
  color: #fff;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: 25px;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption {
  bottom: 80px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption h3 {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  opacity: 1;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption >span {
  transition-delay: 0.3s;
  transform: translate3d(0,0,0);
}
#sp-video-popup-wrapper {
  background: url(/templates/ps_boxite/images/video_bg.png) 1% 58% repeat;
  text-align: center;
}
#sp-video-popup-wrapper a {
  display: block;
  width: 100%;
  min-height: 40px;
}
#sp-video-popup-wrapper a i {
  font-size: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 15px;
  line-height: 40px;
  -webkit-transition: all .4s linear;
  -moz-transition: all .4s linear;
  -o-transition: all .4s linear;
  transition: all .4s linear;
}
#sp-video-popup-wrapper:hover a i {
  font-size: 25px;
  padding: 10px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
#sp-testimonial-wrapper #sp-testimonial {
  text-align: center;
}
#sp-testimonial-wrapper #sp-testimonial h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
#sp-testimonial-wrapper #sp-testimonial h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
#sp-testimonial-wrapper #sp-testimonial .carousel-control {
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
  line-height: 36px;
  font-size: 36px;
  top: 30%;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content {
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-bottom: -2px;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img {
  width: 8%;
  display: inline-block;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: -15px;
  padding: 5px 5px 20px 5px;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content i {
  display: inline-block;
  height: 100%;
  width: 5%;
  font-size: 40px;
  padding: 10px;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
  display: inline-block;
  width: 80%;
  padding: 21px 10px;
  text-align: left;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_name {
  padding: 17px 30px;
  width: 20%;
  margin: 0 auto;
  border-radius: 10px;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_name span {
  padding: 15px 30px;
  border-radius: 0px 0px 10px 10px;
}
#sp-random-box-wrapper {
  background: url(/templates/ps_boxite/images/service_bg.jpg) 50% 0 repeat fixed;
  min-height: 200px;
  margin: 0 auto;
  text-align: center;
  background-size: cover;
}
#sp-random-box-wrapper .container {
  background-image: url("/templates/ps_boxite/images/pixel.png");
  padding: 60px 0px 80px;
}
#sp-random-box-wrapper #sp-randombox h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
  color: #fff;
}
#sp-random-box-wrapper #sp-randombox h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
#sp-random-box-wrapper #sp-randombox .random-box-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
}
#sp-random-box-wrapper #sp-randombox .random-box-icon i {
  position: relative;
  font-size: 26px;
  top: 30%;
}
#sp-random-box-wrapper #sp-randombox .random-box-info {
  text-align: center;
  padding-top: 10px;
}
#sp-random-box-wrapper #sp-randombox .random-box-info span {
  font-size: 45px;
  font-weight: bold;
}
#sp-partner-wrapper {
  min-height: 200px;
  margin: 0 auto;
  margin-top: -350px;
}
#sp-partner-wrapper .container {
  padding: 50px 50px 10px;
  background: #fff;
  border-radius: 0px 0px 20px 20px;
}
#sp-partner-wrapper #sp-partner h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
#sp-partner-wrapper #sp-partner h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
#sp-partner-wrapper #sp-partner .span2 {
  margin-bottom: 20px;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group {
  border: 1px solid #fff;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group .accordion-toggle {
  color: #fff;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group .in {
  background: #EAF0F1;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group i {
  margin-right: 10px;
}
#sp-main-bottom-wrapper h2 {
  font-weight: 700;
  font-size: 30px;
}
#sp-popular-post-wrapper .popular_post li {
  border: 3px double #E0E0E0;
}
#sp-popular-post-wrapper .popular_post li .tm_media {
  overflow: hidden;
}
#sp-popular-post-wrapper .popular_post li .tm_media .moduleItemImage {
  overflow: hidden;
  z-index: -1;
}
#sp-popular-post-wrapper .popular_post li .tm_media .moduleItemImage img {
  width: 100%;
  float: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  overflow: hidden;
}
#sp-popular-post-wrapper .popular_post li .tm_media .moduleItemImage img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#sp-popular-post-wrapper .popular_post li .moduleItemVideo {
  width: 100%;
  float: none;
  min-height: 90px;
}
#sp-popular-post-wrapper .popular_post li .media-body {
  padding: 15px 10px 5px;
}
#sp-popular-post-wrapper .popular_post li .media-body h4 {
  margin: 0;
}
#sp-popular-post-wrapper .popular_post li .media-body .moduleItemDateCreated {
  font-size: 11px;
}
#sp-popular-post-wrapper .popular_post li .moduleItemIntrotext {
  padding: 0px 10px 10px 10px;
  line-height: 24px;
  font-size: 13px;
}
#sp-popular-post-wrapper .popular_post li .moduleItemReadMore {
  text-align: center;
  display: block;
  padding: 15px 10px;
  color: #fff;
}
#sp-popular-post-wrapper .popular_post li .moduleItemReadMore i {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px;
  margin-left: 10px;
}
#sp-popular-post-wrapper .popular_post .mod_header h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
#sp-popular-post-wrapper .popular_post .mod_header h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
#sp-buy-now-wrapper {
  background: url(/templates/ps_boxite/images/pixel.png);
  margin: 0 auto;
  padding: 0;
}
#sp-buy-now-wrapper #sp-buynow h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}
#sp-buy-now-wrapper #sp-buynow .span3 .btn {
  line-height: 30px;
  background: #fff;
}
#sp-buy-now-wrapper #sp-buynow .span3 .btn:hover {
  color: #000;
}
#sp-buy-now-wrapper .row-fluid {
  margin-bottom: 0px;
}
#sp-subheader-wrapper {
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 20px 0px;
  background: url(/templates/ps_boxite/images/pixel.png);
}
#sp-subheader-wrapper #sp-subheader h2 {
  font-size: 25px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0px 0px 1px #948A8A;
}
#sp-subheader-wrapper #sp-breadcrumb {
  line-height: 33px;
}
#sp-subheader-wrapper #sp-breadcrumb .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-align: right;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
#sp-subheader-wrapper #sp-breadcrumb .breadcrumb a {
  text-shadow: 0px 0px 1px #969696;
  color: #FFFFFF;
}
#sp-subheader-wrapper #sp-breadcrumb .breadcrumb span {
  color: #ddd;
  text-shadow: 0px 0px 1px #C9C9C9;
}
#sp-subheader-wrapper #sp-breadcrumb .breadcrumb .divider i {
  display: none;
}
#sp-main-body-wrapper {
  padding: 30px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#sp-main-body-wrapper .sp-portfolio {
  margin-bottom: 60px;
}
#sp-main-body-wrapper .sp-portfolio h2 {
  text-align: center;
  font-size: 50px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
#sp-main-body-wrapper .sp-portfolio p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  width: 60%;
  text-align: center;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item {
  height: 290px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item .sp-portfolio-thumb img {
  position: relative;
  display: block;
  min-height: 100%;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item .sp-portfolio-thumb:hover img {
  opacity: 0.7;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption {
  top: auto;
  bottom: 0;
  padding: 0;
  width: 100%;
  color: #fff;
  -webkit-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  -moz-transform: translate3d(0,100%,0);
  -o-transform: translate3d(0,100%,0);
  position: absolute;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption h3 {
  bottom: 200px;
  position: relative;
  opacity: 0;
  float: left;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption h3 a {
  font-size: 20px;
  text-transform: capitalize;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption h4 {
  display: inline-block;
  float: left;
  font-size: 20px;
  text-transform: uppercase;
  padding: 25px 0px 25px 15px;
  margin: 0;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption >span {
  display: inline-block;
  padding: 20px 10px;
  float: right;
  speak: none;
  -webkit-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  -moz-transform: translate3d(0,100%,0);
  -o-transform: translate3d(0,100%,0);
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item figcaption >span i {
  color: #fff;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: 25px;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption {
  bottom: 80px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption h3 {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  opacity: 1;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item:hover figcaption >span {
  transition-delay: 0.3s;
  transform: translate3d(0,0,0);
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item.col-4 {
  height: 250px;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-item.col-4 h3 {
  bottom: 170px;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-loadmore a {
  border-radius: 10px;
  font-size: 12px !important;
  font-weight: 700;
  padding: 0px !important;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-filter {
  text-align: center;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-filter li a:not(.active) {
  border: 1px solid #ddd;
  background: #FAFAFA;
}
#sp-bottom-wrapper {
  padding: 40px 0;
  background-image: url(/templates/ps_boxite/images/pixel.png);
  border-bottom: 1px solid #414f5a;
  color: #fff;
}
#sp-bottom-wrapper ul {
  margin: 0;
}
#sp-bottom-wrapper ul li {
  list-style: none;
}
#sp-bottom-wrapper ul li i {
  float: left;
  margin: 4px 0 0;
}
#sp-bottom-wrapper ul li p {
  line-height: 24px;
  margin-left: 20px;
  margin-top: -2px;
}
#sp-bottom-wrapper .contact-us a {
  color: #fff;
}
#sp-bottom-wrapper #sp-bottom4 .acymailing_introtext {
  color: #fff;
  margin-bottom: 15px !important;
}
#sp-bottom-wrapper #sp-bottom4 .fieldacyemail {
  display: inline-block;
  float: left;
  width: 59%;
}
#sp-bottom-wrapper #sp-bottom4 .acyfield_email input {
  width: 100%;
  float: left;
  padding: 15px 10px;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #d5d5d5 !important;
  background: #fff !important;
}
#sp-bottom-wrapper #sp-bottom4 .acyfield_email span.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
#sp-bottom-wrapper #sp-bottom4 .acysubbuttons input {
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0);
  border-radius: 0px 5px 5px 0px;
}
#sp-bottom-wrapper h3 {
  font-size: 22px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}
#sp-bottom-wrapper .k2ItemsBlock >ul >li a.moduleItemTitle {
  color: #ccc;
}
#sp-bottom-wrapper .k2TagCloudBlock >a {
  background: transparent;
  border: 1px solid #999;
}
#sp-bottom-wrapper .k2TagCloudBlock >a:hover {
  border: 1px solid transparent;
}
#sp-bottom-wrapper #sp-bottom4 {
  color: #ccc;
}
#sp-bottom-wrapper #sp-bottom4 a {
  text-decoration: underline;
}
#sp-bottom-wrapper #sp-bottom4 .adress {
  font-weight: 400;
}
#sp-footer-wrapper {
  background: #212733;
  padding: 30px 0;
}
#sp-footer-wrapper ul {
  display: inline-block;
}
#sp-footer-wrapper ul.nav {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 5px;
  margin-left: 10px;
  font-size: 12px;
}
#sp-footer-wrapper ul.nav li {
  display: inline-block;
  margin: 0 5px;
  font-size: 14px;
  margin-right: 20px;
}
#sp-footer-wrapper ul.nav li a {
  display: block;
  color: #999;
  text-transform: uppercase;
}
#sp-footer-wrapper ul.nav li a:hover {
  background: transparent;
}
#sp-footer-wrapper .sp-totop {
  display: inline-block;
  position: fixed;
  right: 25px;
  padding: 0px 15px;
  font-size: 25px;
  bottom: 16px;
  border-radius: 4px;
}
#sp-footer-wrapper .sp-totop i {
  color: #fff;
}
#sp-footer-wrapper .sp-totop small {
  display: none;
}
#sp-footer-wrapper #sp-footer1 .copyright,
#sp-footer-wrapper #sp-footer1 .designed-by {
  display: inline-block;
  color: #9B9B9B;
}
#sp-footer-wrapper #sp-footer1 .copyright a,
#sp-footer-wrapper #sp-footer1 .designed-by a {
  color: #727272;
}
#sp-footer-wrapper #sp-footer1 .designed-by {
  display: block;
}
#sp-footer-wrapper #sp-footer2 {
  text-align: right;
}
#sp-footer-wrapper #sp-footer2 li a {
  text-transform: capitalize;
}
.ltr #sp-footer-wrapper .helix-framework {
  float: left;
  margin-right: 15px;
}
.ltr #sp-footer-wrapper # {
  text-align: right;
}
.rtl #sp-footer-wrapper .helix-framework {
  float: right;
  margin-left: 15px;
}
.rtl #sp-footer-wrapper #sp-footer2 {
  text-align: left;
}
.rtl .contact-details {
  float: right !important;
}
.rtl #sp-menu {
  float: left;
}
.rtl #sp-menu #sp-main-menu {
  margin-left: 0;
  float: left;
}
.tm-about-us h2 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
.tm-about-us h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
.tm-about-us .post_header {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -15px;
  line-height: 32px;
}
.tm-about-us .skill .circliful {
  position: relative;
  width: 200px;
  background: #F7F7F7;
  border: 3px double #ddd;
  border-radius: 20px;
}
.tm-about-us .skill .circle-text,
.tm-about-us .skill .circle-info,
.tm-about-us .skill .circle-text-half,
.tm-about-us .skill .circle-info-half {
  width: 100%;
  position: absolute;
  text-align: center;
  display: inline-block;
}
.tm-about-us .skill .circle-info,
.tm-about-us .skill .circle-info-half {
  color: #999;
}
.tm-about-us .skill .circliful .icon {
  margin: -10px 3px 0 3px;
  position: relative;
  bottom: 4px;
}
.tm-about-us #tm-team-page .span3 {
  border: 1px solid #CCCBC9;
  background: #fff;
  height: auto;
  text-align: center;
  font-weight: 300;
  padding: 15px;
  cursor: pointer;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px rgba(230,226,220,0.6);
  -webkit-box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px rgba(230,226,220,0.6);
  box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px rgba(230,226,220,0.6);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tm-about-us #tm-team-page .span3 img {
  background: #FFFFFF;
  border: 5px solid #CCCBC9;
  width: 120px;
  height: 120px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tm-about-us #tm-team-page .span3 h3 {
  color: #202E37;
  text-transform: uppercase;
  margin: 0px;
  font-weight: 300;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tm-about-us #tm-team-page .span3 .tm-designation {
  font-size: 18px;
  font-weight: 300;
  color: #777;
  line-height: 15px;
  margin: 10px auto 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tm-about-us #tm-team-page .span3 p.tm-description {
  font-size: 12px;
  color: #777;
  padding: 10px 0px;
}
.tm-about-us #tm-team-page .span3 .social-icons {
  margin-bottom: 10px;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
.tm-about-us #tm-team-page .span3 .social-icons a {
  background: #FFFFFF;
  border: 1px solid #CCCBC9;
  color: #202E37;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  height: 35px;
  margin-left: 5px;
  text-align: center;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.tm-about-us #tm-team-page .span3:hover {
  -moz-box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px #fff;
  -webkit-box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px #fff;
  box-shadow: 0 0 1px 1px #fff inset, inset 0 0 10px 3px #fff;
  border: 1px solid #FFFFFF;
}
.tm-about-us .about-img {
  padding: 20px 0;
}
.service-page h2 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
.service-page h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
.service-page .services1 .tm-services-icon {
  display: block;
  width: 150px;
  height: 150px;
  border: 10px solid #F5F5F5;
  border-radius: 500px;
  margin: 0px auto 15px auto;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #2D728B;
}
.service-page .services1 .tm-services-icon:hover {
  background: #2D3E48;
}
.service-page .services1 .tm-services-icon i {
  font-size: 60px;
  color: #fff;
  padding: 45px;
  line-height: 145px;
}
.service-page .services1 .tm-services-content {
  text-align: center;
}
.service-page .services1 .tm-services-content h3 {
  margin: 5px auto 15px;
  padding: 0;
  text-transform: uppercase;
  color: #202E37;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.service-page .services1 .tm-services-content p {
  font-weight: 100;
  margin-bottom: 15px;
}
.pricing-table .span2 {
  width: 17.95%;
}
.pricing-table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-table .plan {
  text-align: center;
}
.pricing-table .plan .plan-name {
  background: #2C3E50;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  padding: 40px 10px;
  border-radius: 20px 20px 0px 0px;
}
.pricing-table .plan .plan-price {
  background: #2C3E50;
}
.pricing-table .plan .plan-price h3 {
  background-color: #EAEEF3;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  padding: 20px 0 20px 0;
}
.pricing-table .plan .plan-price .plan-duration {
  color: #fff;
  line-height: 40px;
  font-style: italic;
  font-weight: 700;
}
.pricing-table .plan .plan-details {
  background: #f5f5f5;
}
.pricing-table .plan .plan-details li {
  line-height: 48px;
  font-size: 16px;
  color: #333;
  font-weight: 300;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 25px;
}
.pricing-table .plan .plan-details li:first-child {
  padding-top: 20px;
}
.pricing-table .plan .plan-action {
  background: #2C3E50;
  padding: 30px 0;
}
.pricing-table .plan .plan-action a {
  padding: 10px 30px;
  font-size: 16px;
  color: #2C3E50;
  text-transform: uppercase;
  background: #fff;
  border: none;
  text-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pricing-table .plan .plan-action a:hover {
  color: #fff;
}
.pricing-table .featured .plan-action a:hover {
  background: #d9d9d9;
}
.history .tm-history-main h2 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
.history .tm-history-main h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
.history .tm-history-main .tm_history_header span {
  display: inline-block;
  background: #ddd;
  padding: 10px 20px;
  font-size: 22px;
  border-radius: 10px 0px 0px 10px;
  border-right: 5px solid #1c2d3e;
}
.history .tm-history-main .tm_history_header h3 {
  display: inline-block;
  border-left: 5px solid #1c2d3e;
  padding: 20px 15px;
  margin: 0px;
  width: 410px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.testimonials .tm-testimonialpage-main h2 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
.testimonials .tm-testimonialpage-main h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
.testimonials .tm-testimonialpage-main .star-divider {
  border-bottom: 1px solid #D5D5D5;
  margin-top: 40px;
  margin-bottom: 60px;
}
.testimonials .tm-testimonialpage-main .star-divider .star-divider-icon {
  text-align: center;
}
.testimonials .tm-testimonialpage-main .star-divider .star-divider-icon i {
  background: none repeat scroll 0 0 #FFFFFF;
  border-radius: 100px;
  color: #D5D5D5;
  font-size: 18px;
  padding: 11px;
  position: relative;
  top: 15px;
}
.testimonials .tm-testimonialpage-main .testimonial_content p {
  border-bottom: 4px solid #1dd2af;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.testimonials .tm-testimonialpage-main .testimonial_content p:before {
  content: "\f10d";
  font-family: "FontAwesome";
  top: -6px;
  position: relative;
  font-size: 12px;
  margin-right: 10px;
}
.testimonials .tm-testimonialpage-main .testimonial_content p:after {
  content: "\f10e";
  font-family: "FontAwesome";
  top: 6px;
  position: relative;
  font-size: 12px;
  margin-left: 10px;
}
.testimonials .tm-testimonialpage-main .testimonial_head .span2 {
  border-right: 4px solid #1dd2af;
  padding-right: 10px;
}
.testimonials .tm-testimonialpage-main .testimonial_head .span10 {
  background: #F1F1F1;
  margin-left: 0px;
  padding: 9px 20px;
  margin-right: 0px;
}
.testimonials .tm-testimonialpage-main .testimonial_head .span10 i {
  font-size: 11px;
}
.faqs .tm-faq-main h2 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin: 0 0 22px 0;
}
.faqs .tm-faq-main h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: center;
}
.faqs .tm-faq-main .tm_faq_header {
  margin-bottom: 20px;
}
.faqs .tm-faq-main .tm_faq_header span {
  display: inline-block;
  padding: 10px 20px;
  font-size: 22px;
  border-radius: 10px 0px 0px 10px;
  color: #fff;
}
.faqs .tm-faq-main .tm_faq_header h3 {
  display: inline-block;
  padding: 15px 15px;
  margin: 0px;
  width: 85%;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  background: #f1f1f1;
}
.contact-info i {
  margin-right: 10px;
}
.contact-form-submit .btn-large {
  padding: 12px 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-shadow: none;
  box-shadow: 0;
  border: 0;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter {
  margin-bottom: 50px;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter li {
  margin-right: 20px;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter li a {
  font-size: 16px;
  padding: 10px 15px;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter li a.btn {
  background-color: transparent;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter li a.btn:hover,
.portfolio .sp-portfolio ul.sp-portfolio-filter li a.btn.active {
  color: #fff;
}
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay a.sp-portfolio-preview,
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay .sp-portfolio-link {
  width: 35px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay a.sp-portfolio-preview:hover,
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay .sp-portfolio-link:hover {
  background: #fff;
}
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay .sp-portfolio-item-details a {
  color: #fff;
}
#Kunena tr.krow1 td,
#Kunena tr.krow2 td {
  padding: 20px;
}
#Kunena tr.krow2 td {
  background-color: #fff;
}
#Kunena div.kblock > div.kheader,
#Kunena .kblock div.kheader {
  padding: 20px 10px 20px 20px;
}
#Kunena div.kblock > div.kheader a.ktoggler,
#Kunena .kblock div.kheader a.ktoggler {
  padding: 10px;
}
#Kunena input[type="submit"],
#Kunena input[type="reset"] {
  color: #fff !important;
  padding: 5px 15px;
  border-radius: 3px;
}
#Kunena td,
#Kunena table,
#Kunena th,
#Kunena div,
#Kunena p,
#Kunena span,
#Kunena a,
#Kunena input[type="submit"],
#Kunena input[type="reset"],
#Kunena input[type="text"],
#Kunena select {
  font-family: 'Open Sans', sans-serif;
}
#Kunena select,
#Kunena textarea,
#Kunena input[type="text"],
#Kunena input[type="password"],
#Kunena input[type="datetime"],
#Kunena input[type="datetime-local"],
#Kunena input[type="date"],
#Kunena input[type="month"],
#Kunena input[type="time"],
#Kunena input[type="week"],
#Kunena input[type="number"],
#Kunena input[type="email"],
#Kunena input[type="url"],
#Kunena input[type="search"],
#Kunena input[type="tel"],
#Kunena input[type="color"],
#Kunena .uneditable-input {
  border: 1px solid #d3d3d3;
  border-radius: 0px;
  padding: 5px 10px;
}
#Kunena select,
#Kunena select:focus,
#Kunena select:hover {
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 5px 10px;
}
#Kunena td.kcol-first {
  border-color: #ebebeb;
}
#Kunena td.kcol-mid,
#Kunena td,
#Kunena table.kblocktable,
#Kunena div.kblock div.kbody,
#Kunena .kforum-pathway {
  border-color: #ebebeb;
}
#Kunena .kforum-pathway {
  background-color: #F5F5F5;
}
#Kunena .klist-markallcatsread {
  border-color: #D6D6D6;
}
#Kunena .kblock div.kheader {
  border-bottom-width: 5px;
  border-bottom-color: #ddd;
}
#Kunena a {
  font-weight: normal;
}
#Kunena .close {
  opacity: .6;
}
.carousel_class div div {
  height: 313px !important;
  margin: 0 !important;
}
.content-img1 {
  display: block;
  margin: auto;
  position: relative;
  bottom: 0px;
}
.slide6,
.slide7,
.slide8,
.slide9,
.slide10 {
  height: 100% !important;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  position: relative;
  padding-top: 80px;
  margin: 0;
  background-position: 50% 0;
}
.carousel_wrap div {
  height: 300px !important;
  margin: 0 !important;
}
#offcanvas-toggler {
  float: right;
  line-height: 0;
  margin-right: 15px;
  position: fixed;
  color: #fff;
  padding: 10px 15px;
  right: 0;
  top: 0;
  z-index: 9999;
  background: #1284ce;
}
#offcanvas-toggler >i {
  display: inline-block;
  padding: 0;
  font-size: 18px;
  background: transparent;
  margin: 0;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
#offcanvas-toggler >i:hover {
  color: #fff;
}
.close-offcanvas {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1;
  color: #fff;
  border: 2px solid #eee;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 21px;
  text-align: center;
  font-size: 12px;
}
.close-offcanvas:hover {
  background: #000;
  color: #fff;
}
.offcanvas-menu {
  width: 280px;
  height: 100%;
  color: #999;
  position: fixed;
  top: 0;
  opacity: 0;
  z-index: 9999;
  overflow-y: scroll;
}
.offcanvas-menu .offcanvas-inner {
  padding: 30px 20px 20px 20px;
}
.offcanvas-menu .offcanvas-inner .module {
  margin-top: 20px;
}
.offcanvas-menu .offcanvas-inner .module ul > li {
  border: none;
}
.offcanvas-menu .offcanvas-inner .module ul > li a {
  border-bottom: 1px dotted #e8e8e8;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  padding: 4px 10px;
  color: #fff;
  width: 100%;
  text-align: left;
  line-height: 30px;
}
.offcanvas-menu .offcanvas-inner .module ul > li a span {
  padding-left: 5px;
}
.offcanvas-menu .offcanvas-inner .module ul > li a img {
  width: 16px;
}
.offcanvas-menu .offcanvas-inner .module ul > li a:hover {
  background: #f5f5f5;
  color: #000;
}
.offcanvas-menu .offcanvas-inner .module ul > li >a:before {
  display: none;
}
.offcanvas-menu .offcanvas-inner .module ul ul li a {
  float: left;
  margin-left: 35px;
  font-size: 13px;
  width: 80%;
}
.offcanvas-menu .offcanvas-inner .module:first-child {
  margin-top: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module .sp-module-content > ul {
  margin: 0 -20px;
}
.offcanvas-menu .offcanvas-inner .search {
  margin-top: 25px;
}
.offcanvas-menu .offcanvas-inner .search input {
  width: 100%;
  border-radius: 0;
  border: 1px solid #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.offcanvas {
  width: 100%;
  height: 100%;
  position: relative;
}
.offcanvas .body-innerwrapper:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.offcanvas .offcanvas-menu {
  opacity: 1;
}
.ltr .offcanvas-menu {
  -webkit-transition: opacity 400ms cubic-bezier(0.7,0,0.3,1), right 400ms cubic-bezier(0.7,0,0.3,1);
  transition: opacity 400ms cubic-bezier(0.7,0,0.3,1), right 400ms cubic-bezier(0.7,0,0.3,1);
}
.ltr .body-innerwrapper:after {
  right: 0;
}
.ltr .offcanvas-menu {
  right: -280px;
}
.offcanvas-menu {
  background: #3474db;
  color: #fff;
}
.offcanvas .offcanvas-menu {
  opacity: 1;
}
.ltr.offcanvas .offcanvas-menu {
  right: 0;
}
#sp-main-menu {
  padding-top: 5px;
  margin-left: 50px;
  font-size: 16px;
  font-weight: 300;
}
#sp-main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sp-main-menu ul.level-0 > li {
  display: inline-block;
  margin: 0 35px 0 0;
  padding: 0;
  position: relative;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
#sp-main-menu ul.level-0 > li >a {
  display: block;
  margin: 0;
  padding: 0px 0px;
  color: #333;
}
#sp-main-menu ul.level-0 > li >a .menu-desc {
  font-size: 11px;
  color: #999;
  display: block;
}
#sp-main-menu ul.level-0 > li.parent >a:after {
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: -13px;
  margin-top: -9px;
  font-size: 14px;
  font-weight: normal;
}
#sp-main-menu ul.level-0 > li.parent:hover {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
#sp-main-menu ul.level-0 > li.parent:hover >a:after {
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: -13px;
  margin-top: -9px;
  font-size: 14px;
  font-weight: normal;
}
#sp-main-menu li li:not(.sp-menu-group) {
  display: block;
  border-top: 1px solid #eee;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
#sp-main-menu li li:not(.sp-menu-group):first-child {
  border-top: none;
}
#sp-main-menu li li:not(.sp-menu-group) a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  padding: 15px;
  color: #333;
  font-weight: 400;
}
#sp-main-menu li li:not(.sp-menu-group).parent >a span.menu {
  position: relative;
  padding-right: 20px;
  display: block;
}
#sp-main-menu li li:not(.sp-menu-group).parent >a:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 10px;
  font-weight: normal;
  position: absolute;
  right: 10px;
  top: 15px;
}
#sp-main-menu li li:not(.sp-menu-group):hover,
#sp-main-menu li li:not(.sp-menu-group).active {
  background: #f5f5f5;
}
#sp-main-menu div.sp-menu-group {
  margin: 10px;
}
#sp-main-menu div.sp-menu-group a.sp-menu-group {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #eee;
  color: #666;
}
#sp-main-menu div.sp-menu-group a.sp-menu-group .menu-title {
  text-transform: uppercase;
}
#sp-main-menu div.sp-menu-group .sp-menu-group-content .module {
  margin: 0;
  padding: 10px 0 0;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
}
#sp-main-menu div.sp-menu-group .sp-menu-group-content .module h4 {
  font-size: 14px;
}
.sp-submenu {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  margin-top: 50px;
  -webkit-transition: margin 300ms, visibility 100ms, opacity 100ms;
  -moz-transition: margin 300ms, visibility 100ms, opacity 100ms;
  -o-transition: margin 300ms, visibility 100ms, opacity 100ms;
  transition: margin 300ms, visibility 100ms, opacity 100ms;
}
.sp-submenu.open {
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  -webkit-transition: all 400ms cubic-bezier(0.000,1.010,0.930,-0.6);
  -moz-transition: all 400ms cubic-bezier(0.000,1.010,0.930,-0.6);
  -o-transition: all 400ms cubic-bezier(0.000,1.010,0.930,-0.6);
  transition: all 400ms cubic-bezier(0.000,1.010,0.930,-0.6);
}
.sp-submenu .sp-submenu-wrap {
  background: #fafafa;
  border-top: 3px solid #0db3c7;
  margin-top: 25px !important;
}
.sp-submenu .megacol {
  float: left;
}
.sp-submenu.sub-level-child {
  margin-left: 30px;
  margin-top: 0;
}
.sp-submenu.sub-level-child.open {
  margin-left: 0px;
}
.ltr .sp-submenu {
  left: 0;
}
.rtl .sp-submenu {
  right: 0;
}
.rtl #sp-main-menu {
  float: right;
}
.rtl #sp-main-menu ul.level-0 > li.parent >a span.menu {
  padding: 0 10px;
  padding-right: 0;
}
.rtl #sp-main-menu li li:not(.sp-menu-group).parent >a span.menu {
  padding-right: 0;
  padding-left: 20px;
}
.menu-fixed {
  top: 0;
  width: 100%;
}
.fixed .hidden-desktop {
  display: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
}
h2 {
  font-size: 24px;
  color: #333;
  font-weight: 500;
}
body,
p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}
a.readmore {
  border: 1px solid #999;
  color: #999;
  padding: 6px 15px 8px;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
a.readmore:hover {
  background: #1e75ba;
  border: 1px solid transparent;
  color: #fff;
}
.sp-dropcap {
  overflow: hidden;
}
.sp-dropcap:first-letter {
  color: #666;
  display: block;
  float: left;
  font-size: 50px;
  line-height: 40px;
  padding: 4px 8px 0 0;
}
ul.arrow,
ul.arrow-double,
ul.tick,
ul.cross,
ul.star,
ul.rss {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.arrow li::before,
ul.arrow li::after,
ul.arrow-double li::before,
ul.arrow-double li::after,
ul.tick li::before,
ul.tick li::after,
ul.cross li::before,
ul.cross li::after,
ul.star li::before,
ul.star li::after,
ul.rss li::before,
ul.rss li::after {
  font-family: FontAwesome;
  font-size: 11px;
}
.ltr ul.arrow li::before,
.ltr ul.arrow-double li::before,
.ltr ul.tick li::before,
.ltr ul.cross li::before,
.ltr ul.star li::before,
.ltr ul.rss li::before {
  margin-right: 5px;
}
.ltr ul.arrow li::before {
  content: "\f105";
}
.ltr ul.arrow-double li::before {
  content: "\f101";
}
.ltr ul.tick li::before {
  content: "\f00c";
}
.ltr ul.cross li::before {
  content: "\f00d";
}
.ltr ul.star li::before {
  content: "\f006";
}
.ltr ul.rss li::before {
  content: "\f09e";
}
.rtl ul.arrow li::after,
.rtl ul.arrow-double li::after,
.rtl ul.tick li::after,
.rtl ul.cross li::after,
.rtl ul.star li::after,
.rtl ul.rss li::after {
  margin-left: 5px;
}
.rtl ul.arrow li::after {
  content: "\f104";
}
.rtl ul.arrow-double li::after {
  content: "\f100";
}
.rtl ul.tick li::after {
  content: "\f00c";
}
.rtl ul.cross li::after {
  content: "\f00d";
}
.rtl ul.star li::after {
  content: "\f006";
}
.rtl ul.rss li::after {
  content: "\f09e";
}
img.pull-left,
.pull-left > img {
  margin-right: 15px;
}
img.pull-right,
.pull-right > img {
  margin-left: 15px;
}
.rtl img.pull-left,
.rtl .pull-left > img {
  margin-left: 15px;
}
.rtl img.pull-right,
.rtl .pull-right > img {
  margin-right: 15px;
}
.sp-blocknumber {
  position: relative;
  min-height: 45px;
}
.sp-blocknumber span {
  font-weight: bold;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
}
.sp-blocknumber span.rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.sp-blocknumber span.circle {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.ltr .sp-blocknumber {
  padding: 5px 0 5px 60px;
}
.ltr .sp-blocknumber span {
  left: 0;
}
.rtl .sp-blocknumber {
  padding: 5px 60px 5px 0;
}
.rtl .sp-blocknumber span {
  right: 0;
}
.sp-block.rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.sp-bubble {
  position: relative;
  margin-bottom: 40px;
}
.sp-bubble cite {
  display: block;
  height: 30px;
  line-height: 36px;
  position: absolute;
  bottom: -30px;
}
.sp-bubble cite span {
  content: ' ';
  position: absolute;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border-bottom-color: transparent !important;
}
.ltr .sp-bubble cite {
  left: 15px;
  padding-left: 40px;
}
.ltr .sp-bubble cite span {
  left: 0;
  border-left-color: transparent !important;
}
.rtl .sp-bubble cite {
  right: 15px;
  padding-right: 40px;
}
.rtl .sp-bubble cite span {
  right: 0;
  border-right-color: transparent !important;
}
.ltr [class^="icon-"].pull-left,
.ltr [class*=" icon-"].pull-left {
  margin-right: .3em;
}
.ltr [class^="icon-"].pull-right,
.ltr [class*=" icon-"].pull-right {
  margin-left: .3em;
}
.rtl [class^="icon-"].pull-left,
.rtl [class*=" icon-"].pull-left {
  margin-left: .3em;
}
.rtl [class^="icon-"].pull-right,
.rtl [class*=" icon-"].pull-right {
  margin-right: .3em;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .responsive #sp-logo.span4 {
    width: 23.404255319148934%;
  }
  .responsive #sp-main-menu ul.level-0 > li {
    margin: 0 12px 0 0;
  }
  .responsive #sp-main-menu ul.level-0 > li >a {
    font-size: 13px;
  }
  .responsive #sp-menu.span7 {
    width: 65.95744680851064%;
  }
  .responsive #sp-header-wrapper #sp-social ul.social-icons i {
    width: 32px;
  }
  .responsive #sp-header-wrapper #sp-social {
    width: 240px;
    top: 51px;
  }
  .responsive #sp-slideshow-wrapper iframe {
    width: 350px;
    height: 205px;
    margin-top: 45px;
  }
  .responsive #sp-slideshow-wrapper h1 {
    font-size: 25px;
  }
  .responsive #sp-slideshow-wrapper h3 {
    font-size: 23px;
  }
  .responsive #sp-quote-wrapper h1 {
    font-size: 18px;
  }
  .responsive #sp-quote-wrapper h1 strong {
    font-size: 21px;
  }
  .responsive #sp-quote-wrapper .btn {
    font-size: 14px;
    font-weight: 700;
  }
  .responsive #sp-parallax-wrapper h1 {
    font-size: 50px;
    padding-bottom: 5px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
    width: 75%;
  }
  .responsive #sp-partner-wrapper .container {
    max-width: 88%;
  }
  .responsive #sp-videotour iframe {
    width: 351px;
    height: 265px;
  }
  .responsive #sp-buy-now-wrapper #sp-buynow h2 {
    font-size: 28px;
  }
  .responsive #sp-popular-post-wrapper .popular_post li .moduleItemVideo {
    min-height: 75px;
  }
  .responsive #sp-users-wrapper #sp-user1 .user1-content {
    padding: 5px 0;
  }
  .responsive #sp-footer-wrapper ul.nav li {
    margin-right: 5px;
  }
  .responsive #sp-footer-wrapper ul.nav {
    margin-left: 0;
  }
  .responsive #sp-footer-wrapper .sp-totop {
    bottom: 70px;
    right: 17px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .responsive .nav-collapse,
  .responsive .nav-collapse.collapse {
    z-index: 1;
  }
  .responsive #sp-header-wrapper [class*="span"] {
    width: auto;
    float: left;
  }
  .responsive #sp-header-wrapper [class*="span"]#sp-menu {
    float: right;
  }
  .responsive #sp-main-menu ul.level-0 > li {
    margin: 0 12px 0 0;
  }
  .responsive #sp-main-menu ul.level-0 > li >a {
    font-size: 13px;
  }
  .responsive #sp-menu .menu-image {
    padding-right: 10px;
  }
  .responsive #sp-header-wrapper #sp-social ul.social-icons i {
    width: 32px;
  }
  .responsive #sp-slideshow-wrapper iframe {
    width: 245px;
    height: 190px;
    margin-top: 45px;
  }
  .responsive #sp-slideshow-wrapper h1 {
    font-size: 20px;
  }
  .responsive #sp-slideshow-wrapper h3 {
    font-size: 18px;
  }
  .responsive #sp-slideshow-wrapper .slide1 img {
    margin-top: 25px !important;
  }
  .responsive #sp-slideshow-wrapper .content_article-p {
    height: 100px;
    overflow: hidden;
  }
  .responsive #sp-quote-wrapper h1 {
    font-size: 13px;
  }
  .responsive #sp-quote-wrapper h1 strong {
    font-size: 15px;
  }
  .responsive #sp-quote-wrapper .btn {
    font-size: 9px;
    font-weight: 700;
  }
  .responsive #sp-feature-wrapper .tm_right_content h3 {
    font-size: 15px;
  }
  .responsive #sp-feature-wrapper .tm_right_content p {
    font-size: 11px;
  }
  .responsive #sp-parallax-wrapper h1 {
    font-size: 40px;
    padding-bottom: 5px;
  }
  .responsive #sp-parallax-wrapper p {
    font-size: 20px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio p {
    font-size: 12px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item {
    height: 225px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span {
    padding: 25px 5px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span i {
    font-size: 20px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h4 {
    font-size: 15px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
    width: 75%;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img img {
    height: 55px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name span {
    padding: 15px 10px;
  }
  .responsive #sp-partner-wrapper .container {
    max-width: 88%;
  }
  .responsive #sp-videotour iframe {
    width: 410px;
    height: 265px;
  }
  .responsive #sp-buy-now-wrapper #sp-buynow h2 {
    font-size: 21px;
  }
  .responsive #sp-popular-post-wrapper .popular_post li .moduleItemVideo {
    min-height: 55px;
  }
  .responsive #sp-users-wrapper #sp-user1 .user1-content {
    padding: 0;
  }
  .responsive #sp-services-wrapper p {
    font-size: 14px;
  }
  .responsive #sp-service-wrapper .sp-feature h3 {
    font-size: 20px;
  }
  .responsive #sp-footer-wrapper ul.nav li {
    margin-right: 5px;
  }
  .responsive #sp-footer-wrapper ul.nav {
    margin-left: 0;
  }
  .responsive #sp-footer-wrapper {
    padding: 30px 0 0 !important;
  }
  .responsive #sp-footer-wrapper .sp-totop {
    bottom: 70px;
    right: 17px;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .fieldacyemail {
    width: 45%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acyfield_email input {
    padding: 3px 10px;
    width: 108%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acysubbuttons input {
    font-size: 10px;
    padding: 8px 5px;
  }
}
@media (max-width: 767px) {
  .responsive.bg {
    padding-left: 0;
    padding-right: 0;
  }
  .responsive .container {
    padding: 0 10px;
    max-width: 480px;
    min-width: 280px;
  }
  .responsive .nav-collapse,
  .responsive .nav-collapse.collapse {
    z-index: 1;
  }
  .responsive #sp-top-wrapper #sp-topmenu ul {
    float: left;
  }
  .responsive #sp-header-wrapper [class*="span"] {
    width: auto;
    float: left;
  }
  .responsive #sp-header-wrapper [class*="span"]#sp-menu {
    float: right;
  }
  .responsive #sp-main-menu ul.level-0 > li {
    margin: 0 12px 0 0;
  }
  .responsive #sp-main-menu ul.level-0 > li >a {
    font-size: 13px;
  }
  .responsive #sp-menu .menu-image {
    padding-right: 10px;
  }
  .responsive #sp-header-wrapper #sp-social ul.social-icons i {
    width: 32px;
  }
  .responsive #sp-slideshow-wrapper iframe {
    width: 245px;
    height: 190px;
    margin-top: 45px;
  }
  .responsive #sp-slideshow-wrapper h1 {
    font-size: 10px;
    padding: 5px 10px;
  }
  .responsive #sp-slideshow-wrapper h3 {
    font-size: 8px;
    padding: 0px 10px;
  }
  .responsive #sp-slideshow-wrapper .slider {
    height: 300px;
  }
  .responsive #sp-slideshow-wrapper .slide1 img {
    margin-top: 25px !important;
  }
  .responsive #sp-slideshow-wrapper .content_article-p {
    height: 90px;
    overflow: hidden;
  }
  .responsive #sp-slideshow-wrapper .span7 {
    width: 52%;
    float: left;
  }
  .responsive #sp-slideshow-wrapper .span5 {
    width: 45%;
    float: left;
  }
  .responsive .slide3 p {
    margin: 15px 0px;
  }
  .responsive #sp-quote-wrapper h1 {
    font-size: 13px;
    line-height: 20px;
  }
  .responsive #sp-quote-wrapper h1 strong {
    font-size: 15px;
  }
  .responsive #sp-quote-wrapper .btn {
    font-size: 15px;
    font-weight: 500;
  }
  .responsive #sp-feature-wrapper .span3 {
    float: left;
  }
  .responsive #sp-parallax-wrapper h1 {
    font-size: 40px;
    padding-bottom: 5px;
  }
  .responsive #sp-parallax-wrapper p {
    font-size: 20px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio p {
    font-size: 12px;
    width: 100%;
    margin-top: 20px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item {
    height: 160px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span {
    padding: 10px 5px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption >span i {
    font-size: 15px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h4 {
    font-size: 8px;
    padding: 10px 0px 10px 15px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio h2 {
    font-size: 34px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption h3 a {
    font-size: 10px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption {
    height: 40px;
    bottom: 50px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption:hover {
    bottom: 50px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
    width: 73%;
    font-size: 8px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img img {
    height: 40px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name span {
    padding: 15px 20px;
    font-size: 11px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content i {
    font-size: 20px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name span i {
    display: inline-block;
    margin-top: -15px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name {
    padding: 13px 30px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial h2 {
    font-size: 30px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial h4 {
    font-size: 14px;
    margin: 0px auto;
    margin-bottom: 40px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .carousel-control {
    top: 85%;
    background-color: #fff;
    padding: 0px;
    border-radius: 50%;
    line-height: 28px;
    font-size: 25px;
    height: 30px;
    width: 30px;
  }
  .responsive #sp-random-box-wrapper #sp-randombox h2 {
    font-size: 32px;
  }
  .responsive #sp-partner-wrapper .container {
    max-width: 88%;
  }
  .responsive #sp-partner-wrapper .container .tm-partner-main {
    text-align: center;
  }
  .responsive #sp-videotour iframe {
    width: 410px;
    height: 265px;
  }
  .responsive #sp-buy-now-wrapper #sp-buynow h2 {
    font-size: 21px;
  }
  .responsive #sp-popular-post-wrapper .popular_post li .moduleItemVideo {
    min-height: 120px;
  }
  .responsive #sp-users-wrapper #sp-user1 .user1-content {
    padding: 0;
  }
  .responsive #sp-services-wrapper p {
    font-size: 14px;
  }
  .responsive #sp-service-wrapper .sp-feature h3 {
    font-size: 20px;
  }
  .responsive #sp-footer-wrapper ul.nav li {
    margin-right: 5px;
  }
  .responsive #sp-footer-wrapper ul.nav {
    margin-left: 0;
  }
  .responsive #sp-footer-wrapper {
    padding: 30px 0 0 !important;
  }
  .responsive #sp-footer-wrapper .sp-totop {
    bottom: 70px;
    right: 17px;
  }
  .responsive #sp-footer-wrapper #sp-footer2 {
    text-align: left;
    padding: 20px 0px;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .fieldacyemail {
    width: 85%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acyfield_email input {
    padding: 3px 10px;
    width: 108%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acysubbuttons input {
    font-size: 10px;
    padding: 8px 5px;
  }
  .responsive h2 {
    font-size: 30px !important;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .responsive #sp-slider .slide .content-img1 {
    margin-top: 25px !important;
  }
  .responsive h2 {
    font-size: 26px;
    line-height: 50px;
  }
  .responsive #sp-header-wrapper {
    height: 70px;
  }
  .responsive #sp-social {
    display: none;
  }
  .responsive #sp-header-wrapper .logo-wrapper .logo {
    background-size: 75% !important;
  }
  .responsive #sp-subheader {
    width: auto;
    float: left;
  }
  .responsive .sp-main-menu-toggler.btn {
    top: 10px;
  }
  .responsive .nav-collapse,
  .responsive .nav-collapse.collapse {
    z-index: 1;
  }
  .responsive #sp-top-wrapper #sp-topmenu ul {
    float: left;
  }
  .responsive #sp-header-wrapper [class*="span"] {
    width: auto;
    float: left;
  }
  .responsive #sp-header-wrapper [class*="span"]#sp-menu {
    float: right;
  }
  .responsive #sp-main-menu ul.level-0 > li {
    margin: 0 12px 0 0;
  }
  .responsive #sp-main-menu ul.level-0 > li >a {
    font-size: 13px;
  }
  .responsive #sp-menu .menu-image {
    padding-right: 10px;
  }
  .responsive #sp-header-wrapper #sp-social ul.social-icons i {
    width: 32px;
  }
  .responsive #sp-slideshow-wrapper iframe {
    width: 100px;
    height: 60px;
    margin-top: 65px;
    height: 60px;
  }
  .responsive #sp-slideshow-wrapper h1 {
    font-size: 5px;
    padding: 0px 10px;
    height: 16px;
    line-height: 15px;
  }
  .responsive #sp-slideshow-wrapper h3 {
    font-size: 5px;
    padding: 0px 10px;
    height: 16px;
    line-height: 15px;
  }
  .responsive #sp-slideshow-wrapper .slider .btn-1 {
    padding: 5px 30px;
    font-size: 7px;
  }
  .responsive #sp-slideshow-wrapper .slider {
    height: 300px;
  }
  .responsive #sp-slideshow-wrapper .slide1 img {
    margin-top: 25px !important;
  }
  .responsive #sp-slideshow-wrapper .content_article-p {
    height: 80px;
    overflow: hidden;
    font-size: 10px;
  }
  .responsive #sp-slideshow-wrapper .span7 {
    width: 52%;
    float: left;
  }
  .responsive #sp-slideshow-wrapper .span5 {
    width: 45%;
    float: left;
  }
  .responsive .slide3 p {
    margin: 15px 0px;
  }
  .responsive #sp-quote-wrapper h1 {
    font-size: 13px;
    line-height: 20px;
  }
  .responsive #sp-quote-wrapper h1 strong {
    font-size: 15px;
  }
  .responsive #sp-quote-wrapper .btn {
    font-size: 15px;
    font-weight: 500;
  }
  .responsive #sp-feature-wrapper .span3 {
    float: left;
  }
  .responsive #sp-parallax-wrapper h1 {
    font-size: 40px;
    padding-bottom: 5px;
  }
  .responsive #sp-parallax-wrapper p {
    font-size: 20px;
  }
  .responsive #sp-parallax-wrapper .btn {
    margin-bottom: 15px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio p {
    font-size: 12px;
    width: 100%;
    margin-top: 20px;
  }
  .responsive #sp-gallery-wrapper .sp-portfolio .sp-portfolio-item {
    width: 96%;
    height: 250px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
    width: 60%;
    font-size: 8px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img img {
    height: 40px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name span {
    padding: 15px 20px;
    font-size: 11px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_content i {
    font-size: 20px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name span i {
    display: inline-block;
    margin-top: -15px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .testimonial_name {
    padding: 13px 30px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial h2 {
    font-size: 30px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial h4 {
    font-size: 14px;
    margin: 0px auto;
    margin-bottom: 40px;
  }
  .responsive #sp-testimonial-wrapper #sp-testimonial .carousel-control {
    top: 95%;
    background-color: #fff;
    padding: 0px;
    border-radius: 50%;
    line-height: 28px;
    font-size: 25px;
    height: 30px;
    width: 30px;
  }
  .responsive #sp-random-box-wrapper #sp-randombox h2 {
    font-size: 32px;
  }
  .responsive #sp-partner-wrapper .container {
    padding: 25px;
  }
  .responsive #sp-partner-wrapper .container .tm-partner-main {
    text-align: center;
  }
  .responsive #sp-partner-wrapper .container #sp-partner {
    width: 85%;
  }
  .responsive #sp-videotour iframe {
    width: 290px;
    height: 265px;
  }
  .responsive #sp-buy-now-wrapper #sp-buynow h2 {
    font-size: 21px;
  }
  .responsive #sp-popular-post-wrapper .popular_post li .moduleItemVideo {
    min-height: 120px;
  }
  .responsive #sp-users-wrapper #sp-user1 .user1-content {
    padding: 0;
  }
  .responsive #sp-services-wrapper p {
    font-size: 14px;
  }
  .responsive #sp-service-wrapper .sp-feature h3 {
    font-size: 20px;
  }
  .responsive #sp-footer-wrapper ul.nav li {
    margin-right: 5px;
  }
  .responsive #sp-footer-wrapper ul.nav {
    margin-left: 0;
  }
  .responsive #sp-footer-wrapper {
    padding: 30px 0 0 !important;
  }
  .responsive #sp-footer-wrapper #sp-footer2 {
    text-align: left;
    padding: 20px 0px;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .fieldacyemail {
    width: 85%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acyfield_email input {
    padding: 3px 10px;
    width: 108%;
  }
  .responsive #sp-bottom-wrapper #sp-bottom4 .acysubbuttons input {
    font-size: 10px;
    padding: 8px 5px;
  }
}
.fixed .hidden-desktop {
  display: none;
}
.rtl img.pull-left {
  float: right;
  margin-right: 0;
}
.rtl #sp-main-menu ul.level-0 > li.parent:hover >a:after {
  right: -10px;
  left: auto;
}
.rtl #sp-main-menu li li:not(.sp-menu-group).parent >a:after {
  left: 10px;
  right: auto;
  content: "\f053";
}
.rtl .radon_slider img.sp-slider-image {
  left: 0;
  right: auto;
}
.rtl .sp-iStoreii-layout .controller-prev i {
  left: 0;
}
.rtl .action-content.pull-left {
  float: right;
}
.rtl .action-button.pull-right {
  float: left;
}
.rtl #sp-service-wrapper .sp-feature i {
  margin-right: 0;
  margin-left: 18px;
}
.rtl #sp-users-wrapper #sp-user1 .user1-content i.pull-left {
  float: left;
}
.rtl #sp-users-wrapper #sp-user1 .user1-content .user1-details {
  margin-left: 0;
  margin-right: 90px;
}
.rtl div.k2TagCloudBlock a {
  float: right;
}
.rtl #sp-bottom5 i.icon-location-arrow.pull-left {
  float: right;
}
.rtl #sp-bottom-2nd-row-wrapper #sp-bottom8 .subcription-bottom-wrapper .acymailing_form .onefield {
  float: right;
}
.rtl #sp-bottom-2nd-row-wrapper #sp-bottom8 .subcription-bottom-wrapper .acymailing_form .acyfield_email >input[type='text'] {
  border-right: 1px solid #666;
}
.rtl #sp-bottom-2nd-row-wrapper #sp-bottom8 .subcription-bottom-wrapper .acymailing_form .acysubbuttons:after {
  content: "\f104";
}
.rtl #sp-component {
  padding-right: 0;
  padding-left: 25px;
}
.rtl #sp-subheader-wrapper .breadcrumb {
  text-align: left;
}
.rtl .service-page .services .sp-feature i {
  margin-right: 0;
  margin-left: 18px;
}
.rtl #sp-progress .sp-feature p,
.rtl #sp-progress .sp-feature h3 {
  margin-left: 0;
  margin-right: 125px;
}
.rtl .blogDate {
  margin: 0 0 10px 15px;
}
.rtl .blogDate.pull-left {
  float: right;
}
.rtl div.catItemHeader span.catItemAuthor {
  border-right: 0;
  padding: 0 0 0 10px;
}
#sp-right h3.header {
  font-size: 20px;
  color: #333;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 1px solid #E7E7E7;
}
.module {
  margin-top: 20px;
}
.module:first-child {
  margin-top: 0;
}
.module.box-1,
.module.box-2,
.module.box-3,
.module.box-4,
.module.box-5,
.module.box-6,
.module.box-7,
.module.box-8,
.module.box-9 {
  padding: 30px;
}
.module.box-1 {
  background: #C70D51;
  color: #fff;
  border-radius: 30px;
}
.module.box-1 h2 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
}
.module.box-1 h2 .sub-title {
  font-weight: 700;
}
.module.box-2 {
  background: #fff;
  color: #333;
  border-radius: 20px 70px 0px 0px;
  padding: 0;
}
.module.box-2 .title {
  padding: 15px 30px;
  background: #77D1E2;
  border-radius: 20px 70px 0px 0px;
  border-right: 15px solid #f1f1f1;
}
.module.box-2 .title h2 {
  font-size: 30px;
  color: #333;
  text-transform: capitalize;
  font-weight: 100;
}
.module.box-2 .title h2 .sub-title {
  font-weight: 700;
}
.module.box-2 .description {
  padding: 30px;
  border: 1px solid #E9E9E9;
}
.module.box-3 {
  background: #535353;
  color: #fff;
  border-radius: 5px;
}
.module.box-3 h2 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
}
.module.box-3 h2 .sub-title {
  font-weight: 700;
}
.module.box-4 {
  background: #578DC0;
  color: #fff;
  box-sizing: border-box;
  position: relative;
}
.module.box-4 h2 {
  font-size: 30px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}
.module.box-4 h2 i {
  margin-right: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px;
}
.module.box-4:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-width: 30px 40px 40px 0;
  border-style: solid;
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #ffffff #3e5973;
  background: none;
  display: block;
  width: 0;
}
.module.box-5 {
  background: #CF6F6F;
  color: #fff;
  border-radius: 10px;
}
.module.box-5 h2 {
  font-size: 30px;
  color: #fff;
  text-transform: lowercase;
  font-weight: 700;
  border-bottom: 3px double #FFF;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.module.box-5 h2 i {
  margin-right: 10px;
}
.module.box-6 {
  background: #25DF6E;
  border-left: 10px solid #ddd;
  color: #fff;
}
.module.box-6 h2 {
  font-size: 30px;
  color: #fff;
  text-transform: lowercase;
  font-weight: 100;
}
.module.box-6 h2 i {
  margin-right: 10px;
  border: 1px solid #fff;
  border-radius: 10%;
  padding: 10px;
}
.module.box-6 h2 .sub-title {
  font-weight: 700;
}
.module.box-7 {
  background: #B9FFE6;
  border: 7px solid #1D7C69;
  color: #333;
  border-radius: 50px 0px;
}
.module.box-7 h2 {
  font-size: 30px;
  font-weight: 100;
}
.module.box-7 h2 .sub-title {
  font-weight: 700;
}
.module.box-8 {
  background: #ecf0f1;
  color: #333;
  border-right: 10px solid #000;
  border-left: 15px solid #CECECE;
}
.module.box-8 h2 {
  font-size: 30px;
  font-weight: 100;
  text-transform: uppercase;
  border-bottom: 1px solid #e1e5e6;
}
.module.box-8 h2 .sub-title {
  font-weight: 700;
}
.module.box-9 {
  color: #666;
  margin-bottom: 50px;
}
.module.box-9 h2 {
  color: #666;
  font-size: 30px;
  font-size: 100;
  text-transform: uppercase;
}
.module.box-9 h2 .sub-title {
  font-weight: 700;
}
#sp-component {
  padding-right: 0px;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn,
.btn.btn-primary,
button {
  background: #006874;
}
.btn:hover,
.btn.btn-primary:hover,
button:hover {
  background: #003a41;
}
a {
  color: #006874;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
a:hover {
  color: #003a41;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.entry-meta.muted {
  background: #f2f2f2;
}
label.invalid {
  color: #c83025;
}
.pagination ul>li>a:hover,
.pagination ul>li>span:hover {
  background: #003a41;
}
.pagination ul li.pagination-active a,
.pagination ul li.pagination-active span {
  background: #006874;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
textarea:hover,
textarea:focus,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="datetime"]:hover,
input[type="datetime"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:focus,
input[type="date"]:hover,
input[type="date"]:focus,
input[type="month"]:hover,
input[type="month"]:focus,
input[type="time"]:hover,
input[type="time"]:focus,
input[type="week"]:hover,
input[type="week"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="url"]:hover,
input[type="url"]:focus,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="color"]:hover,
input[type="color"]:focus,
.uneditable-input:hover,
.uneditable-input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #006874;
  border: 1px solid #006874;
}
.search .hasTooltip {
  background: #006874;
}
body {
  color: #666666;
}
body.bg {
  background: #ffffff;
}
#sp-top-wrapper {
  background: #1c2d3e;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}
#sp-top-wrapper ul.contact-details {
  float: left;
}
#sp-top-wrapper ul.contact-details li {
  display: inline;
  padding-right: 26px;
  list-style: none;
}
#sp-top-wrapper ul.contact-details li a {
  color: #fff;
}
#sp-top-wrapper ul.contact-details li a i {
  padding-right: 8px;
}
#sp-top-wrapper ul.contact-details li:hover a {
  color: #006874;
}
#sp-top-wrapper #sp-topmenu ul li:hover a {
  color: #006874;
  background: none;
}
#sp-slideshow-wrapper .content_article-h3 {
  background: #006874;
  color: #fff;
}
#sp-slideshow-wrapper .slider-arrow:hover {
  color: #006874 !important;
}
#sp-slideshow-wrapper .btn-1e {
  color: #006874;
  border: 3px solid #006874;
}
#sp-slideshow-wrapper .btn-1e:hover {
  color: #fff;
}
#sp-slideshow-wrapper .btn-1e:after {
  background: #006874;
}
#sp-quote-wrapper {
  background-color: #1c2d3e;
}
#sp-quote-wrapper h1 strong {
  color: #006874;
}
#sp-services-wrapper .tm-services-main {
  background-color: rgba(28,45,62,0.78);
}
#sp-gallery-wrapper .sp-portfolio .sp-portfolio-item figcaption {
  background: #006874;
}
#sp-video-popup-wrapper {
  background-color: #006874;
}
#sp-video-popup-wrapper a i {
  background-color: #fff;
  color: #006874;
}
#sp-testimonial-wrapper #sp-testimonial .carousel-control {
  color: #006874;
  border: 1px solid #222;
}
#sp-testimonial-wrapper #sp-testimonial .carousel-control .left i {
  color: #222;
}
#sp-testimonial-wrapper #sp-testimonial .carousel-control .right i {
  color: #222;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content {
  background-color: #006874;
  border: 1px solid #fff;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content .test_img img {
  background-color: #006874;
  border: 3px double #006874;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content i {
  color: #fff;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_content p {
  border: 1px solid #006874;
  background-color: #fff;
}
#sp-testimonial-wrapper #sp-testimonial .testimonial_name span {
  background-color: #006874;
  color: #fff;
}
#sp-random-box-wrapper {
  background-color: rgba(2,171,143,0.75);
  color: #fff;
}
#sp-random-box-wrapper .container {
  background-color: rgba(28,45,62,0.15);
  border: 1px solid rgba(28,45,62,0.22);
}
#sp-random-box-wrapper .container .random-box-icon i {
  color: #006874;
}
#sp-partner-wrapper .container {
  box-shadow: 0px 2px 1px #006874;
  border-top: 10px double #006874;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group .accordion-toggle {
  background: #006874;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group .accordion-heading {
  border-bottom: 3px double #006874;
}
#sp-main-bottom-wrapper #sp-accordion .accordion-group .accordion-inner {
  border-top: 3px double #006874;
}
#sp-popular-post-wrapper .popular_post li .moduleItemReadMore {
  background: #006874;
  border: 2px solid ;
}
#sp-popular-post-wrapper .popular_post li .moduleItemReadMore:hover {
  border: 2px solid #006874;
  border-left: 0px solid #006874;
  border-right: 0px solid #006874;
  background: #fff;
  color: #006874;
}
#sp-buy-now-wrapper {
  background-color: #006874;
}
#sp-buy-now-wrapper #sp-buynow .span3 .btn {
  color: #006874;
}
#sp-header-wrapper .logo {
  background-image: url(/templates/ps_boxite/images/presets/preset7/logo.png);
}
#sp-header-wrapper #sp-social ul.social-icons i:hover {
  background: #006874;
}
#sp-feature-wrapper a:not(.btn) {
  color: #00c3da;
}
#sp-feature-wrapper a:not(.btn):hover {
  color: #41ebff;
}
#sp-main-menu ul.level-0 >li >a:hover,
#sp-main-menu ul.level-0 >li >a.active {
  color: #006874;
}
#sp-main-menu ul.level-0 >li li:not(.sp-menu-group):hover a,
#sp-main-menu ul.level-0 >li li:not(.sp-menu-group).active a {
  color: #006874;
}
.sp-submenu .sp-submenu-wrap {
  border-top: 3px solid #006874;
}
#sp-subheader-wrapper {
  background-color: #006874;
}
#sp-subheader-wrapper .breadcrumb a:hover,
#sp-subheader-wrapper .breadcrumb a.active {
  color: #006874;
}
.module.highlighted {
  background: #3498DB;
}
.module.highlighted a {
  color: #fff !important;
}
#sp-bottom-wrapper {
  background-color: #006874;
}
#sp-bottom-wrapper .k2ItemsBlock >ul >li a.moduleItemTitle:hover {
  color: #006874;
}
#sp-bottom-wrapper #sp-bottom4 a {
  color: #006874;
}
#sp-footer-wrapper {
  border-top: 1px solid #000000;
}
#sp-footer-wrapper::after {
  background: #000000;
}
#sp-footer-wrapper a:not(.btn) {
  color: #0096a7;
}
#sp-footer-wrapper a:not(.btn):hover {
  color: #0ee6ff;
}
#sp-footer-wrapper #sp-footer1 .copyright a:hover,
#sp-footer-wrapper #sp-footer1 .designed-by a:hover {
  color: #006874;
}
#sp-footer-wrapper .sp-totop {
  background: #006874;
  color: #fff;
}
#sp-footer-wrapper ul.nav li a:hover {
  color: #006874;
}
.about-us .team .sp-member .social-icons i:hover {
  background: #006874;
}
.service-page .services1 .tm-services-icon {
  background: #006874;
}
.service-page .services1 .tm-services-icon:hover {
  background: #2D728B;
}
.pricing-table .plan .plan-name {
  color: #ffffff;
}
.pricing-table .plan .plan-price h2 {
  color: #006874;
}
.pricing-table .plan .plan-action a {
  color: #2C3E50;
}
.pricing-table .plan .plan-action a:hover {
  background: #006874;
  color: #fff;
}
.pricing-table .featured .plan-price h2 {
  color: #ffffff;
  background: #006874;
}
.pricing-table .featured .plan-name {
  background: #006874;
}
.pricing-table .featured .plan-name h2 {
  color: #ffffff;
}
.pricing-table .featured .plan-action {
  background: #006874;
}
.pricing-table .featured .plan-action a {
  color: #fff;
  background: #006874;
}
.pricing-table .featured .plan-action a:hover {
  background: #fff;
  color: #006874;
}
.testimonials .tm-testimonialpage-main .star-divider .star-divider-icon i {
  color: #006874;
}
.faqs .tm-faq-main .tm_faq_header span {
  background: #006874;
}
.faqs .tm-faq-main .tm_faq_header h3 {
  border-left: 5px solid #006874;
}
.portfolio .sp-portfolio ul.sp-portfolio-filter li a.btn:hover,
.portfolio .sp-portfolio ul.sp-portfolio-filter li a.btn.active {
  background: #006874;
}
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay {
  background-color: rgba(0,106,117,0.8);
}
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay a.sp-portfolio-preview:hover,
.portfolio .sp-portfolio .sp-portfolio-items li.sp-portfolio-item .sp-portfolio-thumb .sp-portfolio-overlay .sp-portfolio-link:hover {
  color: #006874;
}
.tm-gallery-main .gallery-attr {
  background: #003a41 !important;
}
.tm-gallery-main .gallery-desc {
  background: #006874 !important;
}
.tm-video-main .video-attr {
  background: #003a41 !important;
}
.tm-video-main .video-desc {
  background: #006874 !important;
}
#Kunena tr.krow1 td,
#Kunena tr.krow2 td {
  background-color: #79f1ff;
}
#Kunena div.kblock > div.kheader,
#Kunena .kblock div.kheader {
  background: #006874 !important;
}
#Kunena #ktop {
  border-color: #006874 !important;
}
#Kunena #ktop #ktab ul.menu li.active a,
#Kunena #ktop #ktab ul.menu li#current.selected a a {
  background-color: #006874 !important;
}
#Kunena #ktop #ktab ul.menu li a {
  background-color: #999 !important;
}
#Kunena #ktop span.ktoggler {
  background-color: #006874 !important;
}
#Kunena input[type="submit"],
#Kunena input[type="reset"] {
  background-color: #006874 !important;
  border: 1px solid #006874 !important;
}
#Kunena input[type="submit"]:hover,
#Kunena input[type="reset"]:hover {
  background-color: #0096a7 !important;
}
#Kunena div.kblock .kcontainer .kblocktable td a {
  color: #006874 !important;
}
.sp-border {
  border-top: 1px solid #000000;
}
.sp-border::after {
  background: #000000;
}
.nav-pills>.active>a,
.nav-pills>.active>a:hover,
.nav-pills>.active>a:focus {
  background: #006874;
}
h3.catItemTitle a {
  color: #333;
}
div.k2CategoriesListBlock ul li a:hover {
  color: #006874;
}
div.k2SearchBlock form input.button {
  background: #006874;
}
div.k2SearchBlock form input.button:hover {
  background: #1c2d3e;
}
.blogDate {
  background: #006874;
}
.userView .blogDate,
.tagView .blogDate {
  min-height: 211px;
}
div.k2TagCloudBlock a:hover {
  background: #006874;
}
div.k2CategoriesListBlock ul li {
  color: #006874;
}
#sp-main-body-wrapper .sp-portfolio .sp-portfolio-loadmore a {
  background-color: #006874;
}
#sp-main-body-wrapper .sp-portfolio-filter li a:not(.active):hover {
  color: #006874;
}
