@import url('https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i&display=swap');

/* General styles for the modal */
/* 
 Styles for the html/body for special modal where we want 3d effects
 Note that we need a container wrapping all content on the page for the 
 perspective effects (not including the modals and the overlay).
 */
.md-perspective, .md-perspective body {
  height: 100%;
  overflow: hidden;
}
.md-perspective body {
  background: #222;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective: 600px;
}
.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 840px;
  max-width: 840px;
  min-width: 320px;
  height: auto;
  z-index: 3000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-420px) translateY(-50%);
  -moz-transform: translateX(-420px) translateY(-50%);
  -ms-transform: translateX(-420px) translateY(-50%);
  transform: translateX(-420px) translateY(-50%);
}
.md-show {
  visibility: visible;
}
.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 2000;
  opacity: 0;
  background: rgba(143, 27, 15, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}
/* Content styles */
.md-content {
  color: inherit;
  background: #fff;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
}
.md-content h3 {
  margin: 0;
  padding: 0.4em;
  text-align: center;
  font-size: 2.4em;
  font-weight: 300;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px 3px 0 0;
}
.md-content > div {
  padding: 15px 40px 30px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em;
}
.md-content > div p {
  margin: 0;
  padding: 0;
}
.md-content > div ul {
  margin: 0;
  padding: 0 0 30px 20px;
}
.md-content > div ul li {
  padding: 5px 0;
}
.md-content button {
  display: block;
  margin: 0 auto;
  font-size: 0.8em;
}
/* Individual modal styles with animations/transitions */
/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-1 .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Effect 2: Slide from the right */
.md-effect-2 .md-content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.md-show.md-effect-2 .md-content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
/* Effect 3: Slide from the bottom */
.md-effect-3 .md-content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-3 .md-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* Effect 4: Newspaper */
.md-effect-4 .md-content {
  -webkit-transform: scale(0) rotate(720deg);
  -moz-transform: scale(0) rotate(720deg);
  -ms-transform: scale(0) rotate(720deg);
  transform: scale(0) rotate(720deg);
  opacity: 0;
}
.md-show.md-effect-4 ~ .md-overlay, .md-effect-4 .md-content {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.md-show.md-effect-4 .md-content {
  -webkit-transform: scale(1) rotate(0deg);
  -moz-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
/* Effect 5: fall */
.md-effect-5.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-5 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(600px) rotateX(20deg);
  -moz-transform: translateZ(600px) rotateX(20deg);
  -ms-transform: translateZ(600px) rotateX(20deg);
  transform: translateZ(600px) rotateX(20deg);
  opacity: 0;
}
.md-show.md-effect-5 .md-content {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transform: translateZ(0px) rotateX(0deg);
  -moz-transform: translateZ(0px) rotateX(0deg);
  -ms-transform: translateZ(0px) rotateX(0deg);
  transform: translateZ(0px) rotateX(0deg);
  opacity: 1;
}
/* Effect 6: side fall */
.md-effect-6.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-6 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translate(30%) translateZ(600px) rotate(10deg);
  -moz-transform: translate(30%) translateZ(600px) rotate(10deg);
  -ms-transform: translate(30%) translateZ(600px) rotate(10deg);
  transform: translate(30%) translateZ(600px) rotate(10deg);
  opacity: 0;
}
.md-show.md-effect-6 .md-content {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transform: translate(0%) translateZ(0) rotate(0deg);
  -moz-transform: translate(0%) translateZ(0) rotate(0deg);
  -ms-transform: translate(0%) translateZ(0) rotate(0deg);
  transform: translate(0%) translateZ(0) rotate(0deg);
  opacity: 1;
}
/* Effect 7:  slide and stick to top */
.md-effect-7 {
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.md-effect-7 .md-content {
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.md-show.md-effect-7 .md-content {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  border-radius: 0 0 3px 3px;
  opacity: 1;
}
/* Effect 8: 3D flip horizontal */
.md-effect-8.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-8 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-70deg);
  -moz-transform: rotateY(-70deg);
  -ms-transform: rotateY(-70deg);
  transform: rotateY(-70deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.md-show.md-effect-8 .md-content {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}
/* Effect 9: 3D flip vertical */
.md-effect-9.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-9 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-70deg);
  -moz-transform: rotateX(-70deg);
  -ms-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.md-show.md-effect-9 .md-content {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}
/* Effect 10: 3D sign */
.md-effect-10.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-10 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-60deg);
  -moz-transform: rotateX(-60deg);
  -ms-transform: rotateX(-60deg);
  transform: rotateX(-60deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-10 .md-content {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}
/* Effect 11: Super scaled */
.md-effect-11 .md-content {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-11 .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Effect 12:  Just me */
.md-effect-12 .md-content {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-12 ~ .md-overlay {
  background: #e74c3c;
}
.md-effect-12 .md-content h3, .md-effect-12 .md-content {
  background: transparent;
}
.md-show.md-effect-12 .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Effect 13: 3D slit */
.md-effect-13.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-13 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-3000px) rotateY(90deg);
  -moz-transform: translateZ(-3000px) rotateY(90deg);
  -ms-transform: translateZ(-3000px) rotateY(90deg);
  transform: translateZ(-3000px) rotateY(90deg);
  opacity: 0;
}
.md-show.md-effect-13 .md-content {
  -webkit-animation: slit 0.7s forwards ease-out;
  -moz-animation: slit 0.7s forwards ease-out;
  animation: slit 0.7s forwards ease-out;
}
@-webkit-keyframes slit {
  50% {
    -webkit-transform: translateZ(-250px) rotateY(89deg);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes slit {
  50% {
    -moz-transform: translateZ(-250px) rotateY(89deg);
    opacity: 0.5;
    -moz-animation-timing-function: ease-out;
  }
  100% {
    -moz-transform: translateZ(0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes slit {
  50% {
    transform: translateZ(-250px) rotateY(89deg);
    opacity: 1;
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateZ(0) rotateY(0deg);
    opacity: 1;
  }
}
/* Effect 14:  3D Rotate from bottom */
.md-effect-14.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-14 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateY(100%) rotateX(90deg);
  -moz-transform: translateY(100%) rotateX(90deg);
  -ms-transform: translateY(100%) rotateX(90deg);
  transform: translateY(100%) rotateX(90deg);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.md-show.md-effect-14 .md-content {
  -webkit-transform: translateY(0%) rotateX(0deg);
  -moz-transform: translateY(0%) rotateX(0deg);
  -ms-transform: translateY(0%) rotateX(0deg);
  transform: translateY(0%) rotateX(0deg);
  opacity: 1;
}
/* Effect 15:  3D Rotate in from left */
.md-effect-15.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}
.md-effect-15 .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
  -moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
  -ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
  transform: translateZ(100px) translateX(-30%) rotateY(90deg);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-15 .md-content {
  -webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
  -moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
  -ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
  transform: translateZ(0px) translateX(0%) rotateY(0deg);
  opacity: 1;
}
/* Effect 16:  Blur */
.md-show.md-effect-16 ~ .md-overlay {
  background: rgba(180, 46, 32, 0.5);
}
.md-show.md-effect-16 ~ .container {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px);
}
.md-effect-16 .md-content {
  -webkit-transform: translateY(-5%);
  -moz-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
  opacity: 0;
}
.md-show.md-effect-16 ~ .container, .md-effect-16 .md-content {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-16 .md-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* Effect 17:  Slide in from bottom with perspective on container */
.md-show.md-effect-17 ~ .container {
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.md-show.md-effect-17 ~ .container, .md-show.md-effect-17 ~ .md-overlay {
  -webkit-transform: rotateX(-2deg);
  -moz-transform: rotateX(-2deg);
  -ms-transform: rotateX(-2deg);
  transform: rotateX(-2deg);
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.md-effect-17 .md-content {
  opacity: 0;
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  -ms-transform: translateY(200%);
  transform: translateY(200%);
}
.md-show.md-effect-17 .md-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.3s 0.2s;
  -moz-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
}
/* Effect 18:  Slide from right with perspective on container */
.md-show.md-effect-18 ~ .container {
  height: 100%;
  overflow: hidden;
}
.md-show.md-effect-18 ~ .md-overlay {
  background: rgba(143, 27, 15, 0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.md-show.md-effect-18 ~ .container, .md-show.md-effect-18 ~ .md-overlay {
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
  -moz-transform-style: preserve-3d;
  -moz-transform-origin: 0% 50%;
  -moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
  transform-style: preserve-3d;
  transform-origin: 0% 50%;
  animation: rotateRightSideFirst 0.5s forwards ease-in;
}
@-webkit-keyframes rotateRightSideFirst {
  50% {
    -webkit-transform: translateZ(-50px) rotateY(5deg);
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateZ(-200px);
  }
}
@-moz-keyframes rotateRightSideFirst {
  50% {
    -moz-transform: translateZ(-50px) rotateY(5deg);
    -moz-animation-timing-function: ease-out;
  }
  100% {
    -moz-transform: translateZ(-200px);
  }
}
@keyframes rotateRightSideFirst {
  50% {
    transform: translateZ(-50px) rotateY(5deg);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateZ(-200px);
  }
}
.md-effect-18 .md-content {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
  opacity: 0;
}
.md-show.md-effect-18 .md-content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.5s 0.1s;
  -moz-transition: all 0.5s 0.1s;
  transition: all 0.5s 0.1s;
}
/* Effect 19:  Slip in from the top with perspective on container */
.md-show.md-effect-19 ~ .container {
  height: 100%;
  overflow: hidden;
}
.md-show.md-effect-19 ~ .md-overlay {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.md-show.md-effect-19 ~ .container, .md-show.md-effect-19 ~ .md-overlay {
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 50% 100%;
  -webkit-animation: OpenTop 0.5s forwards ease-in;
  -moz-transform-style: preserve-3d;
  -moz-transform-origin: 50% 100%;
  -moz-animation: OpenTop 0.5s forwards ease-in;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  animation: OpenTop 0.5s forwards ease-in;
}
@-webkit-keyframes OpenTop {
  50% {
    -webkit-transform: rotateX(10deg);
    -webkit-animation-timing-function: ease-out;
  }
}
@-moz-keyframes OpenTop {
  50% {
    -moz-transform: rotateX(10deg);
    -moz-animation-timing-function: ease-out;
  }
}
@keyframes OpenTop {
  50% {
    transform: rotateX(10deg);
    animation-timing-function: ease-out;
  }
}
.md-effect-19 .md-content {
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  opacity: 0;
}
.md-show.md-effect-19 .md-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.5s 0.1s;
  -moz-transition: all 0.5s 0.1s;
  transition: all 0.5s 0.1s;
}
@media screen and (max-width: 32em) {
  body {
    font-size: 75%;
  }
}
*, *::after, *::before {
  box-sizing: border-box;
}
body {
  font-size: 15px;
  font-family: Karla;
  line-height: 20px;
  color: #2E3133;
	background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  margin-bottom: 30px;
  margin-top: 0px;
}
ul, ol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
  margin-bottom: 30px;
  margin-top: 0px;
  display: block;
}
.h1, h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
}
.h2, h2 {
  letter-spacing: 0px;
  line-height: 46px;
  font-weight: bold;
  font-size: 36px;
}
.h3, h3 {
  letter-spacing: 0px;
  line-height: 38px;
  font-weight: bold;
  font-size: 30px;
}
.h4, h4 {
  letter-spacing: 0px;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
}
.h5, h5 {
  letter-spacing: 0px;
  font-weight: bold;
  line-height: 26px;
  font-size: 20px;
}
em, i {
  font-style: italic;
  line-height: 1;
  color: #000;
}
b, strong {
  font-weight: bold;
  line-height: 1;
  color: #000;
}
a {
  text-decoration: none;
  line-height: 1;
  color: #0079FC;
}
a:active, a:hover, a:focus {
  outline: 0px !important;
  text-decoration: none;
  color: #288ffe;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #2E3133;
}
button {
  background-color: #afafaf;
  border-radius: 15px;
  padding: 10px 15px;
  line-height: 1;
  border: none;
  color: #000;
}
address {
  margin: 0px 0px 0px;
}
section {
  position: relative;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix {
  display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}

/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}

.cf:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
    *zoom:1;
}
/* close commented backslash hack */
.container {
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0px auto;
  display: block;
  width: 100%;
}
.container.large {
  max-width: 1230px;
}
.container.very-large {
  max-width: 1400px;
}
.filter {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0px;
  left: 0px;
  top: 0px;
}
.filter.blue-gradient {
  background-image: -moz-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
  background-image: -webkit-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
  background-image: -ms-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
  opacity: 0.8;
}
.filter.blue-gradient.full {
  opacity: 1;
}
.filter + .container {
  position: relative;
  z-index: 3;
}
.flex-dr {
  justify-content: space-between;
  display: flex;
}
.btn {
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  color: #0dadff;
}
.btn.btn-big {
  padding: 20px 35px;
}
.btn.btn-xs {
  text-transform: uppercase;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 1;
}
.btn.btn-sm {
  text-transform: uppercase;
  padding: 13px 22px;
  font-size: 16px;
  line-height: 1;
}
.btn.btn-default {
  transition: background-color 0.3s ease, color 0.5s ease;
  background-color: #fff;
  position: relative;
  overflow: hidden;
	color: #0dadff;
}
.btn.btn-default::after {
  background-color: rgba(255, 255, 255, 0.3);
  transition: right 0.3s ease;
  transform: rotate(20deg);
  position: absolute;
  bottom: -110px;
  height: 300px;
  right: -200%;
  width: 100%;
  content: "";
}
.btn.btn-default:hover {
  background-color: #0079fc;
  color: #fff;
}
.btn.btn-default:hover::after {
  right: -55%;
}
.btn.btn-blue, .btn.btn-primary {
  transition: background-color 0.3s ease, color 0.5s ease;
  background-color: #0079FC;
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
}
.btn.btn-blue::after {
  background-color: rgba(255, 255, 255, 0.3);
  transition: right 0.3s ease;
  transform: rotate(20deg);
  position: absolute;
  bottom: -110px;
  height: 300px;
  right: -300%;
  width: 100%;
}
.btn.btn-blue:hover, .btn.btn-primary:hover {
  color: white;
	background-color: #288ffe;
}
.btn.btn-blue:hover::after {
  right: -55%;
}
.btn.btn-blue:hover i, .btn.btn-blue:hover em {
  color: #fff;
}
.btn.btn-blue.bordered {
  background-color: transparent;
  border: 1px solid #0079fc;
  color: #0079fc;
}
.btn.btn-blue.bordered i, .btn.btn-blue.bordered em {
  color: #0079fc;
}
.btn.btn-blue.bordered:hover {
  background-color: #0079fc;
  color: #fff;
}
.btn.btn-blue.bordered:hover i, .btn.btn-blue.bordered:hover em {
  color: #fff;
}
.btn.btn-blue.white {
  background-color: #13c8ff;
}
.btn.btn-blue.white:hover {
  background-color: #0dadff;
}
.btn.btn-blue.white i, .btn.btn-blue.white em {
  color: #fff;
}
.btn.btn-very-big {
  padding: 20px 40px 10px;
  border-radius: 100px;
  text-align: center;
}
.btn.btn-very-big strong {
  text-transform: uppercase;
  font-family: 'bebas', sans-serif;
  font-size: 48px; /* ZAG */
}
.btn.btn-very-big span, .btn.btn-very-big strong, .btn.btn-very-big em {
  margin-bottom: 13px;
  color: #fff;
}
.btn.btn-very-big span:last-child, .btn.btn-very-big strong:last-child, .btn.btn-very-big em:last-child {
  margin-bottom: 0px;
}
.btn span, .btn strong {
  display: block;
}
.btn:active, .btn:hover {
  cursor: pointer;
}
.little {
  font-size: 15px;
  font-weight: bold;
}
.alignleft {
  margin-bottom: 30px;
  margin-right: 30px;
  float: left;
}
.alignright {
  margin-bottom: 30px;
  margin-left: 30px;
  float: right;
}
.aligncenter {
  margin: 0px auto 30px;
  display: block;
  float: none;
}
.blog-page, .faq-page {
  background: #fff url('../img/shape-blue.png') no-repeat calc(50% - 700px) top;
}
.about-page, .pricing-page {
  background: #fff url('../img/shapes-about-gold-blue.png') no-repeat calc(50% + 700px) -80px;
}
.main-header {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 34px 0px;
}
.home .main-header {
    background-position: center bottom;
    padding: 34px 0px 26.3%;
}
.header-column .logo-breadcrumbs {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 17px 0px;
    font-size: 15px;
    font-weight: bold;
    padding-left: 28px;
    margin-left: 28px;
}
.header-column .logo-breadcrumbs:before {
    content: "";
    height: 29px;
    width: 1px;
    background-color: #B9BBBD;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.header-column .logo-breadcrumbs a {
    color: #2E3133;
}
.main-header .header-column-container {
    padding-bottom: 4%;
}
.main-header.inner-page .header-column-container {
  padding-bottom: 0;
}
.main-navigation ul li {
  vertical-align: middle;
  display: inline-block;
  margin: 0px 15px; /* ZAG */
}
.main-navigation ul li a {
  transition: background-color 0.3s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  padding: 7px 0px;
  font-size: 15px;
  font-weight: bold;
  opacity: 1; /* ZAG */
  display: block;
  color: #2E3133;
}
.main-navigation ul li a:hover, .main-navigation ul li a:active, .main-navigation ul li a:focus {
  border-color: #fff;
}
.main-navigation ul li.demo a {
  transition: text-shadow 0.3s ease;
  background-color: #0079fc;
  border-radius: 30px;
  padding: 15px 25px; /* ZAG */
  margin: 0px; /* ZAG */
  border: none;
}
.main-navigation ul li.demo a:hover {
  background-color: #FFF; /* ZAG */
  color: #3E9DF7; /* ZAG */
  border: none;
}
.intro-content {
  margin: 0 auto;
  text-align: center;
  max-width: 590px;
}
.intro-content .h1, .intro-content h1 {
  margin-bottom: 20px;
}
.intro-content p {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 26px;
}
.intro-content .btn {
  margin-right: 10px;
  vertical-align: middle;
}
.intro-content #video {
	display: none; /* ZAG */
}
.intro-content #video i {
  font-size: 34px;
  margin-right: 10px;
  margin-top: -4px;
  color: inherit;
  vertical-align: middle;
}
.intro-content .video-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}
.intro-content .video-content iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.intro-content .video-content::after {
  background-image: url('../img/shadow.png');
  background-position: center top;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
  margin: 0px auto;
  display: block;
  bottom: -9.5%;
  content: "";
  height: 12%;
  width: 100%;
  right: 0px;
  left: 0px;
}

#services {
  padding: 50px 0;
}

