@charset "UTF-8";
.cs-animation {
  visibility: hidden;
}

.cs-start-animation {
  visibility: visible;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.cs-start-animation.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cs-start-animation.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.cs-start-animation.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(20px);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(20px);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.cs-start-animation.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cs-start-animation.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cs-start-animation.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.cs-start-animation.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.cs-start-animation.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.cs-start-animation.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -ms-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -ms-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.cs-start-animation.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -ms-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -ms-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.cs-start-animation.swing {
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -ms-transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -ms-transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -ms-transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -ms-transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -ms-transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -ms-transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -ms-transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -ms-transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.cs-start-animation.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -ms-transform: translateX(-25%) rotate(-5deg);
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -ms-transform: translateX(20%) rotate(3deg);
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -ms-transform: translateX(-15%) rotate(-3deg);
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -ms-transform: translateX(10%) rotate(2deg);
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -ms-transform: translateX(-5%) rotate(-1deg);
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -ms-transform: translateX(-25%) rotate(-5deg);
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -ms-transform: translateX(20%) rotate(3deg);
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -ms-transform: translateX(-15%) rotate(-3deg);
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -ms-transform: translateX(10%) rotate(2deg);
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -ms-transform: translateX(-5%) rotate(-1deg);
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.cs-start-animation.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -ms-transform: scale(0.3);
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -ms-transform: scale(0.3);
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.cs-start-animation.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(30px);
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(30px);
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.cs-start-animation.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(2000px);
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -ms-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(2000px);
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -ms-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.cs-start-animation.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(-2000px);
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(-2000px);
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cs-start-animation.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(2000px);
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(2000px);
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cs-start-animation.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.cs-fade {
  opacity: 0;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.cs-fade.in {
  opacity: 1;
}

.cs-start {
  cursor: pointer;
}

.cs-start-icon {
  color: #fff;
  font-size: 20px;
  padding: 12px;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: startdown;
  animation-name: startdown;
  border-radius: 100px;
  -webkit-transition: all 2s;
  transition: all 2s;
}

.cs-start-icon:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes startdown {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes startdown {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.cs-start-animation.startdown {
  -webkit-animation-name: startdown;
  animation-name: startdown;
}

.cs-loader {
  display: none;
  position: relative;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: 10px 0 10px -10px;
  background: #ccc;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
}

.cs-loader:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  margin-top: -2px;
  margin-left: -2px;
  background-color: white;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: csLoader;
  animation-name: csLoader;
  border-radius: 4px;
}

@-webkit-keyframes csLoader {
  0% {
    -ms-transform: rotate(0deg) translateX(-6px) rotate(0deg);
    -webkit-transform: rotate(0deg) translateX(-6px) rotate(0deg);
    transform: rotate(0deg) translateX(-6px) rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg) translateX(-6px) rotate(-360deg);
    -webkit-transform: rotate(360deg) translateX(-6px) rotate(-360deg);
    transform: rotate(360deg) translateX(-6px) rotate(-360deg);
  }
}
@keyframes csLoader {
  0% {
    -ms-transform: rotate(0deg) translateX(-6px) rotate(0deg);
    -webkit-transform: rotate(0deg) translateX(-6px) rotate(0deg);
    transform: rotate(0deg) translateX(-6px) rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg) translateX(-6px) rotate(-360deg);
    -webkit-transform: rotate(360deg) translateX(-6px) rotate(-360deg);
    transform: rotate(360deg) translateX(-6px) rotate(-360deg);
  }
}
.cs-start-animation.csLoader {
  -webkit-animation-name: csLoader;
  animation-name: csLoader;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../../images/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../../images/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../../images/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../../images/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../../images/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../../images/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
#fancybox-buttons {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 8050;
}

#fancybox-buttons.top {
  top: 10px;
}

#fancybox-buttons.bottom {
  bottom: 10px;
}

#fancybox-buttons ul {
  display: block;
  width: 166px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid #111;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: #323232;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #444444), color-stop(50%, #343434), color-stop(50%, #292929), color-stop(100%, #333333));
  background: -webkit-linear-gradient(top, #444444 0%, #343434 50%, #292929 50%, #333333 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#444444), color-stop(50%, #343434), color-stop(50%, #292929), to(#333333));
  background: linear-gradient(top, #444444 0%, #343434 50%, #292929 50%, #333333 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
  float: left;
  margin: 0;
  padding: 0;
}

#fancybox-buttons a {
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-color: transparent;
  background-image: url("../../images/fancybox_buttons.png");
  background-repeat: no-repeat;
  outline: none;
  opacity: 0.8;
}

#fancybox-buttons a:hover {
  opacity: 1;
}

#fancybox-buttons a.btnPrev {
  background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
  background-position: -33px 0;
  border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
  background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
  background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
  background-position: 3px -60px;
  border-left: 1px solid #111;
  border-right: 1px solid #3e3e3e;
  width: 35px;
}

#fancybox-buttons a.btnToggleOn {
  background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
  border-left: 1px solid #111;
  width: 35px;
  background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
  opacity: 0.4;
  cursor: default;
}

#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 8050;
}

#fancybox-thumbs.bottom {
  bottom: 2px;
}

#fancybox-thumbs.top {
  top: 2px;
}

#fancybox-thumbs ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#fancybox-thumbs ul li {
  float: left;
  padding: 1px;
  opacity: 0.5;
}

#fancybox-thumbs ul li.active {
  opacity: 0.75;
  padding: 0;
  border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
  opacity: 1;
}

#fancybox-thumbs ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
  outline: none;
}

#fancybox-thumbs ul li img {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  max-width: none;
}

/*
  Custom Styles
*/
.fancybox-overlay *,
#fancybox-thumbs *,
#fancybox-buttons * {
  box-sizing: content-box;
}

