/** CSS ANIMATIONS **/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* pulse
* originally authored by Nick Pettit - https://github.com/nickpettit/glide 
*/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

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

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


@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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


@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

/* slideInDown */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

/* zoomIn */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.eot?v=4.6.3);src:url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format('embedded-opentype'),url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.woff2?v=4.6.3) format('woff2'),url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.woff?v=4.6.3) format('woff'),url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.ttf?v=4.6.3) format('truetype'),url(//www.santommaso.eu/wp-content/plugins/wyde-core/assets/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.tax-product_brand .brand-description{overflow:hidden;zoom:1}.tax-product_brand .brand-description img.brand-thumbnail{width:25%;float:right}.tax-product_brand .brand-description .text{width:72%;float:left}.widget_brand_description img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0 0 1em}ul.brand-thumbnails{margin-left:0;margin-bottom:0;clear:both;list-style:none}ul.brand-thumbnails:before{clear:both;content:"";display:table}ul.brand-thumbnails:after{clear:both;content:"";display:table}ul.brand-thumbnails li{float:left;margin:0 3.8% 1em 0;padding:0;position:relative;width:22.05%}ul.brand-thumbnails.fluid-columns li{width:auto}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:both}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:0}ul.brand-thumbnails.columns-1 li{width:100%;margin-right:0}ul.brand-thumbnails.columns-2 li{width:48%}ul.brand-thumbnails.columns-3 li{width:30.75%}ul.brand-thumbnails.columns-5 li{width:16.95%}ul.brand-thumbnails.columns-6 li{width:13.5%}.brand-thumbnails li img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0}@media screen and (max-width:768px){ul.brand-thumbnails:not(.fluid-columns) li{width:48%!important}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:none}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:3.8%}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd){clear:both}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even){margin-right:0}}.brand-thumbnails-description li{text-align:center}.brand-thumbnails-description li .term-thumbnail img{display:inline}.brand-thumbnails-description li .term-description{margin-top:1em;text-align:left}#brands_a_z h3:target{text-decoration:underline}ul.brands_index{list-style:none outside;overflow:hidden;zoom:1}ul.brands_index li{float:left;margin:0 2px 2px 0}ul.brands_index li a,ul.brands_index li span{border:1px solid #ccc;padding:6px;line-height:1em;float:left;text-decoration:none}ul.brands_index li span{border-color:#eee;color:#ddd}ul.brands_index li a:hover{border-width:2px;padding:5px;text-decoration:none}ul.brands_index li a.active{border-width:2px;padding:5px}div#brands_a_z a.top{border:1px solid #ccc;padding:4px;line-height:1em;float:right;text-decoration:none;font-size:.8em}/*------------------------------------------------------------------
[Table of contents]

0   RESET
1   HTML DOCUMENT and COMMON ELEMENTS
2   WORDPRESS CORE
    2.1 General Styles
main-content left-sidebar    2.2 WP Gallery
3   PLUGINS
    3.1 Wyde Scroller
    3.2 Wyde Fade Slider 
    3.3 DropDown Menu
    3.4 Owl Carousel
4   MAIN STYLES
    4.1 Container
    4.2 Content Background
    4.3 Page Overlay
5   HEADER and TOP NAVIGATION
    5.1 Header
    5.2 Header Logo
    5.3 Mobile Menu Icon
    5.4 Top Navigation
    5.5 Centered Menu
    5.6 Extra Menu
6   SIDE NAVIGATION
7   SLIDING BAR
8   LIVE SEARCH
9  Content 
    10.1 Title Area
    10.2 Main Content
10  FOOTER 
    11.1 Footer
    11.2 Back to Top Button
11  LOADER
12  WIDGETS 
13  SINGLE and ARCHIVE
    14.1 Post Navigation
    14.2 Pagination
    14.3 Related Posts
    14.4 Blog Single Post
    14.5 Author Box
    14.6 Comments 
    14.7 Search Page
    14.8 Author Page
    14.9 Portfolio Single Post
14  WOOCOMMERCE
15  MEDIA QUERIES
------------------------------------------------------------------*/

/*==================================================================
0 RESET
/*==================================================================*/
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, figure, figcaption {
    vertical-align: baseline;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*==================================================================
1 HTML DOCUMENT AND COMMON ELEMENTS
/*==================================================================*/
html {
    overflow-x: hidden;
    overflow-y: scroll;
    min-height: 100%;
    max-width: 100%;
}

body {
    position: relative;
    max-width: 100%;
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0 auto;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-scroll {
    overflow: hidden;
    touch-action: none;
}

:focus {
    outline: 0;
}

header,
footer,
article,
aside,
figure,
figcaption,
nav,
section { 
    display:block;
}

a {
    color:#3ab54a;
}

a:hover {
    color:inherit;
}

section {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    position: relative;
    margin-bottom: 12px;
    line-height:1.3;
}

h1 {
    font-size: 45px;
    font-weight: 700;
}

h2 {
    font-size: 34px;
    font-weight: 700;
}

h3 {
    font-size: 30px;
    font-weight: 700;
}

h4 {
    font-size: 26px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    font-weight: 700;
}

@font-face {
  font-family: 'bromello';
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bromello/bromello.eot);
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bromello/bromello.eot#iefix) format('embedded-opentype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bromello/bromello.woff) format('woff'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bromello/bromello.ttf) format('truetype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bromello/bromello.svg#gogreen) format('svg');
  font-weight: normal;
  font-style: normal;
}

h6 {
    font-family: 'bromello';
    font-size: 70px;
}

p {
    margin-bottom: 25px;
}

p:empty {
    display: none;
}

p:last-child {
    margin-bottom: 0;
}


strong, 
b, 
thead {
    font-weight: bolder;
}

big{
    font-size: larger;
}

sup {
    font-size: 10px;
    vertical-align: super;
}

sub {
    font-size: 10px;
    vertical-align: sub;
}

a {
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a:-webkit-any-link {
    text-decoration: none;
}

a:-moz-any-link {
    text-decoration: none;
}

a:link,
a:visited,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

q, i, cite, em, var, address, dfn{
    font-style: italic;
}

address {
    margin-bottom: 25px;
}

pre {
    display: block;
    clear: both;
    overflow: auto;
    padding: 20px;
    margin: 12px 0;
    white-space: pre;
    background: #f5f5f5;
    border-left: 2px solid #3ab54a;
}

abbr[title] {
    border-bottom: 1px dotted;
}

ol, ul {
    margin: 10px 0;
}

ol, ul, li {
    list-style: none;
}

dl, ul, ol {
    margin-left: 30px;
}

ul > li {
    list-style: disc;
    list-style-position:outside;
}

ol > li {
    list-style: decimal;
    list-style-position: outside;
}

ul > li > ul,
ol > li > ol {
    margin:5px 0px 5px 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin:0 0 20px;
}

table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 2px;
    margin-bottom: 30px;
}

table td {
    padding: 5px 10px;
}

table th {
    background: #f5f5f5;
    color: #545454;
    text-shadow: 1px 1px 0px #fff;
    text-align: left;
    padding: 5px 10px;
}

table tr.even{
    background: #f5f5f5;
}

caption {
    z-index: 1;
    width: 100%;
    text-align: center;
}

blockquote {
    position: relative;
    padding: 20px 0px;
    margin-bottom: 25px;
    display: block;
    font-size: 20px;
    color: #333;
    min-height: 80px;
    border-bottom: 3px solid #333;
    border-top: 1px solid #333;
}

blockquote:before {
    content: '\e80f';
    font-family: 'gogreen';
    font-size: 40px;
    color: #3ab54a;
    position: absolute;
    left: 1px;
    top: 0;
    opacity: 0.3;
}

blockquote cite {
    position: relative;
    display: block;
    font-size: 14px;
    padding: 15px 0 0 30px;
}

blockquote cite:before {
    content: '';
    width: 20px;
    height: 1px;
    background: #3ab54a;
    display: block;
    left: 0;
    top: 27px;
    position: absolute;
}

.w-text-light blockquote {
    color:#fff;
}

blockquote p {
    margin-bottom: 0;
}

tt, code, kbd, samp{
    font-family: monospace;
}

*:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

input:-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.w-text-light ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.w-text-light ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.w-text-light :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.w-text-light input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

input, textarea {
    letter-spacing: 1px;
    font-family: inherit;
    letter-spacing: 1px;
    background: none;
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    padding: 5px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
    transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
}

textarea{
    resize: vertical;
}

input[type="range"] {
    border:none;
    padding:5px 0;
    margin:0;
}

input[type="number"] {
    padding:5px 0;
}

input[type="checkbox"],
input[type="radio"] {
    padding:0;
}

input[type=text]::-ms-clear {
    display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea {
    width:100%;
    line-height:18px;
    padding:8px 6px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.w-text-light input[type="text"],
.w-text-light input[type="password"],
.w-text-light input[type="email"],
.w-text-light input[type="tel"],
.w-text-light input[type="url"],
.w-text-light input[type="number"],
.w-text-light input[type="date"],
.w-text-light input[type="search"],
.w-text-light input[type="file"],
.w-text-light textarea {
    border-color:rgba(255,255,255,0.25);
    color: #fff;
}

input[type="text"]:hover, 
input[type="password"]:hover, 
input[type="email"]:hover, 
input[type="tel"]:hover, 
input[type="url"]:hover,
input[type="number"]:hover,
input[type="date"]:hover, 
input[type="search"]:hover, 
textarea:hover,
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
input[type="url"]:focus, 
input[type="number"]:focus,
input[type="date"]:focus, 
input[type="search"]:focus, 
.w-text-light input[type="file"]:hover,
textarea:focus  {
    border-color:#bbb;
}

input[type=submit] {
    -webkit-appearance: none;
}

button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"] {
    color: #fff;
    text-align: center;
    border: 2px solid #3ab54a;
    padding: 8px 20px;
    margin: 5px 0;
    background: #3ab54a;
    text-transform: uppercase;
    -webkit-transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
    transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
}

button:hover,
input[type="submit"]:hover, 
input[type="button"]:hover {
    color: #3ab54a;
    background: transparent;
}

input[type="date"] {
    padding:8px 2px;
}

input[type="reset"] {
    border-color:#a5a5a5;
    background:#a5a5a5;
    text-transform:uppercase;
}

input[type="reset"]:hover {
    color: #a5a5a5;
    border: 2px solid #a5a5a5;
    background:none;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline-block;
    vertical-align: top;
    width: 18px;
    height: 18px;
    line-height: 15px;
    margin: 0px;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #dcdcdc;
    position: relative;
    text-align: center;
    outline: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.w-text-light input[type="checkbox"],
.w-text-light input[type="radio"] {
    border: 1px solid rgba(255, 255, 255, 0.48);
}

input[type="checkbox"]:hover, 
input[type="radio"]:hover{
    border: 1px solid #777;
}

.w-text-light input[type="checkbox"]:hover,
.w-text-light input[type="radio"]:hover {
    border-color:#fff;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled:hover,
input[type="radio"]:disabled:hover{
    border: 1px solid #e1e1e1;
    background: #E4E4E4;
    cursor: default;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked{
    background: #3ab54a;
    border-color: #3ab54a;
}

input[type="checkbox"] {
    border-radius: 1px;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"]:checked::after {
    font-family: 'gogreen';
    content: "\e831";
    font-size: 13px;
    color: #fff;
    margin-left: 2px;
}

input[type="radio"]:checked::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

input[type="radio"]:disabled::after {
    background: #eee;
}

.dropdown-select {
    position: relative;
    display: inline-block;
    line-height: 30px;
}

select {
    background: rgba(255, 255, 255, 0.5) url(//www.santommaso.eu/wp-content/themes/gogreen/css/images/arrow-down.png) no-repeat 98%;
    max-width: 100%;
    padding: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.5;
    text-indent: 0.01px;
    cursor: pointer;
    -o-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.w-text-light select {
    color:#fff;
    background:rgba(255, 255, 255, 0.2);
}

.dropdown-select:after {
    content: '\e844';
    font-family: 'gogreen';
    position: absolute;
    right: 10px;
    top: 50%;
    line-height: 0;
}

@media only screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        padding-right:18px
    }
}

.text-left {
    text-align:left!important;
}

.text-center {
    text-align:center!important;
}

.text-right {
    text-align:right!important;
}

.scrolling,
.scrolling * {
  pointer-events: none !important;
}

.touch-hover {
    -webkit-user-select: none;
    -webkit-touch-callout: none; 
    -webkit-tap-highlight-color: transparent;       
}

/*==================================================================
2 WORDPRESS CORE
/*==================================================================*/

/*------------------------------------------------------------------
2.1 General Styles
*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    clear: both;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    max-width: 100%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
    clear: both;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

/* Override theme styles that may conflict with controls. */
.mejs-container {
    clear: both;
}

.mejs-container .mejs-inner,
.mejs-container .mejs-layers{
    height: 100%;
}

/*------------------------------------------------------------------
2.2 WP Gallery 
*/
.gallery-item {
    float: left;
    margin: 0 4px 4px 0;
    overflow: hidden;
    position: relative;
}

.gallery-columns-1 .gallery-item {
    max-width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 48%;
    max-width: -webkit-calc(50% - 4px);
    max-width:         calc(50% - 4px);
}

.gallery-columns-3 .gallery-item {
    max-width: 32%;
    max-width: -webkit-calc(33.3% - 4px);
    max-width:         calc(33.3% - 4px);
}

.gallery-columns-4 .gallery-item {
    max-width: 23%;
    max-width: -webkit-calc(25% - 4px);
    max-width:         calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
    max-width: 19%;
    max-width: -webkit-calc(20% - 4px);
    max-width: calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
    max-width: 15%;
    max-width: -webkit-calc(16.7% - 4px);
    max-width: calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
    max-width: 13%;
    max-width: -webkit-calc(14.28% - 4px);
    max-width: calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
    max-width: 11%;
    max-width: -webkit-calc(12.5% - 4px);
    max-width: calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
    max-width: 9%;
    max-width: -webkit-calc(11.1% - 4px);
    max-width: calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
    margin-right: 0;
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
    clear: left;
}

.gallery-item .gallery-icon {
    display: inline-block;
}

.gallery-item .gallery-icon a {
    display: block;
}

.gallery-item img {
    padding: 2px;
    border: 1px solid #e1e1e1!important;
}

.gallery-caption {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-height: 50%;
    opacity: 0;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

.gallery-caption:before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* Jetpack stats */
#wpstats{
    position: absolute;
    height: 0;
}

/*==================================================================
3 PLUGINS
/*==================================================================*/

/*------------------------------------------------------------------
3.1 Wyde Scroller 
*/
.w-scroller {
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    max-height: inherit;
    position: relative;
}

.w-scroll-area {    
    box-sizing: border-box;   
    height: inherit;    
    max-height: inherit;   
    overflow-y: scroll;
    position: relative;
}

.w-scroll-area::-webkit-scrollbar {
    width: 0px;
}

@-moz-document url-prefix() { 
    .w-scroll-area { 
        scrollbar-width: none;
    } 
}

/* For IE10 and IE11 */
@media all and (-ms-high-contrast:none) {
    .w-scroll-area { 
       width: calc(100% + 17px);
   }
}

/* For MS Edge Browser */
@supports (-ms-ime-align:auto) {
    .w-scroll-area { 
       width: calc(100% + 17px);
   }
}

.w-scroller .w-content-inner {
    position: relative;
    width: 100%;
}

.w-scrollbar {
    border-radius: 8px;
    bottom: 3px;
    display: none;
    line-height: 0;
    opacity: 0;
    position: absolute;
    right: -2px;
    transition: opacity .3s ease-in-out;
    top: 3px;
    width: 4px;
}

.w-scroller.active .w-scrollbar {
    display: block;
}

.w-scroller:hover .w-scrollbar {
    opacity: 1;
}

.w-scrollbar .w-bar {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    position: absolute;
    top: 0;
    width: 100%;
}

.w-text-light .w-scrollbar .w-bar {
    background: rgba(255, 255, 255, 0.25);
}

/*------------------------------------------------------------------
3.2 Wyde Fade Slider 
*/
.w-fadeslider {
    position: relative;
    height: 100%;
}

.w-fadeslider .slide {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.w-fadeslider .slide.active {
    opacity: 1;
    position: relative;
}

.w-fadeslider .fadeIn {
    z-index: 0;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.w-fadeslider .fadeOut {
    z-index: 1;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.w-gallery-icon {
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 10px;
    display: inline-block;
    background: #fff;
    font-size: 11px;
    padding: 0 5px;
    text-align: center;
    border-radius: 2px;
    min-width: 20px;
}

.w-gallery-icon:after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: -4px;
    left: 4px;
    top: 4px;
    border: 2px solid #fff;
    border-width: 0 2px 2px 0;
    border-radius: 2px;
}

/*------------------------------------------------------------------
3.3 Dropdown Menu
*/
.dropdown-nav, 
.dropdown-nav ul {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

.dropdown-nav > ul > li, 
.dropdown-nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.dropdown-nav:after,
.dropdown-nav > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.dropdown-nav > ul > li {
    display: inline-block;
    text-align: left;
    height: 100%;
}

.dropdown-nav > ul > li > a {
    display: block;
    position: relative;
    padding: 0 25px;
    line-height: 30px;
    height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    font-size: 14px;
}

.dropdown-nav a > i{
    margin-right: 5px;
}

.dropdown-nav > ul > li.menu-item-cart > a,
.dropdown-nav > ul > li.menu-item-search > a,
.dropdown-nav > ul > li.menu-item-slidingbar > a {
    padding: 0 15px;
}

.dropdown-nav > ul > li.menu-item-has-children > a {
    padding-right: 30px;
}

.dropdown-nav > ul > li.menu-item-has-children > a:after {
    font-family: 'gogreen';
    display: inline-block;
    position: absolute;
    content: '\e844';
    width: 10px;
    right: 6px;
    text-align: center;
    font-size: 11px;
}

.dropdown-nav ul ul {
    position: absolute;
    padding:5px 0 10px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    border-top: 5px solid #3ab54a;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, transform 0.3s;
}

.dropdown-nav ul ul ul{
    -ms-transform:translateY(10px); 
    -webkit-transform:translate3d(0,10px,0); 
    transform:translate3d(0,10px,0);
}

.dropdown-nav > ul > li:hover > ul, 
.dropdown-nav ul ul > li:hover > ul {
    overflow: visible;
    opacity: 1;
    visibility: visible;
    max-height: 2000px;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.dropdown-nav ul ul > li > ul {
    left: 100%;
    top: 0;
}

.dropdown-nav > ul > li.align-right ul {
    left: auto;
    right: 0;
}

.dropdown-nav ul ul li.align-right ul {
    left: auto;
    right: 100%;
}

.dropdown-nav ul ul li > a {
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    font-size:13px;
    min-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;

}

.dropdown-nav .megamenu ul ul li > a, 
.dropdown-nav .megamenu ul > li > a {
    padding: 10px 0px;
}

.dropdown-nav > ul > li > a:after {
    position: absolute;
    display: block;
}

.dropdown-nav ul ul li.menu-item-has-children > a:after {
    font-family: 'gogreen';
    display: inline-block;
    position: absolute;
    content: '\e843';
    width: 10px;
    right: 10px;
    text-align: center;
}

.dropdown-nav ul ul li.align-right > a:after,
.dropdown-nav ul ul li.align-right li.menu-item-has-children > a:after {
    content: '\e842';
}

.dropdown-nav .current-menu-ancestor > a, 
.dropdown-nav .current-menu-item > a {
    color: #3ab54a;
}

.dropdown-nav ul li.megamenu{
    position: static;
}

.dropdown-nav ul > li.megamenu > ul {
    padding: 10px;
    left: 0;
    right: 0;
    visibility: hidden;
}

.dropdown-nav ul > li.megamenu:hover > ul{
    visibility: visible;
}

.dropdown-nav ul > li.megamenu > ul > li {
    float: left;
}

.dropdown-nav ul > li.megamenu.grid-2-cols > ul > li{
    width: 50%;
}

.dropdown-nav ul > li.megamenu.grid-3-cols > ul > li{
    width: 33.33333333%;
}

.dropdown-nav ul > li.megamenu.grid-4-cols > ul > li{
    width: 25%;
}

.dropdown-nav ul > li.megamenu ul ul {
    position: relative;
    left: 0;
    opacity: 1;
    visibility: visible;
    margin:0 9px;
    padding:0px;
    border-top: none;
    box-shadow: none;
    max-height: none;
    max-width: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
}

.dropdown-nav ul li.megamenu > ul > li > a {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    margin: 0 10px 10px;
    color: #000;
}

.dropdown-nav ul li.megamenu ul li a:after{
    display: none;
}

/*------------------------------------------------------------------
3.4 Carousel
*/   
/** Core Owl Carousel **/
.owl-carousel {
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.owl-carousel .owl-stage {
    position: relative;
    height: 100%;
}

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

.owl-carousel .owl-stage-outer {
    position: relative;
    height: 100%;
    overflow: hidden;
    -ms-transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    opacity: 1;
}

.owl-carousel.owl-loading,
.owl-carousel.owl-hidden,
.owl-carousel .owl-refresh .owl-item {
    opacity: 0;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-controls {
    text-align: center;
    display: block;
}

.owl-nav {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -25px;
    height: 0;
    width: 100%;
}

.owl-nav > button {
    position: absolute;
    z-index: 99;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 49px;
    text-align: center;
    opacity: 0.5;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-shadow: 0 0 3px #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.owl-nav > button:hover {
    opacity: 1;
}

.owl-nav > button.disabled {
    display: inline-block!important;
}

.owl-nav .owl-prev {
    left: 0;
}

.owl-nav .owl-next {
    right: 0;
}

.owl-nav .owl-prev:before {
    font-family: 'gogreen';
    content: '\e846';
}

.owl-nav .owl-next:before {
    font-family: 'gogreen';
    content: '\e847';
}

.owl-dots{
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    transform: translateY(100%);
}

.owl-nav.disabled, 
.owl-nav > button.disabled,
.owl-dots.disabled {
    display: none;
}

.owl-dot {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;   
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 6px;
    display: block;
    background: none;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    background: rgba(0, 0, 0, 0.7);
    border: none;
}

.owl-dot.active span {
    background: none;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.7);
    -webkit-transition: box-shadow 0.3s, background 0.3s;
    transition: box-shadow 0.3s, background 0.3s;
}

.owl-dot span:before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.owl-dot.active span:before {
    background: rgba(0, 0, 0, 0.7);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
}

/** Lazy Load **/
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/** Animated Plugin **/
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; 
}

.owl-animated-in {
  z-index: 0;
}

.owl-animated-out {
  z-index: 1;
}

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

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

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

/** Auto Height Plugin **/
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item.fadeIn img,
.owl-carousel .owl-item.fadeOut img {
    -webkit-transform-style: initial;
    transform-style: initial;
}

/*==================================================================
4 MAIN STYLES
/*==================================================================*/

/*------------------------------------------------------------------
4.1 Container
*/
.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/** Clear Fix **/
.clear{
    clear: both;
    float: none;
}

.container:after, .clear:after, .row:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
} 

/*------------------------------------------------------------------
4.2 Content Background 
*/
.page-background,
.title-background,
.section-background {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.bg-image {
    -webkit-background-size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bg-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
    background: #211F1E;
}

.w-bg-size-cover {
    -webkit-background-size: 100%;
    background-size: cover;
}

.w-bg-size-contain {
    background-size: contain;
}

.w-style-fixed {
    -webkit-background-size: 100%;
    background-size: cover;
    background-attachment: fixed;
}

.w-style-repeat {
    background-size: contain;
    background-repeat: repeat;
}

.w-style-no-repeat {
    background-size: contain;
    background-repeat: no-repeat;
}

.w-custom-color * {
    color: inherit;
}

/*------------------------------------------------------------------
4.3 Page Overlay 
*/
#page-overlay{
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    cursor: crosshair;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s, -webkit-transform 0.5s;
    transition: all 0.3s, transform 0.5s;
}

.side-nav-active #page-overlay,
.sliding-active #page-overlay{
    opacity: 0.3;
    z-index: 888;
}

.fullscreen-remove-button {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 50px;
    width: 30px;
    height: 30px;
    line-height: 1.5;
    margin-top: -15px;
    font-size: 20px;
    text-align: center;
    color: inherit;
    opacity: 0.5;
}

.sticky-nav .fullscreen-remove-button {
    top: 40px;
}

.fullscreen-remove-button:hover{
    opacity: 1;
}

/*==================================================================
5 HEADER and TOP NAVIGATION
/*==================================================================*/

/*------------------------------------------------------------------
5.1 Header
*/
#header {
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    height: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: height 0.3s, transform 0.5s, color 0.2s ease, opacity 0.3s;
    transition: height 0.3s, transform 0.5s, color 0.2s ease, opacity 0.3s;
}

#header.inactive {
    opacity: 0;
}

.no-header #header {
    display: none;
}

body:not(.no-title) #header.w-transparent.w-text-dark {
    border-color: rgba(0,0,0,0.05);
}

#header.w-sticky {
    position: fixed;
}

#header.w-scrolled {
    opacity: 0;
}

#header.active.w-fixed {
    opacity: 1;
}

body:not(.no-title) #header.w-transparent:not(.w-fixed) {
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

body:not(.no-title) #header.w-transparent.w-text-dark:not(.w-fixed) {
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

#header:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#header.w-dark:before {
    background: #222;
}

#header.w-transparent:before {
    opacity: 0;
}

#header.w-transparent:before {
    box-shadow: none;
}

#header.w-fixed:before {
    opacity: 0.9;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.05);
}

#header.w-full .container {
    max-width: none;
}

#header .container {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    height: 95px;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
}

#header.w-scrolled .container,
#header.w-fixed .container{
    height: 65px;
}

#header #top-bar {
    position: relative;
    display: none;
}

/*------------------------------------------------------------------
5.2 Header Logo 
*/
#header-logo {
    position: relative;
    z-index: 5;
    display: block;
    float: left;
    text-align: left;
    height: 100%;
    width: 160px;
    overflow: hidden;
}

#header-logo a {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}

#header-logo img {
    position: absolute;
    display: block;
    max-width: 100%;
    min-height: 25px;
    max-height: 55%;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto 0;
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
}

#header-logo .dark-sticky,
#header-logo .light-logo,
#header-logo .light-sticky,
#header.w-dark:not(.w-text-dark) #header-logo .dark-logo,
#header.w-text-light #header-logo .dark-logo,
#header.w-fixed #header-logo .dark-logo,
#header.w-dark.w-fixed #header-logo .dark-sticky {
    opacity: 0;
}

#header.w-dark:not(.w-text-dark):not(.w-fixed) #header-logo .light-logo,
#header.w-text-light:not(.w-fixed) #header-logo .light-logo,
#header.w-fixed #header-logo .dark-sticky,
#header.w-dark.w-fixed #header-logo .light-sticky {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#header-logo .light-sticky,
#header-logo .dark-sticky {
    -ms-transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.4s ease-out 0.1s;
    transition: transform 0.4s ease-out 0.1s;
}

#header.w-fixed #header-logo .light-logo,
#header.w-fixed #header-logo .dark-logo {
    -ms-transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

/*------------------------------------------------------------------
5.3 Mobile Menu Icon 
*/
.mobile-nav-icon {
    position: absolute;
    z-index: 99;
    display: none;
    cursor: pointer;
    float: right;
    top: 50%;
    left: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: -12px 0 0 0;
    font-size: 30px;
    color: inherit;
}

.menu-icon {
    position: absolute;
    top: 11px;
    display: block;
    height: 3px;
    width: 100%;    
    background: #aaa;
    -webkit-transition: background 0s 0.2s;
    transition: background 0s 0.2s;
}

.full-nav-icon > .menu-icon {
    -webkit-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}

.menu-icon:before, 
.menu-icon:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background: #aaa;
    -webkit-transition-duration: 0.2s, 0.2s, 0.2s;
    transition-duration: 0.2s, 0.2s, 0.2s;
    -webkit-transition-delay: 0.2s, 0s, 0s;
    transition-delay: 0.2s, 0s, 0s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.menu-icon:before {
    top: -9px;
    -webkit-transition-property: top, -webkit-transform, background;
    transition-property: top, transform, background;
}

.menu-icon:after{
    bottom: -9px;
    -webkit-transition-property: bottom, -webkit-transform, background;
    transition-property: bottom, transform, background;
}

span:hover > .menu-icon,
span:hover > .menu-icon:before,
span:hover > .menu-icon:after {
    background: #3ab54a;
    box-shadow: none;
}

.full-nav-active span > .menu-icon:before, 
.side-nav-active span > .menu-icon:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.full-nav-active span > .menu-icon:after,
.side-nav-active span > .menu-icon:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.full-nav-active span > .menu-icon:before,
.side-nav-active span > .menu-icon:before,
.full-nav-active span > .menu-icon:after,
.side-nav-active span > .menu-icon:after{
    -webkit-transition-delay: 0s, 0.3s, 0s;
    transition-delay: 0s, 0.3s, 0s;
}


.w-text-light:not(.w-fixed) .menu-icon,
.w-text-light:not(.w-fixed) .menu-icon:before,
.w-text-light:not(.w-fixed) .menu-icon:after,
.w-dark .menu-icon,
.w-dark .menu-icon:before,
.w-dark .menu-icon:after {
    background: #fff;
}

.w-text-dark:not(.w-fixed) .menu-icon,
.w-text-dark:not(.w-fixed) .menu-icon:before,
.w-text-dark:not(.w-fixed) .menu-icon:after,
.w-light .menu-icon,
.w-light .menu-icon:before,
.w-light .menu-icon:after {
    background: #777;
}

.full-nav-active span > .menu-icon,
.full-nav-active span:hover > .menu-icon,
.side-nav-active span > .menu-icon,
.side-nav-active span:hover > .menu-icon{
    background: none!important;
    box-shadow: none!important;
}

/*------------------------------------------------------------------
5.4 Top Navigation
*/
#top-nav {
    display: block;
    background: transparent;
    list-style: none;
    height: 100%;
    position: relative;
}

#top-nav .top-menu {
    position: absolute;
    display: block;
    height: auto;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: -15px;
    text-align: right;
}

.classic-nav .top-menu{
    margin-right: -15px;
}

/* Menu colors */
.w-text-dark .dropdown-nav a {
    color: #999;
}

.w-text-light .dropdown-nav a {
    color: #aaa;
}

.w-transparent.w-text-dark:not(.w-fixed) .dropdown-nav > ul > li > a,
.w-light .dropdown-nav ul li.megamenu > ul > li > a {
    color: #545454;
}


.w-transparent.w-text-light:not(.w-fixed) .dropdown-nav > ul > li > a,
.w-dark .dropdown-nav ul li.megamenu > ul > li > a {
    color: #fff;
}

.w-light .dropdown-nav li ul {
    background: #fff;
}

.w-dark .dropdown-nav li ul {
    background: #262626;
}

.w-dark .dropdown-nav li ul li {
    color: #9d9d9d;
}

.dropdown-nav li:hover > a,
.dropdown-nav li.current-menu-ancestor > a,
.dropdown-nav li.current-menu-item > a {
    color: #3ab54a;
}

.w-dark .dropdown-nav ul li.megamenu > ul > li > a {
    border-bottom-color:#7b7B7B;
}

/*------------------------------------------------------------------
5.5 Centered Navigation 
*/
.center-nav #top-nav .top-menu{
    text-align: center;
    padding-right: 160px;
    padding-left: 160px;
}

.center-nav .top-menu > li > a{
    padding: 0 20px;
}

.center-nav .top-menu li.megamenu > ul > li > a{
    font-size: 12px;
}

/*------------------------------------------------------------------
5.6 Extra Menu 
*/
#top-nav .ex-menu{
    float: right;
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    bottom: 0;
    height: auto;
    text-align: right;
    margin-top: -15px;
    margin-right: -15px;
}

/* Cart Icon */
.menu-item-cart > a:before {
    content: '\e82d';
    font-family: 'gogreen';
    font-size: 16px;
}

.cart-items {
    display: block;
    position: relative;
    z-index: 99;
    background: #3ab54a;
    margin: 0;
    padding: 0px 6px;
    line-height: 20px;
    min-width: 20px;
    color: #FFF;
    font-size: 11px;
    text-align: center;
    border-radius: 50%;
    float: right;
}

.cart-items.empty {
    display: none;    
}


.header-top .cart-items{
    top: -5px;
    left: 10px;
    right: auto;
    bottom: auto;
}

.menu-item-cart .menu-cart > li{
    white-space: nowrap;
}

.menu-item-cart .menu-cart .menu-item-mini-cart{
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
}

#header.w-dark .menu-item-cart .menu-cart .menu-item-mini-cart{
    border-bottom-color: #555;
}

.menu-cart .shopping-cart-content{
    margin-bottom: 10px;
}

.menu-cart .shopping-cart-content .mini-cart-list{
    margin: 0;
    padding: 0 0 2px 0;
    position: relative;
    opacity: 1;
    visibility: visible;
    max-height: none;
    border-top: none;
    box-shadow: none;
}

.menu-cart .shopping-cart-content .mini-cart-list > li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    line-height: 0;
}

#header.w-dark .menu-cart .shopping-cart-content .mini-cart-list > li{
    border-bottom-color: #555;
}

.menu-cart .shopping-cart-content .mini-cart-list .empty{
    text-align: center;
    margin-bottom: 0;
    border-bottom: none;
    line-height: 1.5;
}

.menu-cart .shopping-cart-content .mini-cart-list > li > a {
    min-width: 0;
    min-height: 40px;
    padding: 0;
}

.menu-cart .shopping-cart-content .mini-cart-list > li > a span {
    display: block;
    line-height: 20px;
    height: 20px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-cart .shopping-cart-content .mini-cart-list > li .remove {
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    float: right;
    min-width: 0;
    width: 20px;
    height: 20px;
    min-height: 20px;
    line-height: 20px;
    padding: 0;
    text-align: center;
    font-size: 18px;
}

.menu-cart .shopping-cart-content .mini-cart-list > li .remove:hover {
    color: red!important;
}

.menu-cart .shopping-cart-content .mini-cart-list > li a img {
    width: 60px;
    padding: 1px;
    border: 2px solid #e0e0e0;
    margin: 0 10px 0 0;
    height: auto;
    float: left;
}

.menu-cart .shopping-cart-content .mini-cart-list > li > .quantity {
    position: absolute;
    right: 0;
    bottom: 15px;
    font-size: 12px;
}

.menu-cart .subtotal {
    margin-bottom: 20px;
}

.menu-cart .subtotal .amount {
    float: right;
    font-weight: bold;
}

.menu-cart .buttons{
    text-align: center;
}

.menu-cart .buttons .wc-viewcart {
    margin-right: 2px;
}

.menu-cart .buttons .wc-checkout {
    margin-left: 2px;
}

.menu-item-cart .menu-cart .menu-item-account {
    min-width: 250px;
}

.menu-item-cart .menu-cart div a {
    display: inline-block;
    padding: 10px 20px;
}

.menu-item-cart .menu-cart .menu-item-login{
    text-align: center;
}

.menu-item-cart .menu-cart .menu-item-logout {
    float: right;
}

/* Search Icon */
.ex-menu > li:last-child > a {
    padding-right: 0;
}

/* Contact Info */
.contact-info{
    margin: 0;
    padding: 0;
}

.contact-info li{
    list-style: none;
    margin: 5px 15px;
    padding: 0;
    font-size: 13px;
}

.contact-info li a{
    color: inherit;
}

.contact-info li i{
    display: inline-block;
    width: 20px;
    margin-right: 5px;
    text-align: center;
}

.contact-info li p{
    margin-bottom: 0;
}

/* Social Icons */
.social-icons {
    margin: 0;
    padding: 0 0 30px 0;
}

.social-icons > li {
    display: inline-block;
    list-style: none;
    margin: 5px 15px;
    padding: 0;
}

.social-icons > li a {
    font-size: 20px;
    color: inherit;
}

.text-left .social-icons > li:first-child a {
    padding-left:0;
}

.text-right .social-icons > li:last-child a {
    padding-right:0;
}

/*==================================================================
6 SIDE NAVIGATION
/*==================================================================*/
#side-nav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #777;
    background: #fff;
    overflow: hidden;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateX(-100%);
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
}

#side-nav.w-text-light {
    color: #fff;
}

.right-nav #side-nav {
    left: auto;
    right: 0;
}

.admin-bar #side-nav {
    top: 32px;
}

.side-nav-wrapper {
    position: relative;
    display: block;
    padding: 0 20px;
    height:100%;
}

.side-nav-active #side-nav {
    -ms-transform: translateX(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/** Vertical Navigation **/
#vertical-nav,
#vertical-nav * {
  -webkit-user-select: none;  
  user-select: none;
}

#vertical-nav {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.vertical-menu {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    transition: all .3s ease-in;
    width: 100%;
}

.vertical-menu ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.vertical-menu li {
    font-weight: 700;
    list-style: none;
    margin: 15px 0;
    padding: 0;
    position: relative;
}

.vertical-menu li a {
    color: inherit;
    display: block;
    outline: none;
}

.vertical-menu > li > a {
    text-transform: uppercase;
}

.vertical-menu ul {
    display: none;
    transition: opacity .3s ease-in .3s;
}

.vertical-menu > li > ul {
    margin-bottom: 15px;
}

.vertical-menu ul ul {
    padding-left: 15px;
}

.vertical-menu li.menu-item-has-children.menu-open > ul {
    opacity: 1;
}

.vertical-menu li.menu-item-has-children > a > i {
    display: inline-block;
    margin-right: 10px;
}

.vertical-menu li .sub-menu-button {
    display: none;   
}

.vertical-menu li.menu-item-has-children > .sub-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -5px;
    transition: color 0.2s linear;
    width: 25px;
    z-index: 10;
}

.vertical-menu li.menu-item-has-children > .sub-menu-button i {
    font-weight: 800;
}

.vertical-menu li.menu-item-has-children.menu-open > .sub-menu-button i::before {
    content: "\e844";
}

.vertical-menu li ul li {
    line-height: 20px;
    font-size: 14px;
}

.vertical-menu li ul li:last-child {
    margin-bottom: 0;
}

.vertical-menu li ul li a {
    font-weight: 400;
}

/** Side Menu **/
#side-menu {
    margin: 0;
    padding: 0 0 30px 0;
}

#side-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#side-menu li a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: inherit;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 16px;
}

#side-menu li:hover a {
    color: #3ab54a;
}

#side-menu li a i{
    margin-right: 10px;
}

/** Side Nav Contact Info **/
#side-nav .contact-info {
    padding: 0 0 30px 0;
    margin-left: -15px;
}

/** Side Nav Social Icons **/
#side-nav .social-icons {
    text-align: left;
    margin-left: -15px;
}

#side-nav .social-icons > li a {
    padding: 5px 20px 5px 0px;
}

/*==================================================================
7 SLIDING BAR
/*==================================================================*/
#slidingbar {
    position: fixed;
    z-index: 9999;
    width: 300px;
    top: 0;
    right: 0;
    bottom: 0;
    color: #777;
    background: #fff;
    text-align: center;
    overflow: hidden;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform:translateX(100%);
    -webkit-transform:translateX(100%);
    transform:translateX(100%);
    -webkit-transition: all 0.3s ease-in 0.2s;
    transition: all 0.3s ease-in 0.2s;
}

.admin-bar #slidingbar{
    top: 32px;
}

#slidingbar.w-dark{
    background: #222;
    color: #fff;
}

.sliding-active #slidingbar{
    -ms-transform:translateX(0);
    -webkit-transform:translateX(0);
    transform:translateX(0);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.slidingbar-wrapper {
    height: 100%;
    padding: 10%;
}

.menu-item-slidingbar .sliding-icon {
    font-style: normal;
    font-size: 16px;
}

.menu-item-slidingbar .sliding-icon:before {
    content: '\e840';
    font-family: 'gogreen';
}

.sliding-remove-button {
    position: absolute;
    z-index: 999;
    right: 30px;
    top: 20px;
    font-size: 11px;
    color: #777;
    border: 1px solid #777;
    padding: 2px 6px;
}

.sliding-remove-button:hover {
    border-color: #3ab54a;
}

.sticky-nav .sliding-remove-button {
    top: 20px;
}

#slidingbar .widget h3 {
    color: inherit;
    text-align: left;
}

.sliding-active #header,
.sliding-active #content,
.sliding-active #footer,
.sliding-active #page-overlay {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    -webkit-transition: all 0.3s ease-in 0.1s;
    transition: all 0.3s ease-in 0.1s;
}

#slidingbar .contact-info {
    margin: 0 0 30px;
}

/*==================================================================
8 LIVE SEARCH
/*==================================================================*/
#live-search {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    color: #fff;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

#live-search ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

#live-search ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

#live-search :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

#live-search input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

#live-search:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #3ab54a;
    opacity: 0.95;
}

#live-search.w-dark:before{
    background: #211F1E;
}

.admin-bar #live-search {
    top: 32px;
}

#live-search.active {
    opacity: 1;
}

#live-search .fullscreen-remove-button {
    top: 50%;
    right: 0;
}

#live-search-form {
    margin: 10px 5px;
    padding: 10px 0;
    opacity: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    -ms-transform: translateY(-50px);
    -webkit-transform: translate3d(0,-50px,0);
    transform: translate3d(0,-50px,0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#live-search.active #live-search-form {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#live-search-form input {
    border: none;
    height: 30px;
    line-height: 1.5;
    font-size: 24px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    background: none;
    color: inherit;
}

#live-search-form input:focus {
    box-shadow: none;
}

.autocomplete .search-list {
    position: relative;
    float: none;
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.autocomplete .search-list > li {
    padding:10px 0;
    margin: 0;
    min-height: 20px;
    display: block;
    float: none;
    list-style: none;
}

.autocomplete .search-list ul > li > a {
    color: inherit;
    display: block;
    padding: 10px 15px;
}

.autocomplete .search-list li h4 {
    line-height: 20px;
    padding: 5px 0 10px;
    margin-bottom:10px;
    border-bottom: 1px dashed rgba(255,255,255,0.5);
    color: #fff;
    text-transform: uppercase;
}

.w-dark .autocomplete .search-list li h4{
    color: #CACACA;
}

.autocomplete a > span {
    display: block;
    line-height: 20px;
    white-space: nowrap;
}

.autocomplete .search-list ul{
    padding: 0;
    margin: 0;
}

.autocomplete .search-list ul > li > a > .thumb {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    float: left;
}

.autocomplete .search-list ul > li > a strong {
    display: block;
    padding-right: 5px;
    line-height: 22px;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete .search-list ul > li > a .post-meta {
    padding: 0;
    margin: 0;
    color: #ccc;
}

.autocomplete .search-list ul > li:hover > a .post-meta {
    color:#fff;
}

.autocomplete .search-list ul > li:hover > a .post-meta > span:not(:last-child):after {
    background: #fff;
}

.autocomplete .search-list ul > li:hover > a {
    background: rgba(255, 255, 255, 0.4);
}

.autocomplete .search-list ul > li:hover > a .post-meta * {
    color:#fff;
}

.autocomplete .post-meta > span {
    display:inline-block;
    margin-right:8px;
    text-transform: capitalize;
}

#live-search .search-more {
    position: relative;
    z-index: 999;
}

#live-search .search-loading,
#live-search .search-more a {
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    color: #eee;
}

#live-search .search-more a:hover,
#live-search .search-more.selected a {
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
}

/*==================================================================
9 Content 
/*==================================================================*/
#content {
    position: relative;
    z-index: 1;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*------------------------------------------------------------------ 
9.1 Title Area 
*/
.title-wrapper {
    position: relative;
    z-index: 1;
    padding: 125px 0 60px;
    overflow: hidden;
    color: #fff;
    background: #21242a;
    text-align: center;
}

.title-wrapper.w-size-full {
    display: table;
    table-layout: fixed;
    width: 100%;
}

body.no-header .title-wrapper {
    padding-top: 60px;
}

body.no-header .title-wrapper.w-size-full {
    padding-top: 0;
    padding-bottom: 0;
}

.bg-video {
    position: absolute;
    z-index:0;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.videobg{
    position: absolute;
    right: 0; 
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
}

.title-wrapper.w-size-full .container {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-left: 30px;
    padding-right: 30px;
}

.title-wrapper.w-gradient {
    background: #fff;
}

.title-wrapper .title-background{
    -webkit-transition: transform 0.5s;
    transition: transform 0.5s;
}

.title-wrapper.w-effect-active .title-background {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
}

.title-wrapper.w-gradient .title-background:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: -1px;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition:  all 0.3s;
}

.title-wrapper.w-gradient .title-background:after {
    opacity: 0;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 30%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 30%, rgba(255,255,255,1) 100%);
}

.title-wrapper.w-gradient.w-effect-active .title-background:after {
    opacity: 1;
}

.title-wrapper.text-left .container {
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.title-wrapper.text-right .container {
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.title-wrapper .title {
    margin-bottom: 0;
    color: inherit;
    font-weight: normal;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.title-wrapper.w-gradient.w-effect-active .title {
    color: #000;
}

.title-wrapper.w-size-m .title:after {
    content: '';
    display: block;
    width: 40px;
    margin: 30px auto 0;
    border-bottom: 1px solid #3ab54a;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.title-wrapper.w-size-full .title:after {
    margin: 30px auto 0;
}

.title-wrapper.w-size-s .title {
    font-size: 30px;
    text-transform: capitalize;
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

.title-wrapper.text-left.w-size-s .title {
    padding-left: 0;
}

.title-wrapper.text-right.w-size-s .title {
    padding-right: 0;
}

.title-wrapper.w-size-m .title {
    font-size: 40px;
    font-weight: bold;
}

.title-wrapper.w-size-l .title {
    font-size: 90px;
    text-transform: capitalize;
}

.title-wrapper.w-size-full .title {
    font-size: 100px;
    font-weight: bold;
}

.title-wrapper .title strong {
    color: #3ab54a;  
}

.title-wrapper .subtitle {
    display: block;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #3ab54a;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.title-wrapper.w-size-s .subtitle {
    font-size: 16px;
    margin: 10px 0 15px;
    height: auto;
}

.title-wrapper.w-size-m .subtitle {
    font-size: 16px;
    margin: 0 0 10px;
}

.title-wrapper.w-size-l .subtitle {
    font-size: 18px;
    margin: 10px 0 30px;
}

.title-wrapper.w-size-full .subtitle {
    font-size: 18px;
    margin: 10px 0;
}

.title-wrapper.w-size-m .subtitle strong,
.title-wrapper.w-size-l .subtitle strong {
    font-weight: 700;
}

.error404 .main-content{
    min-height: 800px;
}

.page-error-wrapper {
    position: relative;
    display: block;
    margin: 150px auto 150px auto;
    text-align: center;
}

.page-error-code{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 300px;
    font-weight: normal;
    line-height: 150px;
    color: #efefef;
}

.page-error-title{
    font-size: 80px;
}

.page-error-text {
    font-style: italic; 
}

.post-password-form {
    max-width: 600px;
    margin: auto;
    padding: 50px 30px 100px;
}

.post-password-form input{
    max-width: 350px;
}

/*------------------------------------------------------------------ 
9.2 Main Content 
*/
.main-content {
    position: relative;
    z-index: 2;
}

.main-content.full-width {
    background: #fff;
}

.main-content.full-width .page-content {
    max-width: none;
    padding: 0;
    overflow: hidden;
}

.main-content:not(.full-width) .page-content {
    min-height: 700px;
    padding-top: 40px;
    padding-bottom: 95px;
}

.main-content .page-content,
.main-content .w-main,
.main-content .w-sidebar {
    position: relative;
    z-index: 1;
}

.main-content.full-width .w-sidebar {   
    background: #f5f5f5;
}

.main-content.full-width .w-sidebar.w-light {
    background: #fff;
}

.main-content:not(.full-width) .w-sidebar.w-light {
    color: #eee;
}

.main-content:not(.full-width) .w-sidebar.w-light .widget h3{
    color: #fff;
}

.main-content.full-width .w-main > .col-inner,
.main-content.full-width .w-sidebar > .col-inner  {
    padding: 50px 30px 95px;    
}

.main-content #comments {
    margin-bottom: 0;
    margin-top: 30px;
}

.page-content .w-section{
    padding: 0px;
}

/*==================================================================
10 FOOTER 
/*==================================================================*/

/*------------------------------------------------------------------
10.1 Footer
*/
#footer {
    position: relative;
    z-index: 99;
    color: #bbb;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

#footer.w-full .container {
    max-width: none;
}

#footer .w-info-box h3 {
    color: inherit;
    text-transform: capitalize;
}

#footer .w-info-box.w-medium .w-icon {
    font-size: 60px;
    line-height: 60px;
}

#footer-content {
    position: relative;
}

#footer-content .widget h3 {
    color: inherit;
}

#footer-bottom {
    color: #fff;
    background: #181818;
}

#footer-bottom.w-full > .container{
    max-width: none;
}

.footer-nav {
    display: inline-block;
    padding: 10px 0;
}

#footer-nav ul {
    display: inline-block;
    margin: 0;
    padding: 5px 0;
}

#footer-nav .footer-menu {
    padding: 8px 0;
}

#footer-nav .footer-menu li{
    display: inline-block;
    margin: 5px 10px;
}

.footer-menu > li a {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
}

#footer-nav .social-icons > li a {
    font-size: 16px;
}

.footer-v1 {
    padding: 40px 0;
    text-align: center;
}

.footer-v1 #footer-nav .footer-menu,
.footer-v1 #footer-nav .social-icons {
    display: block;
    margin-bottom: 10px;
}

.footer-v1 #footer-nav .footer-menu li,
.footer-v1 #footer-nav .social-icons li {
    display: inline-block;
    float: none;
}

.footer-v1 .social-icons a {
    font-size: 20px;
}

.footer-v2,
.footer-v3 {
    padding: 20px 0;
}

.footer-v2 .social-icons,
.footer-v3 .social-icons {
    padding-left: 10px;
}

.footer-v2 #footer-nav ul > li:last-child a,
.footer-v3 #footer-nav ul > li:last-child a {
    padding-right: 0;
}

.footer-v2 #footer-logo {
    float: left;
    margin-right: 15px;
    padding: 8px 0;
    line-height: 0;
}

.footer-v2 #footer-text{
    padding: 8px 0;
}

.footer-v2 #footer-nav,
.footer-v3 #footer-nav,
.footer-v3 #footer-text {
    text-align: right;
}

.footer-v3 #footer-logo {
    padding: 10px 0;
}

.footer-v3 #footer-logo a{
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.footer-v3 #footer-text {
    font-size: 13px;
}

.footer-v3 #footer-nav ul {
    padding: 0;
    line-height: 25px;
}

#content, 
#footer {
    -ms-transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

/*------------------------------------------------------------------
10.2 Back to Top Button
*/
#toplink-wrapper {
    position: absolute;
    width: 45px;
    height: 45px;
    right: 25px;
    bottom: 15px;
    overflow: hidden;
    font-size: 20px;
    text-align: center;
    color: inherit;
    opacity: 0.6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#footer-bottom.w-full #toplink-wrapper {
    top: -45px;
    bottom: auto;
}

#toplink-wrapper:hover {
    opacity: 1;
}

#toplink-wrapper > a {
    display: inline-block;
    color: inherit;
}

#toplink-wrapper i {
    display: inline-block;
    height: 10px;
    margin-top: 5px;
    -webkit-animation: fadeInUp 1.5s infinite;
    animation: fadeInUp 1.5s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#toplink-button {
    position: fixed;
    z-index: 888;
    bottom: 25px;
    right: 25px;
    display: block;
    opacity: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#toplink-button.active {
    opacity:0.6;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#toplink-button.active:hover {
    opacity:1;
    color:#fff;
}

#toplink-button .border {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    z-index: 1;
}

#toplink-button .border:before {
    content: '';
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3ab54a;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

#toplink-button:hover .border:before {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
}

/*==================================================================
11 LOADER
/*==================================================================*/
#preloader {
    position: fixed;
    z-index: 8888;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: #fff;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

#preloader.loaded{
    opacity: 0;
}

#loading-animation {
    position: absolute;
    z-index: 9999;
    width: 100%;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.spinner {
    display:inline-block;
}

.w-loader {
  display: inline-block;
}

.w-loader:after {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border-top: 1px solid #545a6a;
    border-bottom: 1px solid #d4d4db;
    border-left: 1px solid #545a6a;
    border-right: 1px solid #d4d4db;
    -webkit-animation: rotate 0.6s linear infinite;
    animation: rotate 0.6s linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

/** Post Loader **/
.post-loader{
    margin: 30px;
}

.ball-pulse,
.ball-pulse > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.ball-pulse {
    display: inline-block;
    font-size: 0;
    color: #fff;
    width: 108px;
    height: 36px;
}

.ball-pulse > div {
    display: inline-block;
    float: none;
    background-color: #3ab54a;
    border: 0 solid #3ab54a;
}

.ball-pulse > div:nth-child(1) {
    -webkit-animation-delay: -200ms;
       -moz-animation-delay: -200ms;
         -o-animation-delay: -200ms;
            animation-delay: -200ms;
}

.ball-pulse > div:nth-child(2) {
    -webkit-animation-delay: -100ms;
       -moz-animation-delay: -100ms;
         -o-animation-delay: -100ms;
            animation-delay: -100ms;
}

.ball-pulse > div:nth-child(3) {
    -webkit-animation-delay: 0ms;
       -moz-animation-delay: 0ms;
         -o-animation-delay: 0ms;
            animation-delay: 0ms;
}

.ball-pulse > div {
    width: 20px;
    height: 20px;
    margin: 8px;
    border-radius: 100%;
    -webkit-animation: ball-pulse 1s ease infinite;
       -moz-animation: ball-pulse 1s ease infinite;
         -o-animation: ball-pulse 1s ease infinite;
            animation: ball-pulse 1s ease infinite;
}

@-webkit-keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    30% {
        opacity: .1;
        -webkit-transform: scale(.01);
                transform: scale(.01);
    }
}

@keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    30% {
        opacity: .1;
        -webkit-transform: scale(.01);
           -moz-transform: scale(.01);
             -o-transform: scale(.01);
                transform: scale(.01);
    }
}

/** Loader 1 **/
.loader-timer,
.loader-timer > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.loader-timer {
    display: inline-block;
    width: 64px;
    height: 64px;
    font-size: 0;
    color: #fff;
}

.loader-timer > div {
    display: inline-block;
    width: 64px;
    height: 64px;
    float: none;
    background: transparent;
    border: 4PX solid #3ab54a;
    border-radius: 100%;
}

.loader-timer > div:before,
.loader-timer > div:after {
    display: block;
    position: absolute;
    top: 28px;
    left: 28px;
    width: 4px;
    margin-top: -2px;
    margin-left: -2px;
    border-radius: 4px;
    content: "";
    background: #3ab54a;
    -webkit-transform-origin: 2px 2px 0;
    transform-origin: 2px 2px 0;
    -webkit-animation: timer-loader 1250ms infinite linear;       
    animation: timer-loader 1250ms infinite linear;
    -webkit-animation-delay: -625ms;       
    animation-delay: -625ms;
}

.loader-timer > div:before {
    height: 24px;
}

.loader-timer > div:after {
    height: 16px;
    -webkit-animation-duration: 15s;       
    animation-duration: 15s;
    -webkit-animation-delay: -7.5s;      
    animation-delay: -7.5s;
}

@-webkit-keyframes timer-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes timer-loader {
    0% {
        -webkit-transform: rotate(0deg);           
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);          
        transform: rotate(360deg);
    }
}

/** Loader 2 **/
.loader-square-spin,
.loader-square-spin > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.loader-square-spin {
    display: inline-block;
    width: 52px;
    height: 52px;
    font-size: 0;
    color: #fff;
}

.loader-square-spin > div {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    float: none;
    background-color: #3ab54a;
    border: 0 solid #3ab54a;
    margin-top: -12px;
    margin-left: -12px;
    border-radius: 100%;
    -webkit-animation: square-spin 1s infinite ease-in-out;
    animation: square-spin 1s infinite ease-in-out;
}

.loader-square-spin > div:nth-child(1) {
    top: 0;
    left: 0;
    -webkit-animation-delay: -.875s;
    animation-delay: -.875s;
}

.loader-square-spin > div:nth-child(2) {
    top: 0;
    left: 50%;
    -webkit-animation-delay: -.75s;
    animation-delay: -.75s;
}

.loader-square-spin > div:nth-child(3) {
    top: 0;
    left: 100%;
    -webkit-animation-delay: -.625s;
    animation-delay: -.625s;
}

.loader-square-spin > div:nth-child(4) {
    top: 50%;
    left: 100%;
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s;
}

.loader-square-spin > div:nth-child(5) {
    top: 100%;
    left: 100%;
    -webkit-animation-delay: -.375s;
    animation-delay: -.375s;
}

.loader-square-spin > div:nth-child(6) {
    top: 100%;
    left: 50%;
    -webkit-animation-delay: -.25s;
    animation-delay: -.25s;
}

.loader-square-spin > div:nth-child(7) {
    top: 100%;
    left: 0;
    -webkit-animation-delay: -.125s;
    animation-delay: -.125s;
}

.loader-square-spin > div:nth-child(8) {
    top: 50%;
    left: 0;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes square-spin {
    0%,
    40%,
    100% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes square-spin {
    0%,
    40%,
    100% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/** Loader 3 **/
.loader-image{
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
}

.loader-image img{
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    max-height: 70%;
    max-width: 70%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.loader-box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #3ab54a;
    opacity: 0.25;
    margin-left: -60px;
    margin-top: -60px;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 100%;
    margin-left: -50%;
    margin-top: -50%;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: loader-spin 1.2s infinite linear;
    animation: loader-spin 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #3ab54a;
    opacity: 0.75;
}


@-webkit-keyframes loader-spin{ 
    0% { 
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 
    100% { 
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-spin{ 
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*==================================================================
12 WIDGETS 
/*==================================================================*/
.widget {
    margin-bottom: 50px;
}

.widget h3 {
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
}

.widget > h3:after {
    content: '';
    position: absolute;
    display: inline-block;
    overflow: hidden;
    top: 50%;
    margin: -10px 0 0 16px;
    background-color: transparent;
    background-image: linear-gradient(
        45deg, rgba(0, 0, 0, 0.05) 25%, 
        transparent 25%, transparent 50%, 
        rgba(0, 0, 0, 0.05) 50%, 
        rgba(0, 0, 0, 0.05) 75%, 
        transparent 75%, transparent);
    background-size: 6px 6px;
    width: 100%;
    height: 20px;
}

.w-dark .widget > h3:after {
    background-image: linear-gradient(
        45deg, rgba(255, 255, 255, 0.2) 25%, 
        transparent 25%, transparent 50%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.2) 75%, 
        transparent 75%, transparent);
}

.widget ul {
    margin: 0;
    padding: 0;
}

.widget ul li {
    list-style: none;
    font-size: 13px;
    line-height: 22px;
    margin: 0;
    padding: 0;
}

.widget ul li ul {
    padding: 0 0 0 25px;
}

.widget ul > li > a {
    display:block;
}

/** Archive, Categories, Recent, Meta & pages widget **/
.w-sidebar .widget .posts > li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
}

.widget_categories ul > li > a,
.widget_archive ul > li > a,
.w-sidebar .widget .posts > li > a,
.widget_pages ul > li > a,
.widget_recent_entries ul > li > a,
.widget_recent_comments ul > li > a:hover,
.wyde_widget_recent_posts ul > li a:hover,
.wyde_widget_popular_posts ul > li a:hover {
    color: inherit;
}

.widget_recent_comments ul > li,
.widget_recent_entries ul > li  {
    padding:5px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
}

.widget_meta ul > li > a {
    color: inherit;
}

.widget_archive ul li,
.widget_categories ul li,
.widget_pages ul li,
.widget_meta ul > li {
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    clear: both;
    float: none;
    min-height: 35px;
    line-height: 35px;
}

.widget_categories li > a,
.widget_archive li > a,
.widget_pages li > a,
.widget_meta ul > li > a {
    padding-left: 14px;
}

.widget_categories li > a:before,
.widget_archive li > a:before,
.widget_pages li > a:before,
.widget_meta ul > li > a:before {
    content:'\e843';
    font-family:'gogreen';
    display:inline-block;
    position:absolute;
    left:0;
}

.widget_archive ul > li > a,
.widget_categories ul > li > a,
.widget_pages ul > li  > a,
.widget_meta ul > li > a {
    position: relative;
    display: block;
    float: none;
    font-size: 13px;
}

.widget.widget_categories li > a {
    font-weight: bold;
    color: #333;
    padding-right: 10px;
    display: inline-block;
}

.widget_categories > ul > li > a:hover:before,
.widget_archive > ul > li:hover > a:hover:before,
.widget_pages ul > li:hover > a:hover:before,
.widget_meta ul > li:hover > a:hover:before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.widget_recent_comments .comment-author-link {
    font-style:italic;
    font-weight:bold;
    color:#888;
    letter-spacing:1.5px;
}

/** Calendar widget **/
#calendar_wrap { 
    margin:10px 0 20px;
}

#wp-calendar { 
    width: 100%; 
    border:none;
}

#wp-calendar caption {
    text-align: center;
    color: #333;
    font-size: 12px;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
}

#wp-calendar thead { 
    font-size: 10px; border:none;
}

#wp-calendar thead th { 
    padding-bottom: 10px; 
    border: none; 
    background: none; 
    text-align: center;
}

#wp-calendar tbody { 
    color: #aaa; border:none;  
}

#wp-calendar tbody td { 
    background: #fff; 
    border: 1px solid #f1f4f5; 
    text-align: center; padding:8px; 
}

#wp-calendar tbody td#today { 
    background:#aaa; color:#fff;
}

#wp-calendar tbody td#today a { 
    display:block;
    color: inherit;
}

#wp-calendar tbody td:hover { 
    background: #fff; 
}

#wp-calendar tbody .pad { 
    background: none;
}

#wp-calendar tfoot td { 
    border:none;
}

#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}

#wp-calendar tfoot #prev {
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 10px;
    text-align: left;
}

#wp-calendar tfoot #prev > a,
#wp-calendar tfoot #next > a {
    display:block;
}

#wp-calendar tfoot #prev > a:hover,
#wp-calendar tfoot #next > a:hover {
    color:inherit;
}

/* Text widget */
.widget_text{
    overflow: hidden;
}

/* Menu widget */
.widget.widget_nav_menu li{
    line-height: 28px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
}

.widget_nav_menu .menu .sub-menu li:last-child {
    border-color:transparent ;
    box-shadow: none;
}

.widget.widget_nav_menu .menu .sub-menu {
    padding:0px 0px 0px 25px;
}

.widget.widget_nav_menu .menu > .sub-menu {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
}

.widget_nav_menu li a {
    color:inherit;
    padding:5px 0;
    line-height:20px;
}

.widget_nav_menu .menu .menu-item-has-children > a {
    padding-bottom:0;
}

.widget_nav_menu .menu .sub-menu > li a:before {
    content:'\e843';
    font-family:'gogreen';
    display:inline-block;
    padding-right:10px;
}

/* RSS widget */
.widget_rss ul li{
    line-height: 20px;
    padding-bottom: 15px;
}

.widget_rss ul li a {
    display: block;
}

.widget_rss ul li a:hover {
    color:inherit;
}

.widget_rss ul li span,
.widget_rss ul li cite{
    font-size: 12px;
    line-height: 15px;
    color: #bbb;
}

/* Posts widget */
.w-posts{
    padding: 0;
    margin: 0;
    text-align: left;
}

.w-posts li{
    display: block;
    position: relative;
    list-style: none;
}

.w-posts .thumb{
    width: 50px;
    height: 50px;
    float: left;
    text-align: center;
}
.w-posts .thumb i{
    font-size: 30px;
    line-height: 50px;
}

.widget .w-posts li{
    min-height: 60px;
    padding: 5px 0;
    margin-bottom: 5px;
}

.widget .w-posts .thumb{
    margin-right: 8px;
}

.widget .w-posts .thumb a{
    display: block;
    width: 50px;
    height: 50px;
}

.widget .w-posts .post-thumb{
    line-height: 50px;
}

.widget .w-posts p{
    line-height: 20px;
    margin-bottom: 0;
    margin-left: 50px;
}

.widget .w-posts p a {
    display: block;
    line-height: 17px;
    max-height: 34px;
    overflow: hidden;
    font-size: 13px;
    margin-bottom: 0;
}

.widget .w-posts p span,
.widget .post-date{
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color:#bbb;
}

/* Tagcloud widget */
.tagcloud{
    position: relative;
    padding-top:6px;
}

.tagcloud a {
    display: inline-block;
    vertical-align: middle;
    color: #a7a6a6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    margin: 0 4px 6px 0;
    height: 30px;
    line-height: 28px;
    font-size: 10px!important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;
    transition: background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;
}

.widget .tagcloud a:hover {
    color: #000;
    border-color: #333;
}

/* Flickr widget */
.widget .w-flickr ul {
    margin-right: -5px;
}

.widget .w-flickr li a {
    margin: 0 5px 5px 0;
}


/*==================================================================
13 SINGLE and ARCHIVE
/*==================================================================*/

/*------------------------------------------------------------------
13.1 Post Navigation
*/
.post-nav {
    position: relative;
    padding: 20px 0;
    line-height: 40px;
}

.prev-post,
.next-post {
    position:relative;
    float:left;
    width:50%;
}

.next-post {
    text-align: right;
}

.prev-post {
    min-height:40px;
}

.prev-post > a, 
.next-post > a {
    position:absolute;
    z-index:2;
    color: #8e8e8e;
    font-size: 24px;
    width: 30px;
    display: inline-block;
}

.prev-post > a:hover,
.next-post > a:hover {
    color:#3ab54a;
}

.prev-post > a:before,
.next-post > a:before {
    display: inline-block;
    font-family: 'gogreen';
}

.prev-post > a:before {
    content: '\e846';
}

.next-post > a:before {
    content: '\e847';
}

.prev-post > a {
    left:0;
}

.next-post > a {
    right:0;
}

.post-nav .post-link {
    padding: 0 30px;
    position:relative;
}

.post-nav span {
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 70px;
    text-align: center;
}

.post-nav span a{
    position: relative;
    display: block;
    height: 100%;
    line-height: 0;
    z-index: 10;
    border-radius: 50%;
    overflow: hidden;
    background:#3ab54a;
}

.post-nav span a .post-thumb {
    position: absolute;
    left: 0;
    top: 0;
}

.thumb > a {
    overflow:hidden;
    display: block;
    height: 100%;
}

ul li .thumb > a img,
ul li .thumb > a > span.post-thumb {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

ul li .thumb > a > span.post-thumb {
    line-height: 45px;
}

ul li:hover .thumb > a > img,
ul li:hover .thumb > a > span.post-thumb {
    -ms-transform: scale(1.5,1.5);
    -webkit-transform: scale(1.5,1.5);
    transform: scale(1.5,1.5);
}

.thumb img {
    width: 100%;
    height: 100%;
}

.post-nav h4 {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    line-height: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    font-size: 16px;
    text-transform: capitalize;
}

.post-nav h4 a {
    color:#211F1E;
}

.post-nav h4 a:hover {
    color:#3ab54a;
}

.prev-post .post-link > span {
    margin-right: 10px;
}

.next-post .post-link > span{
    margin-left: 10px;
}

.next-post .post-link > span,
.next-post h4{
    display: inline-block;
    vertical-align: middle;
}

.post-nav .nav-home {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -16px;
}

.post-nav .nav-home a {
    font-size: 30px;
    width: 32px;
    display: block;
    color: #8e8e8e;
}

/*------------------------------------------------------------------
13.2 Pagination 
*/
.pagination ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.pagination ul > li {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}

.pagination ul li span,
.pagination ul li a,
.pagination > span > a {
    position: relative;
    display: inline-block;
    padding: 4px 12px;
    margin: 0 2px;
    min-width: 30px;
    text-align: center;
    color: #B7B7B7;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #B7B7B7;
    border-radius: 4px;
    outline: 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all .15s ease-in-out;
}

.pagination ul li.w-prev span,
.pagination ul li.w-prev a,
.pagination ul li.w-next span,
.pagination ul li.w-next a {
    padding: 4px 14px;
    font-weight: bold;
}

.pagination ul li[class^="w-"].disabled span {
    opacity: 0.3;
}

.pagination ul li span.current {
    color: #fff;
    border-color: #3ab54a;
    background: #3ab54a;
}

.pagination ul li:hover a {
    color: #3ab54a;
    border-color: #3ab54a;
    background: none;
}

.pagination {
    margin: 30px 0px;
    padding:0;
    text-align: center;
    display:block;
    width:100%;
}

.pagination > span.w-previous {
    float: left;
    position: relative;
}

.pagination > span.w-next {
    float: right;
    position: relative;
}

.pagination > span > a {
    font-size: 12px;
}

.pagination > span.w-next > a:after {
    content: '\e843';
    font-family: 'gogreen';
    display: inline-block;
    margin-left: 10px;
}

.pagination > span.w-previous > a:before {
    content: '\e842';
    font-family: 'gogreen';
    display: inline-block;
    margin-right: 10px;
}

/** Infinite Scroll **/
.w-showmore {
    text-align: center;
    clear: both;
    float: none;
}

.w-showmore .w-next {
    display: inline-block;
    font-size: 13px;
}

/*------------------------------------------------------------------
13.3 Related Posts 
*/
.related-posts {
    margin-bottom: 30px;
    padding: 20px 0;
}

.related-posts h3 {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding:0;
    text-align: center;
}

.related-posts ul {
    padding: 0;
    margin-bottom: 0;
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
}

.related-posts li {
    display: inline-block;
    vertical-align: top;
    padding-bottom:15px;
    list-style: none;
    float: none;
}

.related-posts .thumb {
    display:block;
    float:none;
    overflow: hidden;
}

.related-posts .thumb a {
    display: block;
    width:100%;
    line-height: 0;
    text-align: center;
}

.related-posts li:hover h4 a,
.related-posts li h4 a:hover {
    color: #3ab54a;
}

.related-posts .thumb a i {
    font-size: 80px;
    margin: 10px;
    vertical-align: middle;
}

.related-posts li h4 {
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 14px;
    margin: 0 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-posts li h4 a {
    color: #211F1E;
}

.related-posts li span {
    font-size:12px;
    color:#bbb;
    vertical-align: top;
}

.related-posts li .post-category{
    display: block;
    margin-top: 10px;
}

.related-posts li .post-category strong{
    display: inline-block;
    margin-right: 5px;
}

/*------------------------------------------------------------------
13.4 Blog Single Post 
*/
.single-post,
.archive,
.search,
.blog,
.single-attachment{
    background:#fff;
}

.post-detail .post-title {
    font-size: 28px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 30px;
}

.format-quote .post-detail .post-title {
    padding-top: 60px;
}

.format-quote .post-detail .post-title:before {
    font-size: 40px;
    line-height: 40px;
    width: 62px;
    opacity: 0.7;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: 0px;
    font-family: 'gogreen';
    content: '\e80f';
    color: #3ab54a;
    z-index: -1;
    display: inline-block;
}

.format-quote .post-detail .post-title .quote-author {
    text-transform: capitalize;
    color: #666;
    display:block;
    font-size: 18px;
    font-weight: normal;
    margin-top: 15px;
}

.format-quote .post-detail .post-title .quote-author:before,
.format-quote .post-detail .post-title .quote-author:after {
    display: inline-block;
    vertical-align: middle;
    height: 2px;
    background: #ccc;
    width: 10px;
    content: '';
    margin: 0 10px;
}

.post-detail .featured-full {
    text-align: center;
}

.post-detail .post-external-link {
    text-align:center;
}

.post-detail .post-media .featured-full-width a,
.format-video .post-detail .post-media a {
    display: block;
    line-height: 0;
}

.post-detail .post-media .featured-full-width img,
.format-video .post-detail .post-media img {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-top: 56%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 99;
    margin: 0;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.post-detail iframe,
.post-detail embed,
.post-summary iframe,
.post-summary embed{
    max-width: 100%;
}

.media-preview {
    display: none;
}

.post-detail .post-meta {
    margin: 20px 0;
    text-align: center;
    line-height: 22px;
}

.post-detail .meta-date {
    display: inline-block;
    margin-right: 10px;
    float: none;
}

.post-detail .post-content {
    padding-bottom: 40px;
}

.post-detail .post-content ul > li {
    list-style: none;
    margin-left:20px;
    margin: 10px 0;
}

.post-detail .post-content ul > li ul > li,
.post-detail .post-content ol ul {
    margin-left:0px;
}

.post-detail .post-content ol > li{
    margin: 10px 0 10px 20px;
}

.post-content .w-section{
    padding: 0;
}

.post-content .w-section > .row {    
    margin-left: -15px;
    margin-right: -15px;
}

.page-links {
    margin: 30px 0 20px;
    padding: 0;
    display: block;
    clear: both;
    float: none;
}

.page-links > span,
.page-links > a {
    position: relative;
    display: block;
    float: left;
    width: 33px;
    height: 33px;
    line-height: 30px;
    margin: 0 2px;
    padding: 0px;
    text-align: center;
    color: #bababa;
    background: none;
    font-size: 16px;
    border: 1px solid #E2E2E2;
    background:#fff;
    outline: 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all .15s ease-in-out;
}

.page-links > span {
    color: #fff;
    background: #bbb;
    border-color: #f5f5f5;
    box-shadow: 0 1px 1px #FFF;
}

.page-links > a:hover {
    background: #eee;
    color: #545454;
    text-shadow: 0 1px 1px #fff;
    box-shadow: 0 1px 1px #FFF;
}

.post-tags {
    clear: both;
    float: none;
    padding: 20px 0;
}

.post-tags > i {
    margin-right: 10px;
}

.post-tags a:hover {
    color: #000;
}

.post-detail .post-share {
    text-align: right;
    padding: 20px 0;
}

.post-thumb, 
.related-posts .thumb a span {
    display: block;
    background: #333;
    font-size: 30px;
    line-height: 65px;
    height: 100%;
}

.search-item .thumb a span:before,
.related-posts .thumb a span:before,
.post-thumb:before {
    font-family: 'gogreen';
    color: #fff;
    display: inline-block;
}

.post-icon-audio:before {
    content: '\e802';
}

.post-icon-standard:before {
    content: '\e80b';
}

.post-icon-gallery:before {
    content: '\e801';
}

.post-icon-link:before {
    content: '\e80c';
}

.post-icon-quote:before {
    content: '\e80f';
    font-size: 24px;
}

.post-icon-video:before {
    content: '\e800';
}

.single-post .post-nav {
    border-top: 1px dashed #e2e2e2;
    border-bottom: 1px dashed #e2e2e2;
}

/*------------------------------------------------------------------
13.5 Author Box 
*/
.post-author {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e2e2e2;
}

.post-author .author-avatar img{
    padding: 2px;
    display: inline-block;
    border-radius: 50%;    
    transition: all 0.3s;
}

.post-author .author-avatar a:hover img{
    box-shadow: 0 2px 1px #e2e2e2;
}

.post-author .author-detail h4{
    margin-bottom: 0;
}

.post-author .edit-profile {
    padding: 10px 0;
}

/*------------------------------------------------------------------
13.6 Comments 
*/
#comments {
    padding: 20px 0;
    margin-bottom: 30px;
}

.comment {
    text-align:center;
}

.comments > h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.comment-list {
    margin: 20px 0;
    padding: 0;
    border-bottom: 1px dashed #dadada;
}

.comment-list li {
    list-style-type: none;
}

.comment-list > li {
    padding: 0 0 10px;
    margin: 0;
    list-style: none;
}

.comment .children {
    padding:0 10px;
    margin:0 5px;
}

.comment-list .comment,
.comment-list .pingback,
.comment-list .trackback {
    border-top: 1px dashed #dadada;
    padding: 20px 0 0;
}

.comment-list > .comment:first-child,
.comment-list > .pingback:first-child,
.comment-list > .trackback:first-child {
    border-top: 0;
}

.comment.bypostauthor {
    border: 1px solid #dadada;
    border-radius: 2px;
    background: #fbfbfb;
    box-shadow: 0 1px 1px #eee;
}

.comment.bypostauthor + .comment:not(.bypostauthor) {
    border-top:none;
}

.comment .children .bypostauthor,
.comment .children .byuser {
    margin-bottom: 0;
}

.comment .post-content {
    padding-bottom: 20px;
}

.comment .avatar {
    overflow: hidden;
}

.comment .avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid #f5f5f5;
}

.comment-respond {
    margin: 30px 0;
}

.comment .comment-respond {
    padding: 30px 10px;
}

.comment-box .name {
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;
    margin-bottom:0;
    padding: 10px 0 5px;
}

.comment-box .name a {
    color:#3ab54a;
}

.comment-box .name a:hover {
    color:inherit;
}

.comment-box .post-meta {
    font-size: 12px;
    overflow: visible;
    text-align: inherit;
    height: auto;
    margin-bottom: 14px;
}

.comment-box .post-meta .comment-date {
    font-size:12px;
    margin-right:0;
}

.comment .post-meta > span:not(:last-child):after {
    display: none;
}

.comment-box .post-meta > a {
    background: #ccc;
    color: #fff;
    font-size: 10px;
    padding: 0 6px 2px;
    margin:0 2px;
    border-radius: 10px;
}

.comment-box .post-meta > a:hover {
    color: #fff;
}

.comment-box .post-content {
    clear: both;
    float: none;
}

.comment-edit-link, 
.comment-reply-link {
    padding-left: 10px;
    vertical-align:bottom;
}

#comments .comment-form p.inputrow {
    margin-bottom: 0;
}

#comments .comment-reply-title small {
    display: block;
}

#cancel-comment-reply-link {
    font-weight: normal;
    line-height: 30px;
    text-align: right;
    font-size: 12px;
    text-transform: initial;
    text-indent: 10px;
    display: inline-block;
    padding: 0px 10px 3px 15px;
    margin-top: 10px;
    background: #EFEFEF;
    border-radius: 5px;
}

#cancel-comment-reply-link:hover {
    background:#3ab54a;
    color:#fff;
}

#cancel-comment-reply-link:before {
    content: '\e829';
    font-family: 'gogreen';
    position: absolute;
    display: block;
    margin: 0 0px 0 -16px;
    font-size: 8px;
    line-height: 32px;
}

.comments-nav {
    margin-bottom: 30px;
}

.comments-nav a {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    line-height: 30px;
    margin: 0 5px;
    padding: 0px;
    text-align: center;
    color: #bababa;
    background: none;
    font-size: 16px;
    border: 1px solid #E2E2E2;
    background: #fff;
    outline: 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all .15s ease-in-out;
}

.comments-nav a:hover {
    color: #fff;
    border-color:#3ab54a;
    background:#3ab54a;
}

.comment-form .inputrow {
    padding: 10px 0;
}

.comment-form .user-link {
    margin-left: 10px;
    text-transform:capitalize;
}

.comment-form .logout-link {
    margin-left: 10px;
    text-transform:capitalize;
}

.comment-form .logout-link:before {
    content: '';
    display: inline-block;
    padding-right: 15px;
    height: 10px;
    border-left: 1px solid #bbb;
}

.inputrow input {
    width: 100%;
}

.textarea-comment {
    height: 200px;
    width: 100%;
}

/*------------------------------------------------------------------
13.7 Search Page
*/
.search-results{
     position: relative;
     clear: both;
     float: none;
}

.search-query{
    margin-bottom: 50px;
}

.w-view .search-item{
    background: #fff;
    padding: 16px 0;
    margin-bottom: 50px;
    text-align: left;
    clear: both;
    float: none;
}

.search-item .thumb,
.search-item .type-icon{
    float: left;
    font-size: 40px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    text-align: center;
    margin: 5px 20px 5px 0;
}

.search-item .post-thumb{
    line-height: inherit;
}

.search-item .type-icon a,
.search-item .type-icon i{
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}

.search-item h4{
    max-height: 60px;
    line-height: 30px;
    margin: 0;
    overflow: hidden;
}

.search-item .post-summary{
    margin-top: 30px;    
}

/** Search Form **/
.search-form{
    position: relative;
    margin-bottom: 30px;
}

.search-form .keyword{
    width: 100%;
}

form.search-form button.button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    margin: 0;
    min-width: 0;
    background: none;
    border: none;
    outline: 0;
    z-index: 99;
    line-height: 30px;
    color: inherit;
    padding: 0px 0 0 10px;
}

/*------------------------------------------------------------------
13.8 Author Page 
*/
.author .page-content .w-main{
    padding-top: 80px;
}

.author .author-avatar {
    position: absolute;
    z-index: 50;
    top: 10px;
    left: 50%;
    overflow: hidden;
    text-align: center;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.author .author-avatar img{
    margin: 4px;
    display: block;
    border-radius: 50%;
    border: 4px solid #fff;
    transition: all 0.3s;
}

.author .author-avatar a:hover img{
    box-shadow: 0 1px 3px #e1e1e1;
}

/*------------------------------------------------------------------
13.9 Portfolio Single Post / Portfolio Archive
*/
.archive.tax-portfolio_category .main-content, 
.archive.tax-portfolio_skill .main-content, 
.archive.tax-portfolio_tag .main-content{
    background: #fff;
}

ul.post-media {
    position: relative;
    margin: 0 0 30px 0;
    padding: 0;
}

ul.post-media li {
    position: relative;
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
}

.post-media a {
    position: relative;
    display: block;
}

.portfolio-grid .post-media .w-featured a{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.w-media-player {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: rgba(33, 31, 30, 0.8);
}

.w-media-player:after {
    content: '\e82e';
    font-family: 'gogreen';
    font-size: 100px;
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-left: -40px;
    margin-top: -40px;
}

.single-wyde_portfolio .post-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
}

.single-wyde_portfolio .post-description .post-meta {
    font-size: 13px;
}

.single-wyde_portfolio .post-nav {
    margin: 50px 0 30px;
    padding: 10px 0;
    background: transparent;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}

.single-wyde_portfolio .post-nav span a span {
    font-size: 30px;
    line-height: 70px;
}

.single-wyde_portfolio .post-nav span a span:before,
.single-wyde_portfolio .related-posts .thumb a span:before {
    font-family: 'gogreen';
    content: '\e83d';
    color: #fff;
    display: inline-block;
}

.single-wyde_portfolio .main-content .related-posts {
    padding: 0;
}

.single-wyde_portfolio .related-posts{
    background: none;
}

.single-wyde_portfolio .related-posts .thumb a{
    height: auto;
}

.single-wyde_portfolio .related-posts .thumb a span {
    font-size: 60px;
}

.portfolio-client-widget h6 a:after {
    font-family:'gogreen';
    content:'\e849';
    font-size:16px;
    margin-left:7px;
}

.post-description .widget {
    margin-bottom: 40px;
}

.post-description .widget h4 {
    text-transform:uppercase;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: inherit;
}

.single-wyde_portfolio .post-description .widget a:not(:hover) {
    color: inherit;
}

.post-description .widget > p {
    margin-bottom:0;
}

.portfolio-tags {
    word-spacing: 4px;
}

.portfolio-meta-widget i {
    margin-right:7px;
}

.portfolio-tags i,
.portfolio-tags span {
    display:inline-block;
}

.portfolio-meta-widget > p {
    border-bottom:1px dashed #e5e5e5;
    padding:10px 0;
}

.portfolio-category-widget ul li a,
.portfolio-skill-widget ul li a {
    padding: 3px 0;
}

.portfolio-share a{
    display: inline-block;
    margin: 0 10px;
}

.portfolio-share a:first-child{
    margin-left: 0;
}

/* Portfolio Vertical */
.portfolio-vertical .post-content {
    margin-top: 30px;
}

.portfolio-vertical .post-media > div{
    margin-bottom: 20px;
}

.portfolio-vertical .post-media > div a{
    line-height: 0;
}

/* Portfolio Masonry */
.portfolio-masonry .featured{
    margin-bottom: 20px;
}

.portfolio-masonry .w-masonry .w-view {
    margin-right: -20px;
}

.portfolio-masonry .w-masonry .w-item {
    padding:0 20px 20px 0;
    width: 25%;
    height: 300px;
}

.portfolio-masonry .w-masonry .w-item.w-w2 {
    width: 50%;
}

.portfolio-masonry .w-masonry .w-item.w-h2 {
    height: 600px;
}

.portfolio-masonry .w-masonry .w-item .image-wrapper{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.portfolio-masonry .w-masonry .w-item img.cover-image {
    opacity: 0;
}

.portfolio-masonry .w-masonry .w-item .image-wrapper a{
    position: absolute;
    width: 100%;
    height: 100%;
}

.portfolio-masonry .post-content {
    padding-top: 20px;
}

.portfolio-masonry .post-description{
    padding-top: 30px;
}

/* Portfolio Slider */
.portfolio-slider:not(.full-width) .page-content{
    position: relative;
    z-index: 999;
    background: #fff;
}

.portfolio-slider .post-media {
    width: 100%;
}

.portfolio-slider .owl-stage {
    max-height: 640px;
    overflow: hidden;
}

.portfolio-slider .owl-item{
    overflow: hidden;
}

.portfolio-slider .owl-item img {
    max-width: 100%;    
    max-height: 100%;
}

/* Portfolio Gallery */
.portfolio-gallery .post-media {
    position: relative;
    overflow: hidden;
}

.portfolio-gallery .featured{
    margin-bottom: 30px;
}

.portfolio-gallery .post-media img.cover-image {
    opacity: 0;
}

.portfolio-gallery .cover-image {
    position: relative;
    display: block;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100%;
    background-size: cover;
}

.portfolio-gallery .post-media a,
.portfolio-gallery .cover-image a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.portfolio-gallery .post-gallery {
    margin: 20px -10px 0 0;
    padding: 0 10px;
}

.portfolio-gallery .post-gallery li {
    position: relative;
    list-style: none;
    float: left;
    margin: 0;
    padding: 0 10px 10px 0px;
    line-height: 0;
    overflow: hidden;
}

.portfolio-gallery .post-description {
    padding-top: 30px;
}

.portfolio-gallery .portfolio-meta-widget {
    width: 100%;
    float: none;
}

.portfolio-gallery .post-nav {
    margin: 0 20px;
}

.portfolio-gallery .related-posts ul {
    padding:15px;
}

/* Portfolio Grid */
.portfolio-grid .post-media {
    padding-top: 40px;
}

.portfolio-grid .w-grid {
    padding: 0;
    margin: 0 -20px 0 0;
}

.portfolio-grid .w-grid li {
    margin: 0;
    padding: 20px 20px 0 0;
    list-style: none;
    overflow: hidden;
    line-height: 0;
}

.portfolio-grid .w-grid li.w-featured {
    position: relative;
    overflow: hidden;
    clear: both;
    float: none;
    padding: 0;
    margin: 0 20px 0 0;
}

.portfolio-grid .w-grid li.w-featured .cover-image{
    height: 600px;
}

.portfolio-grid .w-grid li .cover-image {
    position: relative;
    display: block;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 100%;
    background-size: cover;
}

.portfolio-grid .w-grid li img{
    width: 100%;
}

/*==================================================================
14 WOOCOMMERCE
/*==================================================================*/
/** Shop Page **/
.woocommerce .commentlist li {
    list-style:none;
    padding: 20px 0;
    border-bottom: 1px solid #e3e3e3;
    text-align: center;
}

.woocommerce .comment.bypostauthor {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0;
}

.woocommerce-breadcrumb {
    margin-bottom: 30px;
    font-size: 16px;
}

.woocommerce-result-count {
    float: left;
    line-height: 38px;
    margin-bottom:0;
}

.woocommerce-ordering {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #dadada;
}

.products {
    margin: 0 -16px 0 0;
    padding: 0;
}

.products.w-grid-space .product {
    padding: 0 16px 16px 0;
}

.products.w-grid-space .product.first{
    clear: both;
}

.products .product figure {
    overflow: hidden;
    text-align: center;
    position: relative;
}

.products:not(.owl-carousel) .product figure {
     padding-bottom: 40px;
}

.products .product .image-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.products .product .cover-image > a {
    display: block;
    height: 100%;
}

.products .product .cover-image img {
    display: block;
    width: 100%;
}

.w-product-status {
    position: absolute;
    top: 5px;
    right: 10px;
}

.w-outofstock {
    z-index: 10;
    text-align: center;
    line-height: 13px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    margin: 5px 0;
    padding: 3px;
    color: #fff;
    font-size: 11px;
    background: #000; 
    display: table;
    text-transform: capitalize;   
}

.w-outofstock > span {
    display: table-cell;
    vertical-align: middle;
}

.onsale {
    z-index: 10;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 60px;
    text-align: center;
    margin: 5px 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    background: #3ab45b;
    display: inline-block;
}

.products .product figure figcaption {
    position: relative;
    padding: 10px 0;
    z-index: 10;
}

.w-products-slider .products .product figure figcaption {
    padding-bottom: 0;
}

.products .woocommerce-loop-product__title {
    font-size: 16px;
    text-transform: uppercase;
}

.products .product > figure .button {
    display: inline-block;
    position: relative;   
    width: auto;
    max-width: 80%;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    border-radius: 50px;
    padding: 0 15px;
    font-size: 14px;
    text-indent: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #333;
    color: #fff;
    text-align: left;
    margin-top: 10px;   
}

.no-touch .products .product > figure .button {
    position: absolute;
    z-index: 10;
    bottom: 40px;
    left: 50%;
    max-width: 40px;
    height: 40px;
    line-height: 40px;
    text-overflow: initial;
    opacity: 0;
    -ms-transform: translateX(-50%), translateY(100px);
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
    -webkit-transition: -webkit-transform 0.4s ease-out, opacity 0.2s, max-width 0.3s;
    transition: transform 0.4s ease-out, opacity 0.2s, max-width 0.3s;
}

.no-touch .products .product > figure:hover .button {  
    opacity: 1;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

.no-touch .products .product > figure .button:hover {
    text-overflow: ellipsis;
    text-indent: 20px;  
    max-width: 80%;
}

.products .product > figure .button:before {
    position: absolute;
    left: 0;
    text-indent: 0;
}

.products .product > figure .button > span {
    position: absolute;
    left: 0;
    padding-left: 42px;
    display: block;
    white-space: nowrap;
}

.products .product.outofstock > figure .button {
    background: #eee!important;
    color: #444;
}

.products .product > figure .button:before {
    font-family: 'gogreen';
    display: inline-block;
    text-align: center;
    width: 40px;
    content:'\e83f';
}

.products .instock .button.add_to_cart_button:before {
    content: '\e848';
}

.products .instock .button.product_type_variable:before {
    content: '\e836';
}

.products .outofstock .button:before {
    content:'\e83f';
}

.products .product h3 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 25px;
    max-height: 50px;
    overflow: hidden;
}

.products .product .price {
    display: block;
    font-size: 16px;
    color:#3ab54a;
    font-weight: bold;
}

.products .product .price del {
    font-weight: normal;
    color:#999;
    font-size: 12px;
}

.products .product-category .count {
    background: none;
}

.woocommerce del .amount{
    padding-right:3px;
    color:#999;
}

.added_to_cart {
    position: absolute;
    z-index: 999;
    top: 50%;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    left: 50%;
    margin-top: -30px;
    margin-left: -52px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.added_to_cart.active {
    opacity: 1;
}

.woocommerce .related h2:not(.product_title) {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
}

.woocommerce .related h2:not(.product_title):after {
    content: '';
    position: absolute;
    display: inline-block;
    overflow: hidden;
    top: 50%;
    margin: -10px 0 0 16px;
    background-color: transparent;
    background-image: linear-gradient(
        45deg, rgba(0, 0, 0, 0.05) 25%, 
        transparent 25%, transparent 50%, 
        rgba(0, 0, 0, 0.05) 50%, 
        rgba(0, 0, 0, 0.05) 75%, 
        transparent 75%, transparent);
    background-size: 6px 6px;
    width: 100%;
    height: 20px;
}

.addresses {
    margin-bottom:80px;
}

.woocommerce h2:not(.product_title),
.addresses .title h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0;
}

.my_account_orders td {
      border-bottom: 1px solid #e0dede;
      vertical-align:middle;
}

.shop_table.my_account_orders td.order-actions {
    padding:4px 8px;
    text-align:right;
}

.woocommerce.columns-6 .products .product .price{
    font-size:14px;
}

/** Star Rating **/
.star-rating {
    overflow: hidden;
    position: relative;
    height: 12px;
    line-height: 1;
    font-size: 12px;
    width: 66px;
    font-family: 'gogreen';
    color: #333;
    margin: 0 auto;
}

.product_list_widget .star-rating {
    margin:3px 0px;
}

.star-rating:before {
    content: "\e807\e807\e807\e807\e807";
    top: 0;
    left: 0;
    opacity: 0.4;
    position: absolute;
    letter-spacing: 2px;
}

.star-rating span {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    letter-spacing: 2px;
}

.star-rating span:before {
    content: "\e806\e806\e806\e806\e806";
    top: 0;
    left: 0;
    position: absolute;  
}

.products .product .star-rating {
    position: relative;
}

.no-touch .products .product .star-rating {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 50%;
    opacity: 0;
    -ms-transform: translateX(-50%), translateY(100px);
    -webkit-transform: translate3d(-50%, 100px, 0);   
    transform: translate3d(-50%, 100px, 0);  
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.no-touch .products .product:hover .star-rating {
    opacity: 1;
    -ms-transform: translateX(-50%); 
    -webkit-transform: translate3d(-50%, 0, 0);   
    transform: translate3d(-50%, 0, 0);  
}

/* WooCommerce Button */
.woocommerce button.button,
.woocommerce .buttons .button,
.wc-proceed-to-checkout .button,
.my_account_orders a.button,
.add_to_cart_inline .button {
    border: 2px solid #3ab54a;
    border-radius: 0px;
    padding: 8px 20px;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    background: #3ab54a;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.woocommerce .buttons .button{
    line-height: 1.5;
    font-size: 13px;
}

.my_account_orders a.button, 
.add_to_cart_inline .button {
    margin: 0 3px 0 0;
    padding: 3px 15px;
    font-size: 12px;
    vertical-align: middle;
}

.woocommerce button.button:hover,
.woocommerce .buttons .button:hover,
.wc-proceed-to-checkout .button:hover,
.my_account_orders a.button:hover,
.add_to_cart_inline .button:hover {
    background:none;
    color: #3ab54a;
}

/* Price Filter widget */
.widget_price_filter .price_slider_wrapper{
    position: relative;
    margin-top: 30px;
}

.widget_price_filter .ui-widget-content {
    background: #e1e1e1;
}

.widget_price_filter .ui-slider-horizontal {
    height: 4px;
    position: relative;
    text-align: left;
    margin-bottom: 15px;
}

.widget_price_filter .ui-slider .ui-slider-range {
    top: 0;
    height: 100%;
    background: #3ab54a;
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: #3ab54a;
    width: 6px;
    height: 14px;
    top: -5px;
    position: absolute;
    cursor: ew-resize;
    z-index: 2;
}

.widget_price_filter .button {
    padding: 8px 10px;
    font-size: 15px;
    line-height: 15px;
    float:left;
    position: relative;
    z-index: 1;
}

.widget_price_filter .price_label {
    float: right;
}

.widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 37px;
}

.widget_price_filter .clear {
    position: relative;
    z-index: -1;
}

/* Products widget */
.woocommerce .product-categories li ul {
    padding:0 0 5px 25px;
}

.widget_shopping_cart li:after,
.product_list_widget li:after,
.woocommerce-tabs:after,
.woocommerce .comment .comment_container:after,
.single-product .woocommerce-tabs .tabs:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

.widget .product_list_widget li {
    position: relative;
    padding: 10px 0;
}

.product-categories > li,
.product_list_widget li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.product-categories li,
.widget .product-categories li {
    font-size: 12px;
    letter-spacing: 1px;
    text-align:right;
    display: block;
    clear: both;
    float: none;
    min-height: 30px;
    line-height: 30px;
    position: relative;
}

.product-categories > li  a {
    position: relative;
    display: block;
    text-align: left;
    font-size: 13px;
    -webkit-transition:color linear 0.3s;
    transition:color linear 0.3s;
}

.product-categories li a:hover,
.product_list_widget li a:hover {
    color:inherit;
}

.product-categories > li ul li a:before{
    content: '\e833';
    font-family: 'gogreen';
    display: inline-block;
    margin-right: 10px;
}

.product-categories > li span {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 0;
}

.widget.woocommerce ul li a img {
    width: 60px;
    box-shadow: none;
    padding: 1px;
    border: 2px solid #e0e0e0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    margin: 0 10px 0 0;
    height: auto;
    float: left;
}

.widget.woocommerce ul li.mini_cart_item a img {
    margin: 0 10px 0 0;
}

.widget.woocommerce ins .amount {
    color: #000;
}

.widget.woocommerce .product-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}

/** Shopping Cart widget **/
.widget_shopping_cart li a.remove {
    position: absolute;
    z-index: 10;
    right: 0px;
    top: 10px;
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #222;
    color: #fff;
    font-weight: bold;
}

.widget_shopping_cart li a.remove:hover {
    background: red;
}

.variation {
    border-left: 2px solid #3ab54a;
    padding-left: 10px;
    display: inline-block;
    margin-left: 10px;
    line-height: 18px;
}

.variation dt {
    display: inline-block;
}

.variation dd {
    display: inline-block;
    margin: 0;
}

.variation p {
    margin-bottom:0;
}

.widget_shopping_cart .total {
    margin: 10px 0 25px;
    font-weight: bold;
}

.widget_shopping_cart .total .amount {
    color: #8accff;
    float: right;
}

.widget_shopping_cart .buttons .checkout {
    float: right; 
}

/* Search Widget */
.widget_product_search .woocommerce-product-search {
    position: relative;
    display: block;
}

.widget_product_search label{
    display: none;
}

.widget_product_search .search-field {
    display: block;
    width: 100%;
}

.widget_product_search input[type="submit"] {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    margin: 0;
    min-width: 0;
    background: none;
    border: none;
    outline: 0;
    z-index: 99;
    line-height: 30px;
    color: inherit;
    padding: 0px 10px;
    opacity: 0;
    cursor: pointer;
}

.widget_product_search form:after {
    font-family: 'gogreen';
    content: '\e82c';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    width: 20px;
    text-align: center;
    cursor: pointer;
}


/* Related & Upsells Products */
.related.products .product .price span,
.upsells.products .product .price span  {
    font-size: 15px;
}

/* Single Product Page */
.single-product,
.woocommerce-cart,
.woocommerce-checkout {
    background: #fff;
}

.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    padding: 20px;
    margin: 0 0 30px 0;
    border-top: 3px solid #B3D3D8;
    min-height: 32px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.woocommerce-message:before,
.woocommerce-info:before,
.woocommerce-error li:before {
    content:'\e831';
    font-family:'gogreen';
    margin-right:10px;
    color:#3ab54a;
}

.woocommerce-info:before {
    content:'\e83f';
}

.woocommerce-message {
    border-color: #6edb77;
}

.woocommerce-info {
    border-color: #84bbfc;
}

.woocommerce-error {
    border-color: #ff5d5d;
}

.woocommerce-error li:before {
    content:'\e83e';
    color:red;
}

.woocommerce-error li {
    list-style: none;
}

.woocommerce-breadcrumb i {
    margin: 0 5px;
}

.woocommerce-message .button {
    float: right;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    border: 1px solid #cfcfcf;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.woocommerce-message .button:hover {
    color:#fff;
    background-color:#404040;
}

.single-product .products .product figure {
    padding: 0;
}

.single-product .images .onsale {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;
}

.product .images .woocommerce-main-image {
    margin-bottom: 10px;
    display: block;
    text-align:center;
}

.single-product .thumbnails .owl-nav {
    left: 0;
    margin-top: -25px;
}

.product .thumbnails {
    line-height: 0;
}

.product .thumbnails .owl-item a {
    display: block;
    padding-right: 5px;
}

.summary {
    margin-top:30px;
}

.product .entry-summary .summary-container {
    float: left;
    width: 100%;
}

.product .entry-summary .product_title {
    font-size: 26px;
}

.product .woocommerce-product-rating {
    margin-bottom:20px;
}

.summary .star-rating {
    display:inline-block;
}

.summary .woocommerce-review-link {
    position: relative;
    top: -2px;
}

.summary .price {
    font-size: 25px;
    line-height: 25px;
    color: #000;
    font-weight: bold;
}

.summary .single_variation {
    padding-bottom: 20px;
}

.summary .single_variation .price ins .amount {
    color: #3ab54a;
}

.summary .price del span {
    color:#666;
    font-size: 15px;
    padding-right:10px;
}

.woocommerce ins {
    text-decoration: none;
}

.summary .out-of-stock {
    color: red;
    font-size: 120%;
    margin: 15px 0;
}

.summary .in-stock {
    color: #00a651;
    margin: 15px 0;
}

.woocommerce .main-content .summary .post-content {
    padding-top: 0px;
}

.summary .cart .quantity {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
    display: block;
    overflow: hidden;
}

.summary .cart .quantity input {
    height: 36px;
    width: 100px;
    border-width: 1px;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    margin: 5px 0;
}

.variations {
    margin-bottom:20px;
    border-width: 1px 0;
    text-align: left;
}

.variations th {
    background: none;
}

.variations select {
    color: inherit;
}

.woocommerce-variation-description {
    margin-bottom: 30px;
}

.variations .reset_variations {
    margin-left: 10px;
}

.single_variation_wrap {
    text-align: left;
}

.summary .product_meta {
    color: #bbb;
}

.woocommerce-tabs {
    clear: both;
    padding:50px 0;
}

.woocommerce-tabs > .tabs {
    list-style: none;
    z-index: 12;
    margin: 0;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
}

.single-product .woocommerce-tabs .tabs li {
    display: inline-block;
    padding:10px;
    margin: 0;
    list-style: none;
    -webkit-transition: color 0.25s, box-shadow 0.25s;
    transition: color 0.25s, box-shadow 0.25s;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    box-shadow: 0 1px 0 #3ab54a;
}

.single-product .woocommerce-tabs ul.tabs li a {
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 18px;
    display: block;
    background: transparent;
    padding: 9px 0;
    color: #999;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #000;
}

.woocommerce-tabs .panel {
    min-height: 140px;
    padding: 20px 0;
    background-color:#fff;
}

.single-product .woocommerce-tabs .post-content {
    padding:10px 0;
}

.single-product .woocommerce-tabs .post-content h2 {
    display:none;
}

.woocommerce #comments {
    border:none;
    padding:0;
    background-color:transparent;
}

.woocommerce #comments h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0;
    text-align: center;
}

.woocommerce #comments .commentlist {
    margin-left:0;
}

.woocommerce .bypostauthor .comment_container {
    border: none;
    padding-bottom: 0;
}

.woocommerce .comment .comment-image {
    text-align:center;
}

.woocommerce .comment .avatar {
    float:none;
    clear:both;
    padding-right:0;
    border-radius: 30px;
}

.woocommerce .comment .star-rating {
    margin:5px auto;
}

.woocommerce .comment .comment-image strong {
    display:block;
}

.woocommerce .comment .comment-text {
    text-align: center;
}

.woocommerce .comment .comment-text .meta {
    margin-bottom: 0;
    font-style: italic;
}

.stars {
    position: relative;
    font-size: 1em;
}

.stars a {
    display: inline-block;
    margin-right: 1em;
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
    outline: 0;
    border-right: 1px solid #ccc;
}

.stars a:after {
    font-family: 'gogreen';
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.stars a.star-1 {
    width: 2em;
}

.stars a {
    opacity: 0.5;
}

.stars a:hover,
.stars a.active {
    opacity: 1;
}

.stars a.star-1:after {
    content: "\e806";
}

.stars a.star-1:hover:after,
.stars a.star-1.active:after{
    content: "\e806";
}

.stars a.star-2 {
    width: 3em;
}

.stars a.star-2:after {
    content: "\e806\e806";
}

.stars a.star-2:hover:after,
.stars a.star-2.active:after {
    content: "\e806\e806";
}

.stars a.star-3 {
    width: 4em;
}

.stars a.star-3:after {
    content: "\e806\e806\e806";
}

.stars a.star-3:hover:after,
.stars a.star-3.active:after {
    content: "\e806\e806\e806";
     opacity: 1;
}

.stars a.star-4 {
    width: 5em;
}

.stars a.star-4:after {
    content: "\e806\e806\e806\e806";
}

.stars a.star-4:hover:after,
.stars a.star-4.active:after {
    content: "\e806\e806\e806\e806";
}

.stars a.star-5 {
    width: 6em;
    border-right: 0;
}

.stars a.star-5:after {
    content: "\e806\e806\e806\e806\e806";
}

.stars a.star-5:hover:after,
.stars a.star-5.active:after {
    content: "\e806\e806\e806\e806\e806";
}

.single-product .upsells.products,
.single-product .related.products {
    padding: 40px 0;
    clear: both;
    float: none;
}

.woocommerce-tabs #review_form_wrapper {
    text-align: center;
}

/* Cart Page */
.cart-empty,
.return-to-shop{
    text-align: center;
}

.shop_table {
    border: 3px solid #e0dede;
}

.shop_table.cart {
    padding: 30px;
    border-radius: 0;
    background: #fcfcfc;
}

.shop_table th {
    background: none;
    border-bottom: 1px solid #e0dede;
    margin-bottom: 10px;
    text-align: left;
    padding: 12px 10px;
    text-transform: uppercase;
    color: #545454;
}

.shop_table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0dede;
    vertical-align: middle;
}

.shop_table tr:last-child td {
    border:none;
}

.shop_table .product-name {
    width: 50%;
    text-align: left;
}

.shop_table .product-thumbnail {
    display:inline-block;
    vertical-align:middle;
    margin-right: 25px;
    width: 90px;
}

.shop_table .product-info {
    vertical-align: middle;
    display: inline-block;
}

.shop_table .product-quantity{
    text-align: center;
}

.shop_table .product-price,
.shop_table .product-subtotal{
    text-align: right;
}

.shop_table .product-remove {
    width: 5%;
    text-align: right;
}

.shop_table .quantity input {
    border-width: 1px;
    border-color:transparent;
    font-size: 16px;
    width: 70px;
    text-align: center;
}

.shop_table .quantity input:focus,
.shop_table .quantity input:hover {
    border-color:#8accff;
}

.shop_table .remove {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #000;
    color: #fff;
}

.shop_table .remove:hover {
    background: red;
}

.shop_table .actions {
    padding: 12px 0px;
}

.coupon label {
    display:none;
}

.coupon .input-text {
    width: 170px;
    border-width: 1px;
    padding: 0 5px;
    height: 35px;    
}

.checkout_coupon .input-text {
    margin:5px 0;
}

.cart-collaterals .buttons {
    text-align: right;
}

.cart-collaterals .cross-sells,
.cart_totals {
    margin-bottom: 30px;
}

.cart_totals {
    margin-top: 30px;
}

.cart_totals h2 {
    font-size: 24px;
    padding-bottom: 5px;
}

.cart_totals table {
    border: 1px solid #e0dede;
    padding: 30px;
    background: #fcfcfc;
}

.cart_totals table th {
    width: 40%;
    text-transform: uppercase;
    font-weight: 700;
    background: none;
    font-size: 14px;
    border-bottom: 1px solid #e0dede;
}

.cart_totals table td {
    padding:7px 0;
    border:none;
    border-bottom: 1px solid #e0dede;
}

.cart_totals table tr:last-child th,
.cart_totals table tr:last-child td {
    border: none;
}

.cart_totals table td {
    text-align: right;
}

.cart_totals .amount {
    font-weight: bold;
}

.shipping-calculator-button {
    font-style: italic;
}

.shipping-calculator-form select {
    width: 100%;
}

.cart-subtotal td,
.order-total td {
    text-align: right;
}

.cart_totals .shipping td {
    padding-left: 10px;
    text-align: left;
}

.shipping .shipping-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0;
    color: #545454;     
}

#shipping_method {
    position: relative;
    padding: 0;
    margin: 0 0 5px;
    display: block;
    text-align: left;
}

#shipping_method li {
    position: relative;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;    
    line-height: 20px;
}

#shipping_method li input[type="radio"] {
    margin: 0 10px 0 0;
}

#shipping_method li {
    padding: 0;
}

.shipping .woocommerce-Price-amount.amount{
    float: right;
}

#shipping_method li label {
    display: inline-block;
}

#shipping_method li .woocommerce-Price-amount.amount {  
    font-weight: 700;
    float: right;
    padding-left: 5px;
}

#shipping_method li input[type="radio"][checked="checked"]+label .woocommerce-Price-amount.amount {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    margin-left: 10px;
}

.cart_totals p {
    margin-bottom: 0;
}

.shipping-calculator-form p {
    margin-top:10px;
}

.order-details .order-total th,
.order-details .order-total,
.shop_table tfoot .order-total th{
    font-size:24px;
    border: none;
}

.cart_totals .shipping-calculator-form {
    padding: 10px;
    background: #f5f5f5;
}

/* Checkout Page */
.woocommerce-checkout h3 {
    text-transform: uppercase;
    font-size: 22px;
}

#customer_details {
    margin-bottom: 30px;
}

.woocommerce .form-row-first, 
.woocommerce .form-row-last{
    float: left;
    width: 47%;
    overflow: visible;
}

.checkout_coupon .form-row-first,
.checkout_coupon .form-row-last {
    width: 50%;
}

.woocommerce #payment #place_order, 
.woocommerce form .form-row-last {
    float: right;
}

.woocommerce-checkout .form-row {
    margin-bottom: 30px;
}

.form-row-wide,
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
    clear: both;
    float: none;
}

.woocommerce-checkout .clear{
    clear: both;
    float: none;
}

input[type="checkbox"].woocommerce-form__input-checkbox,
.woocommerce-form__label-for-checkbox span {
    vertical-align: middle;
}

.woocommerce-checkout .order-details {
    padding: 20px;
    background: #f5f5f5;
}

.shop_table.woocommerce-checkout-review-order-table {
    font-size: 13px;
    border: none;
    border-bottom: 5px double #e0dede;
}

.shop_table.woocommerce-checkout-review-order-table .product-name,
.shop_table.order_details .product-name {
    width: 50%;
}

.shop_table.woocommerce-checkout-review-order-table .product-total,
.shop_table.order_details .product-total,
.shop_table.order_details tfoot td {
    text-align: right;
}

.shop_table tfoot th {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.shop_table.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

.woocommerce-checkout-review-order-table .woocommerce-Price-amount.amount{
    font-weight: normal !important;
}

.woocommerce-checkout-review-order-table .shipping-title {
    font-size: 12px;
}

.woocommerce-checkout  #place_order {
    width: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single {
    padding: 5px 6px;    
    border: 1px solid #e2e2e2;
    border-radius: 0;
    height: 36px;
    -webkit-transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
    transition: color linear 0.4s, background linear 0.4s, border-color linear 0.4s, box-shadow linear 0.4s;
}

.select2-container--open .select2-selection--single,
.select2-container--focus .select2-selection--single {
    border-color: #bbb;   
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: inherit;
}

.select2-search input{
    border: 1px solid #e2e2e2;
    margin: 2px 0;
    height: 32px;
}

.order-total .amount {
    color: #3ab54a;
    font-weight: bold;
}

.required {
    color: red;
    border: none;
}

#payment,
#payment .payment_methods {
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
}

#payment .payment_methods li {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

#payment .input-radio {
    vertical-align: middle;
    margin-right: 5px;
}

#payment .payment_box {
    position: relative;
    padding: 1em 2%;
    margin: 1em 0;
    font-size: .92em;
    border-radius: 2px;
    background-color: #fff;
}

#payment div.payment_box:after {
    content: '';
    top: -20px;
    font-size: 25px;
    line-height: 0;
    height: 1px;
    width: 1px;
    position: absolute;
    color: #f5f5f5;
    border: 10px solid transparent;
    border-bottom-color: #fff;
}

#payment div.payment_box p:last-child {
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,.2);
    margin: 0;
}

#payment .payment_method_paypal img {
    max-height: 52px;
    vertical-align: middle;
    margin: 0 10px;
}

/* Order Received */
.order-received-text {
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
    color: green;
}

.order-received-text:before {
    font-family: 'gogreen';
    content: '\e831';
    margin-right: 8px;
}

.woocommerce .order_details {
    margin: 0 0 30px 0;
    padding: 0;
}

.woocommerce .order_details:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
} 

.woocommerce .order_details li {
    list-style: none;
    float: left;
    text-align: left;
    text-transform: uppercase;
    font-size: .715em;
    line-height: 1;
    border-right: 1px dashed #d3ced2;
    padding-right: 2em;
    padding-left: 0;
    margin: 0 2em 2em 0;
}

.woocommerce .order_details li:last-child {
    border-right: none;
}

.woocommerce .order_details li strong {
    display: block;
    font-size: 1.4em;
    text-transform: none;
    line-height: 1.5;
}

.shop_table.customer_details th {
    background: #eee;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    width: 30%;
}

.woocommerce-checkout .addresses {
    margin-bottom: 30px;
}

/* My Account Page */
.woocommerce-account{
    background: #f5f5f5;
}

.woocommerce-account .page-content{
    background: #fff;
}

.woocommerce-account h2{
    text-align: center;
}

.woocommerce .login{
    max-width: 500px;
    margin: auto;
}

.woocommerce .login .woocommerce-Button{
    float: right;
}

.woocommerce-MyAccount-navigation{
    padding: 10px 0;
    margin-bottom: 30px;
    border: 1px solid #efefef;
    border-left: none;
    border-right: none;
    box-shadow: 0 2px 0 rgba(238, 238, 238, 0.5);
}

.woocommerce-MyAccount-navigation ul{
    margin: 10px 0;
    padding: 0;
    clear: both;
    float: none;
}

.woocommerce-MyAccount-navigation ul li{
    margin: 4px 20px 4px 0;
    padding: 0;
    list-style: none;
    display: block;
    font-size: 16px;
}

.woocommerce-MyAccount-navigation ul li:not(.is-active) a{
    color: #777;
}

.woocommerce-MyAccount-navigation ul li a{
    font-size: inherit;
}

.woocommerce-MyAccount-content{
    margin-bottom: 30px;
}

.woocommerce-MyAccount-content h2{
     text-align: left;
}

.woocommerce-EditAccountForm .woocommerce-Button{
    margin-top: 30px;
}

.woocommerce-EditAccountForm fieldset{
    border-top: 1px solid #e1e1e1;
}

.woocommerce-EditAccountForm fieldset legend{
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.u-column1.col-1{
    width: 100%;
}

/*==================================================================
16 MEDIA QUERIES 
/*==================================================================*/

/*------------------------------------------------------------------
MIN WIDTH QUERIES
*/

/* Small devices (Tablets) */
@media only screen and (min-width: 768px) {
    .container,
    .w-section > .row  {
        max-width: 750px;
    }

    /* Blog Single Post */
    .comment {
        text-align:left;
    }

    .comment .avatar {
        float:left;
        padding-right: 15px;
    }
       
    .comment-box .page-content {
        margin-left: 78px;
    }

    .comment .children {
        margin:0 0 0 20px;
    }

    .comment .post-content {
        padding-left: 79px;
    }    
    
}


/* Medium devices */
@media only screen and (min-width: 992px) {
    
    /* Full Width Sidebar & Equal Height Columns */
    .main-content.full-width:not(.no-sidebar) .page-content{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
    }

    .main-content.full-width:not(.no-sidebar) .page-content .w-main,
    .main-content.full-width:not(.no-sidebar) .page-content .w-sidebar{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .main-content.full-width:not(.no-sidebar) .page-content .w-main > .col-inner,
    .main-content.full-width:not(.no-sidebar) .page-content .w-sidebar > .col-inner{
        /* flex: 1; */
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
        height: auto;
    }   

    /* Parallax Background */
    .w-parallax > .section-background > .bg-image{
        height: 200%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    .title-wrapper.w-parallax .bg-image {
        height: 150%;
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }   

    .title-wrapper.w-size-m.text-left .title:after {
        margin-left:0;
    }

    .title-wrapper.w-size-m.text-right .title:after {
        margin-right:0;
    }
    
    .container,
    .w-section > .row  {
        max-width: 970px;
    }

    .left-sidebar:not(.full-width) .w-main {
        padding-left: 5%;
    }

    .right-sidebar:not(.full-width) .w-main {
        padding-right: 5%;
    }

    .owl-nav {
        top: 50%;
        left: 0;
        margin-top: -25px;
    }

    .owl-nav > button {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .owl-nav > button.disabled {
        display: none!important;
    }

    .owl-nav .owl-prev {
        left: 0;
    }

    .owl-nav .owl-next {
        right:0;
        left: auto;
    }   

    /* Blog Single Post */
    .prev-post > a,
    .next-post > a {
        top: 15px;
    }

    .footer-v2 #footer-nav{
        float: right;
    }

    .widget_archive ul > li > a,
    .widget_categories ul > li > a {
        float: left;
    }

    .comment-list .comment, 
    .comment-list .pingback, 
    .comment-list .trackback {
        padding: 20px 20px 0;
    }

    #comments .comment-reply-title small {
        display: inline;
    }

    #cancel-comment-reply-link {
        float: right;
    }

    /* Portfolio Vertical */
    .portfolio-vertical .w-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 125px;
    }

    /* WooCommerce */
    .col2-set > .col-1,
    .col2-set > .col-2{
        width: 50%;
    }

    .products .product.outofstock {
        opacity: 0.3;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .products .product.outofstock:hover {
        opacity: 1;
    }

    .product .images {
        float: left;
        width: 48%;
        padding-bottom: 30px;
        position: relative;
    }

    .summary {
        margin-top: 0px;
    }

    .product .entry-summary {
        width: 48%;
        float: right;
    }

    form.cart {
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .cart_totals h2 {
        display: inline-block;
    }

    .cart_totals .wc-proceed-to-checkout {
        text-align: right;
    }    

    .woocommerce-MyAccount-navigation ul li{
        display: inline-block;
    }
}

/* Full version of Navigation */
@media only screen and (min-width: 1080px) {

    .no-scroll {
        overflow: initial;
    }

    #header .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    #header #top-bar {
        display: block;
        color: #fff;
        background: #292e38;
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
        height: 50px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    #header.w-dark #top-bar{
        background: #131313;
    }

    #header.w-transparent #top-bar{    
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0) 100%);
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0) 100%);
    }

    #header.w-scrolled #top-bar,
    #header.w-fixed #top-bar{
        height: 0;
        opacity: 0;
    }

    #top-bar .container{
        height: 100%;
    }

    #top-bar .top-bar-left{
        float: left;
        margin-left: -15px;
    }

    #top-bar .top-bar-right{
        float: right;
        margin-right: -15px;
    }

    #top-bar .social-icons li,
    #top-bar .contact-info li{
        float: left;
        line-height: 40px;
    }

    #top-bar .menu-item a{
        color: #fff;
        padding: 0;
    }

    #header-logo{
        width: 160px;
        overflow: hidden;
        text-align: left;
    }

    body:not(.no-header) .main-content.header-space {
        padding-top: 95px;
    }

    body.top-bar:not(.no-header) .main-content.header-space {
        padding-top: 145px;
    }

    .title-wrapper {
        padding: 295px 0 200px;
    }

    .top-bar .title-wrapper {
        padding-top: 345px;
    }

    .title-wrapper.w-size-s {
        padding: 130px 0 35px;
    }

    .top-bar .title-wrapper.w-size-s {
        padding-top: 180px;
    }

    .title-wrapper.w-size-m {
        padding: 245px 0 150px;
    }

    .top-bar .title-wrapper.w-size-m {
        padding-top: 295px;
    }

    body.no-header .title-wrapper.w-size-s {
        padding-top: 35px;
    }

    body.no-header .title-wrapper.w-size-m {
        padding-top: 150px;
    }

    body.no-header .title-wrapper.w-size-l {
        padding-top: 200px;
    }

}

/* Large devices Desktops */
@media only screen and (min-width: 1200px) {
    .container,
    .w-section > .row {
        max-width: 1100px;
    }

    .title-wrapper.w-gradient .subtitle {
        opacity: 0;
    }

    .title-wrapper.w-gradient.w-size-full .subtitle {
        height: 0;
        -ms-transform: translateY(-60px);
        -webkit-transform: translate3d(0, -60px, 0);
        transform: translate3d(0, -60px, 0);
    }

    .title-wrapper.w-gradient.w-effect-active .subtitle {
        opacity: 1;
    }

    .title-wrapper.w-gradient.w-size-full.w-effect-active .subtitle {
        -ms-transform: translateY(-50px);
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    .title-wrapper.w-gradient:not(.w-size-s) .title:after {
        opacity: 0;
    }
    
    .title-wrapper.w-gradient.w-size-full .title:after {
        -ms-transform: translateY(30px);
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    .title-wrapper.w-gradient.w-effect-active .title:after {
        opacity: 1;
    }

    .title-wrapper.w-gradient.w-size-full.w-effect-active .title:after {
        -ms-transform: translateY(0px);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Medium Large Desktops */
@media only screen and (min-width: 1400px) {
    .container,
    .w-section > .row {
        max-width: 1200px;
    }

}

/* Ultra HD */
@media only screen and (min-width: 1921px){
    .w-section.w-full > .row {
        max-width: 1920px;
    }
}

/*------------------------------------------------------------------
MAX WIDTH QUERIES
*/

/* Mobile version of Navigation */
@media only screen and (max-width: 1079px) {

    #header {
        display: block;
        -ms-transform: translateX(0);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    #header .container{
        height: 65px;
        max-width: none;
    }

    .mobile-nav-icon {
        display: block;
    }

    #header-logo {
        float: none;
        margin: 0 60px;
        width: auto;
        text-align: center;
    }

    #header-logo a{
        position: relative;
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    #header-logo a img{
        margin: auto;
    }

    #header #top-nav {
        position: absolute;
        z-index: 10;
        top: 0;
        right: 15px;
        width: 60px;
        overflow: hidden;
    }

    #top-nav .top-menu {
        position: relative;
        margin-right: -15px;
    }

    #header .dropdown-nav > ul > li.menu-item, 
    #header .dropdown-nav .full-nav-icon {
        display: none;
    }

    #header .dropdown-nav > ul > li {
        margin-bottom: 10px;
    }

    .ex-menu > .menu-item-search > a {
        padding-right: 0;
    }

    .full-nav-button {
        display: none;
    }

    #side-nav {
        max-width: 400px;
        padding-top: 65px;
        -ms-transform: translateX(-100%);
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }

    #live-search-form{
        margin: 10px 0;
    }

    .main-content.header-space {
        padding-top: 65px;
    }

}

@media only screen and (max-width: 991px) {
    
    body{
        overflow-x: hidden;
    }
    
    /* Footer */
    #footer-bottom, #footer-bottom #footer-nav, #footer-bottom #footer-text {
        text-align: center;
    }

    .footer-v2 #footer-logo {
        float: none;
        margin-right: 0;
    }

    /* Blog */
    .post-nav .post-link {
        display: none;
    }

    .prev-post > a {
        width: 50px;
    }

    .next-post > a {
        width: 50px;
        text-align: right;
    }

    .widget .w-posts {
        text-align: left;
    }

    .widget .w-posts .thumb {
        float: left;
        clear: none;
    }

    .widget .w-social-icons.text-left {
        text-align: left!important;
    }

    .related-posts li {
        width: 25%;
        padding: 5px;
    }

    .widget .w-posts > li > p {
        margin-left: 0;
    }

    /* Portfolio Single Post */
    .portfolio-gallery .post-gallery li,
    .portfolio-gallery .post-gallery li:first-child, 
    .portfolio-gallery .post-gallery li:nth-child(2),
    .portfolio-grid .w-grid li {
        width: 50%;        
        float: left;
    }

    .portfolio-grid .w-grid li.w-featured .cover-image,
    .portfolio-gallery .cover-image{
        height: 400px;
    }  

    /* WooCommerce */
    .products.w-grid-space .product {
        width: 50%;        
        float: left;
    }

    .cart-collaterals.row .buttons,
    .coupon,
    .cart_totals h2,
    .cart-collaterals.row .wc-proceed-to-checkout {
        text-align: center;
    }

    .cart_totals table th {
        background: #f5f5f5;
        padding: 10px;
    }

    .cart_totals table td {
        border-bottom: 1px solid #e0e0e0;
        padding: 10px;
    }

    .shop_table_responsive thead {
        display:none;
    }

    .my_account_orders td {
        padding: 4px 8px;
    }

    .shop_table_responsive tr:nth-child(even) td {
        background-color:rgba(0, 0, 0, 0.03);
    }

    .shop_table.my_account_orders td.order-actions {
        text-align:left;
    }

    .widget {
        text-align: left;
    }
}

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

    .title-wrapper:not(.w-size-none) .title {
        font-size: 28px;
    }

    .title-wrapper.w-size-l .title {
        font-size: 34px
    }

    .title-wrapper.w-size-full .subtitle {
        margin-bottom: 15px
    }

    .title-wrapper:not(.w-size-none) .subtitle {
        font-size: 16px;
    }

    .comment-list > .comment > .children > .comment,
    .comment-list > .children > .pingback,
    .comment-list > .children > .trackback {
        background: rgba(0, 0, 0, 0.015);
    }

    .comment-box .post-meta {
        margin-bottom: 30px;
    }

    .comment-box .post-meta .comment-date {
        display: block;
    }

    /* WooCommerce */
   .shop_table .product-thumbnail {
        clear: both;
        float: none;
        width: auto;
        margin-right: 0;
    }

    .shop_table .product-info {
        margin: 0;
    }

    .shop_table.cart .product-price {
        display: none;
    }

    .shop_table .quantity input {
        width: 50px;
    }
}

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

    .title-wrapper.w-size-m .title:after {
        margin: 26px auto 0;
    }

    /* Blog Single Post */
    .post-detail .meta-date:after,
    .post-detail .meta-author,
    .post-detail .meta-comment {
        display: none;
    }

    /* Portfolio Single Post */
    .portfolio-gallery .post-gallery li,
    .portfolio-gallery .post-gallery li:first-child, 
    .portfolio-gallery .post-gallery li:nth-child(2),
    .portfolio-grid .w-grid li
     {
        width: 100%;
        clear: both;
        float: none;
    }

    .portfolio-grid .w-grid li.w-featured .cover-image,
    .portfolio-gallery .cover-image{
        height: 300px;
    }

    .portfolio-masonry .w-masonry .w-item .image-wrapper a {
        position: relative;
    }

    .portfolio-masonry .w-masonry .w-item img.cover-image {
        opacity: 1;
    }

    .portfolio-masonry .w-masonry .w-item div.cover-image {
        opacity: 0;
    }
    
    #toplink-wrapper,
    #toplink-button {
        bottom: 5px;
        right: 5px;
    }

    /* WooCommerce */
    .products.w-grid-space {
        margin: 0;        
    }

    .products.w-grid-space .product {
        width: 100%;
        clear: both;
        float: none;
        padding: 0;
    }

    .woocommerce-result-count {
        float: none;
        text-align: center;
    }

    .woocommerce-ordering {
        text-align: center;
    }

    .shop_table.cart {
        padding:0;
    }

    .shop_table th {
        font-size: 10px;
    }

    .shop_table .product-info {
        font-size: 12px;
        line-height: 14px;
    }

    .shop_table .actions > .button,
    .wc-proceed-to-checkout .button,
    .coupon .button,
    .cart-collaterals.row .button {
        width: 100%;
        float: none;
        clear:both;
        text-align:center;
    }

    .coupon .input-text {
        width: 100%;
    }

    .woocommerce .order_details li {
        border-right: none;
    }
}

/** WordPress Admin Bar **/
@media only screen and (max-width: 782px) {
    .admin-bar #side-nav,
    .admin-bar #live-search {
        top: 46px;
    }
}

@media only screen and ( max-width: 600px ) {
    
    #wpadminbar {
        position: fixed;
    }

    #wpadminbar .ab-top-menu  > #wp-admin-bar-my-account > .ab-sub-wrapper {
        right: 0;
        left: auto;
    }
}/*==================================
SECTION & ROW
/*==================================*/
.row {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

.w-section {
    position: relative;
    padding: 95px 0;
}

.w-section > .row {
    margin-left: auto;
    margin-right: auto;
}

.w-section.w-full > .row {
    max-width: none;
    padding: 0;
}

.w-section.w-full > .row,
.w-section > .row .row {
    margin-left: 0;
    margin-right: 0;
}

.w-section.no-padding,
.row.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}
    
.w-section.s-padding,
.row.s-padding {
    padding-top:20px;
    padding-bottom:20px;
}

.w-section.m-padding,
.row.m-padding {
    padding-top:40px;
    padding-bottom:40px;
}

.w-section.l-padding,
.row.l-padding {
    padding-top:60px;
    padding-bottom:60px;
}

.w-section.xl-padding,
.row.xl-padding {
    padding-top:120px;
    padding-bottom:120px;
}

/* Flex row, vertical alignment & equal height */ 
.w-row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.w-row-flex > .col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Equal Height */
.w-row-flex.w-equal-height > .col {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

/* Align Middle */
.w-row-flex.w-align-middle > .col {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Align Bottom */
.w-row-flex.w-align-bottom > .col {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.w-row-flex > .col > .col-inner {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    height: auto;
}  

/*==================================
COLUMN
/*==================================*/
.col {
    position: relative;
    display: block;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-inner{
    position: relative;
    height: 100%;
    width: 100%;
}

.col.no-padding {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.col.s-padding {
    padding: 15px;
}

.col.m-padding {
    padding: 30px;
}

.col.l-padding {
    padding: 5%;
}

.five-cols {
    width: 20%;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666667%;
}

.col-10 {
    width: 83.33333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666667%;
}

.col-4 {
    width: 33.33333333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66666667%;
}

.col-1 {
    width: 8.33333333%;
}

.col-offset-12 {
  margin-left: 100%;
}

.col-offset-11 {
    margin-left: 91.66666667%;
}
.col-offset-10 {
    margin-left: 83.33333333%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-8 {
    margin-left: 66.66666667%;
}

.col-offset-7 {
    margin-left: 58.33333333%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-5 {
    margin-left: 41.66666667%;
}

.col-offset-4 {
    margin-left: 33.33333333%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-2 {
    margin-left: 16.66666667%;
}

.col-offset-1 {
    margin-left: 8.33333333%;
}

.col-offset-0 {
    margin-left: 0;
}

/*==================================
ANIMATED ELEMENT 
/*==================================*/
.w-animation {
    visibility: hidden;
    -moz-animation-name: none!important;
    -webkit-animation-name: none!important;
    -ms-animation-name: none!important;
    animation-name: none!important; 
}

/*==================================
EMPTY SPACE ELEMENT
/*==================================*/
.w-space {
    display: block;
    clear: both;
    float: none;
}

/*==================================
DROPCAP 
/*==================================*/
.dropcap {
    position: relative;
    display: inline-block;
    float: left;
    height: 40px;
    line-height: 35px;
    font-size: 45px;
    font-weight: 700;
    margin: 5px 10px 0 0;
    padding: 0;
    color: #000;
    text-transform: uppercase;
}

/*==================================
HIGHLIGHT
/*==================================*/
.highlight {
    color: #3ab54a;
}

/*==================================
BUTTON & LINK BUTTON
/*==================================*/
.w-button {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    background: #3ab54a;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    min-width: 120px;
    cursor: pointer;
    padding: 8px 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    border: 1px solid #3ab54a;
    outline: none;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-button.round, 
.w-link-button.round, 
.w-ghost-button.round {
    border-radius: 26px;
}

.w-button.rounded,
.w-link-button.rounded,
.w-ghost-button.rounded {
    border-radius: 6px;
}

.w-button.large,
.w-ghost-button.large {
    padding: 12px 40px;
    font-weight: 700;
    line-height: 16px;
    font-size: 14px;
}

.w-button:hover {
    color: #fff;
}

.w-button:after, .w-ghost-button:after {
    position: absolute;
    content: '\e843';
    font-family: 'gogreen';
    opacity: 0;
    font-weight: 300;
    right: 16px;
    top: 50%;
    line-height: 0;
    color: inherit;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-button.large:after {
    right: 30px;
}

.w-button:hover:after, .w-ghost-button:hover:after {
    opacity: 1;
    right: 10px;
}

.w-button.large:hover:after {
    opacity: 1;
    right: 16px;
}

.w-button > span,
.w-ghost-button > span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.w-button:hover > span,
.w-ghost-button:hover > span {
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
 
.w-ghost-button,
.w-link-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: top;
    border-width: 1px;
    border-style: solid;
    border-color: #3ab54a;
    color: #3ab54a;
    background: none;
    font-size: 12px;
    line-height: 14px;
    min-width: 120px;
    cursor: pointer;
    padding: 8px 5px;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-link-button {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-ghost-button:hover {
    color: inherit;
}

.w-link-button.none,
.w-link-button.outline,
.w-link-button:not(.none):hover,
.w-link-button:not(.none):active,
.w-link-button.outline.w-with-icon:hover {
    color: #3ab54a;
}
    
.w-link-button.large {
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
}

.w-link-button.none,
.w-link-button.large.none {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    text-align:left;
    background:transparent;
}

.w-link-button i {
    margin-right: 6px;
    padding-left:2px;
}

.w-link-button:not(.none),
.w-link-button:not(.none):not(.w-with-icon).outline:hover,
.w-link-button:not(.none).outline:active {
    background: #3ab54a;
    color: #fff;
}

.w-link-button:not(.none).outline,
.w-link-button:not(.none):not(.w-with-icon):hover {
    background: transparent;
}

.w-link-button:not(.none):not(.w-with-icon).outline:hover .w-border,
.w-link-button:not(.none):not(.w-with-icon).outline:active .w-border {
    top: 0;  
}

.w-link-button.outline:active,
a.w-link-button:not(.outline):not(.none).w-with-icon:hover,
a.w-link-button:not(.outline):not(.none).w-with-icon:active {
    color: #fff;
}

.w-link-button.outline:hover {
    color: #fff;
}


.w-link-button:not(.none):not(.outline) {
    -webkit-transition: 0.5s background 0.1s, color 0.3s;
    transition: 0.5s background 0.1s, color 0.3s;
}

.w-link-button:not(.none):not(.outline).w-with-icon {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;   
}

.w-link-button:not(.none):not(.outline).w-with-icon:hover {
    opacity: 0.9;
}

.w-link-button.w-with-icon {
    padding: 0;
    line-height: 40px;
    height: 40px;
}

.w-link-button.large.w-with-icon {
    padding: 0;
    line-height: 52px;
    height: 52px;
}

.w-link-button:not(.outline).w-with-icon {
    line-height: 42px;
    height: 42px;
    border: none;
    min-width: 1px;
    padding: 0;
}

.w-link-button:not(.outline).large.w-with-icon {
    line-height: 52px;
    height: 52px;
}

.w-link-button:not(.outline).large.w-with-icon.none {
    line-height: 30px;
    height: 30px;
}

.w-link-button.w-with-icon .w-button-icon {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    font-size: 20px;
}

.w-link-button.none.w-with-icon .w-button-icon {
    padding-left: 0;
}

.w-link-button.large:not(.none).w-with-icon .w-button-icon {
    min-width: 60px;
    font-size: 24px;
}

.w-link-button:not(.outline):not(.none).w-with-icon .w-button-icon {
    background: rgba(0,0,0,0.1);
}

.w-link-button.outline.w-with-icon .w-button-icon {
    border-right:1px solid;
}

.w-link-button.outline.w-with-icon .w-border {
    display: none;
}

.w-link-button.w-with-icon i {
    display: inline-block;
    margin-right: 2px;
}

.w-link-button.w-with-icon:hover i {
    -webkit-animation: 0.2s tRightfLeft 0.3s forwards;
    animation: 0.2s tRightfLeft 0.3s forwards;
}

.w-link-button.w-with-icon:not(.none) .w-button-text {
    display: inline-block;
    padding: 0 20px 0px 14px;
}

/*==================================
TEXT BLOCK
/*==================================*/
.w-text-block {
    color: inherit;
}

.w-text-block ul > li {
    list-style: none;
    margin-left:20px;
    margin: 10px 0;
}

.w-text-block ul > li ul > li,
.w-text-block ol ul {
    margin-left:0px;
}

.w-text-block ul > li:before {
    font-family: 'gogreen';
    content: "\e838";
    font-size: inherit;
    display: inline-block;
    margin-right: 9px;
    margin-left: -20px;
    text-align: center;
    color: #3ab54a;
}

.w-text-block ol > li{
    margin: 10px 0 10px 20px;
}

/*==================================
CUSTOM HEADING
/*==================================*/
.w-custom-heading h1,
.w-custom-heading h2,
.w-custom-heading h3,
.w-custom-heading h4,
.w-custom-heading h5,
.w-custom-heading h6 {
    margin-bottom: 0;
}

/*==================================
DONUT CHART & HALF DONUT CHART
/*==================================*/
.w-donut-chart {
    position:relative;
    overflow:hidden;
    display:block;
    margin:auto;
}

.w-donut-chart h3, 
.w-donut-chart span {
    width: 100%;
    position: absolute;
    z-index: 10;
    text-align: center;
    display: inline-block;
    left: 0;
}

.w-donut-chart h3 {
    font-size: 18px;
    margin-top: 50px;
    top: 38%;
    font-weight: lighter;
}

.w-donut-chart span {
    font-size: 46px;
    line-height: 46px;
    top: 35%;
    color: #333;
}

.w-donut-chart span i {
    display:inline-block;
    line-height:inherit;
}

.w-donut-chart span i.typcn,
.w-donut-chart i[class^="linecons-"] {
    font-size:56px;
} 

.w-donut-chart canvas {
    position: relative;
    z-index: 9;
}

.w-half-donut-chart {
    text-align:center;
    margin-bottom:30px;
}

.w-half-donut-chart span {
    bottom: 0;
    top: auto;
    line-height: 1.3;
}

.w-half-donut-chart .w-content >  h3 {
    margin: 15px 0 10px;
    font-size: 22px;
    font-weight: 400;
}

/*==================================
TABS
/*==================================*/
.w-tab {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s; 
    transition: opacity 0.3s; 
}

.w-tab.active {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.w-tabs .w-tabs-nav {
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.w-tabs .w-tabs-nav li {
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background:#fff;
    padding: 0;
    overflow:hidden;
}

.w-tabs .w-tabs-nav li.active {
    background: #3ab54a;
}

.w-tabs-nav h3 {
    text-align: center;
    font-size: 17px;
    margin-bottom:0;
}

.w-tabs .w-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    color:#666;
}

.w-tabs .w-tabs-nav li:hover a {
    color: #000;
}

.w-tabs .w-tabs-nav li.active a {
    color: #fff;
}

.w-tab-wrapper {
    position: relative;
    -webkit-transition: min-height 0.15s;
    transition: min-height 0.15s;
}

.w-tabs .w-tab-wrapper {
    margin-top:-7px;
}

.w-tabs .w-tab-wrapper .w-tab{
    padding:20px;
    border:1px solid rgba(0, 0, 0, 0.1);
    background:#fff;
}

.w-tab .w-tab-content {
    text-align: left;
}

/*==================================
ICON TABS
/*==================================*/
.w-icon-tabs {
    text-align:center;
}

.w-icon-tabs .w-tabs-nav {
    margin: 0;
    padding: 0;
    text-align: center;
}

.w-icon-tabs .w-tabs-nav li {
    list-style: none;
    display: inline-block;
    margin: 0px 5px 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d2d8d6;
    -webkit-transition: border-color 0.3s, background 0.3s;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 50px;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.w-icon-tabs .w-tabs-nav li.active {
    border-color:#3ab54a;
    background: #3ab54a;
}

.w-icon-tabs .w-tabs-nav li a {
    display: block;
    width: 80px;
    height: 80px;
    line-height: 75px;
    font-size: 40px;
    color: #d2d8d6;
}

.w-icon-tabs .w-tabs-nav li:hover a {
    color: #555;
}

.w-icon-tabs .w-tabs-nav li.active a {
    color: #fff;
    border-color:#3ab54a;
}

.w-icon-tabs .w-tab .w-text-block,
.w-tabs .w-text-block,
.w-tour .w-text-block {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translate3d(0,20%,0);
    transform:translate3d(0,20%,0);
    opacity: 0;
}

.w-icon-tabs .w-tab.active .w-text-block,
.w-tabs .active .w-text-block,
.w-tour .active .w-text-block {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
}

.w-icon-tabs .w-tab .w-text-block {
    margin: 20px 0;
}

.w-tab-icon .w-tab-content {
    margin-top: 20px;
}
/*==================================
TOUR
/*==================================*/
.w-tour .w-tabs-nav {
    margin:0;
}

.w-tour .w-tabs-nav li {
    list-style:none;
    clear:both;
    float:none;
    margin-bottom:5px;
}

.w-tour .w-tabs-nav li a {
    display: block;
    padding: 10px;
    text-overflow: ellipsis;
    border: 1px solid rgba(0,0,0,0.1);
    color: #666;
}

.w-tour .w-tabs-nav li:hover a {
    color: #000;
}

.w-tour .w-tabs-nav li.active {
    background: #3ab54a;
}

.w-tour .w-tabs-nav li.active a {
    color: #fff;
}

.w-tour .w-tabs-nav h3 {
    margin-bottom:0;
}

/*==================================
COUNTER BOX
/*==================================*/
.w-counter-box {
    margin:0 auto;
    position: relative;
}

.w-counter-box > span {
    display: block;
    
    font-size: 34px;
    line-height: 34px;
}

.w-counter-box .counter-title {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #555;
}

.w-counter-box .counter-title span {
    display: block;
    width: 20px;
    height: 2px;
    background: #3ab54a;
    position: absolute;
    left: 50%;
    top: -18px;
    margin-left: -10px;
}

.w-counter-box .counter-value {
    font-size:60px;
    line-height: 60px;
    font-weight: normal;
    display: block;
    color: inherit;
    margin: 0;
    color: #222;
}

.w-counter-box.w-1 {
    text-align: center;
}

.w-counter-box.w-1 span {
    margin-bottom: 15px;
    text-align: center;
}

.w-counter-box.w-1 .counter-title {
    text-transform:none;
    padding:0 10px;
    white-space: normal;
    margin-top: 36px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
}

.w-counter-box.w-2 span {
    display: inline-block;
    vertical-align: middle;
    font-size: 38px;
    line-height: 38px;
}

.w-counter-box.w-2 .counter-value {
    display: inline-block;
    vertical-align: middle;
    font-size: 40px;
    line-height: 40px;
    margin: 0 8px 0 5px;
}

.w-counter-box.w-2 .counter-title span {
    display: none;
}

/*==================================
PRICING BOX
/*==================================*/
.w-pricing-box {
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
    color:#333;
}

.w-section.full .w-pricing-box {
    margin: 20px;
}

.w-pricing-box .box-header {
    position: relative;
    border-color: #181818;
    text-align: center;
}

.w-pricing-box .box-header.with-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.w-pricing-box .box-header svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.w-pricing-box .box-header svg > * {  
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.w-pricing-box .box-header svg > polygon:last-child {
    fill: #fff;
}

.w-pricing-box .box-header .w-background {
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    opacity:0.5;
    background: #333;
}

.w-pricing-box .w-header {
    padding:30px 0 10px;
    background: #fff;
    text-align: center;
}

.w-pricing-box .w-header:after {
    border-bottom: 1px dotted #D2D2D2;
    width: 25%;
    content: '';
    height: 1px;
    display: block;
    margin: 20px auto 0;
}

.w-pricing-box .box-button {
    text-align: center;
}

.w-pricing-box .w-header h3 {
    font-weight:normal;
    font-size: 30px;
    margin: 0 0 5px;
    color: inherit;
}

.w-pricing-box .w-header h4 {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    margin:0;
    color: #333;
}

.w-pricing-box .box-price {
    padding: 50px 0 85px;
}

.w-pricing-box .box-price span {
    color: #fff;
}

.w-pricing-box .box-price h5 {
    font-size: 50px;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 0;
    color: #fff;
}

.w-pricing-box.w-featured .box-price h5 {
    font-size: 70px;
    line-height: 70px;
}   

.w-pricing-box .box-price sup {
    font-size:20px;
}

.w-pricing-box .box-content {
    color:#333;
    background:#fff;
    padding:15px 10px 30px;
}

.w-pricing-box .box-content ul {
    margin: 0;
    padding: 0;
}

.w-pricing-box .box-content ul li,
.w-pricing-box .box-content p {
    list-style: none;
    padding: 8px 0;
    margin-bottom: 0;
}

.w-pricing-box .box-button {
    background-color:inherit;
}

.w-pricing-box .box-button a {
    display: block;
    padding: 25px 20px;
    margin: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color:#fff;
    overflow:hidden;
}

.w-pricing-box .box-button a:hover {
    background-color:#000;
}

/* Featured */
.w-pricing-box.w-featured .box-price {
    padding: 70px 0 110px;
}

.w-pricing-box.w-featured .box-price h4 {
    font-size: 70px;
    line-height: 70px;
}

.w-pricing-box.w-featured .box-content {
    padding-top:15px;
}

.w-pricing-box.w-featured .box-price:after {
    margin-top:30px;
}

/*==================================
TOGGLE
/*==================================*/

.w-toggle > h3 {
    cursor: pointer;
    padding: 0 10px;
    margin: 0 0 5px;
    font-size: 18px;
    color: inherit;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    border-bottom: 1px solid;
    border-color: inherit;
    line-height: 40px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #666;
}

.w-toggle:hover > h3 {
    color: #000;
}

.w-toggle > h3:after {
    font-family: 'gogreen';
    content: '\e838';
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    line-height: 40px;
    width: 20px;
    background-color: #3ab54a;
    padding: 0 10px;
    text-align: center;
    color: #fff;
}

.w-toggle.active > h3:after {
    content: '\e839';
}

.w-toggle > div {
    padding: 10px 0 20px;
    display: none;
    overflow: hidden;
}

.w-toggle.active > div {
    display: block;
}

.w-toggle.active > h3,
.w-text-light .w-toggle.active > h3 {
    color: #3ab54a;
}

.w-toggle > div > p {
    margin-bottom: 0;
}

/*==================================
ACCORDION
/*==================================*/
.w-accordion-tab {
    margin-bottom: 5px;
}
    
.w-accordion .acd-header {
    position: relative;
    margin: 0;
    line-height: 38px;
    border: 1px solid #e6e6e6;
    text-transform: none;
    font-size: 18px;
    cursor:pointer;
    color:#666;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.w-accordion .w-accordion-tab:hover .acd-header {
    color:#222;
}

.w-accordion .active .acd-header,
.w-accordion .active:hover .acd-header,
.w-text-light .w-accordion .active .acd-header,
.w-text-light .w-accordion .active:hover .acd-header {
    color: #3ab54a; 
}

.w-accordion .acd-header span {
    display: block;
    padding: 0 50px 0 10px;
    margin: 0;
    color: inherit;       
}

.w-accordion .acd-header i {
    font-size: 16px;
    float: left;
    padding:0 10px;
}

.w-accordion .acd-header:after {
    font-family: 'gogreen';
    content: '\e838';
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    line-height: 40px;
    width: 20px;
    background-color: #3ab54a;
    padding: 0 10px;
    text-align: center;
    color: #fff;
}

.w-accordion .w-accordion-tab.active .acd-header:after {
    content: '\e839';
}

.w-accordion .acd-content {
    padding: 10px 0 20px;
    display: none;
    overflow: hidden;
}

.w-accordion .acd-content > p {
    margin-bottom: 0;
}

/*==================================
PROGRESS BAR
/*==================================*/
.w-progress-bar {
    margin-bottom: 30px;
    border-color: #211f1e;
    color:#211f1e;
}

.w-progress-bar h4 {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    text-align: left;
    padding-bottom: 2px;
}

.w-progress-bar .w-counter {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: right;
}

.w-progress-bar .w-bar-wrapper {
    height: 6px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.07);
}

.w-progress-bar .w-bar {
    position: relative;
    display: block;
    height: 100%;
    background: #211f1e;
    -ms-transform: translateX(-100%);
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    -webkit-transition: -webkit-transform 1.5s;
    transition: transform 1.5s;
}

/*==================================
INFO BOX
/*==================================*/
.w-info-box {
    position: relative;
    text-align:center;
}

.w-info-box .w-icon {
    display: inline-block;
    font-size: 24px;
    color: #333;
    font-weight:normal;
    margin-bottom: 20px;
}

.w-info-box .w-icon i {
    display: inline-block;
    padding: 0 1px;
}

.w-info-box .w-content > h3 {
    font-weight:normal;
    text-transform: capitalize;
    font-size: 22px;
    line-height: 1.3;
    position: relative;
    margin-bottom: 3px;
}

.w-info-box:not(.w-large).w-top .w-content > h3 {
    margin-bottom: 20px;
}

.w-info-box:not(.w-large).w-top .w-content > h3:after {
    content: '';
    height: 1px;
    width: 20px;
    display: block;
    background: #999;
    position: relative;
    left: 50%;
    margin-left: -10px;
    margin-top: 20px;
}

.w-info-box h3 {
    font-weight: normal;
}

.w-info-box .w-content p {
    margin-bottom: 0;
}

.w-info-box .w-read-more {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 15px;
}

.w-info-box .w-read-more > a:before {
    content: '\e838';
    font-family: 'gogreen';
    display: inline-block;
    padding-right: 5px; 
}

/* Small Icon */
.w-info-box.w-small:not(.w-top).w-none .w-icon {
    min-width:28px;
    margin-bottom: 10px;
}

.w-info-box:not(.w-top).w-none .w-icon {
    line-height:1;
}

.w-info-box.w-small.w-top.w-none .w-icon {
    font-size:40px;
}

.w-info-box.w-small.w-left .w-icon {
    margin-right: 15px;
}

.w-info-box.w-small.w-right .w-icon {
    margin-left: 15px;
}

.w-info-box.w-small:not(.w-top) .w-read-more,
.w-info-box.w-small.w-circle:not(.w-top) .w-read-more {
    margin-top: 20px;
}

/* Medium Icon */
.w-info-box.w-medium .w-icon {
    clear: both;
    float: none;
    font-size: 60px;
    margin: 0 auto 25px;
    line-height: 110px;
}

.w-info-box.w-medium.w-none .w-icon {
    width:90px;
    text-align:center;
    margin:0 0 25px;
}

.w-info-box.w-medium.w-top.w-none .w-icon {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
}


/* Large Icon */
.w-info-box.w-large {
    margin:0 20px;
    padding: 20px 0 20px;
}

.w-info-box.w-large .w-icon {
    font-size: 90px;
    line-height:1.3;
    padding-left: 10px;
}

.w-info-box.w-large .w-content {
    -webkit-transition: -webkit-transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease;
}

.w-info-box.w-large .w-content > h3:not(.subheading) {
    -webkit-transition: .3s all .2s ease;
    transition: .3s all .2s ease;
    margin-bottom:18px;
    font-size:24px;
    font-weight: bold;
}

.w-info-box.w-large:hover .w-content > h3:not(.subheading) {
    -webkit-animation: 0.2s tTopfBottom 0.3s forwards;
    animation: 0.2s tTopfBottom 0.3s forwards;
}

.w-info-box.w-large .w-content p:not(.w-read-more) {
    margin-bottom: 18px;
}

.w-info-box.w-large .w-read-more {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    margin-top: 10px;
}

.w-info-box.w-large .w-read-more > a {
    display: block;
    color: #555;
}

.w-info-box.w-large .w-read-more:hover > a {
    -webkit-animation: tTopfBottom 0.3s forwards;
    animation: tTopfBottom 0.3s forwards;
}

/* Circle style */
.w-info-box.w-circle .w-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.3);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.w-info-box.w-left.w-circle .w-icon,
.w-info-box.w-right.w-circle .w-icon {
    padding:0;
}

.w-info-box.w-medium.w-circle .w-icon {
    width: 110px;
    height: 110px;
    font-size: 50px;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.w-info-box.w-medium:not(.w-top).w-circle .w-icon {
    margin-top:5px;
}

.w-info-box.w-small.w-circle .w-icon i{
    line-height:58px;
}

.w-info-box.w-medium.w-circle .w-icon i {
    line-height: 85px;
}

/*==================================
PORTFOLIO GRID
/*==================================*/
.w-portfolio-grid {
    text-align: center;
}

/* Filter */
.w-filter {
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
}

.w-filter li {
    list-style: none;
    display: inline-block;
    margin: 10px 10px;
}

.w-filter li a {
    color:#999;
    display:inline-block;
    vertical-align:middle;
    padding: 0 10px;
}

.w-filter li:hover a {
    color:#211F1E;
}

.w-filter li.active a {
    color: #000;
}

/* View */
.w-item-wrapper {
    padding: 0;
}

.w-view {
    position: relative;
    margin: 0;
    padding: 0;
}

.w-view figure {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    background: #fff;
    text-align: center;
    height: 100%;
}

.w-view div.cover-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat:no-repeat;
    background-position:center center;
    -webkit-background-size: 100%;
    background-size:cover;
    opacity: 1;
}

.w-view figure img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.w-view figure figcaption {
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.w-view figure figcaption::before,
.w-view figure figcaption::after {
    pointer-events: none;
}

.w-view figure figcaption,
.w-view figure > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grid Layout */
.w-view > li{
    list-style: none;
}

.w-item {   
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}

.w-grid-space .w-view {
    margin-right: -16px;
}

.w-section.w-full .w-grid-space .w-view {
    margin-left: 0;
    margin-right: -16px;
}

.w-grid-space .w-item {
    padding: 0 16px 16px 0;
}

/* Photoset */
.w-portfolio-grid.w-photoset .w-view {
    margin-right: -20px;
}

.w-section.w-full .w-portfolio-grid.w-photoset .w-view {
    margin-left: 20px;
    margin-right: 0;
}

.w-portfolio-grid.w-photoset .w-item {
    padding: 0 20px 20px 0;
    height: auto;
}

.w-portfolio-grid.w-photoset .w-item.w-h2{
    height: auto;
}

.w-photoset .w-item figure {
    background: transparent;
    text-align: left;
}

.w-photoset .w-item figure:hover {
    z-index: 10;
}

.w-photoset .w-item .post-media {
    height: 200px;
    position: relative;
}

.w-photoset .w-item .post-media .w-gallery a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.w-photoset .w-item.w-h2 .post-media {
    height: 300px;
}

.w-photoset.grid-2-cols .w-item .post-media {
    height: 380px;
}

.w-photoset.grid-2-cols .w-item.w-h2 .post-media {
    height: 600px;
}

.w-photoset.grid-3-cols .w-item .post-media {
    height: 300px;
}

.w-photoset.grid-3-cols .w-item.w-h2 .post-media {
    height: 450px;
}

.w-photoset.grid-4-cols .w-item .post-media {
    height: 300px;
}

.w-photoset.grid-4-cols .w-item.w-h2 .post-media {
    height: 450px;
}

.w-section.w-full .w-photoset .w-item .post-media {
    height: 300px;
}

.w-section.w-full .w-photoset .w-item.w-h2 .post-media {
    height: 450px;
}

.w-section.w-full .w-photoset.grid-2-cols .w-item .post-media {
    height: 420px;
}

.w-section.w-full .w-photoset.grid-2-cols .w-item.w-h2 .post-media {
    height: 650px;
}

.w-section.w-full .w-photoset.grid-3-cols .w-item .post-media {
    height: 350px;
}

.w-section.w-full .w-photoset.grid-3-cols .w-item.w-h2 .post-media {
    height: 580px;
}

.w-photoset .w-item .cover-image a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.w-photoset .w-item figcaption {
    height: auto;
    padding: 0 0 20px;
    text-align: center;
    position: relative;
    color: inherit;
}

.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption,
.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption h3,
.w-portfolio-grid.w-masonry.w-photoset .w-item figcaption p {
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption h3 {
    font-size: 26px;
    line-height: 28px;
    max-height: none;
    margin-bottom: 0;
    color: inherit;
    padding:10px 0 0; 
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption p {
    padding: 5px 0;
    max-height: none;
    position: relative;
    opacity: 1;
    color: inherit;
}

.w-photoset .w-item figcaption h3 a{
    color: #000;
}

/* Portfolio Hover Effect */
.w-view figure h3 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 800;
    overflow: hidden;    
    font-size: 22px;
    line-height: 28px;
    max-height: 56px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.w-portfolio-grid:not(.w-photoset).grid-4-cols .w-view figure h3 {
    max-height: 70px;
}

.w-view figure p {
    opacity: 0;
    margin: 0;
    overflow:hidden;
    max-height: 20px;
    letter-spacing: 1px;
    font-size: 68.5%;
    text-transform: capitalize;
}

.w-view figure > a {
    z-index: 50;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.w-view figure > span {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    opacity: 0;
    padding: 0;
    text-align: left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
}

.w-view figure > span > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    text-align: center;
    color: #fff;
    background:  rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

.w-view figure > span > a:before {
    font-family:'gogreen';
    content:'\e82c';
}

.w-view figure > span > a:hover {
    opacity: 1;
}

.w-portfolio-grid .w-showmore {
    padding: 20px 0;
    border: none;
    display: block;
}

/*==================================
HEADING    
/*==================================*/
.w-heading h2 {  
    line-height: 1.5;
    margin-bottom:0;
    font-size:30px;
    text-transform: uppercase;
}

.w-heading .subheading {
    letter-spacing:1px;
    display:block;
    font-weight:normal;
    font-size:14px;
    margin-bottom:0;
    line-height: 1.5;
}

.w-heading.heading-2.text-center:after {
    content: "";
    width: 30px;
    height: 3px;
    background: #333;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.w-heading.heading-3 .w-wrapper {
    padding: 100px 40px 20px;
    background: #24c944;
    display: block;
}

.w-heading.heading-3.text-left .w-wrapper {
    padding: 100px 60px 20px 20px;
}

.w-heading.heading-3.text-right .w-wrapper {
    padding: 100px 20px 20px 60px;
}

.w-heading.heading-3 h2 {
    color: #fff;
    margin-bottom: 5px;
}

.w-heading.heading-4 h2 {
    text-transform: none;
}

.w-heading.heading-4 .subheading {
    margin-top: 20px;
}

.w-heading.heading-5 h2,
.w-heading.heading-6 h2 {
    font-size: 30px;
    line-height: 30px;
} 

.w-heading.heading-5 .subheading,
.w-heading.heading-6 .subheading {
    font-size: 16px;
}

.w-heading.heading-7.text-center h2:before,
.w-heading.heading-7.text-center h2:after {
    content: '';
    width: 10px;
    height: 3px;
    border-radius: 3px;
    background-color: #999;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 10px 0;
}

.w-heading.heading-7 h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
}

.w-heading.heading-7 .subheading {
    color: #999;
}

.w-heading.heading-8 .w-wrapper {
    position: relative;
}

.w-heading.heading-8 h2 {
    font-size: 24px;
    line-height: 30px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 10px 0;
    display: inline-block;
}

.w-heading.heading-8 .subheading {
    position: absolute;
    top: -30px;
    color: #ccc;
    z-index: -1;
    font-size: 100px;
    font-weight: bold;
    line-height: 110px;
    width: 100%;
}

.w-heading.heading-8.text-left .subheading {
    right: 0;
}

.w-heading.heading-9 h2 {
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.w-heading.heading-9 h2:after,
.w-heading.heading-9 h2:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 22px;
    margin: -11px 0 0;
    background-color: transparent;
    background-image: linear-gradient(
        45deg, rgba(0, 0, 0, 0.05) 25%, 
        transparent 25%, transparent 50%, 
        rgba(0, 0, 0, 0.05) 50%, 
        rgba(0, 0, 0, 0.05) 75%, 
        transparent 75%, transparent);
    background-size: 6px 6px;
}

.w-heading.heading-9.text-right h2:before {
    position: absolute;
    width: 100%;
    margin-left: -100%;
    display: inline-block;
    vertical-align: middle;
}

.w-heading.heading-9.text-center h2:before {
    width: 50%;
    margin-left: -50%;
    display: inline-block;
    vertical-align: middle;
}

.w-heading.heading-9.text-center h2:after {
    width: 50%;
    margin-right: -50%; 
    display: inline-block;
    vertical-align: middle;  
}

.w-heading.heading-9.text-right h2:after,
.w-heading.heading-9.text-left h2:before {
    display: none;
}

.w-heading.heading-9 h2 span {
    display: inline-block;
    padding: 0 10px;
}

.w-heading.heading-9.text-left h2 span {
    padding-left: 0;
}

.w-heading.heading-9.text-right h2 span {
    padding-right: 0;
}

/*==================================
SINGLE IMAGE
/*==================================*/
.w-image{
    border-color: #eee;
    line-height: 0;
    overflow: hidden;
}

.w-image img {
    line-height: 0;
    display: inline-block;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

/* Border */
.w-border img {
    border-width: 1px;
}

/* Outline */
.w-outline img {
    padding: 4px;
    border-width: 1px;
}

/* Shadow */
.w-shadow img {
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/* Round */
.w-round img {
    border-radius: 10px;
}

/* Round Border */
.w-round-border img {
    border-radius: 10px;
    border-width: 1px;
}

/* Round Outline */
.w-round-outline img {
    padding: 4px;
    border-radius: 10px;
    border-width: 1px;
}

/* Round Shadow */
.w-round-shadow img {
    border-radius: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/* Circle */
.w-circle img {
    border-radius: 50%;
}

/* Circle Border */
.w-circle-border img {
    border-radius: 50%;
    border-width: 1px;
}

/* Circle Outline */
.w-circle-outline img {
    padding: 4px;
    border-radius: 50%;
    border-width: 1px;
}

/* Circle Shadow */
.w-circle-shadow img {
    border-radius: 50%;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

/*==================================
ICON BLOCK
/*==================================*/
.w-icon-block {
    display: inline-block;
    vertical-align: middle;
    font-size: 50px;
    margin: 0 5px 5px;
    margin-bottom: 10px;
    width: 90px;
    height: 90px;
    line-height: 85px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    background: #3ab54a;
    border: 2px solid #3ab54a;
}

.w-icon-block.w-small {
    width: 30px;
    height: 30px;
    line-height: 26px;
    font-size: 16px;
}

.w-icon-block.w-medium {
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 26px;
}

.w-icon-block.w-large {
    width: 100px;
    height: 100px;
    line-height: 96px;
    font-size: 50px;
}

.w-icon-block.w-none {
    cursor: default;
    background: none;
    border: none;
    left: 0;
    top: 0;
    color: inherit;
    width: auto;
    height: auto;
}

.w-icon-block.w-none.w-small {
    font-size: 22px;
}

.w-icon-block.w-none.w-medium {
    font-size: 50px;
}

.w-icon-block.w-none.w-large {
    font-size: 100px;
}

.w-icon-block i,
.w-icon-block i:hover,
.w-icon-block:hover i {
    position: relative;
    color: inherit;
    display: inline-block;
    -webkit-transition: none;
    transition: none;
}

.w-icon-block.w-none a > i {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}  

.w-icon-block.w-none:hover a > i {
    color: #333;
}

.w-icon-block .w-border {   
    pointer-events: none;
    position: absolute;
    left: -2px;
    top: -2px;
    width: 100%;
    height: 100%;
    border: 2px solid #3ab54a;
    -webkit-box-sizing: content-box; 
    -moz-box-sizing: content-box; 
    box-sizing: content-box;
}

.w-icon-block.w-circle,
.w-icon-block.w-circle .w-border {
    border-radius: 50%;
}

.w-icon-block a {
    color:inherit;
    -webkit-transition:none;
    transition:none;
    display: inline-block;
}

/* Effect 1 */
.w-effect-1 {
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.w-effect-1:hover i,
.w-effect-1:hover a i {
    color:#fff;
}

.w-effect-1 .w-border {
    top: -6px;
    left: -6px;
    padding: 4px;
    background: none!important;
    opacity: 0;
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.w-effect-1:hover .w-border {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
}

/* Effect 2 */
.w-effect-2 {
    background:none!important;
}

.w-effect-2 .w-border {
    top: -2px;
    left: -2px;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.w-effect-2:hover .w-border {
    opacity: 0;
    -ms-transform: scale(0,0);
    -webkit-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
}


/* Effect 3 */
.w-effect-3 {
    background:none!important;
}

.w-effect-3 .w-border {
    top: -2px;
    left: -2px;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s;
}

.w-effect-3:hover .w-border {
    -ms-transform: scale(1.3,1.3);
    -webkit-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3);
    opacity:0;
}

/* Effect 4 */
.w-effect-4 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-4 .w-border {
    display: none;
}

.w-effect-4:hover {
    background: none!important;
}

.w-effect-4:hover i {
    -webkit-animation: tRightfLeft 0.3s forwards;
    animation: tRightfLeft 0.3s forwards;
}

@-webkit-keyframes tRightfLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes tRightfLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes tTopfBottom {
    49% {
        -webkit-transform: translateY(-30%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(50%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes tTopfBottom {
    49% {
        transform: translateY(-30%);
    }
    50% {
        opacity: 0;
        transform: translateY(50%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 5 */
.w-effect-5 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-5 .w-border {
    display: none;
}

.w-effect-5:hover {
    background: none!important;
}

.w-effect-5:hover i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
}

@-webkit-keyframes toLeftFromRight {
    49% {
        -webkit-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toLeftFromRight {
    49% {
        transform: translate(-100%);
    }
    50% {
        opacity: 0;
        transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 6 */
.w-effect-6 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-6 .w-border {
    display: none;
}

.w-effect-6:hover {
    background: none!important;
}

.w-effect-6:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

/* Effect 7 */
.w-effect-7 {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.w-effect-7 .w-border {
    display: none;
}

.w-effect-7:hover {
    background: none!important;
}

.w-effect-7:hover i {
    -webkit-animation: toBottomFromTop 0.3s forwards;
    animation: toBottomFromTop 0.3s forwards;
}

@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

/*==================================
TESTIMONIAL SLIDER
/*==================================*/
.w-testimonials-slider {
    position:relative;
    margin-bottom: 30px;
    text-align: center;
}

.w-testimonial:before {
    font-family: 'gogreen';
    content: '\e80f';
    font-size: 90px;
    line-height: 70px;
    color: #3ab54a;
    position: absolute;
    opacity: 0.3;
    top: 0;
    left: 50%;
    margin-left: -45px;
    width: 90px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.w-testimonials-slider .w-border {
    width: 140px;
    height: 140px;
    margin:30px auto;
    background: #3ab54a;
    border-radius: 50%;
}

.owl-carousel .owl-item .w-testimonial .w-border > img {
    width: 130px;
    height: 130px;
    margin: 5px;
    border-radius: 50%;
    border: none;
    max-width: none;
    -webkit-transform-style: initial;
    transform-style: initial;
}

.w-testimonial .w-customer h3 {
    margin-bottom: 10px;
    font-size:20px;
    line-height: 1.3;
}

.w-testimonial .w-customer h4 {
    margin-bottom: 20px;
    font-size:14px;
}

.w-testimonial .w-customer a:hover {
    color:#333;
}

.w-testimonial .w-content{
    position: relative;
    min-height: 60px;
    font-size:16px;
    color: #333;
    padding:10px 20px 30px;
}

.w-testimonials-slider .owl-nav {
    position: absolute;
    top: auto;
    bottom: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 101px;
    left: 50%;
    margin-left: -50px;
}

.w-testimonials-slider .owl-nav > button {
    background: rgba(0,0,0,0.05);
    text-shadow: none;
}

.w-testimonials-slider .owl-nav .owl-next {
    left: 51px;
}

.w-testimonials-slider .owl-nav .owl-prev:before {
    content: '\e842';
}

.w-testimonials-slider .owl-nav .owl-next:before {
    content: '\e843';
}

.w-testimonials-slider .owl-dot {
    margin: 0 0 20px;
}

/*==================================
TEAM MEMBER
/*==================================*/
.w-team-slider .team-member {
    position: relative;
    padding: 0 5px 30px;
    background: #fff;
    display:block;
}

.w-team-slider .w-grid-layout .team-member {
    background: transparent;
}

.w-team-slider .owl-carousel .team-member {
    padding:0;
}

.w-team-slider .owl-carousel .team-member {
    overflow:hidden;
}

.w-team-slider .cover-image {
    display: block;
    text-align: center;
    color:#000;
}

.w-team-slider .w-grid-layout .cover-image img {
    width: 100%;
    max-width: none;
    vertical-align: bottom;
}

.w-team-slider .member-name {
    text-align: center;
}

.w-team-slider .owl-carousel .member-name {
    padding: 10px;
}

.w-team-slider .w-grid-layout .member-name {
    padding: 10px 0 20px;
}

.w-team-slider .member-name h3,
.member-content .member-detail h3 {
    margin-bottom: 0;
    font-weight:normal;
    font-size: 22px;
    line-height: 32px;
}

.w-team-slider .member-name h4,
.member-content .member-meta {
    color: inherit;
    font-size: 14px;
    font-weight: normal;
    color: #3ab54a;
}

.member-detail .social-link a {
    padding: 5px 10px;
    min-width: 30px;
    font-size: 18px;
    display: inline-block;
    opacity: 0.7;
}

.member-detail .social-link a:first-child {
    padding-left: 1px;
}

.w-team-slider .owl-nav > button {
    background:rgba(0, 0, 0, 0.40);
    color: #fff;
    font-size: 22px;
}

.w-team-slider .owl-nav > button:hover {
    color:#fff;
}

.w-team-slider .popup-content {
    display: none;
}

.member-content .w-close-button {
    position: absolute;
    height: 50px;
    width: 50px;
    background: #000;
    right: 0;
    z-index: 1;
}

.member-content .w-close-button:before {
    font-family: 'gogreen';
    content: '\e829';
    font-size: 30px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
}

.member-content {
    background: #fff;
    position: relative;
}

.member-detail .social-link {
    border-style: dashed;
    border-color: #e6e6e6;
    border-width: 1px 0;
    margin-top: 25px;
}

.member-content .member-detail {
    padding: 30px;
    height: 100%;
    overflow: hidden;
}

.w-team-slider .w-grid-layout .team-member {
    margin-bottom: 20px;
    padding: 0;
}

/*==================================
Clients Carousel
/*==================================*/
.w-clients-carousel .owl-nav > button {
    background: none;
    opacity: 0;
    width: 16px;
    font-size: 16px;
}

.w-clients-carousel:hover .owl-nav > button {
    opacity: 1;
}

.w-clients-carousel .owl-item {
    text-align: center;
}

.w-clients-carousel .owl-item img {
    width: auto;
    display: inline-block;
    opacity: 0.75;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.w-clients-carousel .owl-item:hover img {
    opacity: 1;
}

/*==================================
ACTION BOX
/*==================================*/
.w-action-box {
    padding: 40px;
    text-align: center;
}

.w-action-box h3 {
    font-weight:bold;
    margin: 0;
}

.w-action-box .w-content h3 + p {
    margin-top: 10px;
}

.w-action-box .w-action-button {
    padding-top: 20px;
}


/*==================================
SECTION SEPARATOR 
/*==================================*/
.w-section-separator {
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    z-index: 5;
}

.w-section-separator svg{
    position: absolute;
    z-index: 50;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
}

.w-section-separator.reflect-h svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.w-section-separator.w-bottom svg {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.w-section-separator.reflect-h.w-bottom svg {
    -webkit-transform: rotateX(180deg) rotateY(180deg);
    transform: rotateX(180deg) rotateY(180deg);
}

.w-section-separator.w-top svg {
    top: -78px;
}

/*==================================
SEPARATOR
/*==================================*/
.w-separator {
    position: relative;
    display: block;
    width: 100%;
    padding: 2px 0;
    overflow: hidden;
    margin: 0 auto 10px;
}

.w-separator .w-text {
    border-style: inherit;
    border-color: inherit;
    padding: 0 10px;
    font-size:20px;
    line-height: 20px;
    vertical-align: middle;
}

.w-separator .w-border-left,
.w-separator .w-border-right {
    display: inline-block;
    height: 1px;
    width: 50%;
    vertical-align: middle;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #e1e1e1;
}

.w-separator .w-border-left {
    left: -13px;
    margin-left: -50%;
}

.w-separator .w-border-right {
    left: 13px;
    margin-right: -50%;
}

.w-separator.no-text .w-border-left {
    left: 0;
    width: 100%;
    margin:0;
}

.w-separator.no-text .w-text {
    font-size: 0;
    display: none;
}

.w-separator.w-style-double .w-border {
    border-width:1px 0 1px 0;
}

.w-separator.no-text .w-border-right {
    display:none;
}

/*==================================
IMAGE GALLERY
/*==================================*/
.w-image-gallery.w-masonry .w-view {
    margin-right: -20px;
}

.w-image-gallery.w-masonry .w-item {
    padding:0 20px 20px 0;
    width: 25%;
    height: 300px;
}

.w-image-gallery.w-masonry .w-item.w-w2 {
    width: 50%;
}

.w-image-gallery.w-masonry .w-item.w-h2 {
    height: 600px;
}

.w-image-gallery.w-masonry.w-layout-1 .w-item,
.w-image-gallery.w-masonry.w-layout-2 .w-item {
    height: 280px;
}

.w-image-gallery.w-masonry.w-layout-1 .w-item.w-h2,
.w-image-gallery.w-masonry.w-layout-2 .w-item.w-h2 {
    height: 400px;
}

.w-image-gallery.w-masonry.w-auto .w-item {
    height: auto;
}

.w-image-gallery .w-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

.w-image-gallery .w-item .cover-image {
    width: 100%;
}

.w-image-gallery.w-masonry .w-item img.cover-image {
    opacity: 0;
}

.w-image-gallery.w-masonry .w-item div.cover-image {
    opacity: 1;
}

.w-image-gallery .w-effect-zoomIn .w-item .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-zoomIn .w-item:hover .cover-image {
    -ms-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

.w-image-gallery .w-effect-zoomOut .w-item .cover-image {
    -ms-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-zoomOut .w-item:hover .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

.w-image-gallery .w-effect-rotateZoomIn .w-item .cover-image {
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.w-image-gallery .w-effect-rotateZoomIn .w-item:hover .cover-image {
    -ms-transform: scale(1.5,1.5) rotate(10deg);
    -webkit-transform: scale(1.5,1.5) rotate(10deg);
    transform: scale(1.5,1.5) rotate(10deg);
}

/*==================================
SLIDER
/*==================================*/
.w-slider {
    position: relative;
    clear: both;
    float: none;
}

.w-slider .owl-item{
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.w-slider .owl-item.center{
    z-index: 99;
}

.w-slider .owl-item {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
}

.w-slider .owl-item:not(.center) {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
}

.w-slider .owl-item .w-slide,
.w-slider .owl-item .w-slide img{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.w-slider .owl-item .w-slide:after,
.w-slider .owl-item .w-slide .w-heading,
.w-slider .owl-item .w-slide .w-slider-content{
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.w-slider .owl-item.center .w-slide:after,
.w-slider .owl-item.center .w-slide .w-heading,
.w-slider .owl-item.center .w-slide .w-slider-content{
    opacity: 1;
}

.w-slider .owl-item .w-slide .w-heading,
.w-slider .owl-item .w-slide .w-slider-content{
    -webkit-transform: scale(0.8, 1);
    transform: scale(0.8, 1);
}

.w-slide .w-heading {
    position: absolute;
    top: 0;
}

.w-slide .w-slider-content {
    padding: 20px;
    margin-top: -20px;
    text-align: center;
}

.w-slider-dots .owl-dot {
    margin-top: 0;
}

.w-slider-nav {
    display: none;
}

.w-slider-dots {
    text-align: center;
}

/*==================================
PRODUCTS SLIDER
/*==================================*/
.w-products-slider .owl-carousel .w-item{
    width: 100%;
    padding: 0 10px;
}

.w-products-slider .owl-carousel .owl-dots{
    position: absolute;
    z-index: 999;
    width: 100%;
}

.w-products-slider .owl-carousel .owl-nav{
    margin-top: -80px;
}

.w-products-slider  .owl-nav > button {
    background: rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.4);
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-shadow:none;
}

.w-products-slider  .owl-nav > button:hover {
    background: #333;
    color: #fff;
}

/*==================================
BANNER
/*==================================*/
.w-banner {
    position: relative;
    z-index: 1;
    line-height: 0;
}

.w-banner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    z-index: 1;
    overflow: hidden;
}

.w-banner-title h2 {
    margin-bottom: 0;
    line-height: 1.1;
}

.w-banner:not(.w-3):not(.w-4):hover .w-banner-title h2:not(.subheading) {
    -webkit-animation: 0.3s tRightfLeft forwards;
    animation: 0.3s tRightfLeft forwards;
}

.w-banner:not(.w-3):not(.w-4):hover .w-banner-title h2.subheading {
    -webkit-animation: 0.3s tRightfLeft 0.1s forwards;
    animation: 0.3s tRightfLeft 0.1s forwards;
}

.w-banner a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.w-banner:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0; 
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.w-banner:hover:before {
    opacity: 1;
}

.w-banner.w-3:hover:before {
    opacity: 0.5;
}

.w-banner.w-1 .w-banner-title {
    background: #3ab54a;
    display: inline-block;
}

.w-banner.w-2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    width: 101%;
    height: 170px;
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.3) 165px);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.3) 165px);
}

.w-banner.w-3 .w-banner-title {
    top: 0;
    right: 0;
    padding: 0;
    margin: 25px;
}

.w-banner.w-3 .w-banner-title h2:not(.subheading),
.w-banner.w-4 .w-banner-title h2:not(.subheading) {
    text-align: right;
    font-size: 70px;
    line-height: 1;
}

.w-banner.w-3 .w-banner-title .subheading {
    position: absolute;
    left: 0;
    bottom: 2px;
    display: inline-block;
    font-size: 30px;
    line-height: 1.2;
    font-weight: normal;    
    text-align: left;
}

.w-banner.w-4 .w-banner-title {
    top: 0;
    right: 0;
    padding: 0;
}

.w-banner.w-4 .w-banner-title .subheading {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 20px;
    line-height: 1.3;
    font-weight: normal;    
    text-align: left;
}

.w-banner.w-4 .w-banner-title h2 {
    padding: 25px;
}

.w-banner.w-4 .w-banner-title h2:not(.subheading):before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 101%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to top, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
}

.w-banner.w-4 .w-banner-title h2.subheading:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 101%;
    height: 100%;
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.5) 100%);
}

/*==================================
FACEBOOK LIKE BOX
/*==================================*/
.w-facebook-box {
    overflow: hidden;
    text-align: center;
}

.w-facebook-box iframe {
    width: 100%;
    height: 100%;
    max-width: 500px;
    display: inline-block;
    border: none;
    overflow: hidden;
}

/*==================================
FLICKR STREAM
/*==================================*/
.w-flickr{
    position: relative;
}

.w-flickr .w-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #211f1e;
    text-align: center;
    overflow: hidden;
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-flickr:hover .w-header {
    opacity: 0;
    z-index: 0;
}

.w-flickr .w-header h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding:0 10px;
    color: #fff;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.w-flickr .w-header i {
    font-size: 40px;
    line-height: 1.2;
    display: block;
}

.w-flickr .w-header i, 
.w-flickr .w-header span {
    display: block;
    opacity: 1;
    line-height: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-flickr .w-header span {
    font-size: 22px;
    font-weight: normal;
}

.w-flickr:hover .w-header i {
    opacity: 0;
    -ms-transform: translateY(-100%);
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.w-flickr:hover .w-header span {
    opacity: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.w-flickr ul {
    margin: 0;
    padding: 0;    
}

.w-flickr li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.w-flickr li a {
    margin: 0;
    display: block;
    line-height: 0px;
    position: relative;
    background: #282828;
    overflow: hidden;
    display: block;
}

.w-flickr li a img {
    width: 100%;
    height: 100%;
}

/*==================================
INSTAGRAM FEED
/*==================================*/
.w-instagram {
    position: relative;
}

.w-instagram-photos {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.w-instagram-photos li {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.w-instagram-photos li a,
.w-instagram-photos li img {
    flex: 1;    
    height: 100%;
    line-height: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.w-instagram .w-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    text-align: center;
    overflow: hidden;
    opacity: 0.8;
    visibility: visible;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-text-light .w-instagram .w-header {
    background: #fff;
}

.w-instagram:hover .w-header {
    opacity: 0;
    visibility: hidden;
}

.w-instagram .w-header h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    padding:0 10px;
    margin: 0;
    color: #fff;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.w-text-light .w-instagram .w-header h3 {
    color: #333;
}

.w-instagram .w-header i {
    font-size: 40px;
    line-height: 1.2;
    display: block;
    padding-bottom: 10px;
}

.w-instagram .w-header i, 
.w-instagram .w-header span {
    display: block;
    opacity: 1;
    line-height: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-instagram .w-header span {
    font-size: 18px;
    padding-bottom: 10px;
}

.w-instagram:hover .w-header i {
    opacity: 0;
    -ms-transform: translateY(-100%);
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.w-instagram:hover .w-header span {
    opacity: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.w-instagram.w-grid.w-space .w-view {
    margin-right: -8px;
}

.w-instagram.w-grid.w-space.has-title .w-view {
    margin-right: 0;
    padding: 8px 0 0 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.w-instagram.w-grid.w-space .w-item {
    padding: 0 8px 8px 0;
}

.w-instagram-photos .owl-stage {
    display: flex;
    flex-wrap: wrap;
}

.w-instagram-photos .owl-item {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

.w-instagram-photos .owl-item a,
.w-instagram-photos .owl-item img {
    flex: 1;    
    height: 100%;
    line-height: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}


/*==================================
TWITTER FEED SLIDER
/*==================================*/
.w-twitter {
    text-align: center;
}

.w-twitter .tweet-item {
    font-size: 30px;
    line-height: 44px;
    overflow: hidden;
}

.w-twitter .tweet-item .tweet-media {
    display: block;
    padding: 20px 0;
}

.w-twitter .tweet-item .tweet-media img {
    width: auto;
    height: auto;
    display: inline-block;
}

.w-twitter .tweet-item .tweet-date {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 30px 0 10px 0;
}

.w-twitter .profile-image > a {
    display: block;   
    width: 80px;
    height: 80px; 
    margin: 20px auto;
}

.w-twitter .profile-image img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
    background: #4195f7;
}

.w-twitter .profile-image i {
    font-size: 120px;
}


/*==================================
BLOG POSTS
/*==================================*/
.w-blog-posts .w-item > .post {
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.w-blog-posts:not(.w-masonry) .w-item > .post {
    padding: 46px 0 0;
}

.w-blog-posts .format-gallery .owl-prev {
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.w-blog-posts .format-gallery .owl-next {
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.w-blog-posts .format-gallery:hover .owl-prev,
.w-blog-posts .format-gallery:hover .owl-next {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.post-meta {
    color: #888;
    margin-bottom: 13px;
    height: 30px;
    overflow: hidden;
}

.post-meta span {
    font-size: 11px;
}

.post-meta > span{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    padding-right: 9px;
}

.post-meta > span:last-child {
    margin: 0;
    padding: 0;
}

.post-meta > span:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 10px;
    background: #989898;
}   

.post-meta span strong {
    margin-right: 5px;
}

.post-meta a {
    padding-right:2px;
    color: #999;
}

.post-meta a:hover {
    color: #3ab54a;
}

.meta-edit .post-edit-link:before {
    font-family: 'gogreen';
    content: '\e80a';
    font-style: normal;
}

.meta-comment {
    display: inline-block;
}

.meta-comment a {
    display: block;
}

.meta-comment i {
    font-family: 'gogreen';
    margin-right: 5px;
    font-style:normal;
}

.w-comment-empty:before {
    content: '\e808';
}

.w-comment:before {
    content: '\e809';
}

.post .post-date {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    background: #3AB54A;
}

.post .post-date:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #3ab54a;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.498039) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.498039) 50%, rgba(255, 255, 255, 0.498039) 75%, transparent 75%, transparent);
    background-size: 6px 6px;
    width: 100%;
    height: 10px;
}

.post .post-date a {
    color: #fff;
    font-size: 14px;
}

.w-blog-posts .post-footer {
    border-top: 1px solid #999;
    border-bottom: 3px solid #333;
    margin: 20px 0 0;
    padding: 3px 0;
}

.w-blog-posts .post-footer span,
.w-blog-posts .post-footer a {
    color: inherit;
}

.w-blog-posts .post-title a:hover,
.w-blog-posts .post-footer a:hover {
    color:#3ab54a;
}

.post-share {
    white-space: nowrap;
    font-size: 18px;
    margin: 0;
    display: block;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.post:not(.format-quote) .post-share { 
    text-align: right;
    float: right; 
    font-size: 14px;
    width: 60%;
}

.w-blog-posts:not(.w-list) .post:not(.format-quote) .post-share {
    width: 60%;
}

.post:not(.format-quote) .post-share a {
    padding: 0 10px;
}

.post-share a {
    display: inline-block;
    padding: 0 10px;
}

.post .post-share a:first-child {
    padding-left: 0;
}

.post-share a:last-child {
    padding-right: 0;
}

.post-share a:hover {
    color: #555;
} 

.post.format-quote .post-share a:hover {
    color: #333;
}

.w-blog-posts .post-media{
    overflow: hidden;
    position: relative;
}

.w-blog-posts .has-cover .post-media a {
    line-height: 0;
}

.w-blog-posts .post-media img {
    width: 100%;
    height: auto;
}

.w-blog-posts .post.has-cover .post-media-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    left: 15px;
    border-radius: 3px;
    display:block;
    text-align: center;
    color:#211F1E;
    background: #fff;  
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);  
}

.w-blog-posts .post-media-icon:after {
    font-family: 'gogreen';
    font-size: 26px;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.w-blog-posts .format-audio .post-media-icon:after {
    content: "\e802";
}

.w-blog-posts .format-video .post-media-icon:after {
    content: "\e800";
}

.w-blog-posts .post-content {
    padding: 20px 0 0;
    position: relative;
}

.w-blog-posts .no-cover .post-content {
    padding: 0;
    width: 100%;
}

.w-blog-posts .format-quote .post-content {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: cover;
}

.w-blog-posts .format-quote .post-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.post-external-link {
    margin: 16px 0 14px;
    text-align: center;
}

.post-external-link a {
    background: rgba(0, 0, 0, 0.07);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    height: 33px;
    line-height: 30px;
    padding: 0 8px;
    display: block;
}

.post-external-link a i {
    padding-right: 10px;
    font-size: 18px;
}

.w-blog-posts .post.format-quote .post-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: normal;
    white-space: normal;
    margin: 0;
    height: auto;
    max-height: none;
    color: #fff;
}

.w-blog-posts .post.format-quote .post-title:before {
    font-size: 60px;
    line-height: 60px;
    opacity: 0.8;
    font-family: 'gogreen';
    content: '\e80f';
    color: #3ab54a;
    z-index: -1;
    display: inline-block;
    width: 100%;
    margin: 20px 0 30px;
}

.w-blog-posts .post.format-quote .quote-author {
    margin: 60px 0 40px;
    font-size: 16px;
    font-weight: normal;
    display: block;
    position: relative;
    font-style: italic;
    color: #AFAFAF;
}

.w-blog-posts .post.format-quote .quote-author:before {
    content: '';
    width: 20px;
    height: 1px;
    background: #999;
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
}

.w-blog-posts .post.format-quote .post-content .w-wrapper {
    display: table-cell;
    vertical-align: middle; 
    width: 100%;
}

.w-blog-posts .post.format-link .post-title a:before {
    content: '\e80c';
    font-family: 'gogreen';
    margin-right: 10px;
    padding-left: 1px;
}

.w-blog-posts .post-title a {
    color: inherit;
}

.w-blog-posts .post.format-quote .post-title a {
    position: relative;
}

.w-blog-posts .readmore-link {
    width: 40%;
    display: inline-block;
    text-align: left;
}

.w-blog-posts .readmore-link a{
    display: inline-block;
    padding-right: 10px;
    border-right: 1px solid #B1B1B1;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}

.w-blog-posts .readmore-link a:hover {
    color: #3ab54a;
}

.w-blog-posts .post-meta {
    height: auto;  
    line-height: 18px;
    text-transform: uppercase; 
    margin-bottom: 15px;
}

.w-blog-posts:not(.w-list) .post-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/** Default Layout */
.w-blog-posts.w-large .w-item {
    margin-bottom: 50px;
    float: none;
}

.w-blog-posts.w-large .w-item:last-child {
    margin-bottom: 0;
}

.w-blog-posts.w-large .w-item > .post.sticky {
    border-style: solid;
    border-color: #3ab54a;
    border-width: 0 0 0 5px;
}

/** List Layout **/
.w-blog-posts.w-list .w-item {
    clear: both;
    float: none;
    margin-bottom: 40px;
}

.w-blog-posts.w-list .post:not(.format-quote) .post-content {
    padding: 20px;
    background: #fff;
}

.w-blog-posts.w-list .no-cover.format-link .post-content {
    width: 100%;
}

.w-blog-posts.w-list .post-title {
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.w-blog-posts.w-list .post-external-link {
    text-align: left;
}

.w-blog-posts.w-list .post-footer {
    margin: 20px 0 0;
    border: none;
} 

.w-blog-posts.w-list .readmore-link a {
    border: none;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    opacity: 0.5;
}

.w-blog-posts.w-list .readmore-link a:hover {
    opacity: 1;
}

/** Masonry Layout **/
.w-blog-posts.w-masonry .w-view {
    margin-right: -30px;
}

.w-blog-posts.w-masonry .w-item {
    padding: 0 30px 30px 0;
}

.left-sidebar .w-blog-posts.w-masonry .w-item.item-1 {
    z-index: 1;
}

.w-blog-posts.w-masonry .meta-right {
    float: right;
    width: 30%;
    text-align: right;
    padding: 20px 0;
}

.w-blog-posts.w-masonry .owl-nav {
    margin-top: -20px;
}

.w-blog-posts.w-masonry .owl-nav > button {
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.w-blog-posts.w-masonry .meta-category {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: inline-block;
    font-size: 11px;
}

.w-blog-posts.w-masonry .meta-category a {
    background: #3ab54a;
}

.w-blog-posts.w-masonry .format-quote .meta-category {
    top: 0;
    bottom: auto;
}

.w-blog-posts.w-masonry .meta-category a {
    padding: 3px 8px;
    color: #fff;
    line-height: 1.5;
}

/*==================================
VIDEO PLAYER
/*==================================*/
.w-video.wp-default-video {
    padding-top: 0;
}

.w-video .wp-video{
    position: relative;    
}

/*==================================
RECENT POSTS & POPULAR POSTS
/*==================================*/
.w-posts li {
    min-height: 60px;
    padding: 5px 0;
    margin-bottom: 5px;
}

.w-posts .thumb {
    margin-right: 8px;
}

.w-posts p a {
    display: block;
    line-height: 15px;
    max-height: 30px;
    overflow: hidden;
    font-size: 13px;
}

.w-posts p span {
    display: block;
    font-size: 11px;
    color: #999;
}

/*==================================
SECTION TEXT STYLE
/*==================================*/
.w-section.w-text-light > *,
.col.w-text-light > *,
.w-text-light .w-donut-chart span,
.w-text-light .w-testimonial .w-customer a:hover,
.w-text-light .w-clients-carousel .owl-nav > button,
.w-text-light .w-info-box.w-large .w-content p:after,
.w-text-light .w-info-box .w-read-more > a{
    color: #bcbcbc;
}

.w-text-light h1,
.w-text-light h2,
.w-text-light h3,
.w-text-light h4,
.w-text-light h5,
.w-text-light h6,
.w-text-light .w-filter li.active a,
.w-text-light .w-tabs .w-tabs-nav li:hover a,
.w-text-light .w-accordion .w-accordion-tab:not(.active):hover .acd-header,
.w-text-light .w-toggle:not(.active):hover h3,
.w-text-light .w-info-box.w-large:hover .w-content,
.w-text-light .w-info-box.w-large .w-read-more:hover a,
.w-text-light .w-testimonials-slider .owl-stage-outer:before,
.w-text-light .w-testimonial .w-content,
.w-text-light .w-filter li:hover a,
.w-text-light .w-counter-box .counter-value,
.w-text-light .w-icon-block.w-none:hover a > i,
.w-text-light .w-info-box .w-read-more:hover > a,
.w-text-light .w-info-box.w-large .w-content,
.w-text-light blockquote {
    color: #fff;
}

.w-text-light  .w-info-box.w-circle .w-icon {
    color: #333;
}

.w-text-light .w-testimonial .w-customer p,
.w-text-light .w-counter-box.w-2 .counter-title {
    color: #aaa;
}

.w-text-light .w-toggle > h3,
.w-text-light .w-accordion .acd-header,
.w-text-light .w-tour .w-tabs-nav li:not(.active) a {
    background: rgba(0 ,0 , 0, 0.7);
    border-color: rgba(0 ,0 , 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
}

.w-text-light .w-accordion-tab.active {
    border-color:rgba(255, 255, 255, 0.1);
}

.w-text-light .w-tabs .w-tab-wrapper .w-tab,
.w-text-light .w-tabs .w-tabs-nav li {
    background: rgba(0 ,0 , 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

.w-text-light .w-tabs .w-tabs-nav li a,
.w-text-light .w-info-box.w-large .w-read-more a {
    color: rgba(255, 255, 255, 0.7);
}

.w-text-light .w-icon-tabs .w-tabs-nav li:not(.active) a {
    color: rgba(255, 255, 255, 0.4);
}

.w-text-light .w-team-slider .owl-nav > button  {
    background-color: #fff;
}

.w-text-light .w-progress-bar .w-bar-wrapper,
.w-text-light input[type="text"], 
.w-text-light input[type="password"], 
.w-text-light input[type="email"], 
.w-text-light input[type="tel"], 
.w-text-light input[type="url"], 
.w-text-light input[type="number"], 
.w-text-light input[type="date"], 
.w-text-light input[type="search"], 
.w-text-light input[type="file"], 
.w-text-light textarea,
.w-text-light .w-testimonials-slider .owl-nav > button {
    background-color:rgba(255, 255, 255, 0.2);
}

.w-text-light .w-heading.heading-1.text-right, 
.w-text-light .w-heading.heading-2.text-right,
.w-text-light .w-heading.heading-1.text-left, 
.w-text-light .w-heading.heading-2.text-left,
.w-text-light .w-heading.heading-5 h2,
.w-text-light .w-heading.heading-6 h2,
.w-text-light .w-icon-tabs .w-tabs-nav li,
.w-text-light .w-info-box.w-large .w-read-more,
.w-text-light .w-heading.heading-5 .subheading,
.w-text-light .w-heading.heading-6 .subheading {
    border-color: rgba(255, 255, 255, 0.5);
}

.w-text-light .w-heading.heading-2.text-center:after,
.w-text-light .w-heading.heading-1.text-center:before {
    background-color: rgba(255, 255, 255, 0.5);
}

.w-text-light .owl-dot span:before,
.w-text-light .w-heading.heading-5 h2:after, 
.w-text-light .w-heading.heading-6 h2:before {
    background-color: rgba(255, 255, 255, 0.7);
}

.w-text-light .owl-dot.active span {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.w-text-light .dropcap {
    color: #3ab54a;
}

.w-text-light blockquote,
.w-text-light .w-heading.heading-8 h2 {
    border-color: #fff;
}

.w-text-light blockquote:before {
    opacity: 0.6;
}

.w-text-light .w-heading.heading-9 h2:before,
.w-text-light .w-heading.heading-9 h2:after {
    background-image: linear-gradient(
        45deg, rgba(255, 255, 255, 0.2) 25%, 
        transparent 25%, transparent 50%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.2) 75%, 
        transparent 75%, transparent);
}

/*==================================
VC LINE CHART
/*==================================*/
.vc_chart .vc_chart-legend {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.vc_chart .vc_chart-legend li {
    line-height: 1.3em;
    list-style: none;
    margin: 0 0 0.3em 0;
    min-height: 1.3em;
}

.vc_chart .vc_chart-legend span {
    border-radius: 0.3em;
    display: inline-block;
    height: 1.3em;
    left: 0;
    margin-right: 0.5em;
    vertical-align: middle;
    width: 1.3em;
}

.vc_line-chart .vc_chart-with-legend {
    width: 75%;
}

.vc_line-chart .vc_chart-legend {
    width: 25%;
}

/*==================================
MESSAGE BOX
/*==================================*/
.vc_message_box {
    border: 1px solid transparent;
    display: block;
    overflow: hidden;
    margin: 0 0 21.73913043px 0;
    padding: 1em 1em 1em 4em;
    position: relative;
    font-size: 1em;
    box-sizing: border-box;
}

.vc_message_box-icon {
    bottom: 0;
    font-size: 1em;
    left: 0;
    position: absolute;
    top: 0;
    width: 4em;
}

.vc_message_box-icon > * {
    font-size: 1.7em;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    left: 50%;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.vc_message_box-icon > .fa {
    font-size: 1.7em;
    line-height: 1;
}

.vc_color-cutom .vc_message_box-solid-icon {
    color: #2a2a2a;
}

.vc_message_box-outline,
.vc_message_box-solid-icon {
    border-width: 2px;
}

.vc_message_box-solid-icon .vc_message_box-icon {
    width: 3.25em;
}

.vc_message_box-rounded {
    border-radius: 5px;
}

.vc_message_box-round {
    border-radius: 4em;
}

.vc_message_box-solid {
    color: #fff;
    border-color: transparent;
}

.vc_message_box-solid .vc_message_box-icon,
.vc_message_box.vc_message_box-solid-icon .vc_message_box-icon {
    color: #fff;
}

.vc_message_box.vc_color-cutom {
    color: #fff;
    border-color: #2a2a2a;
    background-color: #3c3c3c;
}

.vc_message_box.vc_message_box-solid-icon.vc_color-cutom {
    color: #000;
    background-color: #E0E0E0;
}

.vc_message_box-solid.vc_color-cutom {
    background-color: #2a2a2a;
}


.vc_message_box-outline.vc_color-cutom {
    color: #fff;
    border-color: #2a2a2a;
    background: #535353;
}

.vc_color-cutom .vc_message_box-solid-icon {
    color: #fff;
    border-color: #2a2a2a;
}

.vc_message_box-solid-icon.vc_color-cutom .vc_message_box-icon {
    background-color: #2a2a2a;
}

.vc_color-cutom.vc_message_box-3d {
    box-shadow: 0 5px 0 #101010;
}

.vc_color-info.vc_message_box {
    border-color: #cfebfe;
    background-color: #dff2fe;
}

.vc_color-info.vc_message_box-solid {
    background-color: #56b0ee;
}

.vc_color-info.vc_message_box-outline,
.vc_color-info.vc_message_box-solid-icon {
    color: #5e7f96;
    border-color: #56b0ee;
}

.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #56b0ee;
}

.vc_color-info.vc_message_box-3d {
    box-shadow: 0 5px 0 #9dd6fd;
}

.vc_color-info.vc_message_box-3d .vc_message_box-icon {
    color: #56b0ee;
}

.vc_color-warning.vc_message_box {
    border-color: #ffeccc;
    background-color: #fff4e2;
}

.vc_color-warning.vc_message_box-solid {
    background-color: #fcb53f;
}

.vc_color-warning.vc_message_box-outline,
.vc_color-warning.vc_message_box-solid-icon {
    color: #9d8967;
    border-color: #fcb53f;
}

.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #fcb53f;
}

.vc_color-warning.vc_message_box-3d {
    box-shadow: 0 5px 0 #ffd999;
}

.vc_color-warning.vc_message_box-3d .vc_message_box-icon {
    color: #fcb53f;   
}

.vc_color-success.vc_message_box {
    border-color: #cfebfe;
    background-color: #e6fdf8;
}

.vc_color-success.vc_message_box-solid {
    background-color: #1bbc9b;
}

.vc_color-success.vc_message_box-outline,
.vc_color-success.vc_message_box-solid-icon {
    color: #5e7f96;
    border-color: #1bbc9b;
}

.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #1bbc9b;
}

.vc_color-success.vc_message_box-3d {
    box-shadow: 0 5px 0 #9dd6fd;
}

.vc_color-success.vc_message_box-3d .vc_message_box-icon {
    color: #1bbc9b;
}

.vc_color-danger.vc_message_box {
    border-color: #fedede;
    background-color: #fdeaea;
}

.vc_color-danger.vc_message_box-solid {
    background-color: #ff7877;
}

.vc_color-danger.vc_message_box-outline,
.vc_color-danger.vc_message_box-solid-icon {
    color: #a85959;
    border-color: #ff7877;
}

.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #ff7877;
}

.vc_color-danger.vc_message_box-3d {
    box-shadow: 0 5px 0 #fdacac;
}

.vc_color-danger.vc_message_box-3d .vc_message_box-icon {
    color: #ff7877;
}

.vc_color-alert-info.vc_message_box {
    border-color: #bce8f1;
    background-color: #d9edf7;
}

.vc_color-alert-info.vc_message_box-solid {
    background-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-outline,
.vc_color-alert-info.vc_message_box-solid-icon {
    color: #31708f;
    border-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-outline .vc_message_box-icon {
    color: #67cce0;
}

.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #67cce0;
}

.vc_color-alert-info.vc_message_box-3d {
    box-shadow: 0 5px 0 #91d9e8;
}

.vc_color-alert-info.vc_message_box-3d .vc_message_box-icon {
    color: #67cce0;
}

.vc_color-alert-warning.vc_message_box {
    border-color: #faebcc;
    background-color: #fcf8e3;
}

.vc_color-alert-warning.vc_message_box-solid {
    background-color: #f9cf79;
    color: #8a6d3b;
}

.vc_color-alert-warning.vc_message_box-solid .vc_message_box-icon {
    color: #8a6d3b;
}

.vc_color-alert-warning.vc_message_box-outline,
.vc_color-alert-warning.vc_message_box-solid-icon {
    color: #8a6d3b;
    border-color: #f9cf79;
}

.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #f9cf79;
}

.vc_color-alert-warning.vc_message_box-3d {
    box-shadow: 0 5px 0 #f5d89e;
}

.vc_color-alert-warning.vc_message_box-3d .vc_message_box-icon {
    color: #f9cf79;
}

.vc_color-alert-success.vc_message_box {
    border-color: #d6e9c6;
    background-color: #dff0d8;
}

.vc_color-alert-success.vc_message_box-solid {
    background-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-outline,
.vc_color-alert-success.vc_message_box-solid-icon {
    color: #3c763d;
    border-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #9ad36a;
}

.vc_color-alert-success.vc_message_box-3d {
    box-shadow: 0 5px 0 #bbdba1;
}

.vc_color-alert-success.vc_message_box-3d .vc_message_box-icon {
    color: #9ad36a;
}

.vc_color-alert-danger.vc_message_box {
    border-color: #ebccd1;
    background-color: #f2dede;
}

.vc_color-alert-danger.vc_message_box-solid {
    background-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-outline,
.vc_color-alert-danger.vc_message_box-solid-icon {
    color: #a94442;
    border-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon {
    background-color: #ef8495;
}

.vc_color-alert-danger.vc_message_box-3d {
    box-shadow: 0 5px 0 #dca7b0;
}

.vc_color-alert-danger.vc_message_box-3d .vc_message_box-icon {
    color: #ef8495;
}

/*==================================
SLIDER REVOLUTION
/*==================================*/
.w-revslider {
    text-align: left;
}

.w-scroll-button {
    position: absolute;
    z-index: 10;
    display: inline-block;
    left: 50%;
    bottom: 50px;
    width: 100px;
    border-color: #fff;
    color: #fff;
    margin-left: -50px;
    text-align: center;
}

/* Mouse Wheel */
.w-scroll-button.w-button-1 a {
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    color: inherit;
    width: 22px;
    height: 36px;
    border-radius: 20px;
    overflow: hidden;
}

.w-scroll-button.w-button-1 a i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 10px;
    height: 8px;
    width: 4px;
    margin-left: -2px;
    border-color: inherit;
    color: inherit;
    -webkit-animation: fadeInDown 1.2s infinite both;
    animation: fadeInDown 1.2s infinite both;
}

.w-scroll-button.w-button-1 a i:before {
    display: block;
    content: '';
    border-style: solid;
    border-left-width: 1px;
    border-color: inherit;
    color: inherit;
    border-radius: 2px;
    height: 3px;
}

/* Arrow */
/* fadeInOut */
@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

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

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.w-scroll-button.w-button-2 a {
    display: inline-block;
    width: 20px;
    overflow: hidden;
    text-align: center;
    line-height: 10px;
    font-size: 22px;
    color: inherit;
}

.w-scroll-button.w-button-2 a i {
    line-height: 0;
}

.w-scroll-button.w-button-2 a:before, 
.w-scroll-button.w-button-2 a:after, 
.w-scroll-button.w-button-2 a i:before {
    display: block;
    font-family: 'gogreen';
    content: '\e82c';
    margin: 2px 0;
    line-height: 8px;
    font-style: normal;
    opacity: 0;
    -webkit-animation: fadeInOut 2s infinite;
    animation: fadeInOut 2s infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.w-scroll-button.w-button-2 a i:before {
    -webkit-animation-delay: 3.25s;
    animation-delay: 3.25s;
}

.w-scroll-button.w-button-2 a:after {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.w-typewriter{

}

.w-typewriter .w-text-item{
    display: none;
}

.typed-cursor {
    padding-left: 2px;
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite; 
}

@-keyframes blink {
    0% {
        opacity: 1; 
    }

    50% {
        opacity: 0; 
    }

    100% {
        opacity: 1; 
    } 
}

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

    50% {
        opacity: 0; 
    }

    100% {
        opacity: 1; 
    }
}

/*==================================
Google Maps
/*==================================*/
.w-map-info {
    padding: 20px;
}

.w-map-info p{
    margin-bottom: 10px;
}

/*==================================
CONTACT FORM 7
/*==================================*/
.wpcf7 {
    margin: 0;
    padding: 0;
}

.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
}

.wpcf7 p{
    margin-bottom: 25px;
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
}

.wpcf7-mail-sent-ng {
    border: 2px solid #ff0000;
}

.wpcf7-spam-blocked {
    border: 2px solid #ffa500;
}

.wpcf7-validation-errors {
    border: 2px solid #f7e700;
    background: rgba(247, 231, 0, 0.5);
    margin: 2em 0 1em;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    position: absolute;
    color: #f00;
    font-size: 1em;
    display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em;
}

.wpcf7-list-item {
    margin-left: 0.5em;
}

.wpcf7-display-none {
    display: none;
}

.wpcf7 img.ajax-loader {
    border: none;
    vertical-align: middle;
    margin-left: 4px;
}

.wpcf7 .ajax-error {
    display: none;
}

/*==================================
MEDIA QUERIES
/*==================================*/
@media only screen and (max-width: 1199px) {

    .w-view figure figcaption {
        padding: 0;
    }

    .w-portfolio-grid .w-view .w-item,
    .w-image-gallery.w-masonry .w-item,
    .portfolio-masonry .w-masonry .w-item {
        width:50%;
    }

    .w-portfolio-grid:not(.w-photoset) .w-view figure figcaption:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: -webkit-linear-gradient(bottom, rgba(30,30,30,0) 80%, rgba(30,30,30,0.5) 100%);
        background: linear-gradient(to bottom, rgba(30,30,30,0) 80%, rgba(30,30,30,0.5) 100%); 
    }

    .w-portfolio-grid:not(.w-photoset) .w-view figure h3 {  
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 10px 10px 0 10px;
        text-align: center;
        font-size: 18px;
        line-height: 20px;
        height: 36px;
        max-height: 36px;
        width: 100%;
        white-space: nowrap;
        text-overflow:ellipsis;
        z-index: 1;
        color: rgba(255,255,255,0.7);
    }
}

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

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .five-cols {
        width: 100%;       
        text-align: center;
    }

    .col:not(.no-padding) > .col-inner {
        padding-top: 4%;
        padding-bottom: 4%;
    }

    .w-overlap-box {
        top: auto!important;
        left: auto!important;
        right: auto!important;
        bottom: auto!important;
    }

    .col-offset-1, .col-offset-2, .col-offset-3, .col-offset-4, .col-offset-5, .col-offset-6, .col-offset-7, .col-offset-8, .col-offset-9, .col-offset-10, .col-offset-11, .col-offset-12 {
        margin-left: 0;
    }

    .w-scroll-button{
        display: none;
    }

    .text-left, 
    .text-right,
    .w-custom-heading * {
        text-align: center!important;
    }

    .w-grid .w-view .w-item {
        padding: 0;
    }

    .w-masonry .w-effect-apollo .w-item.w-h2 figure figcaption::before {
        width: 200%;
    }   

    #footer-widget .w-flickr li {
        width: 20%;
        float: left;
    }

    #footer-widget .w-flickr li:nth-child(n+11) {
        display: none;
    }

    .w-flickr li {
        float: left;
    }

    .w-flickr li.col-1,
    .w-flickr li.col-2 {
        width: 16.6666%;
    }

    .w-flickr li.five-cols {
        width: 20%;
    }

    .w-flickr li.col-4 {
        width: 33.3333%;
    }

    .w-flickr li.col-6,
    .w-flickr li.col-3 {
        width: 25%;
    }

    .related-posts .five-cols {
        width: 25%;
        float: left;
    }  

    .w-posts {
        text-align: center;
    }

    .w-posts .thumb {
        clear: both;
        float: none;
        display: inline-block;
    }

    .w-banner,
    .heading-9.text-left,
    .w-accordion .acd-header,
    .w-toggle h3 {
        text-align: left!important;
    }

    .heading-9.text-right {
        text-align: right!important;
    }

    /* Heading */
    .w-heading.heading-1:after,
    .w-heading.heading-2:after {
        content: "";
        width: 30px;
        height: 3px;
        background: #333;
        display: block;
        text-align: center;
        margin: 20px auto;
    }

    .w-heading.heading-5 h2:after,
    .w-heading.heading-6 h2:before {
        content: "";
        width: 24px;
        height: 1px;
        background: #333;
        display: block;
        text-align: center;
        margin: 16px auto;
    }

    /* Team Member */
    .w-team-slider .owl-carousel .cover-image:before {
        top: 10px;
        right: 10px;
        opacity: 0.7;
        width: 40px;
        height: 40px;
    }

    .w-separator.text-left,
    .w-separator.text-right {
        margin-left: auto!important;
        margin-right: auto!important;
    }
    
}

@media only screen and (max-width: 767px) {
    /* Blog */
    .w-blog-posts .post.format-quote .post-title a:before {
        z-index: 0;
    }

    .post .post-date {
        height: 36px;
        line-height: 36px;
    }

    .post .post-date strong:after {
        content: '\00b8';
    }
}

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

    .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0;
    }

    .w-heading.heading-3 .w-wrapper {
        padding: 100px 20px 20px;
    }

    .w-heading.heading-3.text-left .w-wrapper {
        padding: 100px 30px 20px 20px;
    }

    .w-heading.heading-3.text-right .w-wrapper {
        padding: 100px 20px 20px 30px;
    }

    .w-text-block h1,
    .w-custom-heading h1 {
       font-size: 34px !important;
       line-height: 1.5!important;
    }

    .w-text-block h2,
    .w-custom-heading h2 {
        font-size: 28px!important;
        line-height: 1.5!important;
    }

    .w-text-block h3,
    .w-custom-heading h3 {
        font-size: 24px!important;
        line-height: 1.5!important;
    }

    .w-text-block h4,
    .w-custom-heading h4 {
        font-size: 20px!important;
        line-height: 1.5!important;
    }

    .w-text-block h5, 
    .w-text-block h6,
    .w-custom-heading h5,
    .w-custom-heading h6 {
        font-size: 18px!important;
        line-height: 1.5!important;
    }

    .w-banner-title {
        padding: 15px;
    }

    .w-banner .w-banner-title h2 {
        font-size: 28px!important;
    }

    .w-banner.w-4 .w-banner-title h2.subheading {
        font-size: 18px!important;
    }

    .w-progress-bar .w-counter {
        position: relative;
        width: auto;
        float: right;
    }

    .post-external-link a {
        font-size: 18px;
    }

    .w-icon-tabs .w-tabs-nav li {
        margin: 0px 5px 5px;
    }

    .w-filter {
        padding:10px 0px;
    }

    .w-filter li {
        display: block;
    }

    .w-masonry .w-effect-apollo .w-item:not(.w-w2).w-h2 figure figcaption:before,
    .w-portfolio-grid.w-masonry .w-item,
    .w-portfolio-grid.w-photoset .w-item,
    .w-blog-posts.w-masonry .w-view .w-item  {
        width: 100%;
        float: none;
    }

    .w-portfolio-grid .w-view .w-item,  
    .w-image-gallery .w-view .w-item,
    .w-masonry .w-item.w-w2,
    .portfolio-masonry .w-masonry .w-item {
        width: 100%!important;
    }

    .w-image-gallery.w-masonry .w-item,
    .w-image-gallery.w-masonry .w-item.w-h2,
    .w-portfolio-grid.w-masonry.w-standard .w-item,
    .portfolio-masonry .w-masonry .w-item {
        height: auto!important;
    }

    .w-portfolio-grid.w-standard .w-item,
    .w-image-gallery.w-masonry .w-item  {
        padding-bottom: 15px;
    }

    .w-image-gallery.w-masonry .w-item img.cover-image {
        opacity: 1;
    }

    .w-image-gallery.w-masonry .w-item div.cover-image {
        opacity: 0;
    }

    #footer-widget .w-flickr li {
        width: 25%;
        float: left;
    }

    #footer-widget .w-flickr li:nth-child(n+9) {
        display: none;
    }

    .w-flickr li.col-1,
    .w-flickr li.col-2 {
        width: 25%;
    }

    .w-flickr li.col-6 {
        width: 50%;
    }

    .w-flickr li:nth-child(n+13).col-1,
    .w-flickr li:nth-child(n+13).col-2 {
        display: none;
    }

    .w-blog-posts .post-meta {
        overflow: hidden;
    }

    .post-meta .meta-author {
        display:none;
    }

    .related-posts .five-cols {
        width:50%;
        float: left;
    }

}

@media only screen and (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }    

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .w-heading h2 {
        font-size: 58px;
        line-height: 58px;
    }

    .w-heading.heading-5 h2,
    .w-heading.heading-6 h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .w-heading.heading-5, 
    .w-heading.heading-6 {
        margin: 0 auto;
    }

    .w-progress-bar .w-counter {
        -ms-transform: translateX(-100%);
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        -webkit-transition: -webkit-transform 1.5s;
        transition: transform 1.5s;
    }

    .w-section.w-full .w-action-box {
        padding: 40px 60px;
    }

    .w-action-box .w-content {
        display: table-cell;
        vertical-align: middle;
        width: 75%;
    }

    .w-action-box .w-action-button {
        display: table-cell;
        vertical-align: middle;
        padding: 0 0 0 10px;
        text-align: right;
        width: 25%;
    }

    .w-link-button.large:not(.w-with-icon):not(.none), .w-ghost-button.large {
        padding: 12px 10px;
    }

    .w-tabs .w-tabs-nav li {
        border-bottom-width: 0;
        margin-left: -1px;
        float: left;
    }

    .w-tabs .w-tab-wrapper .w-tab {
        margin-left: -1px;
    }

    .w-text-light .w-tabs .w-tabs-nav li.active:first-child {
        border-left-color: #000;
    }

    .w-tour .w-tabs-nav {
        float: left;
        margin: 0;
        width: 30%;
    }

    .w-tour .w-tab-wrapper {
        float: left;
        width: 70%;
    }

    .w-tour .w-tab-content {
        margin: 0 0 0 20px;
    }

    .w-action-box {
        display: table;
        width: 100%;
        text-align: left;
    }

    .w-masonry .w-effect-apollo .w-item.w-h2 figure h3 {
        max-height: 198px;
    }

    .vc_chart .vc_chart-legend {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
    }

    .vc_chart .vc_chart-legend li {
        margin-left: 1em;
    }

    .vc_chart .vc_chart-with-legend {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
    }

    .vc_chart .vc_chart-legend {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
    }

    .vc_chart .vc_chart-legend li {
        margin-left: 1em;
    }

    .vc_chart .vc_chart-with-legend {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
    }

    .vc_tta-container .vc_tta:not([class*="vc_tta-pageable"]) .vc_pagination {
        display: none;
    }

    .w-blog-posts:not(.w-masonry) .w-item > .post {
        padding: 0 0 0 72px;
    }

    .post .post-date {
        width: 60px;
        padding: 10px 5px;
    }

    .post .post-date:after {
        width: 60px;
        height: 10px;
        bottom: -10px;
        left: 0;
    }

    .post .post-date strong {
        display: block;
        font-size: 30px;
        line-height: 34px;
    }

    .member-content .member-detail {
        height: 100%;
        padding: 0;
    }    

}

@media only screen and (min-width: 992px) {
    /* Column */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .five-cols {
        float: left;
    }

    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }  

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }   

    /* Banner */
    .w-section:not(.w-full) .w-banner.w-1 .w-banner-title,
    .w-section:not(.w-full) .w-banner.w-2 .w-banner-title {
        padding: 15px;
    }

    .w-section:not(.w-full) .col:not(.col-3) .w-banner.w-1 .w-banner-title h2 {
        font-size: 26px;
    }

    .w-section:not(.w-full) .w-banner.w-2 .w-banner-title h2 {
        font-size: 34px;
    }

    /* Counter Box */
    .w-counter-box.w-2 .counter-title {
        display: inline-block;
        vertical-align: middle;
        width: 100px;
        padding: 0 0 0 10px;
        margin-top: 3px;
        position: relative;
        text-align: left;
    }

    .w-counter-box.w-2 .counter-title span {
        width: 2px;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
        display: block;
    }

    /* SEPARATOR */
    .w-separator.text-left {
        margin-left: 0;
    }

    .w-separator.text-right {
        margin-right: 0;
    }

    .w-separator.text-left .w-text {
        padding-left: 0;
    }

    .w-separator.text-right .w-text {
        padding-right: 0;
    }

    .w-separator.text-left .w-border-right,
    .w-separator.text-right .w-border-left {
        width: 100%;
    }

    /* Overlap */
    .w-overlap-box{
        position: relative;
        z-index: 50;
    }  

    /* Heading */
    .w-heading.heading-1.text-center:before {
        content: "";
        width: 30px;
        height: 3px;
        background: #333;
        display: inline-block;
        text-align: center;
        margin-bottom: 10px;
    }

    .w-heading.heading-1.text-left,
    .w-heading.heading-2.text-left {
        border-left: 1px solid #333;
        padding-left: 15px;
    }

    .w-heading.heading-1.text-right,
    .w-heading.heading-2.text-right {
        border-right: 1px solid #333;
        padding-right: 15px;
    }

    .w-heading.heading-1.text-center .subheading,
    .w-heading.heading-2.text-center .subheading {
        margin: 10px 0;
    }

    .w-heading.heading-5,
    .w-heading.heading-6 {
        display: table;
        width: 100%;
    }

    .w-heading.heading-5 .w-wrapper,
    .w-heading.heading-6 .w-wrapper {
        display: table-row;
    }

    .w-heading.heading-5 h2 {
        display: table-cell;
        vertical-align: top;
        padding-right: 15px;
        text-align: right;
        width: 10%;
    }

    .w-heading.heading-5 .subheading {
        display: table-cell;
        vertical-align: top;
        text-align: left;
        padding-left: 15px;
        border-left: 1px solid #333;
        width: 90%;
    }

    .w-heading.heading-6 h2 {
        display: table-cell;
        vertical-align: top;
        padding-left: 15px;
        text-align: left;
        width: 10%;
    }

    .w-heading.heading-6 .subheading {
        display: table-cell;
        vertical-align: top;
        text-align: right;
        padding-right: 15px;
        border-right: 1px solid #333;
        width: 90%;
    }

    .w-heading.heading-7.text-left .w-wrapper {
        border-left: 4px solid #999;
        padding-left: 20px;
        display: inline-block;
    }

    .w-heading.heading-7.text-right .w-wrapper {
        border-right: 4px solid #999;
        padding-right: 20px;
        display: inline-block;
    }

    /* Pricing Box */
    .w-pricing-box.w-featured {
        margin-top: -20px;
        margin-bottom: -20px;
    }

    /* INFO BOX */
    /* Align Left*/
    .w-info-box.w-left {
        text-align:left;
    }

    .w-info-box.w-left .w-icon {
        float: left;
        margin-top: 5px;
    }

    .w-info-box.w-left .w-content {
        margin-left:45px;
    }

    .w-info-box.w-left.w-circle .w-content {
        margin-left:85px;
    }

    .w-info-box.w-medium.w-left .w-content {
        margin-left:110px;
    }

    .w-info-box.w-medium.w-left.w-circle .w-content {
        margin-left:135px;
    }

    /* Align Right*/
    .w-info-box.w-right {
        text-align:right;
    }

    .w-info-box.w-right .w-icon {
        float: right;
        margin-top: 5px;
    }

    .w-info-box.w-right .w-content {
        padding-right: 45px;
    }

    .w-info-box.w-right.w-circle .w-content {
        padding-right: 85px;
    }

    .w-info-box.w-medium.w-right .w-content {
        padding-right: 110px;
    }

    .w-info-box.w-medium.w-right.w-circle .w-content {
        padding-right: 135px;
    }

    /* Slider */
    .w-slide:after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: -2px;
        display: block;
        height: 250px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0px, rgba(255,255,255,1) 250px);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0px, rgba(255,255,255,1) 250px);
    }

    .w-slide .w-slider-content {
        position: absolute;
        z-index: 10;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        text-align:left;
    }
    
    /* Clients-List */
    .w-clients-list > div {
         border: 1px solid #bbb;
         border-width: 1px 0 0 1px;
    }
    
    .w-clients-list > div:nth-child(3n+3) {
        border-right: 1px solid #bbb;
    }
    
    .w-clients-list > div:nth-last-child(1),
    .w-clients-list > div:nth-last-child(2),
    .w-clients-list > div:nth-last-child(3) {
        border-bottom: 1px solid #bbb;
    }

    /* Blog */
    .w-blog-posts.w-list .w-item > .post {
        border: none;
        background: transparent;
    }

    .w-blog-posts.w-list .has-cover .post-media {
        width: 50%;
        padding: 0;
        float: left;
    }

    .left-sidebar .w-blog-posts .post-meta,
    .right-sidebar .w-blog-posts .post-meta {
        overflow: hidden;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link {
        margin-bottom: 0;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link a,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-external-link a {
        margin-top: 10px;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-excerpt,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-excerpt {
        height: 22px;
        line-height: 22px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .post-share,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .post-share {
        padding: 10px 0 0;
    }

    .w-blog-posts.w-masonry .w-item {
        margin-bottom: 0px;
    }

    .w-blog-posts.w-list .has-cover:not(.format-quote) .post-content {
        float: left;
        z-index: 99;
        width: 50%;
    }

    .w-blog-posts.w-list .post-content,
    .w-blog-posts.w-list .post-media {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .w-blog-posts.w-list .w-item > .post:hover .post-content,
    .w-blog-posts.w-list .w-item > .post:hover .post-media {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        transform: translateY(-4px);
        box-shadow: 0 22px 43px rgba(0,0,0,0.15);
    }

    /* Masonry Layout 1 */
    .w-portfolio-grid.w-masonry .w-view {
        margin-right: -20px;
    }

    .w-full .w-portfolio-grid.w-masonry .w-view {
        margin-left: 15px;
        margin-right: -15px;
    }

    .w-portfolio-grid.w-masonry .w-item {
        width: 25%;    
        height: 300px;
        padding: 0 20px 20px 0;
    }

    .w-portfolio-grid.w-masonry .w-item.w-w2 {
        width: 50%;
    }

    /* Masonry Layout 2 */
    .w-portfolio-grid.w-masonry .w-item.w-h2 {
        height: 600px;
    }

    .w-portfolio-grid.w-masonry .w-item .cover-image img{
        display: none;
    }

    /* Products Slider */
    .w-products-slider .owl-carousel .owl-nav {
        margin-top: -50px;
    }

    .w-products-slider .owl-prev,
    .w-team-slider .owl-prev,
    .w-image-gallery .owl-carousel:hover .owl-prev {
        -ms-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
        left: 10px;
    }

    .w-products-slider .owl-next,
    .w-team-slider .owl-next,
    .w-image-gallery .owl-carousel:hover .owl-next {
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
        right: 10px;
    }

    .w-products-slider:hover .owl-prev,
    .w-products-slider:hover .owl-next,
    .w-team-slider:hover .owl-prev,
    .w-team-slider:hover .owl-next,
    .w-image-gallery .owl-carousel:hover .owl-prev, 
    .w-image-gallery .owl-carousel:hover .owl-next {
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@media only screen and (min-width: 1025px) {
    .w-info-box.w-large {
        text-align: left;
    }    

    .w-info-box.w-large .w-icon {
        float: right;
    }

    .w-section:not(.w-full) .col.col-3 .w-banner.w-1 .w-banner-title h2 {
        font-size: 26px;
    }

    .left-sidebar:not(.full-width) .w-blog-posts.w-list .has-cover .post-summary,
    .right-sidebar:not(.full-width) .w-blog-posts.w-list .has-cover .post-summary {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 {
        float: left;
    }

    .col-lg-12 {      
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }    

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
    
    /* Team Member */
    .w-team-slider .cover-image:before {
        content: '';
        position: absolute;
        background: #fff;
        z-index: 1;
        right: 0;
        left: 0;
        bottom: 0;
        top: 0;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .w-team-slider .team-member:hover .cover-image:before {
        opacity: 0.8;
    }

    .w-team-slider .cover-image:after {
        opacity: 1;
        content: '\e82b';
        font-family: 'gogreen';
        position: absolute;
        display: inline-block;
        width: 60px; 
        font-size: 60px;
        line-height: 60px;
        z-index: 2;
        text-align: center;
        margin: -30px 0 0 -30px;
        opacity: 0;
        left: 50%;
        right: auto;
        top: 45%!important;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .w-team-slider .owl-nav {
        top: 40%;
    }

    .w-team-slider .owl-nav > button {
        opacity: 0; 
    }

    .w-team-slider:hover .owl-nav > button {
        opacity: 0.2;
    }

    .w-team-slider:hover .owl-nav > button:hover {
        opacity: 1;
    }

    .w-team-slider .w-grid-layout .cover-image:after {
        margin-top: -10px;
        bottom: auto;
    }

    .w-team-slider .team-member:hover .cover-image:after {
        opacity: 1;
        color:inherit;
    }

    .w-team-slider .w-grid-layout .cover-image:after {
        left: 50%;
    }

    /* Portfolio Effect */
    .w-view figure h3 {
        opacity: 0; 
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;  
    }

    .w-view figure p {
        opacity: 0; 
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;  
    }

    .w-view figure:hover h3 {
        opacity: 1;
    }

    .w-view figure:hover p {
        opacity: 1;
        display: block;
    }

    .w-view figure:hover > span {
        opacity: 1;
    }

    /* Effect Apollo */
    .w-effect-apollo figure .cover-image {
        -ms-transform: scale(1.05,1.05);
        -webkit-transform: scale3d(1.05,1.05,1);
        transform: scale3d(1.05,1.05,1);
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
    }

    .w-effect-apollo figure figcaption::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        -ms-transform: scale(1.4, 1.9) translateX(100%);
        -webkit-transform: scale3d(1.4, 1.9 ,1) rotate3d(0,0,1,45deg) translate3d(100%, 0 ,0);
        transform: scale3d(1.4, 1.9 ,1) rotate3d(0,0,1,45deg) translate3d(100%, 0 ,0);
        -webkit-transition: -webkit-transform 0.6s;
        transition: transform 0.6s;
    }

    .w-masonry .w-effect-apollo .w-item:not(.w-w2).w-h2 figure figcaption::before {
        width: 200%;
    }

    .w-effect-apollo figure:hover .cover-image {
        opacity: 0.6;
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    .w-view.w-effect-apollo figure:hover > span {
        top: 20px;
        right: 0;
        left: auto;
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    .w-effect-apollo figure:hover figcaption::before {
        -ms-transform: scale(1.4, 1.9) translateX(-100%);
        -webkit-transform: scale3d(1.4, 1.9 ,1) rotate3d(0,0,1,45deg) translate3d(-100%, 0 ,0);
        transform: scale3d(1.4, 1.9 ,1) rotate3d(0,0,1,45deg) translate3d(-100%, 0 ,0);
    }

    .w-effect-apollo figure h3 {
        text-align: left;
        margin-right: 30px;
    }

    .w-effect-apollo figure p {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 20px;
        padding: 0 15px 0 0;
        max-width: 150px;
        max-height:86px;
        border-right: 4px solid #fff;
        text-align: right;
    }

    /* Effect Duke */
    .w-effect-duke figure {
        background: #fff;
    }

    .w-effect-duke figure .cover-image {
        -webkit-transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        -ms-transform: scale(1.1 ,1.1);
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    .w-effect-duke figure:hover .cover-image {
        filter: blur(3px);
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -o-filter: blur(3px);
        -ms-filter: blur(3px);
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        filter: url("data:image/svg+xml;utf9,<svg%20version='1.1'%20xmlns='https://www.w3.org/2000/svg'><filter%20id='blur'><feGaussianBlur%20stdDeviation='3'%20/></filter></svg>#blur");
        filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
    }

    .w-view.w-effect-duke figure figcaption {
        background: rgba(0,0,0,0.5);
        height: 80px;
        top: auto;
        bottom: 0;
        padding: 10px;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-view.w-effect-duke figure:hover figcaption {
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    .w-effect-duke figure h3 {
        max-height: 35px;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0;
        -ms-transform: scale(0.2,0.2);
        -webkit-transform: scale3d(0.2,0.2,1);
        transform: scale3d(0.2,0.2,1);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-effect-duke figure:hover h3,
    .w-effect-duke figure:hover p {
        -ms-transform: scale(1,1);
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    .w-effect-duke figure p {
        top: 0;
        position: relative;
        padding: 0 10px;
        text-transform: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        -ms-transform: scale(0.2,0.2);
        -webkit-transform: scale3d(0.2,0.2,1);
        transform: scale3d(0.2,0.2,1);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }

    .w-view.w-effect-duke figure figcaption {
        -ms-transform: translateY(150px);
        -webkit-transform: translate3d(0,150px,0);
        transform: translate3d(0,150px,0);
    }

    /* Effect Rotate Zoomin */
    .w-effect-rotateZoomIn figure .cover-image {
        -ms-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
        -webkit-transition: -webkit-transform 0.35s;
        transition: transform 0.35s;
    }

    .w-effect-rotateZoomIn figure:hover .cover-image {
        -ms-transform: scale(1.5,1.5) rotate(10deg);
        -webkit-transform: scale(1.5,1.5) rotate(10deg);
        transform: scale(1.5,1.5) rotate(10deg);
    }

    .w-effect-rotateZoomIn figure figcaption {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        width: auto;
        height: auto;
        text-align: left;
        padding: 0 20px;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .w-effect-rotateZoomIn figure:hover figcaption {
        opacity: 1;
    }

    .w-effect-rotateZoomIn figure figcaption:before {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: '';
        background: #000;
        opacity: 0.7;
    }

    .w-effect-rotateZoomIn figure h3, 
    .w-effect-rotateZoomIn figure p {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 0 20px;
        margin: 10px 0;
        -webkit-transition:opacity 0.35s ease, transform 0.35s ease;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .w-effect-rotateZoomIn figure:hover h3 {
        -ms-transform: translateY(-35px);
        -webkit-transform: translate3d(0, -35px, 0);
        transform: translate3d(0, -35px, 0);
    }

    .w-effect-rotateZoomIn figure p {
        white-space: nowrap;
        text-overflow: ellipsis;
        max-height: none;
        margin-bottom: 10px;
    }

    .w-effect-rotateZoomIn figure:hover p {
        -ms-transform: translateY(-10px);
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    .w-effect-rotateZoomIn figure figcaption > span {
        position: absolute;
        top: 0;
        bottom: auto;
        padding: 0 20px;
        margin: 20px 0;
        -webkit-transition: opacity 0.35s ease-in 0.35s;
        transition: opacity 0.35s ease-in 0.2s;
    }    

    /* Effect GoGreen */
    .w-effect-gogreen figure {
        background-color: #8accff;
    }

    .w-effect-gogreen figure .cover-image {
        opacity: 0.95;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: perspective(1000px) translate3d(0,0,0);
        transform: perspective(1000px) translate3d(0,0,0);
    }

    .w-effect-gogreen figure:hover .cover-image {
        -webkit-transform: perspective(1000px) translate3d(0,0,21px);
        transform: perspective(1000px) translate3d(0,0,21px);
        opacity: 0.15;
    }

    .w-effect-gogreen figure figcaption {
        z-index: 1;
        top: 50%;
        height: auto;
        padding: 0 20px;
        -ms-transform: translateY(-50%);
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    .w-effect-gogreen figure h3 {
        margin-bottom: 0;
        color: #000;
        -ms-transform: translateY(6px);
        -webkit-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
        -webkit-transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .15s;
        transition: opacity .3s cubic-bezier(.1,0,.3,1) .15s, transform .3s cubic-bezier(.1,0,.3,1) .15s;
    }

    .w-effect-gogreen figure p {
        padding: 0;
        margin-top: 10px;
        font-size: 80%;
        line-height: 20px;
        height: 20px;
        max-height: 20px; 
        color: #000;
        font-style: italic;
        -ms-transform: translateY(6px);
        -webkit-transform: translate3d(0, 6px, 0);
        transform: translate3d(0, 6px, 0);
        -webkit-transition: opacity .3s cubic-bezier(.1,0,.3,1) .35s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .35s;
        transition: opacity .3s cubic-bezier(.1,0,.3,1) .35s, -webkit-transform .3s cubic-bezier(.1,0,.3,1) .35s;
    }

    .w-effect-gogreen figure:hover h3,
    .w-effect-gogreen figure:hover p {
        opacity: 1;
        -ms-transform: translateY(0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    /* Blog */
    .w-blog-posts.w-list .post:not(.format-quote) .post-content {
        padding: 30px;
    }
}

@media only screen and (min-width: 1441px) {
    .w-section:not(.w-full) .col-3 .w-banner.w-1 .w-banner-title {
        padding: 15px;
    }

    .w-section.w-full .col-3 .w-banner.w-1 .w-banner-title h2 {
        font-size: 34px;
    }

    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .post-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .post-summary {
        line-height: 25px;
        max-height: 100px;
        overflow: hidden;
    }

    .full-width.left-sidebar .w-blog-posts.w-list .has-cover.format-link .post-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover.format-link .post-summary {
        max-height: 115px;
    }
}

@media only screen and (min-width: 599px) and (max-width: 991px) {
    .w-team-slider .w-grid-layout .team-member {
        width: 50%;
        float: left;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 15px;
    }

    .w-full .col:not(.col-3):not(.col-lg-3):not(.col-md-6) .w-banner.w-1 .w-banner-title h2 {
        font-size: 26px;
    }

    .w-section:not(.w-full) .col.col-3 .w-banner.w-1 .w-banner-title {
        padding: 10px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 10px;
    }

    .w-section .col.col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-1 .w-banner-title h2 {
        font-size: 18px;
    }

    .w-section .col.col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-2 .w-banner-title h2 {
        font-size: 22px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-3 .w-banner-title {
        margin: 15px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-3 .w-banner-title .subheading {
        font-size: 16px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-3 .w-banner-title h2:not(.subheading),
    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-3 .w-banner-title h2:not(.subheading),
    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title h2:not(.subheading),
    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-4 .w-banner-title h2:not(.subheading) {
        font-size: 40px;
    }

    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-3 .w-banner-title .subheading {
        font-size: 20px;
    }

    .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-4 .w-banner-title h2 {
        padding: 15px;
    }

    /* Blog */
    .left-sidebar .w-blog-posts.w-list .has-cover .post-media,
    .right-sidebar .w-blog-posts.w-list .has-cover .post-media,
    .left-sidebar .w-blog-posts.w-list .has-cover:not(.format-quote) .post-content,
    .right-sidebar .w-blog-posts.w-list .has-cover:not(.format-quote) .post-content {
        float: none;
        clear: both;
        width: 100%;
    }

    .w-blog-posts.w-list .post-title {
        overflow: hidden;
        font-size: 20px;
        height: 50px;
        line-height: 25px;
    }

    .w-blog-posts.w-list .format-link .post-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .post-summary > p:not(.post-external-link), 
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .post-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .w-banner:not(.w-3):not(.w-4) .w-banner-title {
        padding: 15px;
    }

    .w-section.w-full .w-banner.w-1 .w-banner-title h2 {
        font-size: 40px;
    }

    .col-3 .w-banner.w-3 .w-banner-title {
        margin: 15px;
    }

    .col-3.col-lg-3.col-md-6 .w-banner.w-3 .w-banner-title {
        margin: 25px;
    }

    .col-3 .w-banner.w-3 .w-banner-title .subheading,
    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-3 .w-banner-title .subheading {
        font-size: 22px;
    }

    .col-3 .w-banner.w-3 .w-banner-title h2:not(.subheading),
    .col-3 .w-banner.w-4 .w-banner-title h2:not(.subheading) {
        font-size: 45px;
    }

    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-3 .w-banner-title h2:not(.subheading),
    .col-4:not(.col-lg-4):not(.col-md-12) .w-banner.w-4 .w-banner-title h2:not(.subheading) {
        font-size: 50px;
    }

    .col-3 .w-banner.w-4 .w-banner-title h2 {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1280px) {
    .main-content:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover .post-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
    .full-width.left-sidebar .w-blog-posts.w-list .has-cover .post-summary,
    .full-width.right-sidebar .w-blog-posts.w-list .has-cover .post-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .col-md-12.w-overlap-box,
    .col-md-12 .w-overlap-box {
        left: auto!important;
        right: auto!important;
    }

    /* Blog */
    .w-blog-posts.w-list .has-cover .post-summary {
        line-height: 25px;
        max-height: 50px;
        overflow: hidden;
    }

    .w-blog-posts.w-list .has-cover.format-link .post-summary > p:not(.post-external-link) {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .left-sidebar .w-blog-posts.w-list .format-link .post-meta,
    .right-sidebar .w-blog-posts.w-list .format-link .post-meta,
    .left-sidebar .w-blog-posts.w-list .post-excerpt,
    .right-sidebar .w-blog-posts.w-list .post-excerpt  {
        display: none;
    }

    #wp-calendar tbody td {
        padding: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1440px) {
    .w-section.w-full .col-3:not(.col-lg-3):not(.col-md-6) .w-banner.w-1 .w-banner-title h2 {
        font-size: 26px;
    }

    .w-section.w-full .w-banner.w-2 .w-banner-title h2 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1690px) {
    .full-width:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover .post-summary {
        line-height: 25px;
        max-height: 125px;
        overflow: hidden;
    }

    .full-width:not(.left-sidebar):not(.right-sidebar) .w-blog-posts.w-list .has-cover.format-link .post-summary {
        line-height: 25px;
        max-height: 115px;
        overflow: hidden;
    }
}

/*==================================
EXTRA CSS CLASSES
/*==================================*/
.hide,
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

@media (max-width: 767px) {
    
    .hidden-xs{
        display: none!important;
    }

    /* Reverse columns order */
    .xs-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .w-blog-posts .post.format-quote .post-title a:before {
        z-index: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    
    .hidden-sm {
        display: none !important;
    }

    /* Reverse columns order */
    .sm-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    
    .hidden-md {
        display: none !important;
    }

    /* Reverse columns order */
    .md-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .col-md-12.w-overlap-box,
    .col-md-12 .w-overlap-box{
        left: auto!important;
        right: auto!important;
    }
}

@media (min-width: 1200px) {
    
    .hidden-lg {
        display: none !important;
    }

    /* Reverse columns order */
    .lg-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}/*

Theme Name: GoGreen Child

Description: Child theme of the GoGreen. By using a child theme you will ensure that your modifications are preserved.

Author: Wyde

Template: gogreen

Version: 1.0

*/

.main-content.full-width .w-main > .col-inner, .main-content.full-width .w-sidebar > .col-inner {

    padding: 0px!important;
}

/********** HEADER ***************/

#top-nav .ex-menu, #side-menu{ display:none; }
#header .container { height:130px;}
#header-logo {left:60px;}
#header-logo img { max-height:100%;}

.w-text-dark .dropdown-nav a{ color:#000;}

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

	#header .container {

		height: 100px!important;
		max-width: none;
		background-color: #fff;

	}
}

.side-nav-wrapper{
	top:30px; 
}
.mobile-nav-icon{
	position: relative;
	float: right;
	margin-right: 35px!important;
}
@media only screen and (max-width: 1079px) {
#header-logo {
    position:relative;
	float: left;
    left:0!important;
	text-align: left!important;

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

	#header-logo img { bottom:10px;}

	#header .container { height: 90px!important; }

	.title-wrapper { padding: 125px 0; }

	.title-wrapper.w-size-l .title { font-size: 49px!important; }

}

/************ HOME ******************************/



.w-pricing-box .box-price h5{ visibility:hidden; }

.w-counter-box > span { font-size:90px; padding-bottom:10px; }

 .w-counter-box .counter-value { color:#DECB97; }

 .w-counter-box .counter-title { color:#DECB97!important; font-size: 31px;}

 

 [class^="fm-"], [class*=" fm-"], [class^="sl-"], [class*=" sl-"] { font-weight: 700!important; }

 .w-counter-box .counter-value { padding-top:15px; }

 

 .amyHl a, .post-meta, .featured-full { display:none!important;}

 

 /********* CONTACT FORM ****************/

 input, textarea {

	 border: 1px solid #A5A5A5;

 }

 .bg-green{

	 background-color: #044A43;

 }

 .bg-green h1 {

	 padding-left: 20px;

	 position: relative;

    clear: both;

    top: 13px;

 }

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

.w-text-block h1, .w-custom-heading h1 {
    font-size: 50px !important;
    line-height: 1!important;
	position: relative;
    clear: both;
    top: 8px;

}

.w-text-block h2, .woocommerce h2:not(.product_title){ 

	font-size: 35px;
	line-height:1;
	text-align:center;

}

.titolocx h2{

	margin-bottom:0px!important;
	font-size:42px!important;

}}

 #spazio{

	 width:100%;
	 height: 40px;
	 background-color: #DECB97;
	 padding:0;
	 margin:0;

 }



/********** singolo prodotto ************/

.woocommerce-breadcrumb{ margin-top:30px; }
.woocommerce-tabs > .tabs, .product_meta{
	display:none;
}
.woocommerce-tabs, .woocommerce-Tabs-panel {padding: 0px 0;!important}
.product .entry-summary .product_title{
	color: #044A43;
	width:50%;
	position:relative;
	float:left;
	font-size: 35px;
    line-height: 1;
}

.woocommerce-product-details__short-description img{ 
	margin: -15px 0 30px 20px;
}

#left{
	position:relative;
	float:left;
	width:100%;
}
@media (min-width: 769px) {
	.woocommerce-product-gallery{
		width:100%!important;
	}
    .woocommerce-product-gallery__image{
        float: right;
        margin-right: unset;
        margin-left: 4%;
		width: 60%!important;
		margin-top: 0px!important;
    }

	.woocommerce div.product .summary {
		float: left;
		clear: left;
		width: 30%!important;
	}
}


.product .entry-summary {
	background-color:#DECB97;
	padding:25px;
	color: #044A43;
	text-align:left;
  }

@media only screen and (min-width: 992px){

	#category{ width: 30%; margin-bottom:20px; }
	
}

/******** end singolo prodotto **********/

/****** PRODOTTI IN EVIDENZA *******/

.products .product .cover-image img { 

	width:75%;

	text-align:center;

	margin:0 auto;

}

.products .woocommerce-loop-product__title {

    font-size: 21px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.w-fadeslider .fadeOut, .owl-carousel .owl-item img .fadeOut {display:none!important;}

/***** FOOTER *****/

#footer-content {

    border-bottom: 2px solid #DECB97;

}

/***** pagine interne ******/

@media only screen and (min-width: 992px){

.heading-8{ width:60%; } 

}

.w-heading h2{ text-transform:none;}

.w-heading.heading-8 h2{ 
	color: #044A43!important; 
	font-size: 35px;
	line-height: 1.3;

}

.link-green p a{ color:#044A43;}
.post-content .w-text-block{
	color:#242323!important;

}

/****** PAGINA PRODOTTI *********/

.woocommerce-breadcrumb{ display:none; }

.w-heading.heading-7 h2 {
    font-size: 42px;

}

.w-heading.heading-7sx,.w-heading.heading-7dx {

	width: 100%;
	background-color:#DECB97;
	height:20px;
	margin-top: 10px;

}



.w-text-block h2, .woocommerce h2:not(.product_title){ 
	font-size: 42px;
	line-height:1;
	text-align:center;
}

@media only screen and (min-width: 992px) {

	.dx, .sx{ width:35%!important;}

	.titolocx{ width: 30%; }

	.w-heading.heading-7.text-center h2:before, .w-heading.heading-7.text-center h2:after {
		width: 35%;
		background-color:#DECB97;
		height:20px;
	}
}

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

	.w-heading.heading-7.text-center h2:before, .w-heading.heading-7.text-center h2:after {
		width: 35%;
		background-color:#DECB97;
		height:20px;
	}
}

/****** BANNER CATEGORIA PRODOTTI *******/

.term-dolci-e-confetture-2 .title-wrapper, .term-pasticceria .title-wrapper, .term-confetture .title-wrapper, .term-miele .title-wrapper

{ 

	background: url(https://www.pspweb.it/santommaso/wp-content/uploads/2022/05/banner_dolcieconfetture.jpg);

}

.term-primi-piatti .title-wrapper, .term-gnocchi-con-patate .title-wrapper, .term-pasta-di-semola .title-wrapper,

.term-pasta-fresca-alluovo .title-wrapper , .term-pasta-fresca-di-semola .title-wrapper , .term-pasta-fresca-ripiena .title-wrapper 

{ background: url(https://www.pspweb.it/santommaso/wp-content/uploads/2022/05/banner_primipiatti.jpg);  }

.term-salumi-e-formaggi   .title-wrapper  , .term-formaggi  .title-wrapper  , .term-salumi  .title-wrapper {

	background: url(https://www.pspweb.it/santommaso/wp-content/uploads/2022/05/banner_salumieformaggi.jpg);

}

.term-sughi-e-condimenti  .title-wrapper , .term-conserve  .title-wrapper  , .term-olio-e-aromatizzati  .title-wrapper {

	background: url(https://www.pspweb.it/santommaso/wp-content/uploads/2022/05/banner_sughiecondimenti.jpg);

}

.term-ricorrenze-e-idee-regalo .title-wrapper, .term-pacchi-san-tommaso .title-wrapper {}



/****** ARTICOLI *******/

.w-blog-posts.w-list .post-title {

    font-size: 40px;

    line-height: 55px;

	color: #044A43;

}

.w-blog-posts.w-list .readmore-link a {

	background: #DECB97;

	opacity: unset;

	padding: 9px 10px;

}/*  ===================================
    GoGreen icons
/*  =================================== */
@font-face {
  font-family: 'gogreen';
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/gogreen/gogreen.eot);
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/gogreen/gogreen.eot#iefix) format('embedded-opentype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/gogreen/gogreen.woff) format('woff'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/gogreen/gogreen.ttf) format('truetype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/gogreen/gogreen.svg#gogreen) format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="gg-"]:before, [class*=" gg-"]:before {
    font-family: 'gogreen';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.gg-tiktok:before {
  content: "\e850";
}
.gg-video:before {
  content: "\e800";
}
.gg-picture:before {
  content: "\e801";
}
.gg-headphones:before {
  content: "\e802";
}
.gg-mail:before {
  content: "\e803";
}
.gg-bookmark:before {
  content: "\e804";
}
.gg-tag:before {
  content: "\e805";
}
.gg-star:before {
  content: "\e806";
}
.gg-star-empty:before {
  content: "\e807";
}
.gg-comment-empty:before {
  content: "\e808";
}
.gg-comment:before {
  content: "\e809";
}
.gg-pencil:before {
  content: "\e80a";
}
.gg-article:before {
  content: "\e80b";
}
.gg-link:before {
  content: "\e80c";
}
.gg-behance:before {
  content: "\e80d";
}
.gg-quotes-2:before {
  content: "\e80e";
}
.gg-quotes-1:before {
  content: "\e80f";
}
.gg-share:before {
  content: "\e810";
}
.gg-deviantart:before {
  content: "\e811";
}
.gg-digg:before {
  content: "\e812";
}
.gg-dropbox:before {
  content: "\e813";
}
.gg-facebook:before {
  content: "\e814";
}
.gg-flickr:before {
  content: "\e815";
}
.gg-github:before {
  content: "\e816";
}
.gg-gplus:before {
  content: "\e817";
}
.gg-instagram:before {
  content: "\e818";
}
.gg-linkedin:before {
  content: "\e819";
}
.gg-pinterest:before {
  content: "\e81a";
}
.gg-reddit:before {
  content: "\e81b";
}
.gg-rss:before {
  content: "\e81c";
}
.gg-skype:before {
  content: "\e81d";
}
.gg-soundcloud:before {
  content: "\e81e";
}
.gg-tumblr:before {
  content: "\e81f";
}
.gg-twitter:before {
  content: "\e820";
}
.gg-vimeo:before {
  content: "\e821";
}
.gg-vkontakte:before {
  content: "\e822";
}
.gg-yahoo:before {
  content: "\e823";
}
.gg-youtube:before {
  content: "\e824";
}
.gg-heart:before {
  content: "\e825";
}
.gg-heart-empty:before {
  content: "\e826";
}
.gg-arrow-double-left:before {
  content: "\e827";
}
.gg-arrow-double-right:before {
  content: "\e828";
}
.gg-cancel:before {
  content: "\e829";
}
.gg-minus-2:before {
  content: "\e82a";
}
.gg-plus-2:before {
  content: "\e82b";
}
.gg-search:before {
  content: "\e82c";
}
.gg-shoppingcart:before {
  content: "\e82d";
}
.gg-play-circled:before {
  content: "\e82e";
}
.gg-cog:before {
  content: "\e82f";
}
.gg-calendar:before {
  content: "\e830";
}
.gg-ok:before {
  content: "\e831";
}
.gg-ok-circle:before {
  content: "\e832";
}
.gg-right-dir:before {
  content: "\e833";
}
.gg-resize-full:before {
  content: "\e834";
}
.gg-resize-small:before {
  content: "\e835";
}
.gg-menu:before {
  content: "\e836";
}
.gg-globe:before {
  content: "\e837";
}
.gg-plus:before {
  content: "\e838";
}
.gg-minus:before {
  content: "\e839";
}
.gg-spin1:before {
  content: "\e83a";
}
.gg-location:before {
  content: "\e83b";
}
.gg-phone:before {
  content: "\e83c";
}
.gg-folder-open:before {
  content: "\e83d";
}
.gg-attention-alt:before {
  content: "\e83e";
}
.gg-info:before {
  content: "\e83f";
}
.gg-dot-3:before {
  content: "\e840";
}
.gg-book-open:before {
  content: "\e841";
}
.gg-left:before {
  content: "\e842";
}
.gg-right:before {
  content: "\e843";
}
.gg-down:before {
  content: "\e844";
}
.gg-up:before {
  content: "\e845";
}
.gg-left2:before {
  content: "\e846";
}
.gg-right2:before {
  content: "\e847";
}
.gg-cart:before {
  content: "\e848";
}
.gg-export:before {
  content: "\e849";
}
.gg-arrows-next:before {
  content: "\e84a";
}
.gg-dribbble:before {
  content: "\e84d";
}
.gg-arrows-prev:before {
  content: "\e84e";
}
.gg-list:before {
  content: "\e84f";
}


/*  ===================================
    Bigmug Line icons
/*  =================================== */
@font-face {
	font-family: 'bigmug-line';
	src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bigmug-line/bigmug-line.eot);
	src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bigmug-line/bigmug-line.eot#iefix) format('embedded-opentype'),
	url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bigmug-line/bigmug-line.woff) format('woff'),
	url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bigmug-line/bigmug-line.ttf) format('truetype'),
	url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/bigmug-line/bigmug-line.svg#bigmug-line) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="bigmug-line-"], [class*=" bigmug-line-"] {
    font-family: 'bigmug-line';
    speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.bigmug-line-plus:before {
	content: "\e000";
}

.bigmug-line-plus-circle:before {
	content: "\e001";
}

.bigmug-line-plus-square:before {
	content: "\e002";
}

.bigmug-line-airplane:before {
	content: "\e003";
}

.bigmug-line-alarm:before {
	content: "\e004";
}

.bigmug-line-collapse1:before {
	content: "\e005";
}

.bigmug-line-attach1:before {
	content: "\e006";
}

.bigmug-line-attach2:before {
	content: "\e007";
}

.bigmug-line-volumn-off:before {
	content: "\e008";
}

.bigmug-line-arrow-circle-left:before {
	content: "\e009";
}

.bigmug-line-arrow-square-left:before {
	content: "\e00a";
}

.bigmug-line-mappin:before {
	content: "\e00b";
}

.bigmug-line-book:before {
	content: "\e00c";
}

.bigmug-line-bookmark:before {
	content: "\e00d";
}

.bigmug-line-bottle:before {
	content: "\e00e";
}

.bigmug-line-th:before {
	content: "\e00f";
}

.bigmug-line-gamepad:before {
	content: "\e010";
}

.bigmug-line-tablet:before {
	content: "\e011";
}

.bigmug-line-mobile:before {
	content: "\e012";
}

.bigmug-line-align-center:before {
	content: "\e013";
}

.bigmug-line-chat1:before {
	content: "\e014";
}

.bigmug-line-chat2:before {
	content: "\e015";
}

.bigmug-line-checkmark:before {
	content: "\e016";
}

.bigmug-line-checkmark-square:before {
	content: "\e017";
}

.bigmug-line-checkmark-circle:before {
	content: "\e018";
}

.bigmug-line-certificate:before {
	content: "\e019";
}

.bigmug-line-target:before {
	content: "\e01a";
}

.bigmug-line-pie-chart:before {
	content: "\e01b";
}

.bigmug-line-refresh:before {
	content: "\e01c";
}

.bigmug-line-clipboard:before {
	content: "\e01d";
}

.bigmug-line-cross-circle:before {
	content: "\e01e";
}

.bigmug-line-cloud:before {
	content: "\e01f";
}

.bigmug-line-cloud-rain:before {
	content: "\e020";
}

.bigmug-line-glass:before {
	content: "\e021";
}

.bigmug-line-code:before {
	content: "\e022";
}

.bigmug-line-collapse2:before {
	content: "\e023";
}

.bigmug-line-comment:before {
	content: "\e024";
}

.bigmug-line-compass:before {
	content: "\e025";
}

.bigmug-line-collapse-square:before {
	content: "\e026";
}

.bigmug-line-copy:before {
	content: "\e027";
}

.bigmug-line-crescent:before {
	content: "\e028";
}

.bigmug-line-cropping:before {
	content: "\e029";
}

.bigmug-line-cross:before {
	content: "\e02a";
}

.bigmug-line-cross-square:before {
	content: "\e02b";
}

.bigmug-line-layer:before {
	content: "\e02c";
}

.bigmug-line-arrow-v:before {
	content: "\e02d";
}

.bigmug-line-chavron-double-right:before {
	content: "\e02e";
}

.bigmug-line-arrow-h:before {
	content: "\e02f";
}

.bigmug-line-arrow-circle-down:before {
	content: "\e030";
}

.bigmug-line-arrow-square-down:before {
	content: "\e031";
}

.bigmug-line-download1:before {
	content: "\e032";
}

.bigmug-line-chevron-square-down:before {
	content: "\e033";
}

.bigmug-line-chevron-down:before {
	content: "\e034";
}

.bigmug-line-download2:before {
	content: "\e035";
}

.bigmug-line-download3:before {
	content: "\e036";
}

.bigmug-line-download4:before {
	content: "\e037";
}

.bigmug-line-download5:before {
	content: "\e038";
}

.bigmug-line-arrow-circle-down:before {
	content: "\e039";
}

.bigmug-line-electrical:before {
	content: "\e03a";
}

.bigmug-line-electronic:before {
	content: "\e03b";
}

.bigmug-line-email1:before {
	content: "\e03c";
}

.bigmug-line-email2:before {
	content: "\e03d";
}

.bigmug-line-equalizar1:before {
	content: "\e03e";
}

.bigmug-line-equalizar2:before {
	content: "\e03f";
}

.bigmug-line-event:before {
	content: "\e040";
}

.bigmug-line-expand-square:before {
	content: "\e041";
}

.bigmug-line-expand:before {
	content: "\e042";
}

.bigmug-line-forward:before {
	content: "\e043";
}

.bigmug-line-star:before {
	content: "\e044";
}

.bigmug-line-file1:before {
	content: "\e045";
}

.bigmug-line-file2:before {
	content: "\e046";
}

.bigmug-line-film:before {
	content: "\e047";
}

.bigmug-line-flag:before {
	content: "\e048";
}

.bigmug-line-foggy-moon:before {
	content: "\e049";
}

.bigmug-line-foggy-sun:before {
	content: "\e04a";
}

.bigmug-line-folder:before {
	content: "\e04b";
}

.bigmug-line-fork:before {
	content: "\e04c";
}

.bigmug-line-th-large:before {
	content: "\e04d";
}

.bigmug-line-full:before {
	content: "\e04e";
}

.bigmug-line-gameboy:before {
	content: "\e04f";
}

.bigmug-line-gear:before {
	content: "\e050";
}

.bigmug-line-giftbox:before {
	content: "\e051";
}

.bigmug-line-graphical:before {
	content: "\e052";
}

.bigmug-line-headphones:before {
	content: "\e053";
}

.bigmug-line-fire:before {
	content: "\e054";
}

.bigmug-line-images:before {
	content: "\e055";
}

.bigmug-line-ink:before {
	content: "\e056";
}

.bigmug-line-tag1:before {
	content: "\e057";
}

.bigmug-line-tag2:before {
	content: "\e058";
}

.bigmug-line-tag3:before {
	content: "\e059";
}

.bigmug-line-left-square:before {
	content: "\e05a";
}

.bigmug-line-chevron-left:before {
	content: "\e05b";
}

.bigmug-line-chevron-circle-left:before {
	content: "\e05c";
}

.bigmug-line-chevron-square-left:before {
	content: "\e05d";
}

.bigmug-line-align-left:before {
	content: "\e05e";
}

.bigmug-line-undo:before {
	content: "\e05f";
}

.bigmug-line-heart:before {
	content: "\e060";
}

.bigmug-line-link:before {
	content: "\e061";
}

.bigmug-line-list1:before {
	content: "\e062";
}

.bigmug-line-list2:before {
	content: "\e063";
}

.bigmug-line-lock:before {
	content: "\e064";
}

.bigmug-line-login1:before {
	content: "\e065";
}

.bigmug-line-login2:before {
	content: "\e066";
}

.bigmug-line-map:before {
	content: "\e067";
}

.bigmug-line-megaphone:before {
	content: "\e068";
}

.bigmug-line-menu-bar1:before {
	content: "\e069";
}

.bigmug-line-menu-bar2:before {
	content: "\e06a";
}

.bigmug-line-menu-bar3:before {
	content: "\e06b";
}

.bigmug-line-microphone1:before {
	content: "\e06c";
}

.bigmug-line-microphone2:before {
	content: "\e06d";
}

.bigmug-line-minus-circle:before {
	content: "\e06e";
}

.bigmug-line-minus-square:before {
	content: "\e06f";
}

.bigmug-line-zoom-out:before {
	content: "\e070";
}

.bigmug-line-minus:before {
	content: "\e071";
}

.bigmug-line-monitor:before {
	content: "\e072";
}

.bigmug-line-music1:before {
	content: "\e073";
}

.bigmug-line-music2:before {
	content: "\e074";
}

.bigmug-line-music3:before {
	content: "\e075";
}

.bigmug-line-music4:before {
	content: "\e076";
}

.bigmug-line-music5:before {
	content: "\e077";
}

.bigmug-line-mute1:before {
	content: "\e078";
}

.bigmug-line-mute2:before {
	content: "\e079";
}

.bigmug-line-clock:before {
	content: "\e07a";
}

.bigmug-line-edit:before {
	content: "\e07b";
}

.bigmug-line-notebook:before {
	content: "\e07c";
}

.bigmug-line-notification1:before {
	content: "\e07d";
}

.bigmug-line-notification2:before {
	content: "\e07e";
}

.bigmug-line-email4:before {
	content: "\e07f";
}

.bigmug-line-comment2:before {
	content: "\e080";
}

.bigmug-line-brush:before {
	content: "\e081";
}

.bigmug-line-paper-plane:before {
	content: "\e082";
}

.bigmug-line-pause:before {
	content: "\e083";
}

.bigmug-line-pencil:before {
	content: "\e084";
}

.bigmug-line-phone:before {
	content: "\e085";
}

.bigmug-line-camera:before {
	content: "\e086";
}

.bigmug-line-pin:before {
	content: "\e087";
}

.bigmug-line-planet:before {
	content: "\e088";
}

.bigmug-line-play:before {
	content: "\e089";
}

.bigmug-line-portfolio:before {
	content: "\e08a";
}

.bigmug-line-print:before {
	content: "\e08b";
}

.bigmug-line-radio:before {
	content: "\e08c";
}

.bigmug-line-cloud-rain2:before {
	content: "\e08d";
}

.bigmug-line-comment3:before {
	content: "\e08e";
}

.bigmug-line-trash:before {
	content: "\e08f";
}

.bigmug-line-rewind:before {
	content: "\e090";
}

.bigmug-line-arrow-circle-righ:before {
	content: "\e091";
}

.bigmug-line-map-signs:before {
	content: "\e092";
}

.bigmug-line-arrow-square-right:before {
	content: "\e093";
}

.bigmug-line-right-square:before {
	content: "\e094";
}

.bigmug-line-chevron-circle-right:before {
	content: "\e095";
}

.bigmug-line-redo:before {
	content: "\e096";
}

.bigmug-line-chevron-right:before {
	content: "\e097";
}

.bigmug-line-chevron-square-right:before {
	content: "\e098";
}

.bigmug-line-mouse:before {
	content: "\e099";
}

.bigmug-line-hourglass:before {
	content: "\e09a";
}

.bigmug-line-save:before {
	content: "\e09b";
}

.bigmug-line-search:before {
	content: "\e09c";
}

.bigmug-line-pin2:before {
	content: "\e09d";
}

.bigmug-line-share:before {
	content: "\e09e";
}

.bigmug-line-shopping-bag:before {
	content: "\e09f";
}

.bigmug-line-shopping-basket:before {
	content: "\e0a0";
}

.bigmug-line-shopping-cart1:before {
	content: "\e0a1";
}

.bigmug-line-shopping-cart2:before {
	content: "\e0a2";
}

.bigmug-line-shuffle:before {
	content: "\e0a3";
}

.bigmug-line-sort-up:before {
	content: "\e0a4";
}

.bigmug-line-sort-down:before {
	content: "\e0a5";
}

.bigmug-line-speaker:before {
	content: "\e0a6";
}

.bigmug-line-speaker2:before {
	content: "\e0a7";
}

.bigmug-line-speaker3:before {
	content: "\e0a8";
}

.bigmug-line-volumn-up:before {
	content: "\e0a9";
}

.bigmug-line-volumn-down:before {
	content: "\e0aa";
}

.bigmug-line-speech:before {
	content: "\e0ab";
}

.bigmug-line-target-square:before {
	content: "\e0ac";
}

.bigmug-line-square:before {
	content: "\e0ad";
}

.bigmug-line-point:before {
	content: "\e0ae";
}

.bigmug-line-store:before {
	content: "\e0af";
}

.bigmug-line-sun:before {
	content: "\e0b0";
}

.bigmug-line-sunrise:before {
	content: "\e0b1";
}

.bigmug-line-switch1:before {
	content: "\e0b2";
}

.bigmug-line-switch2:before {
	content: "\e0b3";
}

.bigmug-line-tag4:before {
	content: "\e0b4";
}

.bigmug-line-television:before {
	content: "\e0b5";
}

.bigmug-line-align-left:before {
	content: "\e0b6";
}

.bigmug-line-text:before {
	content: "\e0b7";
}

.bigmug-line-chart:before {
	content: "\e0b8";
}

.bigmug-line-timer:before {
	content: "\e0b9";
}

.bigmug-line-tool:before {
	content: "\e0ba";
}

.bigmug-line-triangle:before {
	content: "\e0bb";
}

.bigmug-line-trophy:before {
	content: "\e0bc";
}

.bigmug-line-refrash2:before {
	content: "\e0bd";
}

.bigmug-line-refrash3:before {
	content: "\e0be";
}

.bigmug-line-tint:before {
	content: "\e0bf";
}

.bigmug-line-chevron-double-left:before {
	content: "\e0c0";
}

.bigmug-line-clone:before {
	content: "\e0c1";
}

.bigmug-line-unlocked:before {
	content: "\e0c2";
}

.bigmug-line-chevron-circle-up:before {
	content: "\e0c3";
}

.bigmug-line-spoon:before {
	content: "\e0c4";
}

.bigmug-line-arrow-square-up:before {
	content: "\e0c5";
}

.bigmug-line-upload:before {
	content: "\e0c6";
}

.bigmug-line-chevron-square-up:before {
	content: "\e0c7";
}

.bigmug-line-home:before {
	content: "\e0c8";
}

.bigmug-line-chevron-up:before {
	content: "\e0c9";
}

.bigmug-line-up-square:before {
	content: "\e0ca";
}

.bigmug-line-arrow-circle-up:before {
	content: "\e0cb";
}

.bigmug-line-up-square2:before {
	content: "\e0cc";
}

.bigmug-line-upload2:before {
	content: "\e0cd";
}

.bigmug-line-upload3:before {
	content: "\e0ce";
}

.bigmug-line-expand2:before {
	content: "\e0cf";
}

.bigmug-line-user1:before {
	content: "\e0d0";
}

.bigmug-line-user2:before {
	content: "\e0d1";
}

.bigmug-line-video:before {
	content: "\e0d2";
}

.bigmug-line-wallet:before {
	content: "\e0d3";
}

.bigmug-line-weather:before {
	content: "\e0d4";
}

.bigmug-line-calendar1:before {
	content: "\e0d5";
}

.bigmug-line-calendar2:before {
	content: "\e0d6";
}

.bigmug-line-wind:before {
	content: "\e0d7";
}

.bigmug-line-window:before {
	content: "\e0d8";
}

.bigmug-line-winds:before {
	content: "\e0d9";
}

.bigmug-line-wrench:before {
	content: "\e0da";
}

.bigmug-line-zoom-in:before {
	content: "\e0db";
}

/*  ===================================
    Simple Line icons
/*  =================================== */
@font-face {
    font-family: 'simple-line';
	src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/simple-line/simple-line.eot);
	src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/simple-line/simple-line.eot?#iefix) format('embedded-opentype'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/simple-line/simple-line.woff) format('woff'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/simple-line/simple-line.ttf) format('truetype'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/simple-line/simple-line.svg#simple-line) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="sl-"], [class*=" sl-"] {
	font-family: 'simple-line';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sl-user-female:before {
	content: "\e000";
}

.sl-user-follow:before {
	content: "\e002";
}

.sl-user-following:before {
	content: "\e003";
}

.sl-user-unfollow:before {
	content: "\e004";
}

.sl-trophy:before {
	content: "\e006";
}

.sl-screen-smartphone:before {
	content: "\e010";
}

.sl-screen-desktop:before {
	content: "\e011";
}

.sl-plane:before {
	content: "\e012";
}

.sl-notebook:before {
	content: "\e013";
}

.sl-moustache:before {
	content: "\e014";
}

.sl-mouse:before {
	content: "\e015";
}

.sl-magnet:before {
	content: "\e016";
}

.sl-energy:before {
	content: "\e020";
}

.sl-emoticon-smile:before {
	content: "\e021";
}

.sl-disc:before {
	content: "\e022";
}

.sl-cursor-move:before {
	content: "\e023";
}

.sl-crop:before {
	content: "\e024";
}

.sl-credit-card:before {
	content: "\e025";
}

.sl-chemistry:before {
	content: "\e026";
}

.sl-user:before {
	content: "\e005";
}

.sl-speedometer:before {
	content: "\e007";
}

.sl-social-youtube:before {
	content: "\e008";
}

.sl-social-twitter:before {
	content: "\e009";
}

.sl-social-tumblr:before {
	content: "\e00a";
}

.sl-social-facebook:before {
	content: "\e00b";
}

.sl-social-dropbox:before {
	content: "\e00c";
}

.sl-social-dribbble:before {
	content: "\e00d";
}

.sl-shield:before {
	content: "\e00e";
}

.sl-screen-tablet:before {
	content: "\e00f";
}

.sl-magic-wand:before {
	content: "\e017";
}

.sl-hourglass:before {
	content: "\e018";
}

.sl-graduation:before {
	content: "\e019";
}

.sl-ghost:before {
	content: "\e01a";
}

.sl-game-controller:before {
	content: "\e01b";
}

.sl-fire:before {
	content: "\e01c";
}

.sl-eyeglasses:before {
	content: "\e01d";
}

.sl-envelope-open:before {
	content: "\e01e";
}

.sl-envelope-letter:before {
	content: "\e01f";
}

.sl-bell:before {
	content: "\e027";
}

.sl-badge:before {
	content: "\e028";
}

.sl-anchor:before {
	content: "\e029";
}

.sl-wallet:before {
	content: "\e02a";
}

.sl-vector:before {
	content: "\e02b";
}

.sl-speech:before {
	content: "\e02c";
}

.sl-puzzle:before {
	content: "\e02d";
}

.sl-printer:before {
	content: "\e02e";
}

.sl-present:before {
	content: "\e02f";
}

.sl-playlist:before {
	content: "\e030";
}

.sl-pin:before {
	content: "\e031";
}

.sl-picture:before {
	content: "\e032";
}

.sl-map:before {
	content: "\e033";
}

.sl-layers:before {
	content: "\e034";
}

.sl-handbag:before {
	content: "\e035";
}

.sl-globe-alt:before {
	content: "\e036";
}

.sl-globe:before {
	content: "\e037";
}

.sl-frame:before {
	content: "\e038";
}

.sl-folder-alt:before {
	content: "\e039";
}

.sl-film:before {
	content: "\e03a";
}

.sl-feed:before {
	content: "\e03b";
}

.sl-earphones-alt:before {
	content: "\e03c";
}

.sl-earphones:before {
	content: "\e03d";
}

.sl-drop:before {
	content: "\e03e";
}

.sl-drawer:before {
	content: "\e03f";
}

.sl-docs:before {
	content: "\e040";
}

.sl-directions:before {
	content: "\e041";
}

.sl-direction:before {
	content: "\e042";
}

.sl-diamond:before {
	content: "\e043";
}

.sl-cup:before {
	content: "\e044";
}

.sl-compass:before {
	content: "\e045";
}

.sl-call-out:before {
	content: "\e046";
}

.sl-call-in:before {
	content: "\e047";
}

.sl-call-end:before {
	content: "\e048";
}

.sl-calculator:before {
	content: "\e049";
}

.sl-bubbles:before {
	content: "\e04a";
}

.sl-briefcase:before {
	content: "\e04b";
}

.sl-book-open:before {
	content: "\e04c";
}

.sl-basket-loaded:before {
	content: "\e04d";
}

.sl-basket:before {
	content: "\e04e";
}

.sl-bag:before {
	content: "\e04f";
}

.sl-action-undo:before {
	content: "\e050";
}

.sl-action-redo:before {
	content: "\e051";
}

.sl-wrench:before {
	content: "\e052";
}

.sl-umbrella:before {
	content: "\e053";
}

.sl-trash:before {
	content: "\e054";
}

.sl-tag:before {
	content: "\e055";
}

.sl-support:before {
	content: "\e056";
}

.sl-size-fullscreen:before {
	content: "\e057";
}

.sl-size-actual:before {
	content: "\e058";
}

.sl-shuffle:before {
	content: "\e059";
}

.sl-share-alt:before {
	content: "\e05a";
}

.sl-share:before {
	content: "\e05b";
}

.sl-rocket:before {
	content: "\e05c";
}

.sl-question:before {
	content: "\e05d";
}

.sl-pie-chart:before {
	content: "\e05e";
}

.sl-pencil:before {
	content: "\e05f";
}

.sl-note:before {
	content: "\e060";
}

.sl-music-tone-alt:before {
	content: "\e061";
}

.sl-music-tone:before {
	content: "\e062";
}

.sl-microphone:before {
	content: "\e063";
}

.sl-loop:before {
	content: "\e064";
}

.sl-logout:before {
	content: "\e065";
}

.sl-login:before {
	content: "\e066";
}

.sl-list:before {
	content: "\e067";
}

.sl-like:before {
	content: "\e068";
}

.sl-home:before {
	content: "\e069";
}

.sl-grid:before {
	content: "\e06a";
}

.sl-graph:before {
	content: "\e06b";
}

.sl-equalizer:before {
	content: "\e06c";
}

.sl-dislike:before {
	content: "\e06d";
}

.sl-cursor:before {
	content: "\e06e";
}

.sl-control-start:before {
	content: "\e06f";
}

.sl-control-rewind:before {
	content: "\e070";
}

.sl-control-play:before {
	content: "\e071";
}

.sl-control-pause:before {
	content: "\e072";
}

.sl-control-forward:before {
	content: "\e073";
}

.sl-control-end:before {
	content: "\e074";
}

.sl-calendar:before {
	content: "\e075";
}

.sl-bulb:before {
	content: "\e076";
}

.sl-bar-chart:before {
	content: "\e077";
}

.sl-arrow-up:before {
	content: "\e078";
}

.sl-arrow-right:before {
	content: "\e079";
}

.sl-arrow-left:before {
	content: "\e07a";
}

.sl-arrow-down:before {
	content: "\e07b";
}

.sl-ban:before {
	content: "\e07c";
}

.sl-bubble:before {
	content: "\e07d";
}

.sl-camcorder:before {
	content: "\e07e";
}

.sl-camera:before {
	content: "\e07f";
}

.sl-check:before {
	content: "\e080";
}

.sl-clock:before {
	content: "\e081";
}

.sl-close:before {
	content: "\e082";
}

.sl-cloud-download:before {
	content: "\e083";
}

.sl-cloud-upload:before {
	content: "\e084";
}

.sl-doc:before {
	content: "\e085";
}

.sl-envelope:before {
	content: "\e086";
}

.sl-eye:before {
	content: "\e087";
}

.sl-flag:before {
	content: "\e088";
}

.sl-folder:before {
	content: "\e089";
}

.sl-heart:before {
	content: "\e08a";
}

.sl-info:before {
	content: "\e08b";
}

.sl-key:before {
	content: "\e08c";
}

.sl-link:before {
	content: "\e08d";
}

.sl-lock:before {
	content: "\e08e";
}

.sl-lock-open:before {
	content: "\e08f";
}

.sl-magnifier:before {
	content: "\e090";
}

.sl-magnifier-add:before {
	content: "\e091";
}

.sl-magnifier-remove:before {
	content: "\e092";
}

.sl-paper-clip:before {
	content: "\e093";
}

.sl-paper-plane:before {
	content: "\e094";
}

.sl-plus:before {
	content: "\e095";
}

.sl-pointer:before {
	content: "\e096";
}

.sl-power:before {
	content: "\e097";
}

.sl-refresh:before {
	content: "\e098";
}

.sl-reload:before {
	content: "\e099";
}

.sl-settings:before {
	content: "\e09a";
}

.sl-star:before {
	content: "\e09b";
}

.sl-symbol-female:before {
	content: "\e09c";
}

.sl-symbol-male:before {
	content: "\e09d";
}

.sl-target:before {
	content: "\e09e";
}

.sl-volume-1:before {
	content: "\e09f";
}

.sl-volume-2:before {
	content: "\e0a0";
}

.sl-volume-off:before {
	content: "\e0a1";
}

.sl-users:before {
	content: "\e001";
}

/*  ===================================
    Linecons
/*  =================================== */
@font-face {
	font-family: 'linecons';
	src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/linecons/linecons.eot?izar0b);
	src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/linecons/linecons.eot?#iefixizar0b) format('embedded-opentype'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/linecons/linecons.woff?izar0b) format('woff'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/linecons/linecons.ttf?izar0b) format('truetype'),
		url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/linecons/linecons.svg?izar0b#linecons) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="linecons-"], [class*=" linecons-"] {
	font-family: 'linecons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.linecons-heart:before {
	content: "\e600";
}

.linecons-cloud:before {
	content: "\e601";
}

.linecons-star:before {
	content: "\e602";
}

.linecons-tv:before {
	content: "\e603";
}

.linecons-sound:before {
	content: "\e604";
}

.linecons-video:before {
	content: "\e605";
}

.linecons-trash:before {
	content: "\e606";
}

.linecons-user:before {
	content: "\e607";
}

.linecons-key:before {
	content: "\e608";
}

.linecons-search:before {
	content: "\e609";
}

.linecons-settings:before {
	content: "\e60a";
}

.linecons-camera:before {
	content: "\e60b";
}

.linecons-tag:before {
	content: "\e60c";
}

.linecons-lock:before {
	content: "\e60d";
}

.linecons-bulb:before {
	content: "\e60e";
}

.linecons-pen:before {
	content: "\e60f";
}

.linecons-diamond:before {
	content: "\e610";
}

.linecons-display:before {
	content: "\e611";
}

.linecons-location:before {
	content: "\e612";
}

.linecons-eye:before {
	content: "\e613";
}

.linecons-bubble:before {
	content: "\e614";
}

.linecons-stack:before {
	content: "\e615";
}

.linecons-cup:before {
	content: "\e616";
}

.linecons-phone:before {
	content: "\e617";
}

.linecons-news:before {
	content: "\e618";
}

.linecons-mail:before {
	content: "\e619";
}

.linecons-like:before {
	content: "\e61a";
}

.linecons-photo:before {
	content: "\e61b";
}

.linecons-note:before {
	content: "\e61c";
}

.linecons-clock:before {
	content: "\e61d";
}

.linecons-paperplane:before {
	content: "\e61e";
}

.linecons-params:before {
	content: "\e61f";
}

.linecons-banknote:before {
	content: "\e620";
}

.linecons-data:before {
	content: "\e621";
}

.linecons-music:before {
	content: "\e622";
}

.linecons-megaphone:before {
	content: "\e623";
}

.linecons-study:before {
	content: "\e624";
}

.linecons-lab:before {
	content: "\e625";
}

.linecons-food:before {
	content: "\e626";
}

.linecons-t-shirt:before {
	content: "\e627";
}

.linecons-fire:before {
	content: "\e628";
}

.linecons-clip:before {
	content: "\e629";
}

.linecons-shop:before {
	content: "\e62a";
}

.linecons-calendar:before {
	content: "\e62b";
}

.linecons-wallet:before {
	content: "\e62c";
}

.linecons-vynil:before {
	content: "\e62d";
}

.linecons-truck:before {
	content: "\e62e";
}

.linecons-world:before {
	content: "\e62f";
}

/*  ===================================
    Typicons
/*  =================================== */
@font-face {
  font-family: 'typicons';
  font-weight: normal;
  font-style: normal;
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/typicons/typicons.eot);
  src: url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/typicons/typicons.eot?#iefix) format('embedded-opentype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/typicons/typicons.woff) format('woff'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/typicons/typicons.ttf) format('truetype'),
       url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/typicons/typicons.svg#typicons) format('svg');
}
 
/* :before psuedo-selector inserts and styles icon */
.typcn {
    font-family: 'typicons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
/* Code for individual icons */ 
.typcn-adjust-brightness:before { 
  content: '\e000'; /* '' */
} 
.typcn-adjust-contrast:before { 
  content: '\e001'; /* '' */
} 
.typcn-anchor-outline:before { 
  content: '\e002'; /* '' */
} 
.typcn-anchor:before { 
  content: '\e003'; /* '' */
} 
.typcn-archive:before { 
  content: '\e004'; /* '' */
} 
.typcn-arrow-back-outline:before { 
  content: '\e005'; /* '' */
} 
.typcn-arrow-back:before { 
  content: '\e006'; /* '' */
} 
.typcn-arrow-down-outline:before { 
  content: '\e007'; /* '' */
} 
.typcn-arrow-down-thick:before { 
  content: '\e008'; /* '' */
} 
.typcn-arrow-down:before { 
  content: '\e009'; /* '' */
} 
.typcn-arrow-forward-outline:before { 
  content: '\e00a'; /* '' */
} 
.typcn-arrow-forward:before { 
  content: '\e00b'; /* '' */
} 
.typcn-arrow-left-outline:before { 
  content: '\e00c'; /* '' */
} 
.typcn-arrow-left-thick:before { 
  content: '\e00d'; /* '' */
} 
.typcn-arrow-left:before { 
  content: '\e00e'; /* '' */
} 
.typcn-arrow-loop-outline:before { 
  content: '\e00f'; /* '' */
} 
.typcn-arrow-loop:before { 
  content: '\e010'; /* '' */
} 
.typcn-arrow-maximise-outline:before { 
  content: '\e011'; /* '' */
} 
.typcn-arrow-maximise:before { 
  content: '\e012'; /* '' */
} 
.typcn-arrow-minimise-outline:before { 
  content: '\e013'; /* '' */
} 
.typcn-arrow-minimise:before { 
  content: '\e014'; /* '' */
} 
.typcn-arrow-move-outline:before { 
  content: '\e015'; /* '' */
} 
.typcn-arrow-move:before { 
  content: '\e016'; /* '' */
} 
.typcn-arrow-repeat-outline:before { 
  content: '\e017'; /* '' */
} 
.typcn-arrow-repeat:before { 
  content: '\e018'; /* '' */
} 
.typcn-arrow-right-outline:before { 
  content: '\e019'; /* '' */
} 
.typcn-arrow-right-thick:before { 
  content: '\e01a'; /* '' */
} 
.typcn-arrow-right:before { 
  content: '\e01b'; /* '' */
} 
.typcn-arrow-shuffle:before { 
  content: '\e01c'; /* '' */
} 
.typcn-arrow-sorted-down:before { 
  content: '\e01d'; /* '' */
} 
.typcn-arrow-sorted-up:before { 
  content: '\e01e'; /* '' */
} 
.typcn-arrow-sync-outline:before { 
  content: '\e01f'; /* '' */
} 
.typcn-arrow-sync:before { 
  content: '\e020'; /* '' */
} 
.typcn-arrow-unsorted:before { 
  content: '\e021'; /* '' */
} 
.typcn-arrow-up-outline:before { 
  content: '\e022'; /* '' */
} 
.typcn-arrow-up-thick:before { 
  content: '\e023'; /* '' */
} 
.typcn-arrow-up:before { 
  content: '\e024'; /* '' */
} 
.typcn-at:before { 
  content: '\e025'; /* '' */
} 
.typcn-attachment-outline:before { 
  content: '\e026'; /* '' */
} 
.typcn-attachment:before { 
  content: '\e027'; /* '' */
} 
.typcn-backspace-outline:before { 
  content: '\e028'; /* '' */
} 
.typcn-backspace:before { 
  content: '\e029'; /* '' */
} 
.typcn-battery-charge:before { 
  content: '\e02a'; /* '' */
} 
.typcn-battery-full:before { 
  content: '\e02b'; /* '' */
} 
.typcn-battery-high:before { 
  content: '\e02c'; /* '' */
} 
.typcn-battery-low:before { 
  content: '\e02d'; /* '' */
} 
.typcn-battery-mid:before { 
  content: '\e02e'; /* '' */
} 
.typcn-beaker:before { 
  content: '\e02f'; /* '' */
} 
.typcn-beer:before { 
  content: '\e030'; /* '' */
} 
.typcn-bell:before { 
  content: '\e031'; /* '' */
} 
.typcn-book:before { 
  content: '\e032'; /* '' */
} 
.typcn-bookmark:before { 
  content: '\e033'; /* '' */
} 
.typcn-briefcase:before { 
  content: '\e034'; /* '' */
} 
.typcn-brush:before { 
  content: '\e035'; /* '' */
} 
.typcn-business-card:before { 
  content: '\e036'; /* '' */
} 
.typcn-calculator:before { 
  content: '\e037'; /* '' */
} 
.typcn-calendar-outline:before { 
  content: '\e038'; /* '' */
} 
.typcn-calendar:before { 
  content: '\e039'; /* '' */
} 
.typcn-camera-outline:before { 
  content: '\e03a'; /* '' */
} 
.typcn-camera:before { 
  content: '\e03b'; /* '' */
} 
.typcn-cancel-outline:before { 
  content: '\e03c'; /* '' */
} 
.typcn-cancel:before { 
  content: '\e03d'; /* '' */
} 
.typcn-chart-area-outline:before { 
  content: '\e03e'; /* '' */
} 
.typcn-chart-area:before { 
  content: '\e03f'; /* '' */
} 
.typcn-chart-bar-outline:before { 
  content: '\e040'; /* '' */
} 
.typcn-chart-bar:before { 
  content: '\e041'; /* '' */
} 
.typcn-chart-line-outline:before { 
  content: '\e042'; /* '' */
} 
.typcn-chart-line:before { 
  content: '\e043'; /* '' */
} 
.typcn-chart-pie-outline:before { 
  content: '\e044'; /* '' */
} 
.typcn-chart-pie:before { 
  content: '\e045'; /* '' */
} 
.typcn-chevron-left-outline:before { 
  content: '\e046'; /* '' */
} 
.typcn-chevron-left:before { 
  content: '\e047'; /* '' */
} 
.typcn-chevron-right-outline:before { 
  content: '\e048'; /* '' */
} 
.typcn-chevron-right:before { 
  content: '\e049'; /* '' */
} 
.typcn-clipboard:before { 
  content: '\e04a'; /* '' */
} 
.typcn-cloud-storage:before { 
  content: '\e04b'; /* '' */
} 
.typcn-cloud-storage-outline:before { 
  content: '\e054'; /* '' */
} 
.typcn-code-outline:before { 
  content: '\e04c'; /* '' */
} 
.typcn-code:before { 
  content: '\e04d'; /* '' */
} 
.typcn-coffee:before { 
  content: '\e04e'; /* '' */
} 
.typcn-cog-outline:before { 
  content: '\e04f'; /* '' */
} 
.typcn-cog:before { 
  content: '\e050'; /* '' */
} 
.typcn-compass:before { 
  content: '\e051'; /* '' */
} 
.typcn-contacts:before { 
  content: '\e052'; /* '' */
} 
.typcn-credit-card:before { 
  content: '\e053'; /* '' */
} 
.typcn-css3:before { 
  content: '\e055'; /* '' */
} 
.typcn-database:before { 
  content: '\e056'; /* '' */
} 
.typcn-delete-outline:before { 
  content: '\e057'; /* '' */
} 
.typcn-delete:before { 
  content: '\e058'; /* '' */
} 
.typcn-device-desktop:before { 
  content: '\e059'; /* '' */
} 
.typcn-device-laptop:before { 
  content: '\e05a'; /* '' */
} 
.typcn-device-phone:before { 
  content: '\e05b'; /* '' */
} 
.typcn-device-tablet:before { 
  content: '\e05c'; /* '' */
} 
.typcn-directions:before { 
  content: '\e05d'; /* '' */
} 
.typcn-divide-outline:before { 
  content: '\e05e'; /* '' */
} 
.typcn-divide:before { 
  content: '\e05f'; /* '' */
} 
.typcn-document-add:before { 
  content: '\e060'; /* '' */
} 
.typcn-document-delete:before { 
  content: '\e061'; /* '' */
} 
.typcn-document-text:before { 
  content: '\e062'; /* '' */
} 
.typcn-document:before { 
  content: '\e063'; /* '' */
} 
.typcn-download-outline:before { 
  content: '\e064'; /* '' */
} 
.typcn-download:before { 
  content: '\e065'; /* '' */
} 
.typcn-dropbox:before { 
  content: '\e066'; /* '' */
} 
.typcn-edit:before { 
  content: '\e067'; /* '' */
} 
.typcn-eject-outline:before { 
  content: '\e068'; /* '' */
} 
.typcn-eject:before { 
  content: '\e069'; /* '' */
} 
.typcn-equals-outline:before { 
  content: '\e06a'; /* '' */
} 
.typcn-equals:before { 
  content: '\e06b'; /* '' */
} 
.typcn-export-outline:before { 
  content: '\e06c'; /* '' */
} 
.typcn-export:before { 
  content: '\e06d'; /* '' */
} 
.typcn-eye-outline:before { 
  content: '\e06e'; /* '' */
} 
.typcn-eye:before { 
  content: '\e06f'; /* '' */
} 
.typcn-feather:before { 
  content: '\e070'; /* '' */
} 
.typcn-film:before { 
  content: '\e071'; /* '' */
} 
.typcn-filter:before { 
  content: '\e072'; /* '' */
} 
.typcn-flag-outline:before { 
  content: '\e073'; /* '' */
} 
.typcn-flag:before { 
  content: '\e074'; /* '' */
} 
.typcn-flash-outline:before { 
  content: '\e075'; /* '' */
} 
.typcn-flash:before { 
  content: '\e076'; /* '' */
} 
.typcn-flow-children:before { 
  content: '\e077'; /* '' */
} 
.typcn-flow-merge:before { 
  content: '\e078'; /* '' */
} 
.typcn-flow-parallel:before { 
  content: '\e079'; /* '' */
} 
.typcn-flow-switch:before { 
  content: '\e07a'; /* '' */
} 
.typcn-folder-add:before { 
  content: '\e07b'; /* '' */
} 
.typcn-folder-delete:before { 
  content: '\e07c'; /* '' */
} 
.typcn-folder-open:before { 
  content: '\e07d'; /* '' */
} 
.typcn-folder:before { 
  content: '\e07e'; /* '' */
} 
.typcn-gift:before { 
  content: '\e07f'; /* '' */
} 
.typcn-globe-outline:before { 
  content: '\e080'; /* '' */
} 
.typcn-globe:before { 
  content: '\e081'; /* '' */
} 
.typcn-group-outline:before { 
  content: '\e082'; /* '' */
} 
.typcn-group:before { 
  content: '\e083'; /* '' */
} 
.typcn-headphones:before { 
  content: '\e084'; /* '' */
} 
.typcn-heart-full-outline:before { 
  content: '\e085'; /* '' */
} 
.typcn-heart-half-outline:before { 
  content: '\e086'; /* '' */
} 
.typcn-heart-outline:before { 
  content: '\e087'; /* '' */
} 
.typcn-heart:before { 
  content: '\e088'; /* '' */
} 
.typcn-home-outline:before { 
  content: '\e089'; /* '' */
} 
.typcn-home:before { 
  content: '\e08a'; /* '' */
} 
.typcn-html5:before { 
  content: '\e08b'; /* '' */
} 
.typcn-image-outline:before { 
  content: '\e08c'; /* '' */
} 
.typcn-image:before { 
  content: '\e08d'; /* '' */
} 
.typcn-infinity-outline:before { 
  content: '\e08e'; /* '' */
} 
.typcn-infinity:before { 
  content: '\e08f'; /* '' */
} 
.typcn-info-large-outline:before { 
  content: '\e090'; /* '' */
} 
.typcn-info-large:before { 
  content: '\e091'; /* '' */
} 
.typcn-info-outline:before { 
  content: '\e092'; /* '' */
} 
.typcn-info:before { 
  content: '\e093'; /* '' */
} 
.typcn-input-checked-outline:before { 
  content: '\e094'; /* '' */
} 
.typcn-input-checked:before { 
  content: '\e095'; /* '' */
} 
.typcn-key-outline:before { 
  content: '\e096'; /* '' */
} 
.typcn-key:before { 
  content: '\e097'; /* '' */
} 
.typcn-keyboard:before { 
  content: '\e098'; /* '' */
} 
.typcn-leaf:before { 
  content: '\e099'; /* '' */
} 
.typcn-lightbulb:before { 
  content: '\e09a'; /* '' */
} 
.typcn-link-outline:before { 
  content: '\e09b'; /* '' */
} 
.typcn-link:before { 
  content: '\e09c'; /* '' */
} 
.typcn-location-arrow-outline:before { 
  content: '\e09d'; /* '' */
} 
.typcn-location-arrow:before { 
  content: '\e09e'; /* '' */
} 
.typcn-location-outline:before { 
  content: '\e09f'; /* '' */
} 
.typcn-location:before { 
  content: '\e0a0'; /* '' */
} 
.typcn-lock-closed-outline:before { 
  content: '\e0a1'; /* '' */
} 
.typcn-lock-closed:before { 
  content: '\e0a2'; /* '' */
} 
.typcn-lock-open-outline:before { 
  content: '\e0a3'; /* '' */
} 
.typcn-lock-open:before { 
  content: '\e0a4'; /* '' */
} 
.typcn-mail:before { 
  content: '\e0a5'; /* '' */
} 
.typcn-map:before { 
  content: '\e0a6'; /* '' */
} 
.typcn-media-eject-outline:before { 
  content: '\e0a7'; /* '' */
} 
.typcn-media-eject:before { 
  content: '\e0a8'; /* '' */
} 
.typcn-media-fast-forward-outline:before { 
  content: '\e0a9'; /* '' */
} 
.typcn-media-fast-forward:before { 
  content: '\e0aa'; /* '' */
} 
.typcn-media-pause-outline:before { 
  content: '\e0ab'; /* '' */
} 
.typcn-media-pause:before { 
  content: '\e0ac'; /* '' */
} 
.typcn-media-play-outline:before { 
  content: '\e0ad'; /* '' */
} 
.typcn-media-play-reverse-outline:before { 
  content: '\e0ae'; /* '' */
} 
.typcn-media-play-reverse:before { 
  content: '\e0af'; /* '' */
} 
.typcn-media-play:before { 
  content: '\e0b0'; /* '' */
} 
.typcn-media-record-outline:before { 
  content: '\e0b1'; /* '' */
} 
.typcn-media-record:before { 
  content: '\e0b2'; /* '' */
} 
.typcn-media-rewind-outline:before { 
  content: '\e0b3'; /* '' */
} 
.typcn-media-rewind:before { 
  content: '\e0b4'; /* '' */
} 
.typcn-media-stop-outline:before { 
  content: '\e0b5'; /* '' */
} 
.typcn-media-stop:before { 
  content: '\e0b6'; /* '' */
} 
.typcn-message-typing:before { 
  content: '\e0b7'; /* '' */
} 
.typcn-message:before { 
  content: '\e0b8'; /* '' */
} 
.typcn-messages:before { 
  content: '\e0b9'; /* '' */
} 
.typcn-microphone-outline:before { 
  content: '\e0ba'; /* '' */
} 
.typcn-microphone:before { 
  content: '\e0bb'; /* '' */
} 
.typcn-minus-outline:before { 
  content: '\e0bc'; /* '' */
} 
.typcn-minus:before { 
  content: '\e0bd'; /* '' */
} 
.typcn-mortar-board:before { 
  content: '\e0be'; /* '' */
} 
.typcn-news:before { 
  content: '\e0bf'; /* '' */
} 
.typcn-notes-outline:before { 
  content: '\e0c0'; /* '' */
} 
.typcn-notes:before { 
  content: '\e0c1'; /* '' */
} 
.typcn-pen:before { 
  content: '\e0c2'; /* '' */
} 
.typcn-pencil:before { 
  content: '\e0c3'; /* '' */
} 
.typcn-phone-outline:before { 
  content: '\e0c4'; /* '' */
} 
.typcn-phone:before { 
  content: '\e0c5'; /* '' */
} 
.typcn-pi-outline:before { 
  content: '\e0c6'; /* '' */
} 
.typcn-pi:before { 
  content: '\e0c7'; /* '' */
} 
.typcn-pin-outline:before { 
  content: '\e0c8'; /* '' */
} 
.typcn-pin:before { 
  content: '\e0c9'; /* '' */
} 
.typcn-pipette:before { 
  content: '\e0ca'; /* '' */
} 
.typcn-plane-outline:before { 
  content: '\e0cb'; /* '' */
} 
.typcn-plane:before { 
  content: '\e0cc'; /* '' */
} 
.typcn-plug:before { 
  content: '\e0cd'; /* '' */
} 
.typcn-plus-outline:before { 
  content: '\e0ce'; /* '' */
} 
.typcn-plus:before { 
  content: '\e0cf'; /* '' */
} 
.typcn-point-of-interest-outline:before { 
  content: '\e0d0'; /* '' */
} 
.typcn-point-of-interest:before { 
  content: '\e0d1'; /* '' */
} 
.typcn-power-outline:before { 
  content: '\e0d2'; /* '' */
} 
.typcn-power:before { 
  content: '\e0d3'; /* '' */
} 
.typcn-printer:before { 
  content: '\e0d4'; /* '' */
} 
.typcn-puzzle-outline:before { 
  content: '\e0d5'; /* '' */
} 
.typcn-puzzle:before { 
  content: '\e0d6'; /* '' */
} 
.typcn-radar-outline:before { 
  content: '\e0d7'; /* '' */
} 
.typcn-radar:before { 
  content: '\e0d8'; /* '' */
} 
.typcn-refresh-outline:before { 
  content: '\e0d9'; /* '' */
} 
.typcn-refresh:before { 
  content: '\e0da'; /* '' */
} 
.typcn-rss-outline:before { 
  content: '\e0db'; /* '' */
} 
.typcn-rss:before { 
  content: '\e0dc'; /* '' */
} 
.typcn-scissors-outline:before { 
  content: '\e0dd'; /* '' */
} 
.typcn-scissors:before { 
  content: '\e0de'; /* '' */
} 
.typcn-shopping-bag:before { 
  content: '\e0df'; /* '' */
} 
.typcn-shopping-cart:before { 
  content: '\e0e0'; /* '' */
} 
.typcn-social-at-circular:before { 
  content: '\e0e1'; /* '' */
} 
.typcn-social-dribbble-circular:before { 
  content: '\e0e2'; /* '' */
} 
.typcn-social-dribbble:before { 
  content: '\e0e3'; /* '' */
} 
.typcn-social-facebook-circular:before { 
  content: '\e0e4'; /* '' */
} 
.typcn-social-facebook:before { 
  content: '\e0e5'; /* '' */
} 
.typcn-social-flickr-circular:before { 
  content: '\e0e6'; /* '' */
} 
.typcn-social-flickr:before { 
  content: '\e0e7'; /* '' */
} 
.typcn-social-github-circular:before { 
  content: '\e0e8'; /* '' */
} 
.typcn-social-github:before { 
  content: '\e0e9'; /* '' */
} 
.typcn-social-google-plus-circular:before { 
  content: '\e0ea'; /* '' */
} 
.typcn-social-google-plus:before { 
  content: '\e0eb'; /* '' */
} 
.typcn-social-instagram-circular:before { 
  content: '\e0ec'; /* '' */
} 
.typcn-social-instagram:before { 
  content: '\e0ed'; /* '' */
} 
.typcn-social-last-fm-circular:before { 
  content: '\e0ee'; /* '' */
} 
.typcn-social-last-fm:before { 
  content: '\e0ef'; /* '' */
} 
.typcn-social-linkedin-circular:before { 
  content: '\e0f0'; /* '' */
} 
.typcn-social-linkedin:before { 
  content: '\e0f1'; /* '' */
} 
.typcn-social-pinterest-circular:before { 
  content: '\e0f2'; /* '' */
} 
.typcn-social-pinterest:before { 
  content: '\e0f3'; /* '' */
} 
.typcn-social-skype-outline:before { 
  content: '\e0f4'; /* '' */
} 
.typcn-social-skype:before { 
  content: '\e0f5'; /* '' */
} 
.typcn-social-tumbler-circular:before { 
  content: '\e0f6'; /* '' */
} 
.typcn-social-tumbler:before { 
  content: '\e0f7'; /* '' */
} 
.typcn-social-twitter-circular:before { 
  content: '\e0f8'; /* '' */
} 
.typcn-social-twitter:before { 
  content: '\e0f9'; /* '' */
} 
.typcn-social-vimeo-circular:before { 
  content: '\e0fa'; /* '' */
} 
.typcn-social-vimeo:before { 
  content: '\e0fb'; /* '' */
} 
.typcn-social-youtube-circular:before { 
  content: '\e0fc'; /* '' */
} 
.typcn-social-youtube:before { 
  content: '\e0fd'; /* '' */
} 
.typcn-sort-alphabetically-outline:before { 
  content: '\e0fe'; /* '' */
} 
.typcn-sort-alphabetically:before { 
  content: '\e0ff'; /* '' */
} 
.typcn-sort-numerically-outline:before { 
  content: '\e100'; /* '' */
} 
.typcn-sort-numerically:before { 
  content: '\e101'; /* '' */
} 
.typcn-spanner-outline:before { 
  content: '\e102'; /* '' */
} 
.typcn-spanner:before { 
  content: '\e103'; /* '' */
} 
.typcn-spiral:before { 
  content: '\e104'; /* '' */
} 
.typcn-star-full-outline:before { 
  content: '\e105'; /* '' */
} 
.typcn-star-half-outline:before { 
  content: '\e106'; /* '' */
} 
.typcn-star-half:before { 
  content: '\e107'; /* '' */
} 
.typcn-star-outline:before { 
  content: '\e108'; /* '' */
} 
.typcn-star:before { 
  content: '\e109'; /* '' */
} 
.typcn-starburst-outline:before { 
  content: '\e10a'; /* '' */
} 
.typcn-starburst:before { 
  content: '\e10b'; /* '' */
} 
.typcn-stopwatch:before { 
  content: '\e10c'; /* '' */
} 
.typcn-support:before { 
  content: '\e10d'; /* '' */
} 
.typcn-tabs-outline:before { 
  content: '\e10e'; /* '' */
} 
.typcn-tag:before { 
  content: '\e10f'; /* '' */
} 
.typcn-tags:before { 
  content: '\e110'; /* '' */
} 
.typcn-th-large-outline:before { 
  content: '\e111'; /* '' */
} 
.typcn-th-large:before { 
  content: '\e112'; /* '' */
} 
.typcn-th-list-outline:before { 
  content: '\e113'; /* '' */
} 
.typcn-th-list:before { 
  content: '\e114'; /* '' */
} 
.typcn-th-menu-outline:before { 
  content: '\e115'; /* '' */
} 
.typcn-th-menu:before { 
  content: '\e116'; /* '' */
} 
.typcn-th-small-outline:before { 
  content: '\e117'; /* '' */
} 
.typcn-th-small:before { 
  content: '\e118'; /* '' */
} 
.typcn-thermometer:before { 
  content: '\e119'; /* '' */
} 
.typcn-thumbs-down:before { 
  content: '\e11a'; /* '' */
} 
.typcn-thumbs-ok:before { 
  content: '\e11b'; /* '' */
} 
.typcn-thumbs-up:before { 
  content: '\e11c'; /* '' */
} 
.typcn-tick-outline:before { 
  content: '\e11d'; /* '' */
} 
.typcn-tick:before { 
  content: '\e11e'; /* '' */
} 
.typcn-ticket:before { 
  content: '\e11f'; /* '' */
} 
.typcn-time:before { 
  content: '\e120'; /* '' */
} 
.typcn-times-outline:before { 
  content: '\e121'; /* '' */
} 
.typcn-times:before { 
  content: '\e122'; /* '' */
} 
.typcn-trash:before { 
  content: '\e123'; /* '' */
} 
.typcn-tree:before { 
  content: '\e124'; /* '' */
} 
.typcn-upload-outline:before { 
  content: '\e125'; /* '' */
} 
.typcn-upload:before { 
  content: '\e126'; /* '' */
} 
.typcn-user-add-outline:before { 
  content: '\e127'; /* '' */
} 
.typcn-user-add:before { 
  content: '\e128'; /* '' */
} 
.typcn-user-delete-outline:before { 
  content: '\e129'; /* '' */
} 
.typcn-user-delete:before { 
  content: '\e12a'; /* '' */
} 
.typcn-user-outline:before { 
  content: '\e12b'; /* '' */
} 
.typcn-user:before { 
  content: '\e12c'; /* '' */
} 
.typcn-vendor-android:before { 
  content: '\e12d'; /* '' */
} 
.typcn-vendor-apple:before { 
  content: '\e12e'; /* '' */
} 
.typcn-vendor-microsoft:before { 
  content: '\e12f'; /* '' */
} 
.typcn-video-outline:before { 
  content: '\e130'; /* '' */
} 
.typcn-video:before { 
  content: '\e131'; /* '' */
} 
.typcn-volume-down:before { 
  content: '\e132'; /* '' */
} 
.typcn-volume-mute:before { 
  content: '\e133'; /* '' */
} 
.typcn-volume-up:before { 
  content: '\e134'; /* '' */
} 
.typcn-volume:before { 
  content: '\e135'; /* '' */
} 
.typcn-warning-outline:before { 
  content: '\e136'; /* '' */
} 
.typcn-warning:before { 
  content: '\e137'; /* '' */
} 
.typcn-watch:before { 
  content: '\e138'; /* '' */
} 
.typcn-waves-outline:before { 
  content: '\e139'; /* '' */
} 
.typcn-waves:before { 
  content: '\e13a'; /* '' */
} 
.typcn-weather-cloudy:before { 
  content: '\e13b'; /* '' */
} 
.typcn-weather-downpour:before { 
  content: '\e13c'; /* '' */
} 
.typcn-weather-night:before { 
  content: '\e13d'; /* '' */
} 
.typcn-weather-partly-sunny:before { 
  content: '\e13e'; /* '' */
} 
.typcn-weather-shower:before { 
  content: '\e13f'; /* '' */
} 
.typcn-weather-snow:before { 
  content: '\e140'; /* '' */
} 
.typcn-weather-stormy:before { 
  content: '\e141'; /* '' */
} 
.typcn-weather-sunny:before { 
  content: '\e142'; /* '' */
} 
.typcn-weather-windy-cloudy:before { 
  content: '\e143'; /* '' */
} 
.typcn-weather-windy:before { 
  content: '\e144'; /* '' */
} 
.typcn-wi-fi-outline:before { 
  content: '\e145'; /* '' */
} 
.typcn-wi-fi:before { 
  content: '\e146'; /* '' */
} 
.typcn-wine:before { 
  content: '\e147'; /* '' */
} 
.typcn-world-outline:before { 
  content: '\e148'; /* '' */
} 
.typcn-world:before { 
  content: '\e149'; /* '' */
} 
.typcn-zoom-in-outline:before { 
  content: '\e14a'; /* '' */
} 
.typcn-zoom-in:before { 
  content: '\e14b'; /* '' */
} 
.typcn-zoom-out-outline:before { 
  content: '\e14c'; /* '' */
} 
.typcn-zoom-out:before { 
  content: '\e14d'; /* '' */
} 
.typcn-zoom-outline:before { 
  content: '\e14e'; /* '' */
} 
.typcn-zoom:before { 
  content: '\e14f'; /* '' */
}

/*  ===================================
    Farming icons
/*  =================================== */
@font-face {
    font-family: 'farming';
    src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/farming/farming.eot);
    src:url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/farming/farming.eot#iefix) format('embedded-opentype'),
        url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/farming/farming.ttf) format('truetype'),
        url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/farming/farming.woff) format('woff'),
        url(//www.santommaso.eu/wp-content/themes/gogreen/fonts/farming/farming.svg#farming) format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="fm-"], [class*=" fm-"] {
    font-family: 'farming';
    speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fm-bee:before {
    content: "\ea00";
}
.fm-bird-house:before {
    content: "\ea01";
}
.fm-bonsai:before {
    content: "\ea02";
}
.fm-butterfly:before {
    content: "\ea03";
}
.fm-cactus-1:before {
    content: "\ea04";
}
.fm-cactus:before {
    content: "\ea05";
}
.fm-cart:before {
    content: "\ea06";
}
.fm-dungarees:before {
    content: "\ea07";
}
.fm-fence2:before {
    content: "\ea08";
}
.fm-fertillizer:before {
    content: "\ea09";
}
.fm-flower-1:before {
    content: "\ea0a";
}
.fm-flower-2:before {
    content: "\ea0b";
}
.fm-flower-in-a-pot:before {
    content: "\ea0c";
}
.fm-flower3:before {
    content: "\ea0d";
}
.fm-flowers-in-a-pot-1:before {
    content: "\ea0e";
}
.fm-flowers-in-a-pot:before {
    content: "\ea0f";
}
.fm-fountain:before {
    content: "\ea10";
}
.fm-gnome:before {
    content: "\ea11";
}
.fm-grass:before {
    content: "\ea12";
}
.fm-hanging-plant:before {
    content: "\ea13";
}
.fm-hose3:before {
    content: "\ea14";
}
.fm-ladybug:before {
    content: "\ea15";
}
.fm-lamppost:before {
    content: "\ea16";
}
.fm-leaves:before {
    content: "\ea17";
}
.fm-mower:before {
    content: "\ea18";
}
.fm-pinwheel:before {
    content: "\ea19";
}
.fm-plant-1:before {
    content: "\ea1a";
}
.fm-plant2:before {
    content: "\ea1b";
}
.fm-plants:before {
    content: "\ea1c";
}
.fm-rose:before {
    content: "\ea1d";
}
.fm-seeds3:before {
    content: "\ea1e";
}
.fm-shed:before {
    content: "\ea1f";
}
.fm-tree4:before {
    content: "\ea20";
}
.fm-trowel2:before {
    content: "\ea21";
}
.fm-water-sprayer:before {
    content: "\ea22";
}
.fm-watering-can-1:before {
    content: "\ea23";
}
.fm-watering-can3:before {
    content: "\ea24";
}
.fm-calendar1:before {
    content: "\e9fe";
}
.fm-calendar2:before {
    content: "\e9ff";
}
.fm-transport:before {
    content: "\e9fd";
}
.fm-cabbage2:before {
    content: "\e996";
}
.fm-cupcake:before {
    content: "\e997";
}
.fm-plate:before {
    content: "\e998";
}
.fm-baked-muffin:before {
    content: "\e999";
}
.fm-baked-waffle:before {
    content: "\e99a";
}
.fm-bakery-shop:before {
    content: "\e99b";
}
.fm-barista:before {
    content: "\e99c";
}
.fm-berries-bowl:before {
    content: "\e99d";
}
.fm-big-cup-of-coffee:before {
    content: "\e99e";
}
.fm-big-egg:before {
    content: "\e99f";
}
.fm-blender-with-cover:before {
    content: "\e9a0";
}
.fm-boiling-breakfast:before {
    content: "\e9a1";
}
.fm-booiled-egg:before {
    content: "\e9a2";
}
.fm-box-of-juice:before {
    content: "\e9a3";
}
.fm-breakfast-delivery-service:before {
    content: "\e9a4";
}
.fm-breakfast-in-bed:before {
    content: "\e9a5";
}
.fm-breakfast-in-cafe:before {
    content: "\e9a6";
}
.fm-breakfast-menu:before {
    content: "\e9a7";
}
.fm-breakfast-products:before {
    content: "\e9a8";
}
.fm-breakfast-ready:before {
    content: "\e9a9";
}
.fm-breakfast-set:before {
    content: "\e9aa";
}
.fm-breakfast-tv-show:before {
    content: "\e9ab";
}
.fm-cafe-sign:before {
    content: "\e9ac";
}
.fm-casserole-on-burner:before {
    content: "\e9ad";
}
.fm-cereals-bowl:before {
    content: "\e9ae";
}
.fm-cheese-slice-with-holes:before {
    content: "\e9af";
}
.fm-chef-cooking:before {
    content: "\e9b0";
}
.fm-chef-hat-with-spoons:before {
    content: "\e9b1";
}
.fm-chocolate-bar:before {
    content: "\e9b2";
}
.fm-chocolate-cookie:before {
    content: "\e9b3";
}
.fm-coffe-vending-machine:before {
    content: "\e9b4";
}
.fm-coffee-bean:before {
    content: "\e9b5";
}
.fm-coffee-brew:before {
    content: "\e9b6";
}
.fm-coffee-machine:before {
    content: "\e9b7";
}
.fm-coffee-mill:before {
    content: "\e9b8";
}
.fm-coffee-pack:before {
    content: "\e9b9";
}
.fm-coffee-shop:before {
    content: "\e9ba";
}
.fm-coffee-with-cream:before {
    content: "\e9bb";
}
.fm-cook-apron:before {
    content: "\e9bc";
}
.fm-cooking-blog:before {
    content: "\e9bd";
}
.fm-cooking:before {
    content: "\e9be";
}
.fm-cornflakes-open-box:before {
    content: "\e9bf";
}
.fm-cow-milk:before {
    content: "\e9c0";
}
.fm-cream-cheese:before {
    content: "\e9c1";
}
.fm-cream-jar:before {
    content: "\e9c2";
}
.fm-croissant-for-breakfast:before {
    content: "\e9c3";
}
.fm-cup-of-hot-coffee:before {
    content: "\e9c4";
}
.fm-cup-of-hot-tea:before {
    content: "\e9c5";
}
.fm-cutlery-set:before {
    content: "\e9c6";
}
.fm-donut:before {
    content: "\e9c7";
}
.fm-dough-making:before {
    content: "\e9c8";
}
.fm-eating-breakfast:before {
    content: "\e9c9";
}
.fm-espresso-coffee:before {
    content: "\e9ca";
}
.fm-fixing-breakfast:before {
    content: "\e9cb";
}
.fm-french-press-coffee:before {
    content: "\e9cc";
}
.fm-fresh-bread:before {
    content: "\e9cd";
}
.fm-fresh-juice-with-citrus-slice:before {
    content: "\e9ce";
}
.fm-freshly-cook-meal:before {
    content: "\e9cf";
}
.fm-fried-egg-on-frying-pan:before {
    content: "\e9d0";
}
.fm-full-tea-leaf:before {
    content: "\e9d1";
}
.fm-glass-of-water:before {
    content: "\e9d2";
}
.fm-healthy-breakfast:before {
    content: "\e9d3";
}
.fm-honey-jar:before {
    content: "\e9d4";
}
.fm-hot-cacao-cup:before {
    content: "\e9d5";
}
.fm-hot-kettle:before {
    content: "\e9d6";
}
.fm-hot-pancakes:before {
    content: "\e9d7";
}
.fm-hungry-and-thristy:before {
    content: "\e9d8";
}
.fm-ice-coffee:before {
    content: "\e9d9";
}
.fm-jug-of-coffee:before {
    content: "\e9da";
}
.fm-juice-squeezing:before {
    content: "\e9db";
}
.fm-knife-and-butter:before {
    content: "\e9dc";
}
.fm-latte-coffee:before {
    content: "\e9dd";
}
.fm-maple-syrup:before {
    content: "\e9de";
}
.fm-microwave-oven:before {
    content: "\e9df";
}
.fm-milkshake-with-straw:before {
    content: "\e9e0";
}
.fm-morning-news:before {
    content: "\e9e1";
}
.fm-morning-newspaper-and-coffee:before {
    content: "\e9e2";
}
.fm-muesli-jar:before {
    content: "\e9e3";
}
.fm-nuts-bowl:before {
    content: "\e9e4";
}
.fm-pack-of-flour:before {
    content: "\e9e5";
}
.fm-pack-of-oats:before {
    content: "\e9e6";
}
.fm-piece-of-pie:before {
    content: "\e9e7";
}
.fm-porridge-bowl:before {
    content: "\e9e8";
}
.fm-recipes-book:before {
    content: "\e9e9";
}
.fm-salad-bowl:before {
    content: "\e9ea";
}
.fm-slice-toasted:before {
    content: "\e9eb";
}
.fm-sparkling-water:before {
    content: "\e9ec";
}
.fm-strawberry-jam:before {
    content: "\e9ed";
}
.fm-sugar-package:before {
    content: "\e9ee";
}
.fm-take-away-breakfast:before {
    content: "\e9ef";
}
.fm-take-away-coffee:before {
    content: "\e9f0";
}
.fm-tea-bag:before {
    content: "\e9f1";
}
.fm-toaster-with-bread:before {
    content: "\e9f2";
}
.fm-tools-for-baking:before {
    content: "\e9f3";
}
.fm-turkish-coffee:before {
    content: "\e9f4";
}
.fm-two-bacoon-slices:before {
    content: "\e9f5";
}
.fm-two-coffee-filters:before {
    content: "\e9f6";
}
.fm-two-flour-stacks:before {
    content: "\e9f7";
}
.fm-two-fruits:before {
    content: "\e9f8";
}
.fm-two-sausages:before {
    content: "\e9f9";
}
.fm-two-vegetables:before {
    content: "\e9fa";
}
.fm-vegetable-sandwich:before {
    content: "\e9fb";
}
.fm-yogurt-with-spoon:before {
    content: "\e9fc";
}
.fm-axe:before {
    content: "\e900";
}
.fm-bale-of-hay:before {
    content: "\e901";
}
.fm-barn:before {
    content: "\e902";
}
.fm-barrell:before {
    content: "\e903";
}
.fm-bees:before {
    content: "\e904";
}
.fm-billhook:before {
    content: "\e905";
}
.fm-boot:before {
    content: "\e906";
}
.fm-bucket:before {
    content: "\e907";
}
.fm-chainsaw:before {
    content: "\e908";
}
.fm-composter:before {
    content: "\e909";
}
.fm-cow:before {
    content: "\e90a";
}
.fm-digging-bar:before {
    content: "\e90b";
}
.fm-duck:before {
    content: "\e90c";
}
.fm-eggs:before {
    content: "\e90d";
}
.fm-farmer:before {
    content: "\e90e";
}
.fm-field:before {
    content: "\e90f";
}
.fm-fruit:before {
    content: "\e910";
}
.fm-glove:before {
    content: "\e911";
}
.fm-greenhouse:before {
    content: "\e912";
}
.fm-growing-plant:before {
    content: "\e913";
}
.fm-hen:before {
    content: "\e914";
}
.fm-hoe:before {
    content: "\e915";
}
.fm-honey:before {
    content: "\e916";
}
.fm-horseshoe:before {
    content: "\e917";
}
.fm-hose:before {
    content: "\e918";
}
.fm-milk:before {
    content: "\e919";
}
.fm-pig:before {
    content: "\e91a";
}
.fm-plant:before {
    content: "\e91b";
}
.fm-rabbit:before {
    content: "\e91c";
}
.fm-riddle-tool:before {
    content: "\e91d";
}
.fm-roak:before {
    content: "\e91e";
}
.fm-sack:before {
    content: "\e91f";
}
.fm-scythe:before {
    content: "\e920";
}
.fm-shears:before {
    content: "\e921";
}
.fm-sheep:before {
    content: "\e922";
}
.fm-shovel-1:before {
    content: "\e923";
}
.fm-shovel:before {
    content: "\e924";
}
.fm-silo:before {
    content: "\e925";
}
.fm-tractor:before {
    content: "\e926";
}
.fm-trailer:before {
    content: "\e927";
}
.fm-tree:before {
    content: "\e928";
}
.fm-trowel:before {
    content: "\e929";
}
.fm-truck:before {
    content: "\e92a";
}
.fm-vegetables:before {
    content: "\e92b";
}
.fm-watering-can:before {
    content: "\e92c";
}
.fm-well:before {
    content: "\e92d";
}
.fm-wheat:before {
    content: "\e92e";
}
.fm-wheelbarrow:before {
    content: "\e92f";
}
.fm-wind-mill:before {
    content: "\e930";
}
.fm-wind-mill2:before {
    content: "\e931";
}
.fm-chicken:before {
    content: "\e932";
}
.fm-cow2:before {
    content: "\e933";
}
.fm-eggs2:before {
    content: "\e934";
}
.fm-vegetable-basket:before {
    content: "\e935";
}
.fm-farm-tools:before {
    content: "\e936";
}
.fm-farm:before {
    content: "\e937";
}
.fm-farmer2:before {
    content: "\e938";
}
.fm-field2:before {
    content: "\e939";
}
.fm-greenhouse2:before {
    content: "\e93a";
}
.fm-harvest:before {
    content: "\e93b";
}
.fm-hay-roll:before {
    content: "\e93c";
}
.fm-honey2:before {
    content: "\e93d";
}
.fm-meat:before {
    content: "\e93e";
}
.fm-milk-products:before {
    content: "\e93f";
}
.fm-pig2:before {
    content: "\e940";
}
.fm-rye:before {
    content: "\e941";
}
.fm-sheep2:before {
    content: "\e942";
}
.fm-tractor2:before {
    content: "\e943";
}
.fm-tree2:before {
    content: "\e944";
}
.fm-vegetables2:before {
    content: "\e945";
}
.fm-apple:before {
    content: "\e946";
}
.fm-barn2:before {
    content: "\e947";
}
.fm-barrow:before {
    content: "\e948";
}
.fm-basket:before {
    content: "\e949";
}
.fm-bench:before {
    content: "\e94a";
}
.fm-birdhouse:before {
    content: "\e94b";
}
.fm-boot2:before {
    content: "\e94c";
}
.fm-bucket2:before {
    content: "\e94d";
}
.fm-cabbage:before {
    content: "\e94e";
}
.fm-carrot:before {
    content: "\e94f";
}
.fm-cultivator:before {
    content: "\e950";
}
.fm-fence:before {
    content: "\e951";
}
.fm-flower:before {
    content: "\e952";
}
.fm-flower2:before {
    content: "\e953";
}
.fm-flowers:before {
    content: "\e954";
}
.fm-garden:before {
    content: "\e955";
}
.fm-gardener:before {
    content: "\e956";
}
.fm-gardener2:before {
    content: "\e957";
}
.fm-glove2:before {
    content: "\e958";
}
.fm-hat:before {
    content: "\e959";
}
.fm-hose2:before {
    content: "\e95a";
}
.fm-ladder:before {
    content: "\e95b";
}
.fm-lawn-mower:before {
    content: "\e95c";
}
.fm-leaf:before {
    content: "\e95d";
}
.fm-onion:before {
    content: "\e95e";
}
.fm-pear:before {
    content: "\e95f";
}
.fm-pitchfork:before {
    content: "\e960";
}
.fm-pot:before {
    content: "\e961";
}
.fm-pruning-shears:before {
    content: "\e962";
}
.fm-pruning-shears2:before {
    content: "\e963";
}
.fm-radish:before {
    content: "\e964";
}
.fm-rain:before {
    content: "\e965";
}
.fm-rake-1:before {
    content: "\e966";
}
.fm-rake2:before {
    content: "\e967";
}
.fm-rake3:before {
    content: "\e968";
}
.fm-saw:before {
    content: "\e969";
}
.fm-scissors:before {
    content: "\e96a";
}
.fm-seeds:before {
    content: "\e96b";
}
.fm-seeds2:before {
    content: "\e96c";
}
.fm-shovel3:before {
    content: "\e96d";
}
.fm-shovel4:before {
    content: "\e96e";
}
.fm-shovel5:before {
    content: "\e96f";
}
.fm-shovel6:before {
    content: "\e970";
}
.fm-spray:before {
    content: "\e971";
}
.fm-sprout:before {
    content: "\e972";
}
.fm-sprout2:before {
    content: "\e973";
}
.fm-sun:before {
    content: "\e974";
}
.fm-tree3:before {
    content: "\e975";
}
.fm-veranda:before {
    content: "\e976";
}
.fm-watering-can2:before {
    content: "\e977";
}
.fm-amusement-park:before {
    content: "\e978";
}
.fm-autumn:before {
    content: "\e979";
}
.fm-castle:before {
    content: "\e97a";
}
.fm-circus:before {
    content: "\e97b";
}
.fm-city:before {
    content: "\e97c";
}
.fm-desert:before {
    content: "\e97d";
}
.fm-dunes:before {
    content: "\e97e";
}
.fm-factory:before {
    content: "\e97f";
}
.fm-field3:before {
    content: "\e980";
}
.fm-field-and-forest:before {
    content: "\e981";
}
.fm-field-and-windmill:before {
    content: "\e982";
}
.fm-field4:before {
    content: "\e983";
}
.fm-forest:before {
    content: "\e984";
}
.fm-grove:before {
    content: "\e985";
}
.fm-hay-rolls:before {
    content: "\e986";
}
.fm-island:before {
    content: "\e987";
}
.fm-lake:before {
    content: "\e988";
}
.fm-mountains:before {
    content: "\e989";
}
.fm-mountains2:before {
    content: "\e98a";
}
.fm-rain2:before {
    content: "\e98b";
}
.fm-river:before {
    content: "\e98c";
}
.fm-sea-shore:before {
    content: "\e98d";
}
.fm-spring:before {
    content: "\e98e";
}
.fm-suburb:before {
    content: "\e98f";
}
.fm-summer:before {
    content: "\e990";
}
.fm-sunset-at-sea:before {
    content: "\e991";
}
.fm-tree-alone:before {
    content: "\e992";
}
.fm-valley:before {
    content: "\e993";
}
.fm-waterfall:before {
    content: "\e994";
}
.fm-winter:before {
    content: "\e995";
}/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author      Cornel Boppart <cornel@bopp-art.com>
 * @copyright   Author
 *
 * @version     2.5.0 (11/03/2018)
 */
[class*='lightcase-icon-']:before {
  font-family: 'gogreen', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e82e';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e82e';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e829';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e846';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e847';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e83a';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}
@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}
/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}
/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}
/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 99999;
  width: 1.123em;
  height: auto;
  line-height: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}
/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 99999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}
/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}
/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}
/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}
/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  z-index: 99999;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  font-size: 20px;
  outline: none;
}
/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}
/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}
/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}
@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
    position: fixed;
    z-index: 99999;
    display: none;
    width: 100%;
    min-height: 100%;
    top: -9999px;
    bottom: -9999px;
    left: 0;
    background: #333;
}
@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}