#services .service-content {
  padding: 10px 0;
  font-size: 18px; 
  line-height: 24px;
}

#services .service-content i {
  float: left;
  margin-right: 15px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: #FAF5ED;
  color: #BAA78D;
  border-radius: 50%;
  font-size: 20px;
}

#services .service-content p {
  margin: 0;
}

#services .service-content:hover {
  color: #0079FC;
}

#services .service-content:hover i {
  color: #0079FC;
  background-color: #E5F1FF;
}

#how_it_works {
  border-top: 1px solid #E6E7E9;
  padding: 0 0 50px;
  overflow: hidden;
}

.growth-engine-page #how_it_works {
  border: none;
  margin-top: -60px;
}

#how_it_works.about-us-rows {
  padding: 0;
  border: none;
}

#how_it_works h2,
#get_started h2,
#how_product_work h2 {
  position: relative;
  padding-bottom: 20px;
}

#how_it_works h2:after,
#get_started h2:after,
#how_product_work h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 54px;
  background-color: #0079FC;
}

#how_it_works p {
  font-size: 18px;
  line-height: 24px;
}

#how_it_works.about-us-rows p {
  font-size: 20px;
  line-height: 28px;
}

#how_it_works .top-content .content-container {
  max-width: 595px;
  margin-top: 150px;
  padding-right: 15px;
}

.growth-engine-page #how_it_works .top-content .content-container {
  max-width: 680px;
  margin: 0 auto 50px;
  padding: 0;
}

#how_it_works .bottom-content .step-row {
  padding: 30px 0;
}

#how_it_works .bottom-content .step-row:first-child .img-container {
  margin-top: -130px;
}

.growth-engine-page #how_it_works .bottom-content .step-row:first-child .img-container {
  margin-top: 0;
}

#how_it_works .step {
  color: #BAA78D;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.33px;
  line-height: 24px;
  margin-bottom: 10px;
}