.fancybox-skin {
  border-radius: 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container:before, .container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1260px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.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, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (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-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .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-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.3333333333%;
  }

  .col-md-push-2 {
    left: 16.6666666667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.3333333333%;
  }

  .col-md-push-5 {
    left: 41.6666666667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.3333333333%;
  }

  .col-md-push-8 {
    left: 66.6666666667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.3333333333%;
  }

  .col-md-push-11 {
    left: 91.6666666667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (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, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .nav-portfolio .cs-prev {
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
  }

  .nav-portfolio .cs-next {
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
  }

  .nav-portfolio a {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
        transform: scale(0.6);
  }
}
@media (max-width: 991px) {
  .col-md-9 + .cs-sidebar-clear:before, .col-md-9 + .cs-sidebar-clear:after,
  .cs-sidebar-clear + .col-md-9:before,
  .cs-sidebar-clear + .col-md-9:after {
    content: " ";
    display: table;
  }

  .col-md-9 + .cs-sidebar-clear:after,
  .cs-sidebar-clear + .col-md-9:after {
    clear: both;
  }

  .col-md-9 + .cs-sidebar-clear {
    margin-top: 40px;
  }

  .blog-masonry .isotope-item {
    width: 100%;
  }

  .blog-layout-medium .entry-header {
    text-align: left !important;
  }

  .blog-layout-medium .entry-meta > span {
    display: inline-block !important;
    margin-right: 10px !important;
    margin-bottom: 4px !important;
  }
}
@media (max-width: 767px) {
  .cs-one-half,
  .cs-one-third,
  .cs-one-fourth,
  .cs-one-fifth,
  .cs-one-sixth,
  .cs-two-third,
  .cs-three-fourth,
  .cs-four-fifth,
  .cs-five-sixth {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cs-one-fourth,
  .cs-one-fifth,
  .cs-one-sixth {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cs-table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }

  .cs-table-responsive > .cs-table {
    margin-bottom: 0;
  }

  .cs-table-responsive > .cs-table > thead > tr > th,
  .cs-table-responsive > .cs-table > thead > tr > td,
  .cs-table-responsive > .cs-table > tbody > tr > th,
  .cs-table-responsive > .cs-table > tbody > tr > td,
  .cs-table-responsive > .cs-table > tfoot > tr > th,
  .cs-table-responsive > .cs-table > tfoot > tr > td {
    white-space: nowrap;
  }

  .cs-table-responsive > .cs-table-bordered {
    border: 0;
  }

  .cs-table-responsive > .cs-table-bordered > thead > tr > th:first-child,
  .cs-table-responsive > .cs-table-bordered > thead > tr > td:first-child,
  .cs-table-responsive > .cs-table-bordered > tbody > tr > th:first-child,
  .cs-table-responsive > .cs-table-bordered > tbody > tr > td:first-child,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr > th:first-child,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .cs-table-responsive > .cs-table-bordered > thead > tr > th:last-child,
  .cs-table-responsive > .cs-table-bordered > thead > tr > td:last-child,
  .cs-table-responsive > .cs-table-bordered > tbody > tr > th:last-child,
  .cs-table-responsive > .cs-table-bordered > tbody > tr > td:last-child,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr > th:last-child,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .cs-table-responsive > .cs-table-bordered > tbody > tr:last-child > th,
  .cs-table-responsive > .cs-table-bordered > tbody > tr:last-child > td,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr:last-child > th,
  .cs-table-responsive > .cs-table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px;
  }

  .rsDefault .rsThumbsHor {
    height: 44px;
  }

  .rsDefault .rsThumbsVer {
    width: 59px;
  }
}
@media (max-width: 991px) {
  .woocommerce .cart-collaterals .cross-sells,
  .woocommerce-page .cart-collaterals .cross-sells {
    display: none !important;
  }

  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .cart_totals {
    width: 100% !important;
  }

  .woocommerce .col2-set .col-4,
  .woocommerce .col2-set .col-3,
  .woocommerce .col2-set .col-2,
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-4,
  .woocommerce-page .col2-set .col-3,
  .woocommerce-page .col2-set .col-2,
  .woocommerce-page .col2-set .col-1 {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 782px) {
  .related-posts-thumbnail ul li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .related-posts-thumbnail ul li img {
    width: 100%;
  }
}
/**
 *
 * Block alignment optimization.
 *
 */
.page-content > *.alignleft {
  float: left;
  max-width: -webkit-calc(4 * (100vw / 12));
  max-width: calc(4 * (100vw / 12));
  margin: 7px 24px 10px 0;
}

.page-content > *.alignright {
  float: right;
  max-width: -webkit-calc(4 * (100vw / 12));
  max-width: calc(4 * (100vw / 12));
  margin: 7px 0 10px 24px;
}

.page-content > *.aligncenter {
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-content > *.alignfull:not(#buddypress) {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: -webkit-calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
}

.page-content > *.alignwide:not(#buddypress) {
  position: relative;
  width: 80vw;
  left: 50%;
  right: 50%;
  margin-left: -40vw;
  margin-right: -40vw;
}

@media (max-width: 992px) {
  .page-content > *.alignwide:not(#buddypress) {
    width: 100%;
    left: auto;
    right: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
/*
 *
 * Block: Video
 *
 **/
.wp-block-video video {
  width: 100%;
}

/*
 *
 * Block: Pullquote
 *
 **/
.wp-block-pullquote {
  width: 100%;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  margin: 10px 0;
}

.wp-block-pullquote blockquote {
  border: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}

/**
 *
 * Block: Button
 *
 */
.wp-block-button a {
  text-decoration: none;
}

/**
 *
 * Block: Categories & Archives, Latest Posts
 *
 */
.wp-block-latest-posts,
.wp-block-archives,
.wp-block-categories {
  padding: 0;
  list-style: none;
}

.wp-block-latest-posts li,
.wp-block-archives li,
.wp-block-categories li {
  margin-bottom: 5px;
}

.wp-block-latest-posts a,
.wp-block-archives a,
.wp-block-categories a {
  color: #333;
}

.wp-block-latest-posts a:before,
.wp-block-archives a:before,
.wp-block-categories a:before {
  font-family: "FontAwesome";
  content: "\f0f6";
  display: inline-block;
  margin-right: 5px;
}

/**
 *
 * Block: Latest Comments
 *
 */
.wp-block-latest-comments {
  padding: 0;
}

/**
 *
 * Block: Removed Top Padding
 *
 */
.wp-hide-padding-top {
  margin-top: -40px;
}

/*
 *
 *
 * ---------------------------------------------------------
 * SHORTCODES SITEMAP
 * ---------------------------------------------------------
 * 01. BUTTON
 * 02. TAB
 * 03. ACCORDION
 * 04. TOGGLE
 * 05. ALERT
 * 06. CALLOUT
 * 07. ICONBOX
 * 08. FANCYBOX
 * 09. PROGRESS BAR
 * 10. COUNTER
 * 11. PIE CHART
 * 12. PROGRESS ICON
 * 13. BLOCKQUOTE
 * 14. TESTIMONIAL
 * 15. SOCIAL ICONS
 * 16. DIVIDER
 * 17. DROPCAP
 * 18. ICONLIST
 * 19. HIGHLIGHT
 * 20. CLIENT
 * 21. PRICING
 * 22. TABLE
 * 23. CODE-PRE
 * 24. TOOLTIP-POPOVER
 * 25. FAQ
 * 26. MAP
 * 27. SPACE
 * 28. DIVIDER-ICON
 * 29. CONTACT FORMS
 * 30. LABEL
 * 31. CAROUSEL
 * 32. RESPONSIVE CONTAINER
 * 33. COUNTDOWN
 * 34. MODAL
 * 35. COLUMNS
 * 36. SECTION
 * 37. CLEAR
 * 38. OTHERS
 * 39. TEAM
 * ---------------------------------------------------------
 *
 *
 */
/**
 * ---------------------------------------------------------
 * 01. BUTTON
 * ---------------------------------------------------------
 */
.cs-btn {
  display: inline-block;
  vertical-align: middle;
  margin: 3px 3px 3px 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: 2px solid transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.cs-btn:hover {
  text-decoration: none;
}

.cs-btn:focus {
  outline: none;
}

.cs-btn-flat {
  color: #fff !important;
}

.cs-btn-flat:hover {
  color: #fff !important;
}

.cs-btn-flat-accent {
  background-color: #293951;
}

.cs-btn-flat-accent:hover {
  background-color: #333333;
}

.cs-btn-flat-blue {
  background-color: #293951;
}

.cs-btn-flat-blue:hover {
  background-color: #333333;
}

.cs-btn-flat-green {
  background-color: #5cb85c;
}

.cs-btn-flat-green:hover {
  background-color: #80c780;
}

.cs-btn-flat-red {
  background-color: #d9534f;
}

.cs-btn-flat-red:hover {
  background-color: #e27c79;
}

.cs-btn-flat-yellow {
  background-color: #f0ad4e;
}

.cs-btn-flat-yellow:hover {
  background-color: #f4c37d;
}

.cs-btn-flat-gray {
  background-color: #666666;
}

.cs-btn-flat-gray:hover {
  background-color: gray;
}

.cs-btn-flat-black {
  background-color: #222222;
}

.cs-btn-flat-black:hover {
  background-color: #3c3c3c;
}

.cs-btn-flat-white {
  color: #222222 !important;
  background-color: #ffffff;
}

.cs-btn-flat-white:hover {
  color: #ffffff !important;
  background-color: #222222;
}

.cs-btn-outlined:hover {
  color: #fff !important;
}

.cs-btn-outlined-accent {
  color: #293951 !important;
  border-color: #293951;
}

.cs-btn-outlined-accent:hover {
  background-color: #293951;
}

.cs-btn-outlined-blue {
  color: #293951 !important;
  border-color: #293951;
}

.cs-btn-outlined-blue:hover {
  background-color: #293951;
}

.cs-btn-outlined-green {
  color: #5cb85c !important;
  border-color: #5cb85c;
}

.cs-btn-outlined-green:hover {
  background-color: #5cb85c;
}

.cs-btn-outlined-red {
  color: #d9534f !important;
  border-color: #d9534f;
}

.cs-btn-outlined-red:hover {
  background-color: #d9534f;
}

.cs-btn-outlined-yellow {
  color: #f0ad4e !important;
  border-color: #f0ad4e;
}

.cs-btn-outlined-yellow:hover {
  background-color: #f0ad4e;
}

.cs-btn-outlined-gray {
  color: #666666 !important;
  border-color: #666666;
}

.cs-btn-outlined-gray:hover {
  background-color: #666666;
}

.cs-btn-outlined-black {
  color: #222222 !important;
  border-color: #222222;
}

.cs-btn-outlined-black:hover {
  background-color: #222222;
}

.cs-btn-outlined-white {
  color: #ffffff !important;
  border-color: #ffffff;
}

.cs-btn-outlined-white:hover {
  color: #222222 !important;
  background-color: #ffffff;
}

.cs-btn-3d {
  position: relative;
  top: 0;
  border: none;
  color: #fff !important;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.cs-btn-3d:active {
  top: 0.30em;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.cs-btn-3d-accent {
  background-color: #293951;
  box-shadow: 0 0.3em 0 #3071a9;
}

.cs-btn-3d-blue {
  background-color: #293951;
  box-shadow: 0 0.3em 0 #3071a9;
}

.cs-btn-3d-green {
  background-color: #5cb85c;
  box-shadow: 0 0.3em 0 #449d44;
}

.cs-btn-3d-red {
  background-color: #d9534f;
  box-shadow: 0 0.3em 0 #c9302c;
}

.cs-btn-3d-yellow {
  background-color: #f0ad4e;
  box-shadow: 0 0.3em 0 #ec971f;
}

.cs-btn-3d-gray {
  background-color: #666666;
  box-shadow: 0 0.3em 0 #4d4d4d;
}

.cs-btn-3d-black {
  background-color: #222222;
  box-shadow: 0 0.3em 0 #090909;
}

.cs-btn-3d-white {
  color: #222222 !important;
  background-color: #ffffff;
  box-shadow: 0 0.3em 0 #e6e6e6;
}

.cs-btn-rounded {
  border-radius: 0.2em;
}

.cs-btn-pill {
  border-radius: 30px;
}

.cs-btn-circle {
  width: 6em;
  height: 6em;
  line-height: 6em !important;
  padding: 0 !important;
  border-radius: 100%;
}

.cs-btn-flat.cs-btn-circle,
.cs-btn-flat.cs-btn-pill {
  border: none;
}

.cs-btn-xxs {
  font-size: 11px;
  padding: 6px 12px;
  line-height: 1.2244897963;
}

.cs-btn-xs {
  font-size: 12px;
  padding: 6px 16px;
  line-height: 1.2244897963;
}

.cs-btn-sm {
  font-size: 13px;
  padding: 7px 18px;
  line-height: 1.3265306126;
}

.cs-btn-md {
  font-size: 14px;
  padding: 8px 20px;
  line-height: 1.428571429;
}

.cs-btn-lg {
  font-size: 16px;
  padding: 8px 24px;
  line-height: 1.6326530617;
}

.cs-btn-xl {
  font-size: 18px;
  padding: 8px 24px;
  line-height: 1.8367346944;
}

.cs-btn-xxl {
  font-size: 30px;
  padding: 15px 30px;
  line-height: 1.8367346944;
  border-width: 5px;
}

.cs-btn-block {
  display: block !important;
  margin-left: 0;
  margin-right: 0;
}

.cs-btn-no-bold {
  font-weight: normal;
}

.cs-btn-no-uppercase {
  text-transform: none;
}

.cs-btn-no-transition {
  -webkit-transition: none;
  transition: none;
}

.cs-btn .cs-in {
  font-size: 1em;
  line-height: 3px;
  margin: -2px 6px 0 -3px;
  vertical-align: middle;
  display: inline-block;
}

.cs-btn-align.text-left {
  display: inline-block;
}

.cs-btn-align.text-center {
  display: block;
}

.cs-btn-align.text-center .cs-btn {
  margin-left: 3px;
}

.cs-btn-align.text-right {
  float: right;
}

.cs-btn-align.text-right .cs-btn {
  margin-left: 3px;
  margin-right: 0;
}

.cs-btn-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cs-btn-group {
  text-align: center;
  white-space: nowrap;
}

.cs-btn-group .cs-btn:first-child {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cs-btn-group .cs-btn:not(:first-child):not(:last-child) {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.cs-btn-group .cs-btn:last-child {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cs-btn-group .cs-btn {
  margin: 0;
}

/**
 * ---------------------------------------------------------
 * 02. TAB
 * ---------------------------------------------------------
 */
.cs-tab {
  position: relative;
  float: left;
  width: 100%;
}

.cs-tab .cs-tab-nav {
  position: relative;
}

.cs-tab .cs-tab-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cs-tab .cs-tab-nav ul li {
  position: relative;
}

.cs-tab .cs-tab-nav ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.cs-tab .cs-tab-nav ul li a:hover {
  color: #293951;
}

.cs-tab .cs-tab-nav ul li.active a {
  color: #293951;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.cs-tab .cs-tab-nav ul li.active a:after {
  background-color: #293951;
}

.cs-tab .cs-tab-nav .cs-in {
  margin-right: 5px;
}

.cs-tab .cs-tab-nav:before,
.cs-tab .cs-tab-nav:after,
.cs-tab .cs-tab-nav li.active a:after {
  content: "";
  position: absolute;
}

.cs-tab .cs-tab-content {
  display: none;
}

.cs-tab .cs-tab-content.active {
  display: block;
}

.cs-tab.cs-tab-default .cs-tab-nav {
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 -1px 0 #e8e8e8 inset;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #f5f5f5), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(bottom, #f5f5f5 0%, #ffffff 8px);
  background-image: linear-gradient(to top, #f5f5f5 0%, #ffffff 8px);
}

.cs-tab.cs-tab-default .cs-tab-nav:before, .cs-tab.cs-tab-default .cs-tab-nav:after {
  height: 100%;
  width: 30px;
  bottom: 0;
}

.cs-tab.cs-tab-default .cs-tab-nav:before {
  left: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, #ffffff, rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.cs-tab.cs-tab-default .cs-tab-nav:after {
  right: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(right, #ffffff, rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, right top, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.cs-tab.cs-tab-default .cs-tab-nav li {
  display: inline-block;
  /*
  display: table-cell;
  width: 1%;
  text-align: center;
  */
}

.cs-tab.cs-tab-default .cs-tab-nav li.active a {
  border-bottom-color: transparent;
}

.cs-tab.cs-tab-default .cs-tab-nav li.active a:after {
  height: 2px;
  top: -1px;
  left: -1px;
  right: -1px;
}

.cs-tab.cs-tab-default .cs-tab-contents {
  clear: both;
  float: left;
  width: 100%;
}

.cs-tab.cs-tab-default .cs-tab-contents .cs-tab-content {
  padding: 20px 0;
}

.cs-tab.cs-tab-left .cs-tab-nav {
  float: left;
  width: 15%;
  padding: 30px 0;
  box-shadow: -1px 0 0 #e8e8e8 inset;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f5f5f5), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(right, #f5f5f5 0%, #ffffff 8px);
  background-image: linear-gradient(to left, #f5f5f5 0%, #ffffff 8px);
}

.cs-tab.cs-tab-left .cs-tab-nav:before, .cs-tab.cs-tab-left .cs-tab-nav:after {
  height: 30px;
  width: 100%;
  right: 0;
}

.cs-tab.cs-tab-left .cs-tab-nav:before {
  top: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(#ffffff, rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
}

.cs-tab.cs-tab-left .cs-tab-nav:after {
  bottom: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

.cs-tab.cs-tab-left .cs-tab-nav a {
  margin: 4px 0;
}

.cs-tab.cs-tab-left .cs-tab-nav li.active a {
  box-shadow: -1px 0 3px rgba(0, 0, 0, 0.05);
  border-right-color: transparent;
}

.cs-tab.cs-tab-left .cs-tab-nav li.active a:after {
  width: 2px;
  top: -1px;
  bottom: -1px;
  left: -1px;
}

.cs-tab.cs-tab-left .cs-tab-contents {
  float: right;
  width: 85%;
}

.cs-tab.cs-tab-left .cs-tab-contents .cs-tab-content {
  padding: 20px;
}

.cs-tab.cs-tab-right .cs-tab-nav {
  float: right;
  width: 15%;
  padding: 30px 0;
  box-shadow: 1px 0 0 #e8e8e8 inset;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 8 50%, color-stop(0%, #f5f5f5), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(left, #f5f5f5 0%, #ffffff 8px);
  background-image: linear-gradient(to right, #f5f5f5 0%, #ffffff 8px);
}

.cs-tab.cs-tab-right .cs-tab-nav:before, .cs-tab.cs-tab-right .cs-tab-nav:after {
  height: 30px;
  width: 100%;
  right: 0;
}

.cs-tab.cs-tab-right .cs-tab-nav:before {
  top: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(#ffffff, rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
}

.cs-tab.cs-tab-right .cs-tab-nav:after {
  bottom: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

.cs-tab.cs-tab-right .cs-tab-nav a {
  margin: 4px 0;
}

.cs-tab.cs-tab-right .cs-tab-nav li.active a {
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
  border-left-color: transparent;
}

.cs-tab.cs-tab-right .cs-tab-nav li.active a:after {
  width: 2px;
  top: -1px;
  bottom: -1px;
  right: -1px;
}

.cs-tab.cs-tab-right .cs-tab-contents {
  float: left;
  width: 85%;
}

.cs-tab.cs-tab-right .cs-tab-contents .cs-tab-content {
  padding: 20px;
}

.cs-tab.cs-tab-nav-center .cs-tab-nav {
  text-align: center;
}

.cs-tab.cs-tab-nav-right .cs-tab-nav {
  text-align: right;
}

.cs-tab .cs-tab-nav-fit li {
  display: table-cell !important;
  width: 1% !important;
  text-align: center;
}

/**
 * ---------------------------------------------------------
 * 03. ACCORDION
 * ---------------------------------------------------------
 */
.cs-accordions {
  margin-bottom: 10px;
}

.cs-accordion {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.cs-accordion:last-child {
  border-bottom: none;
}

.cs-accordion-title {
  margin: 0;
  cursor: pointer;
  font-size: inherit;
}

.cs-accordion-title .cs-in {
  width: 1.5em;
  color: #293951;
}

.cs-anim-icon:before {
  content: "\f054";
  display: inline-block;
  -ms-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.selected .cs-anim-icon:before {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.cs-accordion-content {
  display: none;
  padding-top: 15px;
}

/**
 * ---------------------------------------------------------
 * 04. TOGGLE
 * ---------------------------------------------------------
 */
.cs-toggle {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.cs-toggle.cs-no-border {
  border: none;
}

.cs-toggle-title {
  margin: 0;
  font-size: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cs-toggle-title .cs-in {
  width: 1.5em;
  color: #293951;
}

.cs-toggle-content {
  display: none;
  padding-top: 15px;
}

/**
 * ---------------------------------------------------------
 * 05. ALERT
 * ---------------------------------------------------------
 */
.cs-alert, .ninja-forms-field-error,
.ninja-forms-success-msg,
.ninja-forms-error-msg,
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 2px;
}

.cs-alert .cs-in, .ninja-forms-field-error .cs-in,
.ninja-forms-success-msg .cs-in,
.ninja-forms-error-msg .cs-in,
.wpcf7-response-output .cs-in,
.wpcf7-not-valid-tip .cs-in {
  margin-right: 6px;
}

.cs-alert:last-child, .ninja-forms-field-error:last-child,
.ninja-forms-success-msg:last-child,
.ninja-forms-error-msg:last-child,
.wpcf7-response-output:last-child,
.wpcf7-not-valid-tip:last-child {
  margin-bottom: 0;
}

.cs-alert-dismissable {
  padding-right: 35px;
}

.cs-alert-dismissable .cs-alert-close {
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -11px;
  font-size: 11px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.cs-alert-dismissable .cs-alert-close:hover {
  opacity: 1;
}

.cs-alert-success, .ninja-forms-success-msg,
.wpcf7-mail-sent-ok {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.cs-alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.cs-alert-warning, .ninja-forms-error-msg,
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-validation-errors {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.cs-alert-danger, .ninja-forms-field-error,
.wpcf7-not-valid-tip {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.cs-alert-note {
  background-color: #e8e8e8;
  border-color: #dbdbdb;
  color: #555;
}

.cs-alert-outlined {
  background: none !important;
}

/**
 * ---------------------------------------------------------
 * 06. CALLOUT
 * ---------------------------------------------------------
 */
.cs-cta {
  position: relative;
  margin-bottom: 40px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  display: table;
  width: 100%;
}

.cs-cta:before {
  content: "";
  position: absolute;
}

.cs-cta .row {
  display: table;
}

.cs-cta-block {
  position: relative;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
  float: none;
  padding: 30px;
}

.cs-cta-block:nth-child(2n) {
  padding-left: 0;
}

.cs-cta-outlined {
  position: absolute;
  z-index: 0;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border-style: solid;
  border-width: 0;
  border-color: #293951;
}

.cs-cta-top {
  border-top-width: 3px;
}

.cs-cta-right {
  border-right-width: 3px;
}

.cs-cta-bottom {
  border-bottom-width: 3px;
}

.cs-cta-left {
  border-left-width: 3px;
}

.cs-cta-bgcolor {
  color: #fff;
  border: none;
  background-color: #293951;
}

/**
 * ---------------------------------------------------------
 * 07. ICONBOX
 * ---------------------------------------------------------
 */
.cs-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2em;
  height: 2em;
  border: 1px solid transparent;
}

.cs-icon:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  margin-top: -0.5em;
}

.cs-icon-xxs {
  font-size: 10px;
}

.cs-icon-xs {
  font-size: 12px;
}

.cs-icon-sm {
  font-size: 14px;
}

.cs-icon-md {
  font-size: 16px;
}

.cs-icon-lg {
  font-size: 24px;
}

.cs-icon-xl {
  font-size: 30px;
}

.cs-icon-xxl {
  font-size: 36px;
}

.cs-icon-bordered,
.cs-icon-bgcolor {
  color: #fff;
}

.cs-icon-outlined {
  background-color: transparent;
}

.cs-icon-outer {
  display: inline-block;
  padding: 3px;
  border-width: 1px;
  border-style: solid;
  background-color: transparent !important;
}

.cs-icon-default {
  width: 1em;
  height: 1em;
  color: #293951;
}

.cs-icon-circle {
  border-radius: 100%;
}

.cs-icon-rounded {
  border-radius: 0.25em;
}

.cs-icon-accent.cs-icon-outer {
  border-color: #293951;
}

.cs-icon-accent.cs-icon-bgcolor {
  background-color: #293951;
}

.cs-icon-accent.cs-icon-outlined {
  color: #293951;
  border-color: #293951;
}

.cs-icon-accent.cs-icon-bordered {
  background-color: #293951;
}

.cs-iconbox {
  position: relative;
  margin-bottom: 30px;
}

.cs-iconbox-heading-right .cs-iconbox-icon,
.cs-iconbox-heading-right .cs-iconbox-title,
.cs-iconbox-heading-left .cs-iconbox-icon,
.cs-iconbox-heading-left .cs-iconbox-title {
  display: table-cell;
  vertical-align: middle;
}

.cs-iconbox-heading-left {
  text-align: left;
}

.cs-iconbox-heading-left .cs-iconbox-icon {
  padding-right: 15px;
}

.cs-iconbox-heading-right {
  text-align: right;
}

.cs-iconbox-heading-right .cs-iconbox-icon {
  width: 1%;
  padding-left: 15px;
}

.cs-iconbox-left {
  text-align: left;
}

.cs-iconbox-left .cs-iconbox-block,
.cs-iconbox-left .cs-iconbox-header {
  display: table-cell;
  vertical-align: top;
}

.cs-iconbox-left .cs-iconbox-icon {
  padding-right: 15px;
}

.cs-iconbox-right {
  text-align: right;
}

.cs-iconbox-right .cs-iconbox-block,
.cs-iconbox-right .cs-iconbox-header {
  display: table-cell;
  vertical-align: top;
}

.cs-iconbox-right .cs-iconbox-header {
  float: right;
}

.cs-iconbox-right .cs-iconbox-icon {
  padding-left: 15px;
}

.cs-iconbox-center {
  text-align: center;
}

.cs-iconbox-center .cs-iconbox-icon {
  margin-bottom: 15px;
}

.cs-iconbox-text {
  margin-top: 10px;
}

.cs-iconbox-text:first-child {
  margin-top: 0;
}

.cs-iconbox-heading {
  margin: 0;
}

.cs-iconbox-icon {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs-iconbox-effect:hover .cs-iconbox-icon {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/**
 * ---------------------------------------------------------
 * 08. FANCYBOX
 * ---------------------------------------------------------
 */
.cs-fancybox {
  position: relative;
  padding: 30px;
  margin: 15px 0;
  text-align: center;
  border: 1px solid transparent;
}

.cs-fancybox .cs-icon {
  position: absolute;
}

.cs-fancybox .cs-fancybox-heading {
  margin-top: 0;
}

.cs-fancybox-accent.cs-fancybox-bgcolor {
  color: #fff;
  background-color: #293951;
}

.cs-fancybox-accent.cs-fancybox-bgcolor .cs-fancybox-heading {
  color: #fff;
}

.cs-fancybox-accent.cs-fancybox-bgcolor .cs-icon-outlined {
  background-color: #fff;
}

.cs-fancybox-outlined {
  border-color: #293951;
  background-color: transparent;
}

.cs-fancybox-outlined .cs-icon-outlined {
  background-color: #fff;
}

.cs-fancybox-lg {
  margin: 30px 0;
}

.cs-fancybox-xl {
  margin: 30px 0;
  padding: 40px;
}

.cs-fancybox-xxl {
  margin: 40px 0;
  padding: 50px;
}

.cs-fancybox-tc .cs-icon {
  top: -1em;
  left: 50%;
  margin-left: -1em;
}

.cs-fancybox-tl .cs-icon {
  top: -1em;
  left: -1em;
}

.cs-fancybox-tr .cs-icon {
  top: -1em;
  right: -1em;
}

.cs-fancybox-cl .cs-icon {
  left: -1em;
  top: 50%;
  margin-top: -1em;
}

.cs-fancybox-cr .cs-icon {
  right: -1em;
  top: 50%;
  margin-top: -1em;
}

.cs-fancybox-bc .cs-icon {
  bottom: -1em;
  left: 50%;
  margin-left: -1em;
}

.cs-fancybox-bl .cs-icon {
  bottom: -1em;
  left: -1em;
}

.cs-fancybox-br .cs-icon {
  bottom: -1em;
  right: -1em;
}

.cs-box-link {
  display: block;
  color: inherit;
}

.cs-box-link:hover {
  color: inherit;
}

.cs-fancybox-rounded {
  border-radius: 3px;
}

/**
 * ---------------------------------------------------------
 * 09. PROGRESS BAR
 * ---------------------------------------------------------
 */
.cs-progress {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}

.cs-progress-bar {
  background-color: #293951;
}

.cs-progress-horizontal .cs-progress-bar-outer {
  height: 10px;
}

.cs-progress-horizontal .cs-progress-bar {
  width: 0;
  height: 100%;
}

.cs-progress-horizontal .cs-progress-title-wrap {
  margin-bottom: 5px;
}

.cs-progress-horizontal .cs-progress-title {
  float: left;
}

.cs-progress-horizontal .cs-progress-number {
  float: right;
  font-size: 13px;
  opacity: 0.7;
}

.cs-progress-horizontal .cs-progress-bar-outer .cs-progress-bar {
  position: relative;
}

.cs-progress-horizontal .cs-progress-bar-outer .cs-progress-number {
  position: absolute;
  top: 50%;
  right: 5px;
  color: #fff;
  margin-top: -1em;
  opacity: 1;
  white-space: nowrap;
}

.cs-progress-vertical .cs-progress-bar-outer {
  height: 200px;
}

.cs-progress-vertical .cs-progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
}

.cs-progress-vertical .cs-progress-title-wrap {
  margin-top: 5px;
  text-align: center;
}

.cs-progress-vertical .cs-progress-title-wrap .cs-progress-number {
  font-size: 13px;
  opacity: 0.7;
}

.cs-progress-vertical .cs-progress-title {
  margin-bottom: 5px;
}

.cs-progress-vertical .cs-progress-bar-outer .cs-progress-number {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.cs-progress-bar-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #eee;
  border-radius: 3px;
}

.cs-progress-striped {
  background-size: 20px 20px;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

.cs-progress-bar-outer.cs-circle {
  border-radius: 100%;
}

.cs-progress-group .cs-progress {
  float: left;
}

.cs-progress-group .cs-progress-title {
  margin-right: 5px;
}

.cs-progress-group .cs-progress-number {
  float: none;
}

.cs-progress-group .cs-progress-bar-outer {
  border-radius: 0;
}

.cs-progress-group .cs-progress:first-child .cs-progress-bar-outer {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.cs-progress-group .cs-progress:last-child .cs-progress-bar-outer {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.cs-progress-group .cs-progress-table-cell {
  float: none;
  width: 1%;
  display: table-cell;
}

/**
 * ---------------------------------------------------------
 * 10. COUNTER
 * ---------------------------------------------------------
 */
.cs-counter {
  text-align: center;
  font-size: 40px;
  line-height: 1em;
  color: #293951;
}

.cs-counter .cs-counter-prefix,
.cs-counter .cs-count {
  font-weight: 700;
}

.cs-counter-prefix {
  line-height: 1em;
}

.cs-counter-pos-left .cs-in {
  margin-right: 10px;
}

.cs-counter-pos-right .cs-in {
  margin-left: 10px;
}

.cs-counter-pos-top {
  display: block;
  margin-bottom: 15px;
}

.cs-counter-pos-bottom {
  display: block;
  margin-top: 15px;
}

.cs-counter-title {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: inherit;
}

/**
 * ---------------------------------------------------------
 * 11. PIE CHART
 * ---------------------------------------------------------
 */
.cs-piechart-wrap {
  text-align: center;
  margin-bottom: 10px;
}

.cs-piechart {
  position: relative;
  margin: 0 auto;
  font-size: 20px;
  width: 120px;
  height: 120px;
  line-height: 120px;
}

.cs-piechart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.cs-piechart .cs-in {
  line-height: 120px;
}

.cs-piechart .prefix {
  font-size: 0.8em;
  opacity: 0.8;
}

.cs-piecount {
  font-weight: 700;
}

.cs-piechart-text {
  position: relative;
  display: inline-block;
  z-index: 2;
  font-size: inherit;
  color: inherit;
}

.cs-piechart-title {
  font-size: 16px;
  line-height: 1em;
  margin-top: 15px;
}

.cs-piechart-content {
  margin-top: 15px;
}

/**
 * ---------------------------------------------------------
 * 12. PROGRESS ICON
 * ---------------------------------------------------------
 */
.cs-progress-icon {
  font-size: 20px;
  color: #eee;
}

.cs-progress-icon .count {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.cs-progress-icon .active {
  color: #293951;
}

/**
 * ---------------------------------------------------------
 * 13. BLOCKQUOTE
 * ---------------------------------------------------------
 */
blockquote {
  margin: 20px;
  padding: 10px 20px;
  font-size: 15px;
  font-style: italic;
  border-left: 3px solid transparent;
  border-color: #293951;
}

blockquote cite {
  display: inline-block;
  font-size: 0.85em;
  margin-top: 5px;
  font-style: italic;
  opacity: 0.8;
}

blockquote cite:before {
  content: "\2013\00A0";
}

.cs-blockquote cite {
  display: block;
}

.cs-blockquote-left {
  float: left;
  width: 40%;
  border-left: 0;
  border-right-width: 3px;
  border-right-style: solid;
  padding-left: 0;
  margin: 15px 30px 10px 0;
}

.cs-blockquote-right {
  float: right;
  width: 40%;
  padding-right: 0;
  margin: 15px 0 10px 30px;
}

.cs-blockquote-icon {
  display: table-cell;
  vertical-align: top;
  padding-right: 0.5em;
  padding-top: 3px;
  font-size: 1.5em;
}

.cs-blockquote-content {
  display: table-cell;
}

.cs-blockquote-quote-icon {
  border: none;
}

/**
 * ---------------------------------------------------------
 * 14. TESTIMONIAL
 * ---------------------------------------------------------
 */
.cs-testimonial-content {
  margin: 5px 0;
  text-align: center;
}

.cs-testimonial-text {
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
}

.cs-testimonial-avatar {
  width: 60px;
  height: 60px;
  margin: 5px auto 0 auto;
}

.cs-testimonial-avatar img {
  overflow: hidden;
  max-width: 100%;
  height: auto;
  border-radius: 128px;
}

.cs-testimonial-author {
  margin-top: 5px;
  font-size: 13px;
}

.cs-testimonial-author small {
  opacity: 0.8;
  font-size: 11px;
}

.cs-testimonial-author small:before {
  content: "\2013\00A0";
}

/**
 * ---------------------------------------------------------
 * 15. SOCIAL ICONS
 * ---------------------------------------------------------
 */
.cs-social {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.cs-social a:hover {
  text-decoration: none;
}

.cs-social-bgcolor {
  color: #fff;
  background-color: #444;
}

.cs-social-bgcolor:hover {
  color: #fff;
  background-color: #293951;
}

.cs-social-outlined {
  color: #bbb;
  border: 1px solid #e8e8e8;
}

.cs-social-outlined:hover {
  color: #fff;
  border-color: #293951;
  background-color: #293951;
}

.cs-social-primary {
  color: #fff;
  background-color: #293951;
}

.cs-social-primary:hover {
  color: #fff;
  background-color: #444;
}

.cs-social-brandcolor {
  color: #fff;
}

.cs-social-brandcolor:hover {
  color: #fff;
  background-color: #333 !important;
}

.cs-social-brandcolor.cs-facebook {
  background-color: #4863ae;
}

.cs-social-brandcolor.cs-twitter {
  background-color: #46c0fb;
}

.cs-social-brandcolor.cs-youtube {
  background-color: #ff0000;
}

.cs-social-brandcolor.cs-dribbble {
  background-color: #ea4c89;
}

.cs-social-brandcolor.cs-linkedin {
  background-color: #0083a8;
}

.cs-social-brandcolor.cs-html5 {
  background-color: #ff3617;
}

.cs-social-brandcolor.cs-android {
  background-color: #a4c639;
}

.cs-social-brandcolor.cs-google-plus {
  background-color: #dd4a38;
}

.cs-social-brandcolor.cs-google-plus {
  background-color: #dd4a38;
}

.cs-social-brandcolor.cs-dropbox {
  background-color: #007ee5;
}

/**
 * ---------------------------------------------------------
 * 16. DIVIDER
 * ---------------------------------------------------------
 */
.cs-divider {
  clear: both;
  display: inline-block;
  width: 100%;
  height: 2px;
}

.cs-divider-dashed {
  border-style: dashed;
}

.cs-divider-dotted {
  border-style: dotted;
}

.cs-divider-double {
  border-bottom: 1px solid #e8e8e8;
}

.cs-divider-dashed-solid {
  border-top-style: dashed;
  border-bottom: 1px solid #e8e8e8;
}

.cs-divider-solid-dashed {
  border-bottom: 1px dashed #e8e8e8;
}

.cs-divider-align hr {
  display: inline-block;
}

/**
 * ---------------------------------------------------------
 * 17. DROPCAP
 * ---------------------------------------------------------
 */
.cs-dropcap {
  float: left;
  display: block;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  margin-right: 0.2em;
}

.cs-dropcap-bgcolor {
  padding: 14px;
  font-size: 32px;
  color: #fff;
  margin-top: 6px;
  margin-right: 0.3em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.cs-dropcap-rounded {
  border-radius: 0.125em;
}

.cs-dropcap-circle {
  padding: 0;
  font-size: 24px;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  text-align: center;
  border-radius: 100%;
}

/**
 * ---------------------------------------------------------
 * 18. ICONLIST
 * ---------------------------------------------------------
 */
.cs-icon-list {
  padding: 0;
  list-style: none;
  margin-left: 1.425em;
  text-indent: -0.75em;
}

.cs-icon-list .cs-in {
  display: inline-block;
  width: 0.7em;
}

/**
 * ---------------------------------------------------------
 * 19. HIGHLIGHT
 * ---------------------------------------------------------
 */
.cs-highlight {
  padding: 0.1em 0.4em;
  color: #fff;
  background-color: #293951;
  border-radius: 2px;
}

/**
 * ---------------------------------------------------------
 * 20. CLIENT
 * ---------------------------------------------------------
 */
.cs-client {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cs-client li {
  display: inline-block;
  text-align: center;
  padding: 20px 10px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #eee;
}

.cs-client li.last-child {
  border-right-color: transparent !important;
}

.cs-client li.last-row {
  border-bottom-color: transparent !important;
}

.cs-client.cs-client-effect figure {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.cs-client.cs-client-effect figure:hover {
  opacity: 1;
}

/**
 * ---------------------------------------------------------
 * 21. PRICING
 * ---------------------------------------------------------
 */
.cs-pricing-table {
  width: 100%;
  margin: 20px 0;
}

.cs-pricing-table .cs-btn-block {
  margin: 0 20px;
}

.cs-pricing-table .col-md-five {
  float: left;
  width: 20%;
}

.cs-pricing-table .cs-icon-list {
  margin-left: 0;
}

.cs-pricing-column {
  padding: 0 !important;
  margin: 0 0 -1px -1px;
  text-align: center;
}

.cs-pricing-title {
  padding: 15px 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.cs-pricing-price {
  padding: 40px 20px 40px;
  font-size: 60px;
  line-height: 20px;
  letter-spacing: -2px;
  margin: 0;
}

.cs-pricing-price sup {
  top: -5px;
  font-size: 40%;
  vertical-align: top;
}

.cs-pricing-price span {
  display: inline-block;
  margin-left: 5px;
  font-size: 25%;
  letter-spacing: 0;
}

.cs-pricing-price .cs-pricing-subtitle {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.cs-pricing-column-content {
  color: #555;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-top: 0;
}

.cs-pricing-column-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: -1px;
}

.cs-pricing-column-content ul > li {
  border-bottom: 1px solid #e8e8e8;
  padding: 10px;
}

.cs-pricing-button {
  margin: 25px 0;
}

.cs-pricing-column.featured {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.cs-pricing-column.featured .cs-pricing-title {
  padding-top: 25px;
  padding-bottom: 25px;
}

.cs-pricing-column.featured .cs-pricing-button {
  margin: 40px 0;
}

.cs-pricing-column-fancy .cs-pricing-price,
.cs-pricing-column-fancy .cs-pricing-title {
  color: white;
}

.cs-pricing-column-accent .cs-pricing-title {
  background-color: #3071a9;
}

.cs-pricing-column-accent .cs-pricing-price {
  background-color: #293951;
}

.cs-pricing-column-blue .cs-pricing-title {
  background-color: #3071a9;
}

.cs-pricing-column-blue .cs-pricing-price {
  background-color: #293951;
}

.cs-pricing-column-green .cs-pricing-title {
  background-color: #449d44;
}

.cs-pricing-column-green .cs-pricing-price {
  background-color: #5cb85c;
}

.cs-pricing-column-red .cs-pricing-title {
  background-color: #c9302c;
}

.cs-pricing-column-red .cs-pricing-price {
  background-color: #d9534f;
}

.cs-pricing-column-yellow .cs-pricing-title {
  background-color: #ec971f;
}

.cs-pricing-column-yellow .cs-pricing-price {
  background-color: #f0ad4e;
}

.cs-pricing-column-gray .cs-pricing-title {
  background-color: #4d4d4d;
}

.cs-pricing-column-gray .cs-pricing-price {
  background-color: #666666;
}

.cs-pricing-column-black .cs-pricing-title {
  background-color: #090909;
}

.cs-pricing-column-black .cs-pricing-price {
  background-color: #222222;
}

/**
 * ---------------------------------------------------------
 * 22. TABLE
 * ---------------------------------------------------------
 */
table {
  max-width: 100%;
  background-color: transparent;
}

th {
  font-weight: 700;
  text-align: left;
}

table {
  width: 100%;
  margin-bottom: 20px;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #ddd;
}

table table {
  background-color: #fff;
}

.cs-table-condensed > thead > tr > th,
.cs-table-condensed > thead > tr > td,
.cs-table-condensed > tbody > tr > th,
.cs-table-condensed > tbody > tr > td,
.cs-table-condensed > tfoot > tr > th,
.cs-table-condensed > tfoot > tr > td {
  padding: 5px;
}

.cs-table-bordered {
  border: 1px solid #ddd;
}

.cs-table-bordered > thead > tr > th,
.cs-table-bordered > thead > tr > td,
.cs-table-bordered > tbody > tr > th,
.cs-table-bordered > tbody > tr > td,
.cs-table-bordered > tfoot > tr > th,
.cs-table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.cs-table-bordered > thead > tr > th,
.cs-table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.cs-table-striped > tbody > tr:nth-child(odd) > td,
.cs-table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.cs-table-hover > tbody > tr:hover > td,
.cs-table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/**
 * ---------------------------------------------------------
 * 23. CODE-PRE
 * ---------------------------------------------------------
 */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable-horz {
  word-break: inherit;
  word-wrap: inherit;
}

/**
 * ---------------------------------------------------------
 * 24. TOOLTIP AND POPOVER
 * ---------------------------------------------------------
 */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
}

.tooltip.in {
  opacity: 0.9;
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/**
 * ---------------------------------------------------------
 * 25. FAQ
 * ---------------------------------------------------------
 */
.cs-faq-filter {
  border-bottom: 1px solid #e8e8e8;
}

.cs-faq-filter a {
  display: inline-block;
  font-weight: 700;
  padding: 10px 15px 12px;
  margin-bottom: -1px;
  color: #333;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}

.cs-faq-filter a:hover {
  color: #293951;
  text-decoration: none;
}

.cs-faq-filter a.active {
  color: #293951;
  border-color: #293951;
}

.cs-faq-isotope {
  padding: 20px 0;
}

.cs-faq-item {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  max-height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.cs-faq-hidden {
  max-height: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

/**
 * ---------------------------------------------------------
 * 26. MAP
 * ---------------------------------------------------------
 */
.cs-gmap-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cs-gmap .cs-fluid-inner img {
  max-width: none;
}

/**
 * ---------------------------------------------------------
 * 27. SPACE
 * ---------------------------------------------------------
 */
.cs-space {
  clear: both;
  width: 100%;
  margin: 50px 0 0 0;
  border: none !important;
}

/**
 * ---------------------------------------------------------
 * 28. DIVIDER-ICON
 * ---------------------------------------------------------
 */
.cs-divider-icon {
  overflow: hidden;
  width: 100%;
  margin: 20px auto;
}

.cs-divider-icon-inner {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #bbb;
  border-color: #e8e8e8;
}

.cs-divider-icon-inner:after, .cs-divider-icon-inner:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  width: 9999px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: inherit;
}

.cs-divider-icon-inner:before {
  margin-right: 0.5em;
  right: 100%;
}

.cs-divider-icon-inner:after {
  margin-left: 0.5em;
  left: 100%;
}

.cs-divider-icon-inner .inner-text:nth-child(2) {
  margin-left: 5px;
}

.cs-divider-inner-no-space:after,
.cs-divider-inner-no-space:before {
  margin: 0;
}

.cs-divider-icon-dashed:after,
.cs-divider-icon-dashed:before {
  border-top-style: dashed;
}

.cs-divider-icon-dotted:after,
.cs-divider-icon-dotted:before {
  border-top-style: dotted;
}

.cs-divider-icon-double:after,
.cs-divider-icon-double:before {
  border-top-style: double;
  border-top-width: 4px;
  margin-top: -2px;
}

/**
 * ---------------------------------------------------------
 * 29. CONTACT FORMS
 * ---------------------------------------------------------
 */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

textarea {
  height: auto;
}

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

input[type="date"] {
  line-height: 34px;
}

.wpcf7 {
  margin: 0;
  padding: 0;
}

.wpcf7 .ajax-loader {
  margin-left: 5px;
  border: none;
  vertical-align: middle;
}

.wpcf7 .ajax-error {
  display: none;
}

.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 input[disabled] {
  opacity: 0.5;
}

.wpcf7 label {
  font-weight: normal;
}

.wpcf7 p {
  margin-bottom: 15px;
}

.wpcf7-display-none {
  display: none;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-form-control {
  margin-top: 5px;
}

.wpcf7-list-item-label {
  font-weight: normal;
}

.wpcf7-list-item {
  margin-right: 1em;
}

.ninja-forms-field-error,
.ninja-forms-success-msg,
.ninja-forms-error-msg,
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 2px 3px rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ninja-forms-field-error,
.wpcf7-not-valid-tip {
  display: inline-block;
  padding: 5px 7px;
  margin-top: 5px;
  margin-bottom: 0;
}

/**
 * ---------------------------------------------------------
 * 30. LABEL
 * ---------------------------------------------------------
 */
.cs-label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.cs-label[href]:hover, .cs-label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.cs-label:empty {
  display: none;
}

.btn .cs-label {
  position: relative;
  top: -1px;
}

.cs-label-default {
  background-color: #777777;
}

.cs-label-default[href]:hover, .cs-label-default[href]:focus {
  background-color: #5e5e5e;
}

.cs-label-primary {
  background-color: #337ab7;
}

.cs-label-primary[href]:hover, .cs-label-primary[href]:focus {
  background-color: #286090;
}

.cs-label-success {
  background-color: #5cb85c;
}

.cs-label-success[href]:hover, .cs-label-success[href]:focus {
  background-color: #449d44;
}

.cs-label-info {
  background-color: #5bc0de;
}

.cs-label-info[href]:hover, .cs-label-info[href]:focus {
  background-color: #31b0d5;
}

.cs-label-warning {
  background-color: #f0ad4e;
}

.cs-label-warning[href]:hover, .cs-label-warning[href]:focus {
  background-color: #ec971f;
}

.cs-label-danger {
  background-color: #d9534f;
}

.cs-label-danger[href]:hover, .cs-label-danger[href]:focus {
  background-color: #c9302c;
}

/**
 * ---------------------------------------------------------
 * 31. CAROUSEL
 * ---------------------------------------------------------
 */
.cs-carousel {
  position: relative;
}

.cs-carousel .container {
  float: left;
}

.cs-carousel .row {
  margin-left: 0;
  margin-right: 0;
}

.cs-carousel-wrapper {
  opacity: 0;
}

.cs-carousel-outer {
  overflow: hidden;
  max-width: 100%;
}

.cs-carousel-item {
  float: left;
}

.cs-carousel-padding {
  margin-left: -15px;
  margin-right: -15px;
}

.cs-carousel-padding .cs-carousel-item {
  padding-right: 15px;
  padding-left: 15px;
}

.cs-carousel-navigation {
  margin: 10px 0;
}

.cs-carousel-navigation .fa {
  cursor: pointer;
  font-size: 16px;
  margin: 0 2px;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.cs-carousel-navigation .fa:hover {
  opacity: 1;
}

.cs-carousel-navigation.fluid {
  margin: 0;
}

.cs-carousel-navigation.fluid .fa {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}

.cs-carousel-navigation.fluid .cs-carousel-prev {
  left: -30px;
}

.cs-carousel-navigation.fluid .cs-carousel-next {
  right: -30px;
}

/**
 * ---------------------------------------------------------
 * 32. RESPONSIVE CONTAINER
 * ---------------------------------------------------------
 */
.cs-fluid {
  clear: both;
  position: relative;
  width: 100%;
}

.cs-fluid .wp-video {
  width: 100% !important;
}

.cs-fluid .mejs-overlay,
.cs-fluid .mejs-poster {
  width: 100% !important;
  height: 100% !important;
}

.cs-fluid .mejs-container {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

.cs-fluid .mejs-overlay-button {
  margin-top: -50px !important;
}

.cs-fluid-border {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.cs-fluid-inner {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.cs-fluid-inner object,
.cs-fluid-inner embed,
.cs-fluid-inner video,
.cs-fluid-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * ---------------------------------------------------------
 * 33. COUNTDOWN
 * ---------------------------------------------------------
 */
.cs-countdown {
  text-align: center;
}

.cs-countdown-line,
.cs-countdown-boxed {
  display: block;
}

.cs-countdown-boxed .countdown-section {
  display: inline-block;
  min-width: 2.2em;
  font-size: 60px;
  padding: 0.3em;
  margin: 5px;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
}

.cs-countdown-boxed .countdown-period {
  display: block;
  font-size: 0.4em;
  font-weight: normal;
  font-style: normal;
  padding-bottom: 5px;
  opacity: 0.7;
}

.cs-countdown-line {
  margin: 5px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
}

.cs-countdown-line .countdown-section {
  margin-left: 10px;
}

.cs-countdown-line .countdown-period {
  font-weight: normal;
  font-style: normal;
  font-size: 80%;
  margin-left: 2px;
  padding-bottom: 5px;
  opacity: 0.7;
}

.cs-countdown-normal {
  text-transform: uppercase;
}

.cs-countdown-normal .countdown-section {
  margin-left: 5px;
}

.cs-countdown-normal .countdown-period {
  opacity: 0.7;
  margin-left: 1px;
}

/**
 * ---------------------------------------------------------
 * 34. MODALS
 * ---------------------------------------------------------
 */
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  z-index: 1049;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.in {
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

.modal-header .fa {
  position: absolute;
  right: 15px;
  padding: 5px;
  cursor: pointer;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-center .modal-dialog-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-center .modal-body {
  overflow-y: auto;
}

.modal-center .modal-footer {
  margin-top: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 50px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
@media (max-width: 768px) {
  .modal-center .modal-dialog-center {
    width: 100%;
  }
}
/**
 * ---------------------------------------------------------
 * 35. COLUMNS
 * ---------------------------------------------------------
 */
.cs-one-half,
.cs-one-third,
.cs-one-fourth,
.cs-one-fifth,
.cs-one-sixth,
.cs-two-third,
.cs-three-fourth,
.cs-four-fifth,
.cs-five-sixth {
  float: left;
  margin-right: 4%;
  position: relative;
  height: auto !important;
  min-height: 1px;
}

.cs-last-column {
  margin-right: 0 !important;
}

.cs-one-half {
  width: 48%;
}

.cs-one-third {
  width: 30.6666666667%;
}

.cs-one-fourth {
  width: 22%;
}

.cs-one-fifth {
  width: 16.8%;
}

.cs-one-sixth {
  width: 13.3333333333%;
}

.cs-two-third {
  width: 65.3333333333%;
}

.cs-three-fourth {
  width: 74%;
}

.cs-four-fifth {
  width: 79.2%;
}

.cs-five-sixth {
  width: 82.6666666667%;
}

/**
 * ---------------------------------------------------------
 * 36. SECTIONS
 * ---------------------------------------------------------
 */
.cs-section {
  position: relative;
}

.cs-section .container-fluid .col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

.cs-parallax {
  overflow: hidden;
}

.cs-parallax .container,
.cs-parallax .container-fluid {
  position: relative;
  z-index: 3;
}

.cs-parallax .section-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cs-parallax .video-section-wrap {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  z-index: 1;
}

.cs-parallax .video-section-wrap .video-wrap {
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.cs-parallax .video-section-wrap .mejs-controls,
.cs-parallax .video-section-wrap .mejs-layers {
  display: none;
}

.cs-parallax .video-section-wrap .mejs-container {
  background: none !important;
  width: 100% !important;
}

.cs-section-shadow:after,
.cs-section-shadow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
}

.cs-section-shadow:before {
  top: -10px;
}

.cs-section-shadow:after {
  bottom: -10px;
}

.mejs-controls .mejs-button button:focus {
  outline: none !important;
}

.cs-section-cover-bg {
  background-size: cover;
}

.touch .cs-section {
  background-attachment: scroll !important;
}

.cs-full-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cs-full-height .container-fluid {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

.cs-full-height-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cs-full-height-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

[data-full-height-rate="75"] {
  min-height: 75vh;
}

[data-full-height-rate="50"] {
  min-height: 50vh;
}

[data-full-height-rate="25"] {
  min-height: 25vh;
}

.cs-column-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.cs-column-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cs-column-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cs-equal-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.cs-equal-height-top > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cs-equal-height-center > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cs-equal-height-bottom > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 992px) {
  .cs-equal-height {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cs-column-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .cs-equal-height .cs-column-background {
    min-height: 300px;
  }
}
/**
 * ---------------------------------------------------------
 * 37. CLEAR
 * ---------------------------------------------------------
 */
.cs-clear {
  clear: both;
  margin: 0;
  border: 0;
}

/**
 * ---------------------------------------------------------
 * 38. OTHERS
 * ---------------------------------------------------------
 */
.cs-responsive-img-link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cs-responsive-img-link:hover {
  opacity: 0.7;
}

.cs-responsive-slider .rsGCaption,
.cs-responsive-slider .postSlider {
  margin-bottom: 0;
}

.cs-responsive-slider.cs-fluid-inline {
  display: inline-block;
  width: 100%;
}

/**
 * ---------------------------------------------------------
 * 39. SHORTCODES
 * ---------------------------------------------------------
 */
@media (min-width: 992px) {
  .cs-team .col-md-five {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 992px) {
  .cs-team .col-md-five {
    width: 100%;
  }
}
.cs-team-member {
  text-align: center;
  margin-bottom: 20px;
}

.cs-team-member figure {
  margin-bottom: 16px;
}

.cs-team-member figure img {
  border-radius: 2px;
}

.cs-team-member h4 {
  margin: 0;
}

.cs-team-member h6 {
  margin: 10px 0 0;
  color: #919191;
}

.cs-team-member .about {
  margin: 10px 0 0;
}

.cs-team-member .social {
  margin: 10px 0 0;
}

.cs-team-member .social a {
  display: inline-block;
  margin: 1px;
  font-size: 13px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #999;
  border-radius: 2px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cs-team-member .social a:hover {
  background-color: #333333;
}

.cs-team-member .social a.fa-facebook:hover {
  background-color: #3b5998;
}

.cs-team-member .social a.fa-twitter:hover {
  background-color: #55acee;
}

.cs-team-member .social a.fa-google-plus:hover {
  background-color: #dd4b39;
}

.cs-team-member .social a.fa-linkedin:hover {
  background-color: #0976b4;
}

.cs-team-member .social a.fa-tumblr:hover {
  background-color: #35465c;
}

.cs-team-member .social a.fa-tumblr:hover {
  background-color: #35465c;
}

.cs-team-member .social a.fa-youtube:hover {
  background-color: #b31217;
}

.cs-team-member .social a.fa-vimeo-square:hover {
  background-color: #1ab7ea;
}

/*
 *
 *
 * ---------------------------------------------------------
 * ARTICLEMAG CSS SITEMAP
 * ---------------------------------------------------------
 * 01. NORMALIZE
 * 02. BASE
 * 03. LAYOUT
 * 04. BLOG
 * 05. WIDGETS
 * 06. PORTFOLIO
 * 07. HELPERS
 * 08. OTHERS
 * ---------------------------------------------------------
 *
 *
 */
/*
 * ---------------------------------------------------------
 * 01. NORMALIZE
 * ---------------------------------------------------------
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

:focus {
  outline: none;
}

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/*
 * ---------------------------------------------------------
 * 02. BASE
 * ---------------------------------------------------------
 */
* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  color: #4a4a4a;
  background-color: #fff;
  line-height: normal;
  overflow-x: hidden;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

b,
strong {
  font-weight: bold;
}

figure {
  margin: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid #eeeeee;
  margin-top: 20px;
  margin-bottom: 20px;
}

::selection {
  color: #fff;
  background-color: #293951;
}

::-moz-selection {
  color: #fff;
  background-color: #293951;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: bold;
  line-height: 1.1;
  color: #333;
}

h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
}

h1,
h2,
h3 {
  margin-bottom: 10px;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small {
  font-size: 65%;
}

h4,
h5,
h6 {
  margin-bottom: 10px;
}

h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
  font-size: 75%;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  margin: 0 0 20px;
  /*
  &:last-child:empty,
  &:first-child:empty{
    display: none;
  }
  */
}

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

small,
.small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

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

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

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

.text-justify {
  text-align: justify;
}

.text-muted {
  color: #777777;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.428571429;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

.transition-all-1s, #cs-mobile-icon i {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.transition-all-2s, .cs-top-module > a,
.cs-top-module .cs-open-modal, .cs-module-social a, .cs-sticky-item, .cs-menu-effect .cs-link-depth-0:before, #navigation-mobile .cs-dropdown-plus, #navigation-mobile .cs-dropdown-plus .fa, #navigation-mobile a, #mobile-search input, #cs-fixed-nav ul li a, .cs-breadcrumb a, #colophon a, #cs-footer-block-before a,
#cs-footer-block-after a, #copyright a, #cs-top, .entry-image-overlay, .gallery-caption, .widget_calendar tbody a, .portfolio-loop a, .portfolio-item-info, .portfolio-item-block, .ajax-close {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.transition-all-3s, #site-nav ul li ul li .cs-link, .cs-lang-top-modal ul li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.opacity-2s, .isotope-wrapper, .portfolio-item-block .item-icon {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.user-select-none, #site-header-shadow, #cs-mobile-icon {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fa-before, .related-posts ul li a:before, #cancel-comment-reply-link:before,
.comment-reply-link:before, .comment-metadata time:before,
.comment-metadata .comment-edit-link:before, .widget_recent_entries .post-date:before, .widget_recent_comments .recentcomments:before, .widget_pages a:before {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

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

figure.wp-caption.alignleft,
img.alignleft {
  margin: 7px 24px 7px 0;
}

.wp-caption.alignleft {
  margin: 7px 14px 7px 0;
}

figure.wp-caption.alignright,
img.alignright {
  margin: 7px 0 7px 24px;
}

.wp-caption.alignright {
  margin: 7px 0 7px 14px;
}

img.aligncenter,
.wp-caption.aligncenter {
  margin-top: 7px;
  margin-bottom: 7px;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 24px;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
}

.wp-caption-text {
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px 0;
  color: #999;
}

div.wp-caption .wp-caption-text {
  padding-right: 10px;
}

div.wp-caption.alignright img[class*="wp-image-"],
div.wp-caption.alignright .wp-caption-text {
  padding-left: 10px;
  padding-right: 0;
}

.clear:before, .clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

/*
 * ---------------------------------------------------------
 * 03. LAYOUT
 * ---------------------------------------------------------
 */
/**
 * =========================================
 * - BOXED-LAYOUT
 * =========================================
 */
.cs-boxed-layout #header-before,
.cs-boxed-layout #page {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.cs-boxed-layout #main {
  background-color: #fff;
}

.cs-boxed-layout #top-bar,
.cs-boxed-layout #masthead {
  max-width: 1200px;
}

.cs-header-left.cs-boxed-layout #masthead .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.cs-boxed-layout #site-nav > ul > li:first-child {
  border-left: none;
}

.cs-boxed-layout #site-nav > ul > li:last-child {
  border-right: none;
}

/**
 * =========================================
 * - TOP BAR
 * =========================================
 */
#top-bar {
  position: relative;
  color: #555;
  background-color: #f1f1f1;
  border-bottom: 1px solid #e8e8e8;
  line-height: 36px;
}

.cs-top-module {
  vertical-align: top;
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin-right: -1px;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  font-size: 12px;
  line-height: 35px;
}

.cs-top-module:first-child {
  border-left: none;
  padding-left: 0;
}

.cs-top-module:last-child {
  border-right: none;
  padding-right: 0;
}

.cs-top-module > a,
.cs-top-module .cs-open-modal {
  color: #333;
  display: inline-block;
}

.cs-top-module > a:hover,
.cs-top-module .cs-open-modal:hover {
  color: #293951;
  text-decoration: none;
}

.cs-top-module .cs-in {
  margin-right: 5px;
}

.cs-top-module .cs-down {
  margin-left: 2px;
}

.cs-top-left {
  float: left;
  margin-bottom: -1px;
}

.cs-top-right {
  float: right;
  margin-bottom: -1px;
}

.cs-modal-content-hover,
.cs-modal-content {
  display: none;
  position: absolute;
  z-index: 250;
  left: 0;
  width: 300px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.7em;
  margin-top: -2px;
  color: #555;
  background-color: #fff;
  border-top: 2px solid #293951;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.125);
}

#site-nav .cs-module-search,
.cs-top-right .cs-modal-content-hover,
.cs-top-right .cs-modal-content {
  left: auto !important;
  right: 0;
}

.cs-module-search input {
  font-size: 12px !important;
  border: none !important;
  padding: 19px 30px 19px 12px;
  height: 50px !important;
  line-height: 15px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.cs-module-search input:focus {
  box-shadow: none !important;
}

.cs-module-search button {
  top: 15px !important;
}

.cs-module-social {
  margin: 0;
  padding: 0;
  border: none;
  z-index: 1;
}

.cs-module-social a {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  vertical-align: top;
  line-height: 36px;
  width: 36px;
}

.cs-module-social a:hover {
  color: #fff !important;
  background-color: #293951;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.cs-module-social .cs-in {
  margin: 0;
}

.cs-module-menu .cs-open-modal-pointer {
  cursor: pointer;
}

.cs-module-menu .cs-top-modal-hover {
  display: inline-block;
}

#site-nav .cs-module-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.99);
  margin: 0;
}

#site-nav .cs-module-search .cs-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.cs-module-search .cs-search-form form {
  max-width: 500px;
  width: 100%;
  margin: auto;
  position: relative;
  border: 2px #293951 solid;
  border-radius: 10px;
  overflow: hidden;
  padding-left: 50px;
}

[dir='rtl'] .cs-module-search .cs-search-form form {
  padding-left: 0;
  padding-right: 50px;
}

.cs-module-search .cs-search-form input[type="text"] {
  height: auto !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  color: #000;
}

.cs-module-search .cs-search-form button {
  left: 0;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  font-size: 24px;
  line-height: 28px;
  padding: 0;
  margin: 0;
  right: 0;
}

#site-nav .cs-module-search button.cs-link {
  display: none;
}

#site-nav .cs-module-search.cs-opened button.cs-link {
  position: absolute;
  left: inherit;
  right: 15px;
  font-size: 42px !important;
  line-height: 1;
  top: 50px !important;
  border: 1px #e0e0e0 solid;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  /* background: #dedede; */
  color: #e0e0e0;
  opacity: 1;
  display: block;
  padding: 0 !important;
}

[dir='rtl'] #site-nav .cs-module-search.cs-opened button.cs-link {
  left: 15px;
  right: inherit;
}

#site-nav .cs-module-search.cs-opened button.cs-link:hover {
  border-color: #293951;
  color: #293951;
}

/**
 * =========================================
 * - HEADER
 * =========================================
 */
#site-logo a {
  display: inline-block;
}

#site-logo img {
  padding-top: 5px;
  padding-bottom: 5px;
}

#site-logo img {
  max-width: 150px;
}

#site-logo h1 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}

#site-logo h1 a {
  color: #333;
}

.cs-header-left #site-logo h1 a,
.cs-header-center #site-logo h1 a {
  height: 70px;
  line-height: 70px;
}

#site-logo h1 a:hover {
  color: #000;
  text-decoration: none;
}

#site-logo .cs-logo2x {
  display: none;
}

#site-logo .cs-logo1x {
  display: inline-block !important;
}

#masthead {
  position: relative;
  width: 100%;
  background-color: #fff;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

#masthead.is-sticky {
  position: fixed !important;
  z-index: 999;
  top: 0;
  -o-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 0 0 transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 0 0 transparent;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#masthead.is-compact {
  background-color: rgba(255, 255, 255, 0.95);
}

#masthead .container {
  position: relative;
}

#masthead .cs-inner {
  float: left;
  width: 100%;
  position: relative;
}

.admin-bar .is-sticky {
  top: 32px !important;
}

#site-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#site-nav ul li {
  position: relative;
}

#site-nav ul li ul {
  display: none;
  position: absolute;
  z-index: 300;
  top: 100%;
  width: 250px;
  background-color: #fff;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.07);
}

#site-nav ul li ul li .cs-link {
  display: block;
  position: relative;
  padding: 12px;
  background-color: #fff;
  border-top: 1px solid #eeeeee;
}

#site-nav ul li ul li .cs-link:hover {
  color: #293951;
  background-color: #f8f8f8;
  text-decoration: none;
}

#site-nav ul li ul li .cs-link > .cs-in {
  margin-right: 5px;
}

#site-nav ul li ul ul {
  top: 0;
  left: 100%;
}

#site-nav > ul > li {
  float: left;
}

#site-nav > ul > li.menu-item.cs-depth-0 > .cs-link {
  display: block;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

#site-nav > ul > li.cs-depth-0 > .cs-link {
  padding: 0  8px;
}

#site-nav > ul > li.cs-user-signin {
  float: right;
}

#site-nav > ul > li > .cs-link:hover {
  color: #333;
  text-decoration: none;
}

#site-nav > ul > li > .cs-link > .cs-in {
  margin-right: 5px;
}

/*#site-nav > ul > li > .cs-link.bp-msg{
    padding-right: 0;
}*/
#site-nav > ul > li > ul {
  border-top: 2px solid #293951;
  margin-top: -2px;
}

#site-nav > ul > li > ul > li:first-child > .cs-link {
  border-top: none;
}

#site-nav .cs-menu-cart:last-child a,
#site-nav .cs-menu-search:last-child a {
  padding-right: 0;
}

#site-nav .cs-mega-menu {
  position: inherit;
}

#site-nav .cs-mega-menu > ul {
  width: 100%;
  left: 0;
}

#site-nav .cs-mega-menu > ul > li {
  float: left !important;
  padding: 0 !important;
}

#site-nav .cs-mega-menu > ul > li:last-child {
  border: none;
}

#site-nav .cs-mega-menu > ul > li:last-child a {
  border-right: none !important;
}

#site-nav .cs-mega-menu > ul > li .cs-link {
  border-right: 1px solid #eeeeee;
}

#site-nav .cs-mega-menu > ul > li .cs-title {
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 17px;
  padding-bottom: 15px;
  border-top: none;
  color: #555555;
  background-color: #f5f5f5;
}

#site-nav .cs-mega-menu > ul > li .cs-title:hover {
  color: inherit;
}

#site-nav .cs-mega-menu > ul > li .cs-title:after {
  display: none;
}

#site-nav .cs-mega-menu > ul > li ul {
  clear: both;
  display: block !important;
  position: relative !important;
  left: 0 !important;
  opacity: 1 !important;
  width: 100% !important;
  box-shadow: none !important;
}

#site-nav .cs-custom,
#site-nav .cs-natural {
  position: relative;
}

#site-nav .cs-col-2 > ul {
  width: 400px;
}

#site-nav .cs-col-3 > ul {
  width: 525px;
}

#site-nav .cs-col-4 > ul {
  width: 600px;
}

#site-nav .cs-col-5 > ul {
  width: 500px;
}