#how_product_work {
  font-size: 18px;
  line-height: 24px;
  background: #E5F1FF url(../img/shape-blue-corner-bottom.png) no-repeat left bottom;
  padding: 90px 0;
}

.about-us-rows .about-row {
  padding: 100px 0;
}

#section_testimonials,
.about-us-rows .about-row:nth-child(2n+1) {
  background: #E5F1FF url(../img/shape-blue-testimonial-banner.png) no-repeat left center;
  background-size: auto 100%;
}

#section_testimonials {
  padding: 50px 0;
}

#section_testimonials blockquote {
    padding: 0;
    font-size: 24px;
    line-height: 30px;
    border-left: none;
    background: none;
    color: inherit;
    font-style: normal;
    margin: 0 0 20px;
}

#section_testimonials p {
  margin-bottom: 0;
}

#section_testimonials .left-content {
  float: left;
  margin-right: 100px;
}

#section_testimonials .right-content {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}

#section_testimonials .right-content:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: url(../img/icon-quotes.png) no-repeat;
  width: 29px;
  height: 21px;
}

#section_testimonials.tan-color {
  background: #FAF5ED url(../img/shape-tan-corner.png) no-repeat right center;
}

#section_testimonials.tan-color .left-content {
  float: right;
  margin-left: 100px;
  margin-right: 0;
}

#section_testimonials.tan-color .right-content:before {
  background-image: url(../img/icon-quotes-tan.png);
}

#contact_section {
  padding: 100px 0;
  background: url(../img/shape-large-tan.png) no-repeat;
  background-position: calc(50% - 400px) bottom;
  border-top: 1px solid #E6E7E9;
  border-bottom: 1px solid #E6E7E9;
}

#contact_section .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
}

#contact_section .contact-form-page {
  margin-left: auto;
  margin-right: auto;
}

.faq-archive #contact_section,
.blog-page #contact_section,
#contact_section.blue-color {
  background-image: url(../img/shape-large.png);
}

#demo_promote_section {
  padding: 100px 0;
  background-color: #E5F1FF;
  font-size: 24px;
  line-height: 30px;
}

#demo_promote_section .demo-promotion-content {
  padding-top: 80px;
  max-width: 520px;
  margin: 0 auto;
  background: url(../img/icon-demo.png) no-repeat top center;
}

.blog-page #demo_promote_section {
  background-color: #FAF5ED;
}

.blog-page #demo_promote_section .demo-promotion-content {
  background-image: url(../img/icon-demo-tan.png);
}

.post-meta {
  margin-bottom: 10px;
  color: #68696A;
}

.post-meta li {
  display: inline-block;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.post-meta li:after {
  content: "•";
  margin: 0 8px 0 10px;
}

.post-meta li:last-child:after {
  display: none;
}

.post-meta li a {
  color: #68696A;
}

.excerpt {
  font-size: 18px;
  line-height: 29px;
}

.top-post {
  margin: 90px 0 100px;
}

.mt-content {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .v-center {
    display: flex;
    align-items: center;
  }

  .img-right {
    text-align: right;
  }
}

.single-post .top-post {
  margin: 60px 0;
}

.top-post h2 {
  margin-bottom: 20px;
}

.top-blog-image {
  box-shadow: 10px 10px 0 #FAF5ED;
  -moz-box-shadow: 10px 10px 0 #FAF5ED;
  -webkit-box-shadow: 10px 10px 0 #FAF5ED;
  -khtml-box-shadow: 10px 10px 0 #FAF5ED;
}

.top-post .img-container {
  padding-right: 10px;
  margin-bottom: 20px;
}

#section_news {
  padding: 140px 0 120px;
}

.faq-archive #section_news {
  padding: 0 0 120px;
}

.blog-page #section_news {
  padding: 0 0 50px;
}

#section_news .img-container {
  margin-bottom: 20px;
}

#section_news .news-meta {
  margin-bottom: 15px;
}

#section_news .news-meta a {
  color: #74787C;
  font-size: 15px;
  line-height: 20px;
}

.featured-image {
  padding-bottom: 6px;
  background: #BAA78D;
}

.index-item {
  border-bottom: 1px solid #EAEBEC;
  margin-bottom: 30px;
}

.bottom-posts {
  margin-bottom: 100px;
}

.bottom-posts .index-item:first-child {
  border-top: 1px solid #EAEBEC;
  padding-top: 30px;
}

.posts-list {
  margin: 90px 0 100px;
}

#subscribe_section {
  margin-bottom: 140px;
}

#subscribe_section .section-inside {
  position: relative;
  background-color: #FAF5ED;
  padding: 150px 0;
  position: relative;
}

#subscribe_section .section-image  {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../img/email-bg2.jpg) center;
  background-size: cover;
}

#subscribe_section .subscribe-form {
  max-width: 420px;
  margin: 0 auto;
  padding-right: 15px;
}

#subscribe_section input {
  width: 100%;
  margin-bottom: 10px;
}

.book-form {
  margin-bottom: 130px;
}

.book-form img {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.19);
}

.win-more-list-container {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0px auto 75px; /* ZAG */
  max-width: 1100px;
  display: flex;
}
.win-more-list-container .one-item {
  padding: 0px 10px 22px; /* ZAG */
  position: relative;
  text-align: center;
	width: 100%;
}
.win-more-list-container .one-item .icon-side {
  margin-bottom: 20px;
}
.win-more-list-container .one-item .icon-side .thumbnail-side {
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 125px;
}
.win-more-list-container .one-item .content-side p {
  line-height: 24px;
  font-size: 16px; /* ZAG */
  margin-top: 0px;
  color: #969696;
}
.win-more-list-container .one-item .content-side .h3 {
  text-transform: uppercase;
  margin: 0px 0px 21px;
  font-size: 18px; /* ZAG */
  line-height: 1;
  color: #2c2c2e;
}
.win-more-list-container .one-item a.read-more {
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  font-weight: bold;
  font-size: 13px;
  display: block;
  color: #0079fc;
  bottom: 0px;
  right: 0px;
  left: 0px;
}
.win-more-list-container .one-item a.read-more::after {
  transition: margin-left 0.3s ease;
  display: inline-block;
  background-image: url('../img/right-arrow.png');
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  margin-left: 5px;
  content: "";
}
.win-more-list-container .one-item a.read-more:hover::after {
  margin-left: 10px;
}
.section-link {
  text-align: center;
  margin: 0px auto;
  display: block;
}
.quote-block {
  text-align: center;
}
.quote-block .h2 {
  text-transform: none;
  margin: 0px 0px 23px;
  font-weight: bold;
  line-height: 1.2;
  font-size: 21px;
  color: #fff;
}
.quote-block h3 {
  text-transform: uppercase;
  margin: 0px 0px 0px;
  font-weight: 300;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}
.background-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.one-count-block {
  justify-content: center;
  flex-direction: column;
  font-family: 'Bebas', sans-serif;
  align-items: center;
  text-align: center;
  display: flex;
  height: 410px;
  width: 100%;
}
.one-count-block span {
  text-transform: uppercase;
  font-family: 'Bebas', sans-serif;
  position: relative;
  line-height: 40px;
  font-size: 36px;
  display: block;
  color: #0079fc;
}
.one-count-block strong {
  font-family: 'Open Sans', sans-serif;
  font-size: 36.78px;
  font-weight: bold;
  color: #0079fc;
}
.one-count-block .in-content {
  text-transform: uppercase;
  font-family: 'Bebas', sans-serif;
  position: relative;
  line-height: 40px;
  font-size: 36px;
  color: #0079fc;
}
.one-count-block .in-content::after {
  background-color: #0079fc;
  border-radius: 50%;
  position: absolute;
  margin: 0px auto;
  display: block;
  bottom: -24px;
  content: "";
  height: 6px;
  width: 6px;
  right: 0px;
  left: 0px;
}
.section-title {
  margin: 0px 0px 40px;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.section-title.left {
  text-align: left;
}
.section-title:after {
  content: "";
  height: 4px;
  width: 54px;
  background-color: #0079FC;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.section-title.left:after {
  right: auto;
}
.section-title h3 {
  text-transform: none;
  margin: 0px 0px 0px;
  font-weight: bold;
  font-size: 48px; /* ZAG */
  line-height: 1;
  color: #2c2c2e;
}
.why-list-container {
  max-width: 1060px;
  margin: 0px auto;
  display: block;
  width: 100%;
}
.why-list-container .one-item {
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-position: left;
  margin-bottom: 66px;
  padding-left: 128px;
}
.why-list-container .one-item:last-child {
  margin-bottom: 10px;
}
.why-list-container .one-item .h3 {
  margin: 0px 0px 10px; /* ZAG */
  font-size: 32px;
  line-height: 1;
  color: #2c2c2e;
}
.why-list-container .one-item p {
  letter-spacing: -1.4px;
  margin: 0px 0px 0px;
  font-size: 24px; /* ZAG */
  line-height: 32px; /* ZAG */
  color: #969696;
}
.partner-list-container {
  justify-content: space-between;
  align-items: stretch;
  max-width: 1100px;
  margin: 0px auto;
  display: flex;
}
.partner-list-container .one-item {
  justify-content: center;
  align-items: center;
  display: flex;
}
.bebas-title {
  margin-bottom: 50px;
  text-align: center;
}

.partner-section .bebas-title h1 { /* ZAG */
  color: #fff;
}
.tool-section {
  padding: 70px 0px 85px;
}
.tool-list-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.one-tool-box {
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3);
  background: #f8f3eb;
  border-radius: 14px;
  margin-right: 36px;
  overflow: hidden;
  max-width: 371px;
  width: 100%;
}
.one-tool-box:last-child {
  margin-right: 0px;
}
.one-tool-box .thumbnail-side {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  display: block;
  height: 205px;
  width: 100%;
}
.one-tool-box .content-side {
  text-align: center;
  padding: 0px 20px 40px;
}
.one-tool-box .content-side strong {
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 16px;
  display: block;
  color: #0dadff;
}
.one-tool-box .content-side h3 {
  font-size: 20px;
  line-height: 1.3;
}
.one-tool-box .content-side .description {
  text-align: left;
  margin-bottom: 30px;
}
.one-tool-box .content-side .description ul {
  list-style: disc;
  padding-left: 20px;
}

#contact_info {
  padding: 100px 0;
  background-color: #FAF5ED;
  box-shadow: 0 10px 14px 0 rgba(0,0,0,0.04);
}
.contact-blocks-container {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.contact-blocks-container .one-item {
  text-align: center;
  width: 100%;
}
.contact-blocks-container .icon-side {
  background-color: #BAA78D;
  color: #FAF5ED;
  justify-content: center;
  margin: 0px auto 39px;
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 84px;
  width: 84px;
  font-size: 40px;
}
.contact-blocks-container .icon-side i {
  line-height: 84px;
  color: inherit;
}
.contact-blocks-container h4 {
  margin-bottom: 15px;
}
.contact-blocks-container span {
  font-size: 15px;
  line-height: 20px;
}
.contact-blocks-container span a {
  color: inherit;
}
.contact-blocks-container span a:hover {
  color: #0079fc;
}
.map-contact-container {
  background-color: #f1f4f6;
}
.map-contact-container > .iframe, .map-contact-container > iframe, .map-contact-container > div {
  width: 100%;
}
.map-contact-container .iframe, .map-contact-container iframe {
  margin-right: 72px;
  min-width: 50%;
  width: 50%;
}
.map-contact-container .contact-block {
  padding: 115px 0px;
  overflow: hidden;
}
.map-contact-container .contact-block h2 {
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0px 0px 21px;
  font-family: 'Bebas', sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  color: #2c2c2e;
}
.map-contact-container .contact-block .input-fields {
  margin-bottom: 30px;
  position: relative;
  max-width: 530px;
  height: auto;
  width: 100%;
}
.map-contact-container .contact-block .input-fields:last-of-type {
  margin-bottom: 20px;
  margin-top: -10px;
}
.map-contact-container .contact-block .input-fields.message-field {
  margin-top: -10px;
}
.map-contact-container .contact-block .form-control {
  border: none;
  border-bottom: 1px solid #dadddf;
  background-color: transparent;
  height: 30px;
  width: 100%;
}
.map-contact-container .contact-block .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.map-contact-container .contact-block .form-control:focus::-moz-placeholder {
  color: transparent;
}
.map-contact-container .contact-block .form-control:focus:-moz-placeholder {
  color: transparent;
}
.map-contact-container .contact-block .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.map-contact-container .contact-block .form-control:focus {
  outline: 0px !important;
  border-bottom-color: #0dadff;
}
.map-contact-container .contact-block textarea.form-control {
  background-image: url('../img/outline.png');
  background-position: bottom center;
  background-repeat: repeat-y;
  background-size: 100% 39px;
  border-bottom: none;
  line-height: 38px;
  min-height: 72px;
  resize: none;
}
.map-contact-container .contact-block textarea.form-control:focus {
  background-image: url('../img/outline-focus.png');
}

.copyright-section {
  padding: 70px 0px;
  border-top: 1px solid #E6E7E9;
}
.copyright-section .footer-address {
  margin-bottom: 40px;
}
.copyright-section .copyright {
  color: #74787C;
  font-size: 13px;
  line-height: 15px;
}


.copyright-section nav.social-list {
  margin-top: 30px;
}
.copyright-section nav.social-list ul {
  list-style: none;
  line-height: 1;
  padding: 0px;
  margin: 0px;
}
.copyright-section nav.social-list ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
}
.copyright-section nav.social-list ul li a {
  display: block;
  height: 24px;
  width: 24px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.copyright-section nav.social-list ul li a i {
  color: #fff;
}
.copyright-section nav.social-list ul li a.linkedin {
  background-color: #0295C2;
}
.copyright-section nav.social-list ul li a.facebook {
  line-height: 26px;
  background-color: #4267B2;
}
.copyright-section nav.social-list ul li a.youtube {
  background-color: #ff0000;
}

.copyright-section nav.footer-navigation {
  margin-bottom: 40px;
}
.copyright-section nav.footer-navigation ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
}
.copyright-section nav.footer-navigation ul li a {
  font-weight: bold;
  color: inherit;
}
.copyright-section .right-content {
  text-align: right;
}

.breadcrumbs-navigation {
  margin-bottom: -45px;
}
.breadcrumbs-navigation ul li {
  vertical-align: bottom;
  display: inline-block;
  position: relative;
}
.breadcrumbs-navigation ul li a {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.breadcrumbs-navigation ul li.current_page_item a {
  font-weight: 800;
}
.breadcrumbs-navigation ul li:first-child {
  margin-right: 10px;
}
.breadcrumbs-navigation ul li:first-child a {
  letter-spacing: -1.4px;
  font-family: 'Bebas', sans-serif;
  font-weight: bold;
  line-height: 90px;
  font-size: 90px;
}
.breadcrumbs-navigation ul li:first-child a small {
	letter-spacing: 1px;
	font-size: 40%;
}
.breadcrumbs-navigation ul li:first-child::after {
  display: none;
}
.breadcrumbs-navigation ul li::after {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  margin-left: 15px;
  font-weight: bold;
  margin-top: 2px;
  content: "/";
  color: #fff;
}
.breadcrumbs-navigation ul li:last-child::after {
  display: none;
}
.breadcrumbs-navigation ul li:not(:first-child) {
  margin-bottom: 24px;
}
.main-article {
  padding: 30px 0px;
  max-width: 810px;
}
.main-article h3 {
  margin: 0px 0px 20px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
}
.main-article .meta-content {
  margin: 0px 0px 20px;
  line-height: 19px;
  font-size: 16px;
  display: block;
  color: #2c2c2e;
}
.main-article .meta-content a {
  color: #0079fc;
}
.main-article .meta-content a:hover {
  text-decoration: underline;
}
.main-article p {
  letter-spacing: -0.2px;
  margin: 0px 0px 20px;
  line-height: 20px; /* ZAG */
  font-size: 16px;
  color: #000;
}
.team-container {
  margin-bottom: 80px;
}
.team-container:first-child h3 {
  margin-bottom: 30px;
}

.team-container .one-item {
  border-bottom: 1px solid #d4cfda;
  align-items: stretch;
  padding-bottom: 0px;
  margin-bottom: 30px;
  display: flex;
}
.team-container .one-item.row-item {
  display: block;
  border-bottom: none;
  border-top: 6px solid #BAA78D;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
  text-align: center;
  padding: 40px;
}
.team-container .one-item .photo-side {
  margin-right: 30px;
}
.team-container .one-item.row-item .photo-side {
  margin: 0 0 20px;
}
.team-container .one-item .photo-side .thumbnail-side {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  height: 173px;
  width: 173px;
}
.team-container .one-item.row-item .photo-side .thumbnail-side {
  margin: 0 auto;
}
.team-container .one-item .content-side h3 {
  margin: 0px 0px 23px;
  font-size: 30px;
  line-height: 1;
  color: #000;
}
.team-container .one-item .content-side em,
.career-position-location,
.subheader {
  color: #BAA78D;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.33px;
  line-height: 1.2;
  margin: 0 0 8px;
  text-transform: uppercase;
}
h5.subheader {
  font-size: 20px;
  letter-spacing: 0.44px;
}
.single-top-meta .career-position-location {
  float: left;
  line-height: 60px;
  margin: 0;
}
.team-container .one-item .content-side p {
  margin: 0px 0px 20px;
  line-height: 25px;
  font-size: 16px;
}
.team-container.other-team-container .one-item {
	display: block;
	border-bottom: none;
}
.team-container.other-team-container .one-item .photo-side {
	margin: 0 0 20px;
}
.md-content .content-side .team-content {
  text-align: left;
}
#careers_section {
  margin-bottom: 60px;
}
.career-row {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #EAEBEC;
}
.career-row:last-child {
  border: none;
}
.career-row h4,
.career-row p {
  margin-bottom: 20px;
}
.page-img-container {
  text-align: right;
}

#get_started {
  padding: 110px 0;
  background: #E5F1FF url(../img/shape-blue-corner-bottom.png) no-repeat left bottom;
}
#get_started ol {
  list-style: none;
  counter-reset: olCounter;
  padding: 0 0 0 23px;
  margin: 0;
}
#get_started ol li {
  position: relative;
  padding: 0 0 10px 60px;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  border-left: 7px solid #DAE9F9;
}
#get_started ol li:last-child {
  border-color: transparent;
}
#get_started ol li:before {
  counter-increment: olCounter;
  content: counter(olCounter);
  color: #74787C;
  background-color: #DAE9F9;
  border-radius: 50%;
  font-size: 24px;
  display: block;
  text-align: center;
  line-height: 52px;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 0;
  left: -30px;
}
#get_started ol li h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
.growth-engine-page #section_news {
  padding: 130px 0 160px;
  background: url(../img/shape-large.png) no-repeat;
  background-position: calc(50% - 700px) bottom;
}

#contact_section .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
}

#product_features {
  padding: 90px 0;
  font-size: 16px;
}
#product_features .item {
  display: block;
  margin-bottom: 30px;
  border-top: 6px solid #BAA78D;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
  text-align: center;
  padding: 40px;
}
#product_features .item h4 {
  font-weight: bold;
}
#product_features .item .img-container {
  height: 98px;
  width: 98px;
  background-color: rgba(186,167,141,0.18);
  border-radius: 50%;
  margin: 0 auto 20px;
}
#product_features .item .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#product_features ul.check li {
  margin-bottom: 20px;
  text-align: left;
}
#product_features ul.check li:before {
  top: 2px;
}

#searchform {
  margin-bottom: 40px;
}
#searchform .searchform-container {
  position: relative;
}
#searchform .searchform-container:after {
  content: "\f002";
  font: normal normal normal 14px/27px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
  color: #68696A;
}
#searchform .searchform-container input[type=submit] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 30px;
}
#searchform .searchform-container #s {
  padding-left: 30px;
  margin: 0;
  width: 100%;
}
.category-list {
  position: relative;
  margin-bottom: 40px;
}
.category-list h3 {
  text-transform: none;
  margin: 0px 0px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #68696A;
}
.category-list ul {
  list-style: none;
  line-height: 1;
  padding: 0px;
  margin: 0px;
}
.category-list ul li {
  display: block;
}
.category-list ul li a {
  line-height: 28px;
  padding: 0px 0px;
  font-size: 18px;
  display: block;
  color: #2c2c2e;
}
.category-list ul li a:hover {
  color: #0079fc;
}