#site-nav .cs-col-6 > ul {
  width: 600px;
}

#site-nav .cs-right > ul {
  left: auto !important;
  right: 0;
}

#site-nav .cs-label {
  position: relative;
  top: -5px;
  left: 3px;
  padding: 1px 4px;
  font-size: 9px;
  text-transform: uppercase;
}

#site-nav .cs-column-title {
  cursor: inherit;
}

#site-nav .cs-content {
  display: block;
  font-size: 11px;
  padding-top: 5px;
  opacity: 0.7;
}

#site-nav .cs-full-content {
  margin: 10px;
}

#site-nav .current-menu-ancestor > .cs-link,
#site-nav .current-menu-item > .cs-link {
  color: #333;
}

#site-header-shadow {
  position: absolute;
  bottom: -5px;
  height: 5px;
  width: 100%;
  overflow: hidden;
  z-index: 9;
}

#site-header-shadow:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% / 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cs-header-default .cs-sticky-item {
  height: 65px;
  line-height: 65px;
}

.cs-header-default .is-compact .cs-sticky-item {
  height: 50px;
  line-height: 50px;
}

.cs-header-default #site-logo {
  float: left;
  max-width: 85%;
  margin-right: 15px;
}

[dir='rtl'] .cs-header-default #site-logo {
  margin-right: 0;
  margin-left: 15px;
}