.widget-side .one-tool-box {
  margin: 0px auto 20px;
  max-width: 275px;
}
.blog-container {
  padding: 64px 0px 40px 0px; /* ZAG */
}
.blog-container .one-post-item {
  margin-bottom: 60px;
  display: flex;
}
.blog-container .one-post-item .thumbnail-side {
  box-shadow: 0px 0px 0px 2px rgba(0, 121, 252, 0.5);
  background-position: center;
  border: 5px solid #fff;
  background-size: cover;
  border-radius: 50%;
  margin-right: 24px;
  min-height: 172px;
  min-width: 172px;
  height: 172px;
  width: 172px;
}
.blog-container .one-post-item .content-side {
  width: 100%;
}
.blog-container .one-post-item .content-side h3 {
  margin: -5px 0px 18px;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: #0079fc;
}
.blog-container .one-post-item .content-side .meta-content {
  margin: 0px 0px 20px;
  line-height: 19px;
  font-size: 16px;
  display: block;
  color: #969696;
}
.blog-container .one-post-item .content-side .meta-content a {
  color: #969696;
  /* text-decoration: underline; */
}
.blog-container .one-post-item .content-side .meta-content a:hover {
  text-decoration: none;
}
.blog-container .one-post-item .content-side p {
  margin: 0px 0px 20px;
  line-height: 20px;
  font-size: 16px;
  display: block;
  color: #2c2c2e;
}
.blog-container .one-post-item .content-side .btn {
  margin-right: 6px;
  margin-top: -4px;
  float: right;
}
.blog-container > a {
  margin: -22px 0px 0px 12em;
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 1;
  color: #0079fc;
}
.blog-container > a:hover {
  text-decoration: underline;
}
.single-top-meta {
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #EDEFF2;
}
.author-box {
  float: left;
  margin-right: 30px;
}
.author-box .author-image {
  vertical-align: middle;
  margin-right: 20px;
}
.author-box .author-image img {
  border-radius: 50%;
}
.author-box a {
  color: inherit;
}
.share-icons {
  float: right;
  line-height: 60px;
}
.share-icons a {
  margin-left: 10px;
  color: #2554e9;
  font-size: 20px;
}
.share-icons a i {
  color: inherit;
}
.post-content {
  max-width: 700px;
  margin: 0 auto 100px;
  line-height: 1.5;
  font-size: 18px;
}
.post-content.full-width {
  max-width: none;
  overflow: hidden;
}
.page .post-content {
  font-size: 20px;
  line-height: 28px;
}
.page .post-content h1 {
  font-size: 44px;
  line-height: 50px;
}
.post-content .wp-caption {
  max-width: 100%;
}
.post-content h3.page-title {
  margin-bottom: 30px;
}
.post-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
}
.post-content ul li, .post-content ol li, article ul li, article ol li {
  display: block;
  color: #4d4e4c; /* ZAG */
	display: list-item;  /* ZAG */
    list-style-type: disc;  /* ZAG */
    margin-left: 25px;  /* ZAG */
}

.post-content ol li, article ol li {
	list-style-type: decimal;
}

.post-content ol ul li, article ol ul li {
	list-style-type: disc;
}

.post-content ul.check li, article ul.check li, ul.check li {
  list-style: none;
  margin-left: 30px;
  position: relative;
}

.post-content ul.check li:before, article ul.check li:before, ul.check li:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 19px;
  height: 16px;
  background: url('../img/icon-check-tan.png');
}