[dir='rtl'] .cs-header-default #site-nav {
  float: right;
}

.cs-header-default #site-logo img {
  max-height: 100%;
}

.cs-header-default #site-nav > ul > li.cs-menu-search,
.cs-header-default #site-nav > ul > li.cs-toggle-track {
  float: right;
}

.cs-header-default #site-nav > ul > li.cs-menu-cart,
.cs-header-default #site-nav > ul > li.cs-menu-search,
.cs-header-default #site-nav > ul > li.cs-toggle-track,
.cs-header-default #site-nav > ul > li.cs-message,
.cs-header-default #site-nav > ul > li.cs-notification,
.cs-header-default #site-nav > ul > li.cs-bp-user-menu {
  float: right;
}

[dir='rtl'] .cs-header-default #site-nav > ul > li.cs-menu-search {
  position: absolute;
  left: 0;
}

/*.cs-header-left #masthead {
    border-top: 1px solid #eeeeee;
}*/
.cs-header-left .cs-sticky-item {
  height: 50px;
  line-height: 50px;
}

.cs-header-left .is-compact .cs-sticky-item {
  height: 40px;
  line-height: 40px;
}

.cs-header-left #header-logo-wrap {
  display: table;
  position: relative;
  width: 100%;
}

.cs-header-left #site-logo {
  display: table-cell;
  vertical-align: middle;
  max-width: 85%;
}