.post-content h2, .post-content h3, article h2, article h3 {
	margin: 15px 0;
}
.post-content p {
  width: 100%;
}
.post-content p iframe {
  min-height: 300px;
  width: 100%;
}
.post-content h2 {
  line-height: 40px;
  font-weight: 600;
  font-size: 36px;
  color: #2c2c2e;
}
.post-content h2 a {
  border-width: 2px;
}
.post-content .meta-content {
  letter-spacing: -0.3px;
  margin: 0px 0px 29px;
  line-height: 19px;
  font-size: 14px;
  display: block;
  color: #969696;
}
.post-content .meta-content a {
  color: #969696;
}
.post-content .meta-content a:hover {
}
.post-content .post-thumbnail {
  margin-bottom: 24px;
}
.post-content p {
  margin: 0px 0px 25px;
  display: block;
  color: #4d4e4c;
}
.post-content ol {
  /* counter-reset: myCounters; */
  margin: 0px 0px 31px;
}
.post-content ol li {
  padding-left: 10px;
  position: relative;
  color: #4d4e4c;
}
.post-content ol li:before {
  /* content: counter(myCounters) ". ";
  counter-increment: myCounters; */
  display: inline-block;
  position: absolute;
  margin-right: 0px;
  left: 0px;
}
.post-content.full-width .content-container {
  max-width: 600px;
  float: right;
  padding-left: 15px;
}
.about-page .post-content {
  padding-top: 40px;
}
.about-img-container img {
  margin: 0 0 20px 20px;
  vertical-align: top;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3);
}
.about-img-container .second-row {
  text-align: right;
}
.about-img-container .first-row {
  margin-left: 80px;
}
.about-img-container .first-row img {
  margin-left: 0;
}
.about-img-container .second-row img {
  max-width: calc(50% - 40px);
}
#comments h4 {
  font-weight: 600;
  font-size: 24px;
  color: #0079fc;
}
.comment-form-side {
  margin-bottom: 71px;
  position: relative;
  padding-top: 45px;
  margin-top: 44px;
}
.comment-form-side > h3 {
  margin: 0px 0px 25px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  color: #2c2c2e;
}
.comment-form-side::before {
  content: "";
  background-color: #0079fc;
  border-radius: 50%;
  position: absolute;
  margin: 0px auto;
  display: block;
  height: 6px;
  right: 0px;
  width: 6px;
  left: 0px;
  top: 0px;
}
.comment-form-side .logged-in-as {
  display: none;
}
.comment-form-side input, .comment-form-side textarea {
  margin-bottom: 31px;
  font-weight: 300;
  font-size: 20px;
  color: #4d4e4c;
}
.comment-form-side input:not([type="submit"]), .comment-form-side textarea:not([type="submit"]) {
  border: 1px solid transparent;
  background-color: #f1f4f6;
  padding: 24px 24px;
  height: auto;
  width: 100%;
}
.comment-form-side input::-webkit-input-placeholder, .comment-form-side textarea::-webkit-input-placeholder {
  color: #4d4e4c;
  opacity: 1;
}
.comment-form-side input::-moz-placeholder, .comment-form-side textarea::-moz-placeholder {
  color: #4d4e4c;
  opacity: 1;
}
.comment-form-side input:-moz-placeholder, .comment-form-side textarea:-moz-placeholder {
  color: #4d4e4c;
  opacity: 1;
}
.comment-form-side input:-ms-input-placeholder, .comment-form-side textarea:-ms-input-placeholder {
  color: #4d4e4c;
  opacity: 1;
}
.comment-form-side input:focus::-webkit-input-placeholder, .comment-form-side textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.comment-form-side input:focus::-moz-placeholder, .comment-form-side textarea:focus::-moz-placeholder {
  color: transparent;
}
.comment-form-side input:focus:-moz-placeholder, .comment-form-side textarea:focus:-moz-placeholder {
  color: transparent;
}
.comment-form-side input:focus:-ms-input-placeholder, .comment-form-side textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.comment-form-side input:focus, .comment-form-side textarea:focus {
  outline: 0px !important;
  text-decoration: none;
}
.comment-form-side input[type="submit"] {
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #0dadff;
  transition: background-color 0.3s ease, color 0.5s ease;
  border-radius: 30px;
  position: relative;
  margin: 0px auto;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #0079fc;
  color: #0079fc;
}
.comment-form-side input[type="submit"]:hover {
  background-color: #0079fc;
  cursor: pointer;
  color: #fff;
}
.comment-form-side input[type="submit"]::after {
  background-color: rgba(255, 255, 255, 0.3);
  transition: right 0.3s ease;
  transform: rotate(20deg);
  position: absolute;
  bottom: -110px;
  height: 300px;
  right: -300%;
  width: 100%;
  content: "";
}
.comment-form-side input[type="submit"]:hover {
  background-color: #0079fc;
}
.comment-form-side input[type="submit"]:hover::after {
  right: -55%;
}
.comment-form-side textarea {
  max-height: 233px;
}
.comment-form-side span {
  display: block;
}
.comment-form-side br {
  display: none;
}
.comment-form-side p {
  margin: 0px 0px 0px;
  text-align: center;
  line-height: 1;
  font-size: 0px;
  display: block;
}
.comment-form-side .comment-respond {
  font-size: 0px;
}
.comment-list-side {
  margin-bottom: 5px;
  padding-left: 23px;
}
.comment-list-side ul {
  list-style: none;
  line-height: 1;
  padding: 0px;
  margin: 0px;
}
.comment-list-side ul li {
  display: block;
}
.comment-list-side ul li .comment-block {
  display: flex;
}
.comment-list-side ul li .comment-block .avatar-side {
  border-radius: 50%;
  margin-right: 14px;
  overflow: hidden;
}
.comment-list-side ul li .comment-block .avatar-side img {
  border-radius: 50%;
}
.comment-list-side ul li .comment-block h3 {
  letter-spacing: -0.3px;
  margin: 0px 0px 8px;
  line-height: 1.1;
  font-size: 20px;
  color: #4d4e4c;
}
.comment-list-side ul li .comment-block span.comment-meta {
  letter-spacing: -0.1px;
  margin: 0px 0px 10px;
  font-size: 14px;
  line-height: 1;
  display: block;
  color: #0079fc;
}
.comment-list-side ul li .comment-block span.comment-meta a {
  color: #0079fc;
}
.comment-list-side ul li .comment-block p {
  letter-spacing: -0.4px;
  margin: 0px 0px 0px;
  line-height: 1.1;
  font-size: 20px;
  color: #4d4e4c;
}
.comment-list-side ul li .comment-block a {
  border: none;
}
.comment-list-side ul li .comment-block a:hover {
  color: #2c2c2e;
}
.comment-list-side ul li + ul {
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
  padding-top: 26px;
}
.comment-list-side ul li + ul li {
  background-color: #f1f4f6;
  padding: 31px 25px;
  position: relative;
}
.comment-list-side ul li + ul li::before {
  background-image: url('../img/reply.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 26px;
  width: 26px;
  left: -45px;
  content: "";
  top: 53px;
}
.comment-list-side ul li + ul li ul {
  padding: 0px 0px 0px 0px;
  background-color: #fff;
  margin-top: 20px;
}
.comment-list-side ul li + ul li ul li {
  border-bottom: 20px solid #f1f4f6;
  background-color: #fff;
  margin-bottom: 20px;
  padding-left: 70px;
}
.comment-list-side ul li + ul li ul li::before {
  left: 30px;
  top: 40px;
}
.comment-list-side ul li + ul li ul li:last-child {
  border-bottom: none;
}
.comment-list-side > ul > li {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.comment-list-side > ul > li:last-child {
  margin-bottom: 0px;
}
.comment-list-side > ul > li + ul li {
  margin-bottom: 20px;
}
.comment-list-side > ul > li + ul li:last-child {
  margin-bottom: 0px;
}
.comment-list-side > ul > li + ul li ul {
  margin-bottom: 20px;
}
.intro-header {
  background-position: center top;
  padding: 33px 0px 150px;
  background-size: cover;
  position: relative;
}
.intro-header .header-column-container {
  margin-bottom: 137px;
}
.intro-header .intro-image {
  margin-bottom: -350px;
  margin-top: 62px;
}
.intro-header + section {
  padding-bottom: 84px;
  padding-top: 160px;
}
.intro-header + section .intro-desc {
  text-align: center;
  max-width: 1100px;
  margin: 0px auto;
  margin-top: 40px; /* ZAG */
}
.intro-header + section .intro-desc p {
  letter-spacing: -0.4px;
  margin: 0px 0px 40px;
  line-height: 27px;
  font-size: 24px;
  color: #2c2c2e;
}
.text-section {
  text-align: center;
  color: #fff;
}
.text-section .h2, .text-section h2 {
  margin: 0px 0px 0px;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.text-section .h3, .text-section h3 {
  margin: 0px 0px 0px;
  line-height: 41px;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
}
.half-container {
  display: flex;
}
.half-container .left-side {
  max-width: 847px;
  width: 100%;
}
.half-container .right-side {
  /* padding-top: 7em; */ /* ZAG */
  max-width: 532px; /* ZAG */
}
.half-container .right-side p {
  margin: 0px 0px 25px;
  line-height: 24px;
  font-size: 20px;
  color: #3e3f4d;
}
.half-container .right-side p:last-child {
  margin-bottom: 0px;
}
.action-blocks-container .one-item {
  padding: 50px 0; /* ZAG */
}
.action-blocks-container .one-item:nth-child(odd) {
  background-color: #fff;
}
.action-blocks-container .one-item:nth-child(even) {
  background-color: #f1f4f6;
}
.action-blocks-container .one-item:nth-child(even) .item-flex-container .thumbnail-side {
  margin-right: 40px;
  order: 1;
}
.action-blocks-container .one-item:nth-child(even) .item-flex-container .content-side {
  order: 2;
}
.action-blocks-container .one-item .item-flex-container {
  justify-content: space-between;
  align-items: center;
  padding: 0px 38px;
  display: flex;
}
.action-blocks-container .one-item .content-side h3 {
  text-transform: none;
  padding-bottom: 39px;
  margin: 0px 0px 44px;
  position: relative;
  line-height: 54px;
  font-weight: 500;
  font-size: 42px;
  color: #2c2c2e;
}
.action-blocks-container .one-item .content-side h3::after {
  background-color: #0079fc;
  position: absolute;
  width: 142px;
  height: 4px;
  content: "";
  bottom: 0px;
  left: 0px;
}

/* ZAG */
.item-flex-container .content-side {
	max-width: 600px;
	padding-right: 25px;
}
/* END ZAG */

.contact-section-page {
	background: #eef7fb;
    border-top: 1px solid #d3f1ff;
}

.action-blocks-container .one-item .content-side p {
  margin: 0px 0px 30px;
  line-height: 30px;
  font-size: 24px;
}
.action-blocks-container .one-item .content-side p em {
  color: #969696;
	font-size: 16px; /* ZAG */
}
.hard-title {
  border-top: 4px solid #0079fc;
  margin-bottom: 83px;
  text-align: center;
  padding-top: 141px;
}
.hard-title h2 {
  text-transform: uppercase;
  letter-spacing: -1.4px;
  margin: 0px 0px 0px;
  font-family: 'Bebas', sans-serif;
  line-height: 44px;
  font-size: 70px; /* ZAG */
  color: #0079fc;
}
.one-case-box {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.59);
  background-color: #000;
  border-radius: 10px;
  margin-bottom: 38px;
  position: relative;
  padding: 45px 40px;
  min-height: 445px;
  overflow: hidden;
  max-width: 430px;
  width: 100%;
  color: #fff;
}
.one-case-box .image-background {
  transition: transform 3.5s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: 0px;
}
.one-case-box .filter {
  opacity: 0.5;
  z-index: 3;
}
.one-case-box .filter.filter-background {
  background-image: -moz-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
  background-image: -webkit-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
  background-image: -ms-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
}
.one-case-box:hover .image-background {
  transform: scale(1.3);
}
.one-case-box .content-side {
  position: relative;
  z-index: 9;
}
.one-case-box .content-side strong {
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  padding: 17px 16px 14px;
  margin: 0px 0px 25px;
  font-family: 'Bebas', sans-serif;
  position: relative;
  font-size: 20px;
  line-height: 1;
  display: table;
  clear: both;
  color: #fff;
	letter-spacing: 0.8px;
}
.one-case-box .content-side strong::before {
  background-color: #13c8ff;
  position: absolute;
  content: "";
  opacity: 0.3;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
}
.one-case-box .content-side span {
  text-transform: uppercase;
  margin: 0px 0px 10px;
  line-height: 28px;
  font-weight: 300;
  font-size: 18px;
  display: block;
  color: #fff;
}
.one-case-box .content-side h3 {
  text-transform: none;
  margin: 0px 0px 27px;
  font-weight: bold;
  line-height: 30px;
  font-size: 36px;
  color: #fff;
}
.one-case-box .content-side p {
  letter-spacing: -0.5px;
  margin: 0px 0px 53px;
  line-height: 28px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
.one-case-box .content-side .btn {
  display: inline-block;
  margin: 0px 0px 0px;
  padding: 14px 26px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}
.result-case-section {
  padding-bottom: 90px;
}
.case-list-container {
  display: flex;
}
.case-list-container .one-case-box {
  margin-right: 38px;
}
.case-list-container .one-case-box:nth-child(3n) {
  margin-right: 0px;
}
.compaigns-section {
  background-color: #f1f4f6;
  position: relative;
  padding: 65px 0; /* ZAG */
}
.compaigns-section .section-title {
  margin: 0px auto 65px; /* ZAG */
  max-width: 1100px;
  display: block;
  width: 100%;
}
.compaigns-section .section-title h3 {
  margin: 0px 0px 50px; /* ZAG */
  line-height: 50px; /* ZAG */
  font-weight: bold;
  font-size: 50px;
  color: #2c2c2e;
  font-family: 'Bebas', sans-serif; /* ZAG */
  text-transform: uppercase; /* ZAG */
}
.compaigns-section .section-title p {
  margin: 0px 0px 0px;
  line-height: 28px;
  font-size: 24px;
  display: block;
  color: #2c2c2e;
}
.one-compaigns-box {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}
.one-compaigns-box .thumbnail-side {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  height: 225px;
  width: 100%;
}
.one-compaigns-box .title {
  padding: 26px 20px 18px;
  background-color: #fff;
  text-align: center;
  display: block;
}
.one-compaigns-box .title h3 {
  margin: 0px 0px 0px;
  line-height: 28px;
  font-size: 20px;
  color: #2c2c2e;
}
.compaigns-blocks-container {
  margin-bottom: 37px;
}
.compaigns-blocks-container .one-compaigns-box {
  max-width: calc(100% / 3 - 20px);
  display: inline-block;
  margin-bottom: 30px;
  vertical-align: top;
  margin-right: 25px;
  width: 100%;
}
.compaigns-blocks-container .one-compaigns-box:nth-child(3n) {
  margin-right: 0px;
}
.all-here-section.pad-section {
  padding-bottom: 95px;
  padding-top: 95px;
}
.all-here-section .section-title {
  margin: 0px auto 75px;
  max-width: 1100px;
  display: block;
  width: 100%;
}
.all-here-section .section-title h2 {
  letter-spacing: 0px;
  margin: 0px 0px 30px;
  font-family: 'Bebas', sans-serif;
  line-height: 74px; /* ZAG */
  font-size: 65px; /* ZAG */
  color: #fff;
}
.all-here-section .section-title p {
  margin: 0px 0px 0px;
  line-height: 34px;
  font-size: 28px;
  color: #fff;
}
.circle-container {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1255px;
  margin: 0px auto;
  display: flex;
  width: 100%;
}
.one-circle-box {
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.one-circle-box .thumbnail-side {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0px auto 27px;
  height: 200px;
  width: 200px;
}
.one-circle-box h3 {
  max-width: 230px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0px auto;
}

.add-on-box {
 text-align: center;
 margin-bottom: 50px;
}

.add-on-title {
  text-align: center;
  font-size: 18px;
}

.price-block .one-price-box {
  border-radius: 10px;
  overflow: hidden;
  background-color: #f7f3ec;
}
.price-block .one-price-box.transparent {
	background-color: transparent;
}
.power-ups-table .price-block .one-price-box {
  padding: 30px;
  text-align: center;
}
.price-block .one-price-box .price-box-header {
  padding: 20px 30px 10px;
}
.price-block .price-box-1 {
	background-color: #f7f3ec;
}
.price-block .price-box-1 .price-box-header {
  background-color: #ece6de;
}
.price-block .price-box-2 {
	background-color: #efefef;
}
.price-block .price-box-2 .price-box-header {
  background-color: #e0e0e0;
}
.price-block .price-box-3 {
	background-color: #eadcc3;
}
.price-block .price-box-3 .price-box-header {
  background-color: #ddceb6;
}
.price-block .one-price-box .price-box-header h3 {
  float: left;
  font-weight: bold;
  font-size: 34px;
  line-height: 40px;
  margin: 0;
}
.price-block .one-price-box .price {
  float: right;
  color: #0079FC;
  text-align: right;
}
.price-block .one-price-box .price strong {
  display: block;
  font-weight: bold;
  font-size: 34px;
  line-height: 1;
  color: inherit;
}
.price-block .one-price-box ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}
.power-ups-table .price-block .one-price-box ul {
  padding: 0 0 0 20px;
  list-style: disc;
}
.price-block .one-price-box ul li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.3;
}
.price-block .one-price-box ul li h4,
.power-ups-table .price-block .one-price-box h3 {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.power-ups-table .price-block .one-price-box h3 {
  text-transform: none;
}
.price-block .one-price-box ul li h4:after,
.power-ups-table .price-block .one-price-box h3:after {
  content: "";
  height: 3px;
  width: 40%;
  background-color: #0079FC;
  position: absolute;
  bottom: 0;
  left: 0;
}
.power-ups-table .price-block .description {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #0079FC;
}
.price-block .price-description {
  margin-top: 5px;
}
.pricing-section {
  padding: 100px 0 0;
}
.power-ups-table {
  margin-top: 80px;
}
.power-ups-table .power-ups-header, .packages-header {
  max-width: 740px;
  font-size: 18px;
  line-height: 24px;
  margin: 0 auto 50px;
  text-align: center;
}
.pricing-page-bottom {
  margin-top: 30px;
}

.reviews-section {
  padding: 65px 0;
}
.reviews-slider {
  max-width: 1100px;
  margin: 0px auto;
  width: 100%;
}
.reviews-slider .one-item {
  text-align: center;
}
.reviews-slider .one-item .thumbnail-side {
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #0dadff;
  background-size: cover;
  margin: 0px auto 35px; /* ZAG */
  border-radius: 50%;
  height: 141px;
  width: 141px;
}
.reviews-slider .one-item .content-side p {
  letter-spacing: -0.1px;
  margin: 0px 0px 31px;
  font-style: italic;
  line-height: 34px;
  font-size: 24px;
  color: #198dfe;
}
.reviews-slider .one-item .content-side strong {
  margin: 0px 0px 0px;
  line-height: 29px;
  font-weight: 300;
  font-size: 24px;
  display: block;
  color: #969696;
}
.reviews-slider .one-item .content-side strong a {
	font-style: italic;
	color: #969696;
	text-decoration: underline;
	margin-top: 7px;
}

.action-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.action-section.pad-section {
  padding: 116px 0px 62px;
}
.action-section .section-description h3 {
  margin: 0px 0px 50px;
  line-height: 54px;
  font-weight: 400;
  font-size: 35px;
  color: #fff;
}
.action-section .section-description h3 strong {
  color: #fff;
}
.mobile-button {
  display: none;
  background: none;
}
.mobile-button .icon-bar {
  display: block;
  background: #203340;
  height: 3px;
  margin: 0 0 3px;
  outline: transparent solid 1px;
  -webkit-transition: all .45s;
  -moz-transition: all .45s;
  transition: all .45s;
  width: 26px;
}

.mobile-button.active .icon-bar:nth-child(1){
    -webkit-transform:translateY(6px) rotate(-45deg);
    -ms-transform:translateY(6px) rotate(-45deg);
    transform:translateY(6px) rotate(-45deg)
}

.mobile-button.active .icon-bar:nth-child(2){
    opacity:0;
    -webkit-transform:scale(0);
    -ms-transform:scale(0);
    transform:scale(0)
}

.mobile-button.active .icon-bar:nth-child(3){
    -webkit-transform:translateY(-6px) rotate(45deg);
    -ms-transform:translateY(-6px) rotate(45deg);
    transform:translateY(-6px) rotate(45deg)
}
.mobile-button:active, .mobile-button:focus {
  outline: 0px !important;
  text-decoration: none;
}
.mobile-button-breadcrumbs {
  display: none;
}
.mobile-button-breadcrumbs:active, .mobile-button-breadcrumbs:focus {
  outline: 0px !important;
}

input, textarea, select {
  font-family: inherit;
  border: 1px solid #E6E7E9;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 12px 10px;
}
input[type=submit] {
  cursor: pointer;
}
.contact-form-page .content-side p {
  line-height: 1.4;
  font-size: 18px;
}
.contact-form-page .content-side p strong {
  font-weight: bold;
}
.contact-form-page .contact-form-side h2 {
  text-transform: uppercase;
  margin: 0px 0px 30px;
  font-weight: 800;
  line-height: 1;
  color: #0079fc;
}
.contact-form-page .contact-form-side br {
  display: none;
}
.contact-form-page .contact-form-side .form-control {
  width: 100%;
}
.contact-form-page .contact-form-side .form-control:focus {
  border-color: #0079fc;
}
.contact-form-page .contact-form-side textarea.form-control {
  height: auto;
  resize: none;
}
.contact-form-page .contact-form-side .flex-row {
  display: block;
}
.contact-form-page .contact-form-side .flex-row > input, .contact-form-page .contact-form-side .flex-row > span {
  margin-right: 10px;
  display: block;
  width: 100%;
}
.contact-form-page .contact-form-side .flex-row > input:last-child, .contact-form-page .contact-form-side .flex-row > span:last-child {
  margin-right: 0px;
}
.contact-form-page .contact-form-side .flex-row > input .form-control, .contact-form-page .contact-form-side .flex-row > span .form-control {
  width: 100%;
}
.contact-form-page .contact-form-side > div > span .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: normal;
  display: block;
  font-style: italic;
  font-size: 14px;
  margin: 0px 0px 10px;
  padding-left: 5px;
}
.contact-form-page .contact-form-side .btn {
  width: 100%;
}
.contact-form-page .contact-form-side label {
  margin-bottom: 10px;
  font-weight: 400;
  display: flex;
}
.contact-form-page .contact-form-side label input {
  margin-right: 10px;
}
.contact-form-page div.wpcf7-validation-errors {
  background-color: #e0ac18;
  color: #fff;
  border-radius: 3px;
  width: 100%;
  max-width: 500px;
  padding: 10px 20px 13px;
  line-height: 1;
  font-weight: 400;
  border: none;
  font-style: italic;
}
.contact-form-page div.wpcf7-mail-sent-ok {
  background-color: #00c974;
  color: #fff;
  border: none;
  line-height: 1;
  padding: 10px 20px 13px;
  font-style: italic;
  font-weight: 400;
  border-radius: 4px;
  max-width: 500px;
  width: 100%;
}
.md-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.md-modal .join-block {
  background-color: #fff;
  border-radius: 4px;
  padding: 30px 30px;
}
.md-modal .join-block::after {
  display: none;
}
.md-modal.join-modal {
  max-width: 300px;
  min-width: 280px;
}
.md-modal .md-close {
  position: absolute;
  right: 21px;
  top: 29px;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
}
.md-modal .md-close:before, .md-modal .md-close:after {
  position: absolute;
  left: 7px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #74787C;
}
.md-modal .md-close:before {
  transform: rotate(45deg);
}
.md-modal .md-close:after {
  transform: rotate(-45deg);
}

.tooltip {
	cursor: pointer;
}

/****FAQ Section******/
.faq-archive {
  background: #fff;
}

.faq-archive .support-header {
  padding: 0;
  margin-bottom: 40px;
}

.faq-top-section-wrapper {
  background: url(../img/faq-archive.jpg) no-repeat right center;
  background-size: auto 100%;
  padding-bottom: 140px;
}

.faq-topics-list {
  font-size: 18px;
  line-height: 30px;
}

.support-header h1 {
	font-size: 60px;
	line-height: 1.3;
  margin: 0 0 10px;
	color: #fff;
	text-shadow: -1px -1px 2px rgba(0, 0, 0, 1);
}

#ewd-ufaq-jquery-ajax-search,
.predefined-results {
	width: 513px;
	max-width: 100%;
	position: relative;
	margin: 0 auto;
}

#ewd-ufaq-jquery-ajax-search:after {
	content: "\f002";
  font: normal normal normal 14px/27px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	display: block;
	position: absolute;
	top: 11px;
	left: 15px;
	z-index: 1002;
  color: #68696A;
}

#ufaq-ajax-search-lbl {
	display: none;
}

#ufaq-ajax-text-input {
	position: relative;
	font-style: italic;
	font-size: 16px;
	line-height: 1.3;
	background: #fff;
	padding: 12px 20px 12px 40px;
  border: 1px solid #E6E7E9;
  width: 100%;
  outline: none;
	border-radius: 5px!important;
	moz-border-radius: 5px!important;
    -webkit-border-radius: 5px!important;
    -khtml-border-radius: 5px!important;
    -o-border-radius: 5px!important;
	margin: 0 0 20px!important;
	z-index: 1001;
}

.single-ufaq #ufaq-ajax-text-input {
  margin: 0 0 40px!important;
}

.support-header {
  padding: 60px 0 0;
}

@media (min-width: 992px) {
  .support-header {
    padding-top: 20px;
  }
}

.ewd-ufaq-post-margin-symbol {
	display: none!important;
}

.ewd-ufaq-no-results {
	padding: 20px;
}

div.ufaq-faq-title .ufaq-faq-title-text {
	float: none;
	width: auto;
}

.predefined-results a {
	position: relative;
	display: inline-block;
	background: rgba(255,255,255,0.35);
	/*-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);*/
	margin: 5px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.3;
	padding: 8px 14px;
	border-radius: 5px;
	moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -o-border-radius: 5px;
	/*text-shadow: -1px -1px 2px rgba(0, 0, 0, 1);*/
}

#search-results-container {
	display: none;
	position: absolute;
	font-size: 14px;
    z-index: 1000;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 10px -3px #ccc;
    -moz-box-shadow: 0 0 10px -3px #ccc;
    -webkit-box-shadow: 0 0 10px -3px #ccc;
    -o-box-shadow: 0 0 10px -3px #ccc;
    background-color: #fff;
    border: 1px solid #E6E7E9;
    margin-top: 10px;
    padding: 50px 0 0;
    top: 10px!important;
    width: 100%;
    text-align: left;
    list-style: none;
    max-width: none;
}

#search-results-container .ewd-ufaq-post-margin {
	padding: 10px;
	display: block;
}

#search-results-container .ewd-ufaq-post-margin:hover,
#search-results-container .ewd-ufaq-post-margin:focus {
	background: #ccc;
}

#search-results-container .ewd-ufaq-post-margin h4 {
	font-weight: normal;
	font-size: 16px;
	margin: 0!important;
}

#search-results-container .ufaq-faq-div {
	margin: 0;
	padding: 0;
}

.ui-helper-hidden-accessible,
#ufaq-ajax-search-btn {
	display: none;
}