.cs-header-left #site-logo-right {
  padding-left: 20px;
  display: table-cell;
  vertical-align: middle;
}

.cs-header-left #site-logo-right-content {
  float: right;
}

/*.cs-header-left .cs-depth-0 {
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    margin-right: -1px;
}*/
.cs-header-left .cs-menu-cart,
.cs-header-left .cs-menu-search,
.cs-header-left .cs-toggle-track,
.cs-header-left .cs-message,
.cs-header-left .cs-notification,
.cs-header-left .cs-bp-user-menu,
.cs-header-center .cs-menu-cart,
.cs-header-center .cs-menu-search,
.cs-header-center .cs-toggle-track,
.cs-header-center .cs-message,
.cs-header-center .cs-notification,
.cs-header-center .cs-bp-user-menu,
.cs-header-fancy .cs-menu-cart,
.cs-header-fancy .cs-menu-search,
.cs-header-fancy .cs-toggle-track,
.cs-header-fancy .cs-message,
.cs-header-fancy .cs-notification,
.cs-header-fancy .cs-bp-user-menu {
  float: right !important;
}

.cs-header-left .cs-menu-cart:last-child a,
.cs-header-left .cs-menu-search:last-child a {
  padding-right: 10px !important;
}

.cs-header-left #cs-mobile-icon {
  right: 5px;
}

.cs-header-center #masthead {
  border-top: 1px solid #eeeeee;
}

.cs-header-center .cs-sticky-item {
  height: 50px;
  line-height: 50px;
}

.cs-header-center .is-compact .cs-sticky-item {
  height: 40px;
  line-height: 40px;
}

.cs-header-center #site-logo {
  text-align: center;
  padding: 20px;
}

.cs-header-center #site-nav {
  display: table;
  margin: 0 auto;
}

/*.cs-header-center .cs-depth-0 {
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    margin-right: -1px;
}*/
.cs-header-center .cs-depth-0:first-child,
.cs-header-center .cs-depth-0:last-child {
  border: none;
}

/*.cs-header-center #cs-mobile-icon {
    text-align: center;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 0;
    padding: 15px 10px;
}*/
.cs-header-center #nav-search {
  padding-right: 10px !important;
}

.cs-header-fancy .cs-sticky-item {
  height: 100px;
  line-height: 100px;
}

.cs-header-fancy .is-compact .cs-sticky-item {
  height: 50px;
  line-height: 50px;
}

.cs-header-fancy #site-logo {
  text-align: center;
  max-width: 100%;
}

.cs-header-fancy #site-logo img {
  max-height: 100%;
}

.cs-header-fancy .cs-fancy-row {
  display: table;
  margin: 0 auto;
}

.cs-header-fancy .cs-fancy-logo,
.cs-header-fancy .cs-fancy-right,
.cs-header-fancy .cs-fancy-left {
  float: left;
}

.cs-header-fancy .cs-fancy-logo {
  padding-left: 20px;
  padding-right: 20px;
}

.cs-header-fancy #site-nav > ul > li > .cs-link {
  padding-left: 15px;
  padding-right: 15px;
}

.cs-down-icon #site-nav .menu-item-has-children > a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
  margin-left: 5px;
  opacity: 0.5;
}

#site-nav .menu-item-has-children .menu-item-has-children > a:after {
  content: '\f105';
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
}

.cs-menu-effect .cs-link-depth-0:before {
  content: "";
  position: absolute;
  z-index: 0;
  height: 2px;
  background-color: #293951;
  opacity: 0;
}

.cs-menu-effect .cs-link-depth-0:hover::before {
  opacity: 1;
}

.cs-menu-effect-1 .cs-link-depth-0:before,
.cs-menu-effect-2 .cs-link-depth-0:before {
  left: 0;
  bottom: 0;
  width: 100%;
}

.cs-menu-effect-2 .cs-link-depth-0:before {
  top: 0;
  bottom: auto;
}

.cs-menu-effect-1 .menu-item-has-children .cs-link-depth-0:before {
  display: none !important;
}

.cs-menu-effect-3 .cs-link-depth-0:before {
  top: 50%;
  left: 5px;
  right: 5px;
  margin-top: 1.2em;
  -ms-transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.cs-menu-effect-3 .cs-link-depth-0:hover::before {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cs-menu-effect-4 .cs-link-depth-0:before {
  content: "•";
  left: 0;
  top: -16px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 0;
  color: #293951;
  text-shadow: 0 0 #293951;
  background-color: transparent;
}

.cs-menu-effect-4 .cs-link-depth-0:hover::before {
  text-shadow: 8px 0 #293951, -8px 0 #293951;
}

.cs-menu-effect-5 .cs-link-depth-0:before {
  top: 50%;
  left: 0;
  right: 0;
  margin-top: 1.2em;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.cs-menu-effect-5 .cs-link-depth-0:hover::before {
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.cs-menu-effect-6 .cs-link-depth-0:before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2.4em;
  margin-top: -1.2em;
  border: 2px solid #293951;
  background-color: transparent !important;
  border-radius: 2px;
}

.cs-menu-effect-6 .cs-link-depth-0 {
  border: none;
}

.cs-menu-effect-6 .cs-depth-0 {
  border: none;
}

.cs-menu-effect-7 .cs-depth-0:hover .cs-link-depth-0 {
  color: #fff !important;
  background-color: #293951;
}

.is-transparent #masthead {
  position: absolute;
  z-index: 999;
  background-image: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.is-transparent #cs-mobile-icon,
.is-transparent .site-name a,
.is-transparent #site-nav > ul > li > .cs-link,
.is-transparent .bp-msg .bp-icon-wrap,
.is-transparent .user-notifications .bp-icon-wrap,
.is-transparent #site-nav a.cs-user-link {
  color: #fff !important;
}

.is-transparent.cs-menu-effect .cs-link-depth-0:before {
  color: #fff;
  background-color: #fff;
}

.is-transparent.cs-menu-effect-6 .cs-link-depth-0:before {
  border-color: #fff;
  background-color: transparent;
}

.is-transparent.cs-menu-effect-4 .cs-link-depth-0before {
  text-shadow: 0 0 #fff;
}

.is-transparent.cs-menu-effect-4 .cs-link-depth-0:hover::before {
  text-shadow: 8px 0 #fff, -8px 0 #fff;
}

.is-transparent #site-header-shadow {
  display: none;
}

.is-transparent #cs-mobile-icon i {
  background-color: #fff;
}

.is-transparent #top-bar {
  display: block !important;
  position: absolute;
  z-index: 1000;
  width: 100%;
  color: #fff;
  background-image: none !important;
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.1);
}

.is-transparent #top-bar .cs-top-module {
  border-color: rgba(255, 255, 255, 0.1);
}

.is-transparent #top-bar .cs-top-module > a, .is-transparent #top-bar .cs-top-module .cs-open-modal {
  color: #fff;
}

.cs-header-transparent #navigation-mobile {
  padding-top: 90px;
}

.cs-header-transparent #page-header .md-padding {
  padding-top: 140px;
}

.is-transparent-top-bar #page-header .md-padding {
  padding-top: 175px;
}

.is-transparent.is-transparent-top-bar #masthead {
  margin-top: 36px !important;
}

#navigation-mobile .container {
  padding-bottom: 20px;
}

#cs-mobile-icon {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

#cs-mobile-icon strong {
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 5px;
  line-height: 1em;
  text-transform: uppercase;
}

#cs-mobile-icon span {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
}

#cs-mobile-icon i {
  display: block;
  width: 100%;
  height: 3px;
  margin: 2px auto;
  background-color: #555;
}

#cs-mobile-icon.cs-collapse .cs-one {
  -ms-transform: rotate(45deg) translate(3px, 3px);
  -webkit-transform: rotate(45deg) translate(3px, 3px);
  transform: rotate(45deg) translate(3px, 3px);
}

#cs-mobile-icon.cs-collapse .cs-two {
  opacity: 0;
}

#cs-mobile-icon.cs-collapse .cs-three {
  -ms-transform: rotate(-45deg) translate(4px, -4px);
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

#navigation-mobile {
  display: none;
  background-color: #222;
}

#navigation-mobile .cs-dropdown-plus {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: #222;
}

#navigation-mobile .cs-dropdown-plus:hover {
  background-color: #1a1a1a;
}

#navigation-mobile .cs-dropdown-plus .fa {
  display: block;
  text-align: center;
  font-size: 14px;
  width: 50px;
  height: 51px;
  line-height: 51px;
  color: #555;
}

#navigation-mobile .cs-times .fa {
  color: #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#navigation-mobile .current-menu-ancestor > a,
#navigation-mobile .current-menu-item > a {
  color: #fff;
}

#navigation-mobile a {
  text-decoration: none;
}