.search-results-wrapper {
  position: absolute;
  z-index: -1;
  max-height: 100px;
  overflow: hidden;
}

#search-results-loading {
	display: none;
	position: absolute;
	top: 8px;
    left: 8px;
    background: #fff;
    z-index: 2000;
    width: 28px;
    height: 28px;
}

.help-desk-link {
  font-size: 18px;
  line-height: 30px;
}

.feature-section {
	position: relative;
	background: #eef7fb;
	padding: 50px 0;
}

.feature-section .cat-link {
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 10px;
	display: block;
}

.feature-section .text-container {
	padding-top: 20px;
	overflow: hidden;
}

.faq-btn {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 15px;
	background: #0079fc;
	padding: 10px 40px;
	border-radius: 20px;
	moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    -o-border-radius: 20px;
	-webkit-transition: background 0.3s linear;
    -moz-transition: background 0.3s linear;
    transition: background 0.3s linear;
}

.faq-btn:hover, .faq-btn:focus, .faq-btn:active {
	background: #134e79;
	color: #fff;
}

.after-category-section {
	padding: 30px 0;
	background: #f2f2f2;
	position: relative;
	z-index: 10;
	-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
}

.after-category-section p {
	margin: 0;
}

.after-category-section a {
	position: relative;
	display: inline-block;
	border: 1px solid #357aac;
	padding: 10px 20px;
	border-radius: 10px;
	moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -o-border-radius: 10px;
	background: #fff;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.after-category-section a:hover {
	background: #357aac;
	color: #fff;
}

.after-category-section a:before {
	display: inline-block;
	content: "?";
	position: absolute;
	left: -64px;
	top: 0;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
	moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -o-border-radius: 50%;
	border: 1px solid #4089bd;
	color: #4089bd;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.categories-section {
	position: relative;
	z-index: 20;
	background: #fff;
	padding: 60px 0;
}

.categories-section .section-header {
	margin-bottom: 40px;
}

.categories-section .section-header * {
	margin: 5px;
}

.categories-section .item {
	display: block;
	border-radius: 10px;
	moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -o-border-radius: 10px;
	color: inherit;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.44);
	-webkit-transition: -webkit-box-shadow .15s;
    -moz-transition: -moz-box-shadow .15s;
    transition: box-shadow .15s;
}

.categories-section .item:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.64);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.64);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.64);
}

.categories-section .item .text-container {
	padding: 20px;
}

.categories-section .item .img-container {
	width: 60px;
	height: 40px;
	text-align: center;
	margin: 0 auto 20px;
}

.categories-section .item .img-container img {
	position: relative;
	top: 50%;
  	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}

.categories-section .item .more-btn {
	position: relative;
	padding: 10px;
	background: #0079fc;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
}

.popular-section {
	padding: 60px 0;
	background: #fff;
}

.popular-section div.ufaq-faq-title h4 {
	font-weight: normal;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
  font-family: inherit;
}

.popular-section #section_promote .promote-link {
	display: block;
	position: relative;
	background: #f0f7ff;
	font-weight: bold;
	border-radius: 10px;
	moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -o-border-radius: 10px;
	padding: 20px 30px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.24);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.24);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.24);
	-webkit-transition: -webkit-box-shadow .45s;
    -moz-transition: -moz-box-shadow .45s;
    transition: box-shadow .45s;
}

.popular-section #section_promote .promote-link:hover {
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.64);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.64);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.64);
}

.popular-section #section_promote .img-container {
	position: absolute;
}

.popular-section #section_promote .promote-title {
	position: relative;
	width: 40%;
	font-size: 20px;
}

.popular-section #section_promote i {
	font-size: 24px;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -12px;
}

.popular-section #section_newsletter {
	margin-bottom: 50px;
}

.popular-section #section_newsletter .form-header {
	display: none;
}

.popular-section #section_newsletter #mc_email {
	position: relative;
    font-style: italic;
    font-size: 16px;
    line-height: 1.3;
    background: #fff;
    padding: 25px 30px;
    border-radius: 25px!important;
    moz-border-radius: 25px!important;
    -webkit-border-radius: 25px!important;
    -khtml-border-radius: 25px!important;
    -o-border-radius: 25px!important;
    margin: 0!important;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.45);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.45);
}

.popular-section #section_newsletter #mc_email:focus {
	-webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
}

.popular-section #section_newsletter #process_newsletter_1 {
    background: #357aac;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 52px;
    height: 52px;
    padding: 0 12px;
    width: 130px;
    position: absolute;
    top: 10px;
    right: 0;
    border-radius: 0 26px 26px 0;
    moz-border-radius: 0 26px 26px 0;
    -webkit-border-radius: 0 26px 26px 0;
    -khtml-border-radius: 0 26px 26px 0;
    -o-border-radius: 0 26px 26px 0;
}

.popular-section #section_newsletter #process_newsletter_1:hover {
	background: #134e79;
}

.popular-section #section_newsletter #newsletter_mess_1 {
	left: 15px;
}

.demo-section.blog-alike-header {
	padding: 50px 0;
}

.demo-section p {
	margin: 0;
}

.faq-btn.red {
	background: #f98f87;
}

.faq-btn.red:hover {
	background: #e37c75;
}

.faq-btn.blue {
	background: #13c8ff;
}

.faq-btn.blue:hover {
	background: #045a74;
}

.faq-categories li {
	list-style: none;
}

.faq-categories a {
	color: #6A7680;
	position: relative;
	display: block;
	outline: none!important;
}

.faq-categories a:hover {
	color: #1da1f2;
}

.faq-categories .current-cat > a,
.faq-categories .current-cat-parent > a {
	color: #1da1f2;
	font-weight: bold;
}

.faq-categories > li {
	margin: 0;
	display: none;
}

.faq-categories > li.current-cat,
.faq-categories > li.current-cat-parent {
	display: block;
}

.faq-categories > li > ul {
	padding: 0;
	margin: 0;
}

.faq-categories > li > ul > li:last-child {
	border: none;
}

.faq-categories > li > a {
	font-size: 21px;
	line-height: 1.5;
	display: block;
	padding: 0;
	color: #292f33!important;
}

.faq-categories > li > ul > li > a {
	padding: 10px 0;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.3;
}

.faq-categories > li > ul > li ul {
	padding-bottom: 20px;
	margin: 0;
  display: none;
}

.faq-categories > li > ul > li.current-cat ul {
  display: block;
}

.faq-categories > li > ul > li ul a {
  line-height: 1.25;
  padding: 4px 15px 4px 0;
}

.faq-categories .ui-accordion-header-icon {
	display: none;
	float: right;
	margin-left: 5px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.faq-categories .ui-accordion-header-icon.ui-icon-triangle-1-s {
	display: inline-block;
	color: #e3eaee;
}

.faq-categories a:hover > .ui-accordion-header-icon,
.faq-categories a:hover > .ui-accordion-header-icon.ui-icon-triangle-1-s {
	color: #1da1f2;
	display: inline-block;
}

.faq-categories .ui-accordion-header-icon:before {
	content: "\f078";
}

.faq-categories .children > li > a {
	margin: 2px 0;
}

.faq-category .faq-category-inside {
	padding-top: 20px;
}

.faq-wrapper {
	padding: 40px 0;
}

.ewd-ufaq-ratings {
	padding: 25px 0!important;
}

.ewd-ufaq-ratings h2 {
	font-size: 24px;
	margin: 0;
}

.ewd-ufaq-ratings .ewd-ufaq-rating-button {
	float: none;
	background: none;
	width: 40px;
	overflow: hidden;
	display: inline-block;
	padding: 0;
	margin: 0 10px;
	font-size: 46px;
	vertical-align: middle;
}

.ewd-ufaq-up-vote:before,
.ewd-ufaq-down-vote:before {
	content: "\f118";
	font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
	display: inline;
    width: auto;
    height: auto;
    line-height: normal;
    vertical-align: baseline;
    background-image: none;
    background-position: 0% 0%;
    background-repeat: repeat;
    margin-top: 0;
}

.ewd-ufaq-down-vote:before {
	content: "\f119";
}

.ufaq-faq-category .ufaq-faq-category-title h4 {
	margin: 10px 0;
}

#search-results-container .ufaq-faq-category .ufaq-faq-category-title h4 {
	padding: 0 10px;
}

.faq-bottom-section-wrapper #section_news .section-title {
  text-align: left;
}

.faq-bottom-section-wrapper #section_news .section-title:after {
  right: auto;
}

/*Help Desk Styling */
article.ufaq.hentry {
  font-size: 16px;
  line-height: 1.7;
}
.paragraph { 
line-height: 25px; 
}

.steps { 
line-height: 35px; 
}

.ufaq .steps {
    line-height: 25px;
}
.ufaq .steps ol.has-bottom-li-margins li {
    margin-bottom: 15px;
}
.indent {
margin-left: 10%;
line-height: 25px;
margin-top: 15px;
} 

.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,
.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,
.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 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

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

.row:after {
    clear: both;
}

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

@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;
      margin-bottom: 0;
  }

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

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

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

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

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

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

  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-0 {
    right: 0;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  .col-sm-push-0 {
    left: 0;
  }
}

@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;
      margin-bottom: 0;
  }

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

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

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

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

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

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

  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  .col-md-pull-0 {
    right: 0;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  .col-md-push-0 {
    left: 0;
  }
}

@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;
      margin-bottom: 0;
  }

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

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

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

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

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

.blog-alike-header {
    padding: 25px 0;
	background-image: -moz-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
    background-image: -webkit-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
    background-image: -ms-linear-gradient(131deg, #0280fe 1%, #13c8ff 100%);
}

.blog-alike-header * {
    color: #fff;
}

.faq-page h4.subtitle {
    margin-bottom: 10px;
}

blockquote {
    padding: 21px 30px 18px 30px;
    border-left: 5px solid #4ac8ed;
    background: #f2f2f2;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
    font-style: italic;
    margin: 15px 0;
}
ol li ul li {
    list-style-type: disc;
}

@media (min-width: 768px) and (max-width: 991px) {
  .creative-specialists-column:nth-child(2n+1) {
      clear: left;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .creative-specialists-column:nth-child(3n+1) {
      clear: left;
  }
}

@media (min-width: 1200px) {
  .creative-specialists-column:nth-child(4n+1) {
      clear: left;
  }
}