#navigation-mobile ul {
  margin: 0;
  padding: 20px 0;
  list-style: none;
}

#navigation-mobile ul ul {
  position: relative;
  display: none;
  padding: 0;
  margin-left: 0;
}

#navigation-mobile ul ul:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  position: absolute;
  top: 5px;
  left: 30px;
}

#navigation-mobile ul ul li {
  border-left: none;
  border-right: none;
}

#navigation-mobile ul ul li:first-child {
  border-top-width: 5px;
  border-top-color: #333;
}

#navigation-mobile ul ul li:last-child {
  border-bottom: none;
}

#navigation-mobile ul ul li a {
  padding-left: 30px;
}

#navigation-mobile ul li {
  position: relative;
  border: 1px solid #333;
  border-bottom: none;
}

#navigation-mobile ul li:last-child {
  border-bottom: 1px solid #333;
}

#navigation-mobile ul li a {
  display: block;
  padding: 15px;
  font-size: 13px;
  color: #999;
}

#navigation-mobile ul li a:hover {
  color: #fff;
}

#navigation-mobile ul li.menu-item-has-children > .cs-dropdown-plus {
  display: block;
}

#navigation-mobile ul li.menu-item-has-children > a {
  border-right: 1px solid #333;
  margin-right: 50px;
}

#navigation-mobile .cs-fancy-mobile-menu {
  padding: 20px 0;
}

#navigation-mobile .cs-fancy-mobile-menu ul {
  padding-top: 0;
  padding-bottom: 0;
}

#mobile-search {
  position: relative;
  margin-bottom: 20px;
}

#mobile-search input {
  font-size: 13px;
  height: 40px;
  padding: 22px 30px 22px 12px;
  color: #999;
  border: 1px solid #333;
  background-color: #151515;
}

#mobile-search input:focus {
  background-color: #191919;
  box-shadow: none;
}

#mobile-search button {
  position: absolute;
  font-size: 11px;
  top: 14px;
  right: 5px;
  padding: 5px;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
}

#mobile-languages {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}

#mobile-languages a {
  color: #999;
  margin: 5px;
  display: inline-block;
}

#mobile-languages a.cs-current, #mobile-languages a:hover {
  color: #fff;
}

#mobile-languages img {
  position: relative;
  top: -1px;
  margin-right: 3px;
}

.cs-retina2x {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  #site-logo .cs-logo {
    display: none;
  }

  #site-logo .cs-logo2x {
    display: inline;
  }

  .cs-retina2x {
    display: block;
  }
}
#cs-fixed-nav {
  position: fixed;
  right: 5px;
  top: 50%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 8px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.075);
}

#cs-fixed-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#cs-fixed-nav ul li {
  padding-bottom: 8px;
}

#cs-fixed-nav ul li a {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  border-radius: 14px;
}

#cs-fixed-nav ul li a:hover,
#cs-fixed-nav ul li a:focus, #cs-fixed-nav ul li.current-menu-item a {
  background-color: #ccc;
  text-decoration: none;
}

#cs-fixed-nav ul li:last-child {
  padding-bottom: 0;
}

#cs-fixed-nav .tooltip {
  left: auto !important;
  right: 26px;
}

#cs-fixed-nav .tooltip-arrow {
  top: 12px !important;
}

#cs-fixed-nav .tooltip-inner {
  white-space: nowrap;
  border-radius: 2px;
}

#header-logo {
  color: #555;
  background-color: #fff;
}

/**
 * =========================================
 * - HERO HEADER
 * =========================================
 */
.header-hero {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  padding: 100px 0 75px;
  color: #fff;
  background-color: #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  z-index: 1;
  opacity: .7;
}

.header-hero-content {
  position: relative;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  max-width: 700px;
}

.header-hero-content .hero-title {
  color: #fff;
  letter-spacing: .8px;
  font-size: 3.25rem;
  margin-bottom: 10px;
}

.header-hero-content .hero-description {
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: .2px;
}

.header-hero-content .hero-button {
  display: inline-block;
  color: #333;
  text-align: center;
  letter-spacing: .2px;
  line-height: 3;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 0 25px;
  cursor: pointer;
  outline: 0;
  border: 0;
  background-color: #fff;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.header-hero-content .hero-button:hover {
  text-decoration: none;
}

/*=============================
    Hero header with sidebar
==============================*/
.hero-post-slider .header-post-img {
  min-height: 500px;
  position: relative;
  max-height: 600px;
}

.hero-post-slider .header-post-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-post-slider .header-post-img img {
  width: 100%;
}

.hero-post-slider .header-post-title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-post-slider .header-post-title a {
  color: #fff;
  letter-spacing: .8px;
  font-size: 3.25rem;
  margin-bottom: 10px;
}

.hero-post-slider .header-post-title a:hover {
  text-decoration: none;
}

.hero-post-slider .header-post-title a:focus {
  border: none;
  outline: none;
}

.hero-post-slider .slick-arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  outline: none;
  padding: 0px;
}

.hero-post-slider .slick-arrow.slick-prev {
  right: 80px;
}

@media only screen and (max-width: 991px) {
  .hero-post-slider .header-post-img {
    max-height: 400px;
  }

  .hero-post-slider .header-post-img img {
    min-height: 400px;
  }

  .hero-post-slider .header-post-title a {
    font-size: 2.8rem;
    line-height: 1.3;
  }

  .cs-mobile-toggle-track {
    right: 98px;
  }
}
@media only screen and (max-width: 740px) {
  .hero-post-slider .header-post-img img {
    min-height: 100%;
  }

  .hero-post-slider .header-post-img {
    max-height: 100%;
    min-height: 100%;
  }

  .hero-post-slider .slick-arrow {
    bottom: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .hero-post-slider .header-post-title a {
    font-size: 2rem;
    line-height: 1.3;
  }
}
/**
 * =========================================
 * - PAGE HEADER
 * =========================================
 */
#page-header {
  position: relative;
  margin: 0;
  width: 100%;
  color: #fff;
  background-color: #293951;
}

#page-header .container {
  position: relative;
}

#page-header .page-title {
  margin: 0;
  color: #fff;
}

#page-header .page-title small {
  color: inherit;
  opacity: 0.7;
}

#page-header .header-content {
  margin-top: 15px;
}

#page-header .header-content:first-child {
  margin-top: 0;
}

#page-header.text-center .cs-breadcrumb {
  left: 15px;
}

.cs-breadcrumb {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.cs-breadcrumb .cs-inner {
  display: inline-block;
  font-size: 11px;
  line-height: 1em;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px 2px 0 0;
}

.cs-breadcrumb a {
  color: #fff;
}

.cs-breadcrumb a:hover {
  opacity: 0.75;
  text-decoration: none;
}

.cs-breadcrumb .fa {
  padding: 0 3px;
}

/**
 * =========================================
 * - CONTENT
 * =========================================
 */
.site {
  overflow: hidden;
}

#content {
  overflow: visible;
  position: relative;
  max-width: 100%;
  min-height: 500px;
}

.container-fluid .container,
.container .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.cs-column-text {
  margin-bottom: 20px;
}

.cs-column-text:last-child,
.cs-column-text > *:last-child {
  margin-bottom: 0 !important;
}

/**
 * =========================================
 * - 404 Page
 * =========================================
 */
.cs-error-404 .cs-404 {
  margin: 0;
  padding: 0;
  font-size: 200px;
  line-height: 1em;
  opacity: 0.5;
}

.cs-error-404 .cs-not-found {
  margin: 0;
  padding: 0;
  font-size: 70px;
  opacity: 0.3;
}

.cs-error-404 .cs-search-form {
  width: 50%;
  margin: 0 auto;
}

/**
 * =========================================
 * - BLANK TEMPLATE
 * =========================================
 */
.cs-blank {
  display: table !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  vertical-align: middle;
}

.cs-blank-wrap {
  position: relative;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

/**
 * =========================================
 * - FOOTER
 * =========================================
 */
#colophon {
  position: relative;
  padding-top: 0;
  font-size: 90%;
  line-height: 1.65em;
  color: #fff;
  background-color: #293951;
}

#colophon a {
  color: #fff;
}

#colophon .current-menu-item > a,
#colophon a:hover {
  color: #fff;
  text-decoration: none;
}

#colophon .articlemag_widget {
  margin-top: 48px;
}

#colophon .articlemag_widget .about-strong,
#colophon .articlemag_widget .widget-title h4 {
  color: #fff;
}

#colophon .articlemag_widget ul li,
#colophon .articlemag_widget ul ul {
  border-color: rgba(232, 232, 232, 0.4);
}

#colophon .widget_calendar #today,
#colophon .widget_calendar thead th {
  color: #fff;
  background-color: #1d2838;
}

#colophon .widget_calendar tbody td,
#colophon .widget_calendar thead th {
  color: #fff;
  border-color: #374963 !important;
}

#colophon .widget_calendar tbody a {
  color: #fff;
}

#colophon .widget_search input,
#colophon .widget_search button {
  background-color: transparent;
}

/**
 * =========================================
 * - FOOTER BLOCK BEFORE AND AFTER
 * =========================================
 */
#cs-footer-block-before,
#cs-footer-block-after {
  position: relative;
  padding-top: 48px;
  font-size: 13px;
  line-height: 1.65em;
  color: #fff;
  background-color: #293951;
}

#cs-footer-block-before a,
#cs-footer-block-after a {
  color: #fff;
}

#cs-footer-block-before .current-menu-item > a,
#cs-footer-block-before a:hover,
#cs-footer-block-after .current-menu-item > a,
#cs-footer-block-after a:hover {
  color: #fff;
  text-decoration: none;
}

#cs-footer-block-before .articlemag_widget .about-strong,
#cs-footer-block-before .articlemag_widget .widget-title h4,
#cs-footer-block-after .articlemag_widget .about-strong,
#cs-footer-block-after .articlemag_widget .widget-title h4 {
  color: #fff;
}

#cs-footer-block-before .articlemag_widget ul li,
#cs-footer-block-before .articlemag_widget ul ul,
#cs-footer-block-after .articlemag_widget ul li,
#cs-footer-block-after .articlemag_widget ul ul {
  color: #fff;
}

#cs-footer-block-before .widget_search input,
#cs-footer-block-before .widget_search button,
#cs-footer-block-after .widget_search input,
#cs-footer-block-after .widget_search button {
  background-color: transparent;
}

/**
 * =========================================
 * - COPYRIGHT
 * =========================================
 */
#copyright {
  position: relative;
  font-size: 90%;
  line-height: 1.5em;
  padding: 50px 0;
  color: #fff;
  background-color: #293951;
  text-align: center;
  border-top: 1px #30435f solid;
}

#copyright a {
  color: #555;
}

#copyright a:hover {
  color: #fff;
  text-decoration: none;
}

/**
 * =========================================
 * - GO TOP
 * =========================================
 */
#cs-top {
  position: fixed;
  bottom: -30px;
  right: 5px;
  z-index: 99;
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background-color: #000;
  opacity: 0.3;
  border-radius: 2px;
}

#cs-top.in {
  bottom: 5px;
}

#cs-top:hover {
  opacity: 1;
}

#cs-top:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -6px;
}

/*
 * ---------------------------------------------------------
 * 04. BLOG
 * ---------------------------------------------------------
 */
.entry-meta .entry-cat-links:before,
.entry-meta .entry-featured:before,
.entry-tags:before,
.entry-meta a:before {
  margin-right: 4px;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-featured:before {
  content: "\f041";
}

.entry-date a:before {
  content: "\f017";
}

.entry-author-link a:before {
  content: "\f007";
}

.entry-cat-links:before {
  content: "\f115";
}

.entry-comments-link a:before {
  content: "\f0e5";
}

.entry-edit-link a:before {
  content: "\f040";
}

.entry-love a:before {
  content: "\f08a";
}

.entry-tags:before {
  content: "\f02c";
}

.entry-format-aside a:before {
  content: "\f1db";
}

.entry-format-gallery a:before {
  content: "\f030";
}

.entry-format-link a:before {
  content: "\f0c1";
}

.entry-format-image a:before {
  content: "\f03e";
}

.entry-format-quote a:before {
  content: "\f10e";
}

.entry-format-status a:before {
  content: "\f0a2";
}

.entry-format-video a:before {
  content: "\f03d";
}

.entry-format-audio a:before {
  content: "\f028";
}

.entry-format-chat a:before {
  content: "\f0e6";
}

.entry-loved {
  color: #d63e33 !important;
}

.entry-content embed,
.entry-content object,
.entry-content iframe,
.entry-content video {
  max-width: 100%;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-video {
  margin-bottom: 20px;
}

.entry-read-more {
  display: block;
  margin-top: 7px;
}

.entry-footer {
  margin-top: 24px;
}

.mono-font, .comment-metadata, .comment-navigation,
.entry-meta,
.entry-tags {
  font-size: 14px;
  font-weight: normal;
}

.comment-meta a,
.entry-tags a,
.entry-title a,
.entry-meta a {
  color: #293951;
  display: inline-block;
}

.comment-meta a:hover,
.entry-tags a:hover,
.entry-title a:hover,
.entry-meta a:hover {
  color: #333333;
  text-decoration: none;
}

/*
 * ========================================
 *  FEATURED SLIDER
 * ========================================
 */
.article-featured-slider .article-slider {
  overflow: hidden;
  border-radius: 10px;
}

.article-featured-slider-sec {
  position: relative;
  height: 100%;
  background-color: #04aeee;
  z-index: 1;
}

.article-featured-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.article-featured-img div {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  opacity: .7;
}

.article-slider,
.article-slider .slick-list,
.article-slider .slick-track {
  height: 100%;
}

.article-slider .slick-arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  outline: none;
  padding: 0px;
}

.article-slider .slick-arrow.slick-prev {
  right: 80px;
}

[dir='rtl'] .article-slider .slick-arrow {
  right: auto;
  left: 40px;
}

[dir='rtl'] .article-slider .slick-arrow.slick-prev {
  right: auto;
  left: 40px;
}

[dir='rtl'] .article-slider .slick-arrow.slick-next {
  right: auto;
  left: 80px;
}

.article-featured-info {
  top: 40px;
  left: 40px;
  position: absolute;
  z-index: 4;
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
}

.article-featured-info .article-avatar {
  position: relative;
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.article-featured-info .article-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.article-cat a {
  color: #fff;
  letter-spacing: .3px;
  font-weight: 700;
  font-size: 1rem;
}

.article-featured-info .article-card-featured {
  position: absolute;
  top: 5px;
  right: 0px;
  width: auto;
  height: 24px;
  padding: 0 10px;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  background-color: #fff;
  z-index: 2;
}

[dir='rtl'] .article-featured-info .article-card-featured {
  left: 0;
  right: auto;
}

.article-featured-info .article-card-featured span {
  color: #000;
}

.article-featured-info .article-card-featured span:first-of-type {
  font-size: .75rem;
  margin-right: 4px;
}

[dir='rtl'] .article-featured-info .article-card-featured span:first-of-type {
  margin-left: 4px;
  margin-right: 0;
}

.article-featured-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 120px 40px 40px;
  position: relative;
  z-index: 3;
}

.article-featured-content:hover {
  text-decoration: none;
}

.article-featured-content h2 {
  letter-spacing: .5px;
  font-size: 2.25em;
  max-width: 80%;
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

.article-featured-content .entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  letter-spacing: .2px;
  font-size: .875rem;
  font-weight: 600;
}

/*
 * ========================================
 * 10.01 BLOG DEFAULT
 * ========================================
 */
.blog section#page-header {
  display: none;
}

.blog-default .article-post {
  padding-bottom: 50px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 50px;
}

.blog-default .entry-header {
  margin-top: 10px;
}

.blog-default .entry-title {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: .4px;
}

.blog-default .entry-title a {
  color: #333;
}

.blog-default a:hover {
  text-decoration: none;
}

.blog-default .entry-meta > span {
  margin-right: 10px;
}

.blog-search {
  overflow: hidden;
}

.blog-search .hentry {
  margin-bottom: 50px;
}

.blog-default .article-post-gird {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 20px;
  /*    margin: 0 -20px;*/
}

.blog-layout-small .article-featured-slider {
  width: 100%;
}

.article-featured-slider {
  width: -webkit-calc(66.66667% - 40px);
  width: calc(66.66667% - 40px);
  margin: 0 20px 40px 20px;
  overflow: unset;
  position: relative;
  height: 420px;
  border: 1px solid #f0f8ff;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  border-radius: 10px;
}

.blog-default .article-post {
  width: -webkit-calc(33.33333% - 40px);
  width: calc(33.33333% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 420px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #f0f8ff;
  z-index: 1;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  padding-bottom: 0;
}

.article-featured-slider:hover,
.blog-default .article-post-gird .article-post:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.article-featured-slider:before,
.blog-default .article-post-gird .article-post:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0;
  left: 0px;
  border-radius: 10px;
  -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.article-featured-slider:hover:before,
.blog-default .article-post-gird .article-post:hover:before {
  -o-box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 0 0 transparent;
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 0 0 transparent;
}

.blog-default .article-post .article-card-img {
  position: relative;
  height: 200px;
  border-radius: 10px 10px 0 0;
  background-color: #f4f8fd !important;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  height: 220px;
  overflow: hidden;
}

.article-post .article-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article-post .article-avatar {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.article-post .article-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.article-post .article-card-featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 26px;
  right: 20px;
  width: 24px;
  height: 24px;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  font-size: 14px;
}

.article-post .article-card-featured:hover {
  text-decoration: none;
}

.article-post .article-card-info {
  padding: 25px 25px;
  position: relative;
  height: 200px;
}

.article-post .article-cat {
  color: #293951;
  letter-spacing: .2px;
  font-size: .875rem;
  font-weight: 600;
  display: block;
  width: 100%;
  /*min-height: 20.2px;
  max-height: 20.2px;*/
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-post .article-cat a {
  color: #293951;
  margin-right: 5px;
}

.article-post .entry-meta {
  position: absolute;
  bottom: 25px;
}

/*
 * ========================================
 * 10.03 BLOG MEDIUM
 * ========================================
 */
.blog-layout-medium .hentry {
  margin-bottom: 50px;
  float: left;
  width: 100%;
}

.blog-layout-medium .entry-header {
  text-align: right;
}

.blog-layout-medium .entry-meta > span {
  display: block;
  margin-right: 0;
  margin-bottom: 5px;
}

.blog-layout-medium .article-featured-slider {
  width: 100%;
}

/*
 * ========================================
 * 10.03 BLOG SMALL
 * ========================================
 */
.blog-layout-small .hentry {
  margin-bottom: 50px;
  float: left;
  width: 100%;
}

/*
 * ========================================
 * 10.03 BLOG MASONARY
 * ========================================
 */
.blog-masonry .article-featured-slider {
  width: 100%;
  margin: 0 0 40px;
}

.blog-masonry-border {
  padding: 10px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
}

.blog-masonry .hentry {
  margin-bottom: 30px;
}

.blog-masonry .entry-header {
  margin-bottom: 10px;
}

.blog-masonry .entry-title {
  font-size: 18px;
  margin: 0 0 14px 0;
}

.blog-masonry .entry-meta > span {
  margin-right: 10px;
}

.blog-masonry .mejs-container.wp-video-shortcode {
  background: none !important;
}

.blog-masonry .wp-playlist {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.container-fluid .blog-masonry .row {
  margin-left: 15px;
  margin-right: 15px;
}

.page-pagination {
  clear: both;
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  width: 100%;
}

.page-pagination span,
.page-pagination a {
  color: #333;
  display: inline-block;
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  margin-right: -1px;
}

.page-pagination span:first-child,
.page-pagination a:first-child {
  border-radius: 3px 0 0 3px;
}

.page-pagination span:last-child,
.page-pagination a:last-child {
  border-radius: 0 3px 3px 0;
}

.page-pagination a:hover {
  color: #293951;
  text-decoration: none;
}

.page-pagination .current {
  color: #fff;
  border: 1px solid #293951;
  background-color: #293951;
}

.page-pagination .pagination-shadow {
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ajax-pagination {
  clear: both;
  width: 100%;
  text-align: center;
  margin: 20px 0 50px 0;
}

.ajax-pagination .ajax-load-more {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ajax-pagination .cs-loader {
  position: absolute;
  left: auto;
  top: 5px;
  right: 12px;
  width: 15px;
  height: 15px;
  margin: 0;
  background-color: #fff;
}

.ajax-pagination .cs-loader:after {
  background-color: #293951;
}

.ajax-pagination .more-loading {
  padding-right: 40px;
}

.ajax-pagination .more-loading .cs-loader {
  display: inline;
}

/**
 * ========================================
 * 14. BLOG SINGLE PAGE
 * ========================================
 */
.single #page-header {
  display: none;
}

.single #page-header.page-header_meta {
  display: block;
}

.single-post .hentry {
  padding-bottom: 0;
  border: none;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}

.single-post-image {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 500px;
  color: #fff;
  background-color: #0a0a0a;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 60px;
  margin-left: -webkit-calc(-100vw / 2 + 100% / 2);
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: -webkit-calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
}

.single-post .entry-image {
  min-height: 600px;
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

.single-post .entry-image img {
  width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.cs-boxed-layout .single-post-image {
  margin: 0px;
}

.single-post .entry-image {
  margin-bottom: 0px;
}

.signle-post-content {
  margin-top: 50px;
}

.single-post .post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  z-index: 1;
  opacity: .7;
}

.single-post .entry-header {
  text-align: center;
  margin-bottom: 60px;
}

.single-post .entry-header .entry-title {
  letter-spacing: .7px;
  font-size: 2.625rem;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
  font-weight: 700;
}

.single-post .entry-header .post-meta {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: .2px;
  font-weight: 600;
  color: #293951;
}

.single-post .entry-header .post-meta a {
  color: #293951;
}

.single-post .entry-header .post-meta span:after {
  content: '';
  height: 5px;
  width: 5px;
  background: #9b9b9b;
  display: inline-block;
  border-radius: 100%;
  margin: 0 10px;
}

.single-post .entry-header .post-meta span:last-child:after {
  display: none;
}

.single-post .post-content {
  position: relative;
}

.article-share {
  left: -200px;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  height: auto;
  z-index: 3;
  background-color: transparent;
  -o-box-shadow: 0 0 0 transparent,0 0 0 transparent;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent;
}

.share-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
}

.share-content .sticky-icons {
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  margin: 0 0 20px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50%;
  -o-box-shadow: 0 2px 4px rgba(108, 108, 108, 0.2), 0 0 0 transparent;
  box-shadow: 0 2px 4px rgba(108, 108, 108, 0.2), 0 0 0 transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.share-content .sticky-icons:hover {
  -o-box-shadow: 0 4px 8px rgba(108, 108, 108, 0.3), 0 0 0 transparent;
  box-shadow: 0 4px 8px rgba(108, 108, 108, 0.3), 0 0 0 transparent;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.single-post .post p {
  letter-spacing: .3px;
  line-height: 1.6;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.entry-author {
  border-top: 2px solid #f4f8fd;
  border-bottom: 2px solid #f4f8fd;
  padding: 60px 0;
  margin-top: 40px;
  /* margin-left: calc(-100vw / 2 + 100% / 2);
   margin-right: calc(-100vw / 2 + 100% / 2);*/
  max-width: 100vw;
}

.entry-author .author-container,
.comments-area,
.post-navigation,
.single-post .entry-footer {
  max-width: 850px;
  margin: auto;
  padding: 0 15px;
}

.entry-author .author-title {
  font-size: 16px;
  margin-top: 0;
  text-transform: capitalize;
  font-weight: normal;
}

.entry-author .author-avatar {
  float: left;
}

.entry-author .author-avatar img {
  border-radius: 100px;
}

.entry-author .author-info {
  margin-left: 85px;
}

.entry-author .author-meta {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-top: 10px;
}

.entry-author .author-meta ul.author-social {
  margin: 0px;
}

.entry-author .author-meta ul.author-social li {
  margin: 0 20px 0 0;
}

.entry-author .author-meta ul.author-social a {
  color: #4a4a4a;
}

.related-posts {
  padding-top: 50px;
  margin-bottom: 25px;
}

.related-posts .related-title {
  text-align: center;
  color: #4a4a4a;
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 40px;
}

.related-posts .article-post .article-card-img img {
  width: 100%;
  height: auto;
}

/*.related-posts ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.related-posts ul li {
    margin-bottom: 5px;
}
.related-posts ul li a {
    color: #333;
}
.related-posts ul li a:hover {
    color: #333;
    text-decoration: none;
}
.related-posts ul li a:before {
    display: inline-block;
    margin-right: 5px;
    content: "\f0f6";
}
.related-posts ul li time {
    font-size: 90%;
}

.related-posts-thumbnail ul {
    margin-left: -10px;
    margin-right: -10px;
}
.related-posts-thumbnail ul li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 10px;
}
.related-posts-thumbnail ul li img {
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #eee;
    background-color: #fff;
}
.related-posts-thumbnail ul li a {
    font-size: 11px;
    display: block;
    font-weight: bold;
    line-height: 1.5em;
}
.related-posts-thumbnail ul li a:before {
    display: none;
}*/
.related-posts .article-post .article-card-featured {
  display: none;
}

.related-posts .article-post.cs-featured .article-card-featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-default .related-posts .article-post {
  width: -webkit-calc(45% - 40px);
  width: calc(45% - 40px);
}

.single-post .related-posts .entry-header .entry-title {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: .4px;
  font-weight: 600;
  text-align: left;
}

.blog-default .related-posts .article-post.article-post-not-img {
  height: auto;
}

.post-navigation {
  border-top: 2px solid #f4f8fd;
  border-bottom: 2px solid #f4f8fd;
  margin-top: 24px;
  padding: 30px 15px;
  font-size: 1rem;
  font-weight: normal;
}

.post-navigation a {
  display: block;
  color: #333;
}

.post-navigation a:hover {
  color: #333;
  text-decoration: none;
}

.post-navigation .nav-previous {
  float: left;
}

.post-navigation .nav-next {
  float: right;
  text-align: right;
}

.post-navigation strong {
  display: none;
}

#cs-portfolio-comments .comments-area,
#cs-page-comments .comments-area {
  border-top: 1px solid #e8e8e8;
  padding-top: 25px;
  margin-top: 60px;
}

#cs-portfolio-comments .comment-respond,
#cs-page-comments .comment-respond {
  margin-top: 0;
}

.comments-area {
  margin-top: 60px;
  margin-bottom: 60px;
}

.comments-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

.comment-respond {
  margin-top: 25px;
}

.comment-reply-title {
  font-size: 2rem;
  margin-top: 0;
}

.bypostauthor,
.logged-in-as,
.comment-notes {
  font-size: 13px;
}

.form-allowed-tags {
  width: 70%;
  font-size: 12px;
}

.form-allowed-tags code {
  color: #777;
  background-color: #f5f5f5;
  white-space: normal;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
}

.comment-form .required {
  color: #d63e33 !important;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 50%;
  box-shadow: none;
  border: 1px #e8e8e8 solid;
  border-radius: 4px;
  padding: 10px;
  height: auto;
  background: #fdfeff;
}

.comment-form textarea {
  width: 100%;
  height: 150px;
}

.comment-form .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
  margin: 0px 5px 0 0;
  vertical-align: middle;
  height: 14px;
  width: 14px;
}

#cancel-comment-reply-link:before,
.comment-reply-link:before {
  display: inline-block;
  margin-right: 5px;
}

#cancel-comment-reply-link:before {
  content: "\f00d";
}

.comment-reply-link:before {
  content: "\f112";
}

#cancel-comment-reply-link,
.comment-reply-link {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  color: #293951;
}

#cancel-comment-reply-link:hover,
.comment-reply-link:hover {
  color: #555;
  text-decoration: none;
}

#cancel-comment-reply-link {
  color: #d63e33;
  margin-left: 10px;
}

.comment-list {
  padding: 0;
  margin: 0 0 48px 0;
  list-style-type: none;
}

.comment-list .comment {
  padding-top: 24px;
  margin-bottom: 24px;
  border-top: 1px solid #e8e8e8;
  position: relative;
}

.comment-list .comment.even,
.comment-list .comment.odd {
  padding: 25px;
  border-radius: 5px;
  border: 1px solid #f0f8ff;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.comment-list .comment.even:before,
.comment-list .comment.odd:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0;
  left: 0px;
  border-radius: 10px;
  -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.comment-list .comment.even:hover,
.comment-list .comment.odd:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.comment-list .comment.even:hover:before,
.comment-list .comment.odd:hover:before {
  -o-box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 0 0 transparent;
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 0 0 transparent;
}

.comment-list .children {
  padding: 0;
  margin: 24px 0 24px 24px;
  list-style-type: none;
}

.comment-list .children li:before {
  box-shadow: none !important;
}

.comment-list .avatar {
  overflow: hidden;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 0;
  border-radius: 100px;
}

.comment-list .reply {
  margin-top: 10px;
  margin-left: 70px;
}

.comment-list .says {
  display: none;
}

.comment-list .comment-respond {
  margin-left: 70px;
  position: relative;
  z-index: 1;
}

.comment-list .pingback {
  margin: 10px 0;
}

.comment-body {
  position: relative;
}

.comment-meta {
  margin-left: 70px;
}

.comment-metadata {
  display: inline-block;
}

.comment-metadata time:before,
.comment-metadata .comment-edit-link:before {
  display: inline-block;
  margin-right: 5px;
}

.comment-metadata time:before {
  content: "\f017";
  margin-right: 0;
}

.comment-metadata .edit-link {
  margin-left: 5px;
}

.comment-metadata .comment-edit-link:before {
  content: "\f040";
}

.comment-author {
  display: inline-block;
  margin-right: 10px;
}

.comment-content {
  margin-left: 70px;
  margin-top: 10px;
}

.comment-navigation {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-top: 24px;
  padding: 10px 0;
}

.comment-navigation a {
  display: block;
  color: #333;
}

.comment-navigation a:hover {
  color: #293951;
  text-decoration: none;
}

.comment-navigation .nav-previous {
  float: left;
}

.comment-navigation .nav-next {
  float: right;
}

.entry-image {
  position: relative;
  margin-bottom: 14px;
}

.entry-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

.entry-image a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.entry-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  border-radius: 2px;
}

.entry-image-overlay:hover {
  opacity: 0.3;
}

.entry-media {
  overflow: hidden;
  margin-bottom: 14px;
}

.entry-media embed,
.entry-media object,
.entry-media video,
.entry-media iframe {
  max-width: 100%;
}

.entry-media .wp-playlist {
  margin: 0 !important;
}

.wp-playlist-item,
.wp-playlist {
  border-color: #e8e8e8;
}

.format-audio .entry-image {
  margin-bottom: 0;
}

.format-audio .entry-image img {
  border-radius: 2px 2px 0 0;
}

.entry-gallery {
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  float: left;
  margin: 0;
  padding: 0 1px 1px 0;
}

.gallery-item img {
  border-radius: 2px;
}

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

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333333333%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.6666666667%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.2857142857%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.1%;
}

.gallery-caption {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 1px;
  max-height: 90%;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  margin: 0 1px 0 0;
  padding: 6px 8px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  border-radius: 0 0 2px 2px;
}

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

.blog-masonry .gallery-caption {
  display: none;
}

.gallery {
  overflow: hidden;
}

.entry-content .gallery {
  margin-bottom: 20px;
}

.cs-chat {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cs-chat-row {
  margin-bottom: 15px;
}

.cs-chat-author {
  font-weight: 600;
}

.cs-chat-text {
  padding-left: 17px;
}

.cs-chat-row-even .cs-chat-author {
  color: #d9534f;
}

.cs-chat-row-odd .cs-chat-author {
  color: #5cb85c;
}

.format-quote blockquote {
  margin-left: 0;
  margin-right: 0;
}

/*
 * ---------------------------------------------------------
 * 05. WIDGETS
 * ---------------------------------------------------------
 */
.cs-search-form {
  clear: both;
  position: relative;
}

.cs-search-form .cs-link {
  display: none;
}

.cs-search-form input[type="text"] {
  padding-right: 30px;
}

.cs-search-form button {
  position: absolute;
  top: 4px;
  right: 5px;
  padding: 5px;
  margin: 0;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  opacity: 0.3;
}

.widget_search .cs-search-form .cs-link {
  display: none;
}

.articlemag_widget {
  width: 100%;
  margin-bottom: 48px;
  word-wrap: break-word;
}

.articlemag_widget .widget-title h4 {
  font-size: 22px;
  font-weight: 700;
  color: #242323;
  margin-bottom: 20px;
}

.articlemag_widget .widget-title h4:after {
  display: inline-block;
  content: '';
  width: 5px;
  height: 5px;
  background-color: #293951;
  border-radius: 50%;
  margin-left: 5px;
}

.articlemag_widget ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.articlemag_widget ul:not(.bbp-stats) li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.4);
}

.articlemag_widget ul li a {
  color: #333;
}

.articlemag_widget ul li a:hover {
  color: #293951;
  text-decoration: none;
}

.articlemag_widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.articlemag_widget ul li ul {
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 15px;
  border-top: 1px solid #e8e8e8;
}

.cs_widget_custom_posts .cs-with-image li {
  position: relative;
  padding-left: 70px;
  min-height: 74px;
  margin-bottom: 10px;
  padding-bottom: 14px;
}

.cs_widget_custom_posts .cs-with-image li a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.cs_widget_custom_posts .cs-with-image li a img {
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 2px;
  width: 60px;
}

.cs_widget_custom_posts .cs-full-with-image a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.cs_widget_custom_posts .cs-full-with-image a img {
  display: block;
  max-width: 100%;
  margin-bottom: 7px;
  border-radius: 2px;
}

.cs_widget_custom_posts .post-date,
.cs_widget_custom_posts .post-category {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.widget_recent_entries .post-date:before {
  content: "\f017";
  margin-right: 2px;
  opacity: 0.7;
}

.cs_widget_portfolio_photos .tooltip-arrow {
  top: auto !important;
}

.cs_widget_portfolio_photos a {
  display: block;
  padding: 0;
}

.cs_widget_portfolio_photos a:hover {
  opacity: 0.75;
}

.cs_widget_portfolio_photos img {
  display: block;
  border-width: 0 1px 1px 0;
  border-color: transparent;
  border-style: solid;
  border-radius: 2px;
}

.widget_recent_comments .recentcomments:before {
  content: "\f0e5";
  font-size: 12px;
  margin-top: 5px;
  margin-right: 7px;
}

.widget_calendar table {
  width: 100%;
  margin: 0;
  line-height: 2.25em;
}

.widget_calendar caption {
  margin-bottom: 5px;
}

.widget_calendar thead th {
  background-color: #f5f5f5;
}

.widget_calendar tbody td,
.widget_calendar thead th {
  text-align: center;
  color: #555;
  border: 1px solid #e8e8e8 !important;
}

.widget_calendar tbody a {
  display: block;
  color: #fff;
  background-color: #293951;
  border-radius: 3px;
}

.widget_calendar tbody a:hover {
  color: #fff;
  background-color: #555;
  text-decoration: none;
}

.widget_calendar #today {
  background-color: #f5f5f5;
}

.widget_calendar #next {
  text-align: right;
}

#sidebar .widget_nav_menu {
  position: relative;
  padding: 20px 0;
  font-size: 13px;
}

#sidebar .widget_nav_menu ul li {
  position: relative;
  padding: 0;
  margin: 0;
}

#sidebar .widget_nav_menu ul li a {
  position: relative;
  display: block;
  padding: 12px 20px;
  border: 1px solid transparent;
}

#sidebar .widget_nav_menu ul li a:hover {
  color: #293951;
}

#sidebar .widget_nav_menu ul li ul {
  margin: 0;
  padding: 0;
  border-top: none;
}

#sidebar .widget_nav_menu ul li ul a {
  padding-left: 40px;
}

#sidebar .widget_nav_menu ul li.current-menu-item {
  margin-top: -1px;
  border: none;
}

#sidebar .widget_nav_menu ul li.current-menu-item > a {
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #293951;
}

#sidebar .widget_nav_menu ul li.current-menu-item > a:after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background-color: #293951;
}

#sidebar .widget_nav_menu:before, #sidebar .widget_nav_menu:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  right: 0;
}

#sidebar .widget_nav_menu:before {
  top: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(#ffffff, rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
}

#sidebar .widget_nav_menu:after {
  bottom: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

#sidebar .widget_nav_menu .fa {
  margin-right: 5px;
}

.sidebar-right .widget_nav_menu {
  box-shadow: 1px 0 0 #eee inset;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjZmNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 120 50%, color-stop(0%, #f6f6f6), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(left, #f6f6f6 0%, #ffffff 120px);
  background-image: linear-gradient(to right, #f6f6f6 0%, #ffffff 120px);
}

.sidebar-right .widget_nav_menu .current-menu-item > a {
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
  border-left-color: transparent !important;
}

.sidebar-right .widget_nav_menu .current-menu-item > a:after,
.page-sidebar .widget_nav_menu .current-menu-item > a:after {
  right: -1px;
}

.sidebar-right .widget_nav_menu .widget-title h4 {
  margin-left: 20px;
}

.sidebar-left .widget_nav_menu {
  box-shadow: -1px 0 0 #eee inset;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjZmNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #ffffff));
  background-image: -webkit-linear-gradient(right, #f6f6f6 0%, #ffffff 20px);
  background-image: linear-gradient(to left, #f6f6f6 0%, #ffffff 20px);
}

.sidebar-left .widget_nav_menu .current-menu-item > a {
  box-shadow: -1px 0 3px rgba(0, 0, 0, 0.05);
  border-right-color: transparent !important;
}

.sidebar-left .widget_nav_menu .current-menu-item > a:after {
  left: -1px;
}

.sidebar-left .widget_nav_menu .widget-title h4 {
  margin-left: 20px;
}

.widget_pages a:before {
  content: "\f105";
  font-size: 90%;
  margin-right: 5px;
  opacity: 0.5;
}

.widget_archive .screen-reader-text,
.widget_categories .screen-reader-text {
  display: none;
}

/*
 * ---------------------------------------------------------
 * 07. HELPERS
 * ---------------------------------------------------------
 */
.col-md-five {
  width: 20%;
}

.cs-text-white {
  color: #fff;
}

.cs-text-black {
  color: #000;
}

.cs-hide {
  display: none;
}

.cs-show {
  display: block;
}

.cs-radius {
  border-radius: 3px;
}

.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.xs-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}

.sm-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.md-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.lg-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.xl-padding {
  padding-top: 160px;
  padding-bottom: 160px;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.xs-margin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sm-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

.md-margin {
  margin-top: 40px;
  margin-bottom: 40px;
}

.lg-margin {
  margin-top: 80px;
  margin-bottom: 80px;
}

.xl-margin {
  margin-top: 160px;
  margin-bottom: 160px;
}

.cs-accent-color {
  color: #293951;
}

.cs-accent-background {
  background-color: #293951;
}

.cs-accent-border {
  border-color: #293951;
}

.cs-text-white h1,
.cs-text-white h2,
.cs-text-white h3,
.cs-text-white h4,
.cs-text-white h5,
.cs-text-white h6 {
  color: inherit;
}

/*
 * ---------------------------------------------------------
 * 08. OTHERS
 * ---------------------------------------------------------
 */
.cs-password-btn {
  margin-top: 0;
  margin-bottom: 5px !important;
  vertical-align: bottom;
}

.cs-login-form .login-remember {
  margin-bottom: 5px;
}

.cs-login-form .login-remember input {
  position: relative;
  top: 2px;
}

.cs-login-form .cs-lost-password {
  margin-top: 10px;
}

#sidebar #lang_sel {
  z-index: 1;
  height: auto;
  display: block;
}

#sidebar #lang_sel li {
  float: none;
  width: 100%;
  border-bottom: none;
}

#sidebar #lang_sel a,
#sidebar #lang_sel a:visited {
  line-height: 30px;
}

#sidebar #lang_sel ul ul {
  width: 100%;
  top: 31px;
}

#sidebar #lang_sel ul ul a,
#sidebar #lang_sel ul ul a:visited {
  line-height: 30px;
  padding: 0 10px;
}

#lang_sel_footer ul li {
  display: inline-block;
  margin: 2px;
}

#lang_sel_list {
  z-index: 1;
}

#lang_sel img,
#lang_sel_list img,
#lang_sel_footer img {
  top: -1px !important;
}

#lang_sel_list.lang_sel_list_horizontal {
  height: auto;
}

#lang_sel_list.lang_sel_list_horizontal ul {
  border: none;
}

#lang_sel_list.lang_sel_list_horizontal li {
  float: none;
  display: inline-block;
}

#lang_sel_list.lang_sel_list_vertical ul,
#lang_sel_list.lang_sel_list_vertical li,
#lang_sel_list.lang_sel_list_vertical {
  float: none;
  width: 100%;
  height: auto;
}

#lang_sel_list.lang_sel_list_vertical a {
  line-height: 30px;
}

#lang_sel_list.lang_sel_list_vertical li {
  border: none;
}

.cs-lang-top-modal .cs-modal-content-hover,
.cs-lang-top-modal .cs-modal-content {
  width: 170px;
  padding: 0;
}

.cs-lang-top-modal img {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.cs-lang-top-modal ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cs-lang-top-modal ul li a {
  display: block;
  padding: 10px;
  font-size: 11px;
  line-height: 1em;
  color: #333;
  border-top: 1px solid #eee;
}

.cs-lang-top-modal ul li a:hover {
  color: #293951;
  background-color: #f8f8f8;
  text-decoration: none;
}

.cs-lang-top-modal ul li:first-child a {
  border: none;
}

.cs-layouts-options {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}

.cs-layouts-options.cs-first {
  margin-bottom: 50px;
}

.cs-layouts-options li {
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.cs-layouts-options li:hover {
  opacity: 1;
}

.cs-layouts-options li div {
  display: block;
  font-weight: 800;
  margin-top: 5px;
}

.footer-logo-left {
  max-width: 170px;
  display: block;
  margin: 4px 7px 4px 0;
}

.wpb_revslider_element {
  margin-bottom: 0 !important;
}

.cs-section.wpb_row {
  margin-bottom: 0;
}

.vc_grid .entry-read-more {
  display: none;
}

/*
 * ---------------------------------------------------------
 * 09. AUTHOR SINGLE
 * ---------------------------------------------------------
 */
.auhtor-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  z-index: 1;
  opacity: .7;
}

.author-content {
  max-width: 700px;
  position: relative;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  margin: auto;
  min-height: 565px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.author_hero {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}

.author_hero img {
  border-radius: 50%;
  -o-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
  background-color: #5c697c;
}

.author-content .author-title {
  letter-spacing: .5px;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 15px;
}

.author-content .author-description {
  font-size: 1.125rem;
  letter-spacing: .2px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.author-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.author-meta ul.author-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0px 10px;
  padding: 0px;
}

.author-meta ul.author-social li {
  margin: 0 10px;
  font-size: 18px;
}

.author-meta ul.author-social li a {
  color: #fff;
}

.author-meta span.post-count {
  letter-spacing: .3px;
  font-size: 1rem;
}

.author-meta span.post-count:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  height: 5px;
  width: 5px;
  background: #fff;
  border-radius: 20px;
}

#page-header .category-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  background: #f4f8fd;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#page-header .category-hero:after {
  content: '';
  background: rgba(255, 255, 255, 0.7);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: block;
}

#page-header .category-content {
  max-width: 700px;
  position: relative;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  margin: auto;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}

#page-header .category-content .page-title {
  letter-spacing: .8px;
  font-size: 3.25rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
  font-weight: 700;
}

/*
 * ---------------------------------------------------------
 * 10. FOOTER SOCIAL MEDIA
 * ---------------------------------------------------------
 */
#copyright .cs-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

#copyright .cs-bottom-right a {
  color: #fff;
  font-size: 1.125rem;
}

.cs-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.cs-bottom-right a {
  font-size: 1.125rem;
}

/*
 * ---------------------------------------------------------
 * 10. MOBILE VIEW BLOG DEFAULT
 * ---------------------------------------------------------
 */
@media only screen and (max-width: 991px) {
  .header-hero {
    min-height: 400px;
  }

  .header-hero-content .hero-title {
    font-size: 2.8rem;
  }

  .blog-default .article-post-gird {
    margin: 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .article-featured-slider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-default .article-post {
    width: -webkit-calc(50% - 20px) !important;
    width: calc(50% - 20px) !important;
    margin-left: 0px;
    margin-right: 0px;
  }

  .article-post-gird .clear {
    display: none;
  }

  .single-post-image {
    height: 450px;
    min-height: auto;
  }

  .single-post .entry-image {
    height: auto;
    min-height: inherit;
  }
}
@media only screen and (max-width: 600px) {
  .header-hero {
    min-height: 350px;
  }

  .header-hero-content .hero-title {
    font-size: 2rem;
  }

  .blog-default .article-post {
    width: -webkit-calc(100% - 0px) !important;
    width: calc(100% - 0px) !important;
  }

  .article-featured-slider {
    height: 350px;
  }

  .article-featured-info .article-card-featured {
    top: 0px;
  }

  .article-featured-content h2 {
    font-size: 1.5em;
  }

  .single-post-image {
    height: 350px;
    min-height: auto;
  }

  .author-container {
    text-align: center;
  }

  .entry-author .author-avatar {
    float: none;
    width: 70px;
    margin: 0 auto 20px;
  }

  .entry-author .author-info {
    margin: 0;
  }

  .single-post .entry-header .post-meta {
    font-size: 0.85rem;
    font-weight: normal;
  }

  .single-post .entry-header .entry-title {
    font-size: 2rem;
  }

  .single-post .post p {
    letter-spacing: .2px;
    line-height: 1.5;
    font-size: 1.125rem;
    margin-bottom: 25px;
  }

  #page-header .category-content {
    min-height: 200px;
  }

  #page-header .category-content .page-title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 1024px) {
  .article-share {
    position: fixed;
    bottom: 0;
    top: inherit;
    height: 50px;
    left: 0;
    right: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
  }

  .share-content {
    position: relative !important;
    top: inherit !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
  }

  .share-content .sticky-icons {
    height: 32px;
    width: 32px;
    margin: 0 10px;
    font-size: 0.85rem;
  }
}
/*--------------------------------------------------------------
# BuddyPress User Menu
--------------------------------------------------------------*/
.cs-user-link-wrap {
  height: 65px;
  line-height: 65px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cs-header-left .cs-user-link-wrap,
.cs-header-center .cs-user-link-wrap {
  height: 50px;
  line-height: 50px;
  padding-left: 0;
}

.cs-header-fancy .cs-user-link-wrap {
  height: 100px;
  line-height: 100px;
}

.cs-header-center .cs-user-link-wrap {
  padding-left: 5px;
  padding-right: 5px;
}

.cs-header-default .is-compact .cs-user-link-wrap,
.cs-header-fancy .is-compact .cs-user-link-wrap {
  height: 50px;
  line-height: 50px;
}

.cs-header-left .is-compact .cs-user-link-wrap,
.cs-header-center .is-compact .cs-user-link-wrap {
  height: 40px;
  line-height: 40px;
}

.cs-header-default .is-compact .cs-user-link img,
.cs-header-left .is-compact .cs-user-link img,
.cs-header-center .is-compact .cs-user-link img,
.cs-header-fancy .is-compact .cs-user-link img {
  width: 40px;
  height: 40px;
}

.cs-user-link img,
.buddypress .cs-user-link img {
  display: inline-block;
  line-height: 0;
  padding: 3px;
  margin-top: -3px;
  margin-left: 5px;
  border-radius: 100%;
}

.cs-bp-user-menu.sfHover #bp-userbar {
  display: block;
}

ul#bp-userbar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-top: 2px solid #293951;
  margin-top: -2px;
  position: absolute;
  right: 0;
  z-index: 300;
  top: 100%;
  width: 170px;
  background-color: #fff;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.07);
}

#site-nav ul li ul#bp-userbar {
  width: 170px;
}

ul#bp-userbar li {
  position: relative;
  line-height: 1.65em;
}

ul#bp-userbar li + li {
  border-top: 1px solid #eee;
}

ul#bp-userbar li:first-child a {
  border-top: none;
}

ul#bp-userbar li a {
  display: block;
  position: relative;
  padding: 5px 12px;
  color: #333;
  background-color: #fff;
  text-decoration: none;
}

ul#bp-userbar li a:hover {
  color: #293951;
  background-color: #f8f8f8;
  text-decoration: none;
}

/* User Notifications */
.cs-notification-count {
  display: inline-block;
  position: relative;
  top: -5px;
  padding: 0;
  font-size: 9px;
  margin-left: -5px;
  color: #fff;
  background-color: #293951;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
}

.cs-notification .cs-notification-count {
  top: -8px;
}

.bp-msg .bp-icon-wrap,
.user-notifications .bp-icon-wrap,
.cs-mobile-icons-wrapper .cs-menu-cart > a {
  color: #333;
}

#site-nav .cs-notification.sfHover .sub-menu {
  display: block;
}

#site-nav .cs-notification .sub-menu {
  width: 350px;
  margin: 0;
  padding: 0;
  right: 0;
  color: #333;
  background-color: #fff;
  border-top: 2px solid #293951;
  text-decoration: none;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.07);
}

#site-nav .cs-notification .sub-menu li + li {
  border-top: 1px solid #eeeeee;
}

#site-nav .cs-notification .sub-menu li {
  line-height: normal;
}
#site-nav .cs-notification .sub-menu li a {
  display: block;
  padding: 12px;
  color: #333;
  text-decoration: none;
}
#site-nav .cs-notification .sub-menu li a:hover {
  color: #293951;
  background-color: #f8f8f8;
  text-decoration: none;
}

/* User Message */
.cs-notification-count.cs-message-count {
  top: -8px;
  margin-left: -5px;
}

/* User Sign in/ Sign Up Button */
a.cs-btn.signin-button,
a.cs-btn.signup-button {
  padding: 7px 15px;
  border-radius: 100px;
}

/* Mobile View Icons */
#cs-mobile-userbar #bp-userbar {
  display: none;
}

#cs-mobile-userbar #bp-userbar.active {
  display: block;
}

#cs-mobile-userbar ul#bp-userbar {
  right: -15px;
}

.cs-mobile-icons-wrapper {
  display: none;
}

.cs-mobile-icons-wrapper > div {
  padding: 0 8px;
}

.cs-mobile-icons-wrapper > div:first-child,
.cs-mobile-icons-wrapper > div:last-child {
  padding-left: 0;
}

@media (max-width: 480px) {
  .cs-mobile-icons-wrapper > div {
    padding: 0 4px;
  }

  #masthead .cs-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .cs-mobile-icons-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: auto;
  }

  #site-logo img {
    max-width: 100%;
  }

  .cs-header-default #site-logo {
    margin-right: 15px;
  }

  #site-logo h1 {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# Youzer
--------------------------------------------------------------*/
.yz-page-main-content button#bbp_search_submit {
  margin-top: -4px;
  opacity: 1;
}
.yz-page-main-content button#bbp_search_submit:before {
  font-family: 'FontAwesome';
}

.yz-page-main-content .cs-search-form {
  margin-bottom: 20px;
}

@media only screen and (max-width: 425px) {
  .yz-page-main-content .cs-search-form button {
    position: relative;
  }
}
/* Mobile View Sidebar Order */
.row.cs-row-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

@media (max-width: 991px) {
  .cs-sidebar-clear {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }

  .cs-content-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

/*# sourceMappingURL=theme.min.css.map */