@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

a {
  transition: color 0.3s ease;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

h1,
.h1 {
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 0.007em;
  line-height: 1.3;
  margin-bottom: 1em;
}

h2,
.h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 1em;
}

h3,
.h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1em;
}

h4,
.h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 1em;
}

h5,
.h5 {
  font-size: 1em;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1em;
}

blockquote,
.quote {
  color: #000000;
  font-size: 1.3em;
  font-weight: 900;
  font-style: italic;
  text-align: center;
  margin-top: 60px;
}

cite,
.cite {
  display: block;
  color: #9B9B9B;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 60px;
}

p {
  line-height: 1.6;
}

.hero-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.007em;
  text-transform: uppercase;
}
@media (min-width: 1360px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.007em;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 1360px) {
  .hero-subtitle {
    max-width: 800px;
    font-size: 24px;
  }
}

.section-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.007em;
  line-height: 2.1;
  text-align: center;
  text-transform: uppercase;
}
.section-title:after {
  content: "";
  display: block;
  margin: 0 auto;
  background-color: #FAAA1E;
  width: 104px;
  height: 4px;
}
@media (min-width: 1360px) {
  .section-title {
    font-size: 46px;
  }
  .section-title:after {
    width: 151px;
  }
}
.section-title-lineless {
  text-align: left;
  line-height: 1.5;
  text-transform: none;
}
.section-title-lineless:after {
  content: none;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.007em;
  max-width: 768px;
  margin: 0 auto;
}
@media (min-width: 1360px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.post-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.007em;
  line-height: 1.3;
}
.post-title a {
  color: #454B60;
}
.post-title a:hover, .post-title a:focus {
  color: #9B9B9B;
}
@media (min-width: 1360px) {
  .post-title {
    font-size: 46px;
    font-weight: 300;
  }
}

.post-content,
.post-excerpt {
  text-align: justify;
}

.post-meta {
  color: #9B9B9B;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
}

.read-more {
  color: #454B60;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.29em;
  text-transform: uppercase !important;
}

.lead {
  font-size: 1.14em;
}

.small {
  font-size: 0.86em;
  line-height: 1.3;
}

.tiny {
  font-size: 14px;
}

.text-normal {
  font-size: 1rem;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-boldest {
  font-weight: 900;
}

.section {
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (min-width: 1140px) {
  .section {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}

.section-hero {
  padding-top: 85px;
  padding-bottom: 85px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/male-pirate-background-1.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/female-pirate-background-1.png);
  background-position: left center, right top;
  background-repeat: no-repeat;
  background-size: 30%;
}
@media (min-width: 1140px) {
  .section-hero {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: left top, right top;
    background-size: auto 70%, 500px;
  }
}

.section.case-studies .case {
  text-align: center;
  padding: 20px;
  margin: 20px;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .section.case-studies .case .logo-wrapper {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .section.case-studies .case {
    margin: 0;
    max-width: 30%;
  }
}
.section.case-studies .case img {
  max-width: 250px;
  width: 100%;
}

.section-cta.cta {
  height: 500px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1140px) {
  .section-cta.cta {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond-pirate.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond-pirate.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond.png);
    background-size: auto 60%, auto 60%, auto 100%;
    background-position: -10%, 110%, center;
    height: 100vh;
    margin-bottom: 200px;
  }
}
@media (min-width: 1360px) {
  .section-cta.cta {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond-pirate.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond-pirate.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond.png);
    background-size: auto 68%, auto 68%, auto 100%;
    background-position: -10%, 110%, center;
    height: 100vh;
    margin-bottom: 200px;
  }
}
@media (min-width: 1920px) {
  .section-cta.cta {
    background-size: auto 78%, auto 78%, auto 100%;
  }
}

.pricing-hero {
  padding-bottom: 200px;
  margin-bottom: -200px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/right-half-diamond-lumina.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond-temperus.png);
  background-position: -80px bottom, right -160px;
  background-repeat: no-repeat;
  background-size: 200px;
}
.pricing-hero span {
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-hero .section-title {
  font-size: 26px;
  font-weight: 500;
}
.pricing-hero .price {
  font-size: 52px;
  color: #FAAA1E;
}
.pricing-hero .section-tagline {
  font-size: 32px;
}
@media (max-width: 575px) {
  .pricing-hero {
    background-position: -120px 100px, calc(100% + 60px) -70px;
  }
  .pricing-hero .price,
.pricing-hero .section-tagline {
    padding-left: 0;
  }
}
@media (min-width: 1140px) {
  .pricing-hero {
    padding-top: 200px;
    padding-bottom: 400px;
    margin-bottom: -400px;
    background-position: -160px bottom, right -300px;
    background-size: 400px;
  }
  .pricing-hero .section-title {
    text-align: center;
  }
  .pricing-hero .price {
    text-align: center;
  }
  .pricing-hero .section-tagline {
    text-align: center;
  }
}
@media (min-width: 1360px) {
  .pricing-hero .section-title {
    font-size: 46px;
  }
  .pricing-hero .section-tagline {
    font-size: 56px;
  }
}
@media (min-width: 1600px) {
  .pricing-hero {
    padding-bottom: 600px;
    margin-bottom: -600px;
    background-position: -200px bottom, right -400px;
    background-size: 600px;
  }
}

.product-hero {
  padding-top: 15px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/right-half-diamond.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png);
  background-position: left bottom, right -100px;
  background-repeat: no-repeat;
  background-size: 150px, 100px;
}
@media (min-width: 1140px) {
  .product-hero {
    padding-bottom: 300px;
    padding-top: 40px;
    background-size: auto 70%, 370px;
    background-position: left 100%, right -500px;
  }
}
@media (min-width: 1920px) {
  .product-hero ~ .section:nth-child(2) {
    margin-top: -240px;
  }
}

.landing-hero {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png);
  background-position: right -100px;
  background-repeat: no-repeat;
  background-size: 100px;
  padding-bottom: 0;
}
@media (min-width: 1140px) {
  .landing-hero {
    background-size: 660px;
    background-position: right -800px;
  }
}

.hero-carousel .owl-stage-outer {
  min-height: calc(100vh - 80px);
}
@media (min-width: 1140px) {
  .hero-carousel .owl-stage-outer {
    min-height: calc(100vh - 170px);
  }
}
.hero-carousel button.owl-dot {
  padding: 8px !important;
}
@media (max-width: 1139px) {
  .hero-carousel button.owl-dot {
    display: none;
  }
}
.hero-carousel button.owl-dot:focus {
  outline: 0;
}
.hero-carousel button.owl-dot span {
  background: #E0E1E4;
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
}
.hero-carousel button.owl-dot.active span {
  background: #454B60;
}
.hero-carousel .owl-dots {
  position: relative;
  top: -300px;
}

.section-whatis.background-diamond-left {
  padding-top: 360px;
  margin-top: -345px;
  background-size: auto 800px;
  background-position: left top;
}
@media (max-width: 575px) {
  .section-whatis.background-diamond-left {
    background-size: auto 600px;
  }
}

.about-hero {
  padding-top: 100px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/bottom-half-diamond.png);
  background-position: calc(100% - 20px) 10px;
  background-repeat: no-repeat;
  background-size: 400px;
}
@media (min-width: 1140px) {
  .about-hero {
    background-position: 36vw top;
    background-size: 80vw;
    padding-top: 200px;
    padding-bottom: 600px;
    margin-bottom: -600px;
  }
}

.definitions-hero {
  padding-top: 100px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/bottom-half-diamond.png);
  background-position: calc(100% - 20px) 10px;
  background-repeat: no-repeat;
  background-size: 400px;
}
@media (min-width: 1140px) {
  .definitions-hero {
    background-position: 36vw top;
    background-size: 80vw;
    padding-bottom: 600px;
    margin-bottom: -600px;
  }
}

.definitions-disclaimer {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  font-style: italic;
  text-align: center;
}

.science-hero {
  padding-top: 15px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png);
  background-position: right -100px;
  background-repeat: no-repeat;
  background-size: 100px;
}
@media (min-width: 1140px) {
  .science-hero {
    padding-top: 40px;
    background-size: 300px;
    background-position: right -300px;
  }
}
@media (min-width: 1140px) {
  .science-hero {
    padding-bottom: 450px;
    background-position: right -700px;
    background-size: 700px;
  }
  .science-hero ~ .section:nth-child(2) {
    margin-top: -350px;
  }
}
@media (min-width: 1920px) {
  .science-hero {
    padding-bottom: 500px;
    background-position: right -1000px;
    background-size: 1000px;
  }
  .science-hero ~ .section:nth-child(2) {
    margin-top: -400px;
  }
}

.section-top {
  padding-top: 50px;
  padding-bottom: 80px;
  padding-top: 15px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png);
  background-position: right -100px;
  background-repeat: no-repeat;
  background-size: 100px;
}
@media (min-width: 1140px) {
  .section-top {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png), url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/right-half-diamond.png);
    padding-top: 170px;
    padding-bottom: 170px;
    background-position: right -300px, left 200px;
    background-size: 300px, auto 600px;
  }
}

.section-last {
  padding-bottom: 100px;
}

.hero-mockup-wrapper {
  background-position: bottom center;
  background-size: 50%;
  background-repeat: no-repeat;
}
@media (min-width: 1140px) {
  .hero-mockup-wrapper {
    padding-bottom: 160px;
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond.png);
  }
}

.hero-mockup-container {
  position: relative;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1359px) {
  .hero-mockup-container {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.hero-mockup-container .device:not(.laptop) {
  position: absolute;
}
@media (max-width: 1359px) {
  .hero-mockup-container .device:not(.laptop) {
    display: none;
  }
}
.hero-mockup-container .laptop {
  animation-duration: 1.5s;
  position: relative;
  width: 63%;
  left: 60px;
}
@media (max-width: 1359px) {
  .hero-mockup-container .laptop {
    width: 100%;
    max-width: 640px;
    left: 0;
  }
}
.hero-mockup-container .tablet {
  max-width: 30%;
  right: 0px;
  top: -160px;
  animation-duration: 1.8s;
}
.hero-mockup-container .mobile {
  max-width: 20%;
  bottom: -90px;
  right: 20%;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
}

.process .section-description {
  max-width: 750px;
  margin: 0 auto;
}
.process .narrow-container {
  max-width: 700px;
  margin: 0 auto;
}
.process .center-image {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}
.process .process-item {
  margin-bottom: 50px;
}
.process .process-item .title {
  font-size: 18px;
  font-weight: 700;
}
.process .process-item .description {
  font-size: 16px;
  max-width: 300px;
}

.trusted-wrapper {
  background-color: white;
  border-radius: 5px;
  padding: 50px;
  -webkit-box-shadow: -1px 2px 50px -27px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 2px 50px -27px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 2px 50px -27px rgba(0, 0, 0, 0.75);
}
.trusted-wrapper p {
  font-size: 32px;
  font-weight: 700;
}
.trusted-wrapper .trusted-container {
  grid-auto-rows: 1fr;
}
.trusted-wrapper .trusted-container .image-container {
  padding: 10px;
}
.trusted-wrapper .trusted-container .image-container .inside-container {
  background-color: #f6f6f6;
  min-height: 200px;
  height: 100%;
  display: flex;
}
.trusted-wrapper .trusted-container .image-container .inside-container img {
  width: auto;
  max-height: 200px;
  padding: 20px;
  align-self: center;
}

.partners-container {
  height: 280px;
  position: relative;
}
@media (min-width: 1140px) {
  .partners-container {
    height: 400px;
  }
}
@media (min-width: 1920px) {
  .partners-container {
    height: 600px;
  }
}
.partners-container .bubble {
  position: absolute;
  display: block;
  background-size: 50%;
}
.partners-container .bubble:nth-child(n+5) {
  display: none;
}
.partners-container .bubble:nth-child(1) {
  top: -10px;
  left: 5%;
}
.partners-container .bubble:nth-child(2) {
  top: 75px;
  left: 37%;
}
.partners-container .bubble:nth-child(3) {
  top: 14px;
  left: auto;
  right: 5%;
}
.partners-container .bubble:nth-child(4) {
  top: 163px;
  left: auto;
  right: 0%;
}
@media (min-width: 1140px) {
  .partners-container .bubble:nth-child(n+5) {
    display: block;
  }
  .partners-container .bubble:nth-child(1) {
    top: -10px;
    left: 5%;
  }
  .partners-container .bubble:nth-child(2) {
    top: 0;
    left: 30%;
  }
  .partners-container .bubble:nth-child(3) {
    top: -20px;
    left: 60%;
  }
  .partners-container .bubble:nth-child(4) {
    top: 50px;
    left: 80%;
  }
  .partners-container .bubble:nth-child(5) {
    top: 240px;
    left: 22.5%;
  }
  .partners-container .bubble:nth-child(6) {
    top: 120px;
    left: 50%;
  }
  .partners-container .bubble:nth-child(7) {
    top: 240px;
    left: 65%;
  }
}

.full-left,
.full-right {
  position: relative;
  width: 100%;
}

.background-diamond-left {
  background-position: left center;
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/right-half-diamond.png);
}
.background-diamond-left-graphic {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond-girl-left.png);
  background-position: left 70%;
}
@media (min-width: 1140px) {
  .background-diamond-left {
    padding-top: 100px;
    padding-bottom: 300px;
    margin-top: -100px;
    margin-bottom: -300px;
    background-size: auto 100%;
  }
}
.background-diamond-left-about {
  position: relative;
  overflow: hidden;
  background-position: left top;
  background-size: 25%;
}
.background-diamond-left-about .graphic-background img {
  position: relative;
  top: 50%;
  right: 70%;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 1360px) {
  .background-diamond-left-about {
    background-position: left center;
    background-size: auto 70%;
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .background-diamond-left-about .graphic-background {
    height: 120vh;
  }
  .background-diamond-left-about .graphic-background img {
    position: relative;
    top: 50%;
    right: 80%;
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .background-diamond-left-about {
    background-size: auto 100%;
  }
}

.background-diamond-left-small {
  background-position: left 100%;
  background-size: auto 30%;
  background-repeat: no-repeat;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/right-half-diamond.png);
}
@media (min-width: 1140px) {
  .background-diamond-left-small {
    background-size: auto 60%;
  }
}

.background-diamond-right {
  background-position: right center;
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-image: none;
}
@media (min-width: 1140px) {
  .background-diamond-right {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/left-half-diamond.png);
    padding-top: 60px;
    padding-bottom: 360px;
    margin-bottom: -260px;
    background-size: 32%;
    background-position: 110% center;
  }
}

.background-pirate-right {
  background-position: right top;
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-image: none;
}
@media (min-width: 768px) {
  .background-pirate-right {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/male-pirate-background-2.png);
    background-size: 30%;
    padding-bottom: 200px;
    margin-bottom: -200px;
  }
}
@media (min-width: 1140px) {
  .background-pirate-right {
    background-size: 50%;
    background-position: right center;
    padding-top: 400px;
    padding-bottom: 600px;
    margin-top: -400px;
    margin-bottom: -400px;
  }
}
@media (min-width: 1920px) {
  .background-pirate-right {
    background-size: auto 100%;
  }
}

.background-pirate-left {
  background-position: left top;
  background-size: auto 30%;
  background-repeat: no-repeat;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/female-pirate-background-2.png);
}
@media (min-width: 768px) {
  .background-pirate-left {
    background-size: auto 100%;
  }
}
@media (min-width: 1360px) {
  .background-pirate-left {
    padding-top: 400px;
    padding-bottom: 600px;
    margin-top: -735px;
    margin-bottom: -328px;
  }
}

.product-hero-smallimage {
  position: absolute;
  display: none;
  width: 100%;
}
@media (min-width: 1140px) {
  .product-hero-smallimage {
    max-width: 260px;
    display: block;
    top: 260px;
    left: -120px;
  }
}
@media (min-width: 1360px) {
  .product-hero-smallimage {
    max-width: 400px;
    top: 300px;
    left: -250px;
  }
}

.product-hero-diamond {
  position: absolute;
  display: none;
  width: 100%;
}
@media (min-width: 1140px) {
  .product-hero-diamond {
    display: block;
    max-width: 170px;
    top: calc(100% - 85px);
    right: 40%;
  }
}
@media (min-width: 1360px) {
  .product-hero-diamond {
    max-width: 170px;
    top: calc(100% - 85px);
    right: 40%;
  }
}

.post-header,
.post-featured,
.post-excerpt {
  margin-bottom: 25px;
}
@media (min-width: 1140px) {
  .post-header,
.post-featured,
.post-excerpt {
    margin-bottom: 50px;
  }
}

.archive-list .single-post {
  margin-bottom: 60px;
}
.archive-list .post-header {
  min-height: 120px;
}
.archive-list .post-title {
  font-size: 1.5em;
  font-weight: 600;
}

.report-image {
  position: relative;
  bottom: -7vw;
}

.shadow {
  box-shadow: 0 10px 29px 0 rgba(0, 0, 0, 0.16) !important;
}
.shadow-further {
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.16) !important;
}

.pos-index {
  position: relative;
  z-index: 1;
}

.mb-200 {
  margin-bottom: 200px;
}
@media (min-width: 1140px) {
  .mb-200 {
    margin-bottom: 60px;
  }
}

.mb-60 {
  margin-bottom: 30px;
}
@media (min-width: 1140px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}
@media (min-width: 1140px) {
  .mb-10 {
    margin-bottom: 20px;
  }
}

.w-80 {
  width: 80%;
}

img[src=""] {
  background: grey;
}

.animate:not(.counter):not(.animated) {
  opacity: 0;
}

.background-white {
  background: #FFFFFF;
}

.single-post .section img {
  max-width: 100%;
  height: auto;
}

.header-container {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-left: 0.9rem;
  background: #FFFFFF;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.admin-bar .header-container {
  top: 32px;
}

.header {
  height: 80px;
}

.nav-header a {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.11px;
  line-height: 1em;
}
.nav-header a:not(.btn) {
  padding: 0.5em 1.3em;
  color: #454B60;
}
.nav-header a:not(.btn):hover, .nav-header a:not(.btn):focus {
  color: #9B9B9B;
}

.nav-item.current-menu-item .nav-link {
  font-weight: 700;
}
.nav-item.current-menu-item a {
  font-weight: 700;
}

.logo {
  width: 32px;
  height: 56px;
  margin-right: 24px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/logo/owiwi-logo-mobile.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1360px) {
  .logo {
    width: 133px;
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/logo/owiwi-logo.png);
  }
}

.account-icon {
  width: 32px;
  height: 32px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/account.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.burger {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: 0 0;
  background: transparent;
  cursor: pointer;
}
.burger:focus {
  outline: 0;
  box-shadow: 0 0;
}
.burger .line {
  display: block;
  height: 2px;
  width: 24px;
  background: #454B60;
  margin-bottom: 6px;
}
.burger .line:last-child {
  margin-bottom: 0;
}

.close-menu {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: 0 0;
  background: transparent;
  cursor: pointer;
}
.close-menu:focus {
  outline: 0;
  box-shadow: 0 0;
}
.close-menu .line {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  display: block;
  height: 2px;
  width: 24px;
  background: #454B60;
  transform-origin: center;
  transform: rotate(45deg);
}
.close-menu .line:first-child {
  transform: rotate(-45deg);
}
.close-menu .line:last-child {
  transform: rotate(45deg);
}

.slider-menu {
  transform: translateX(-9999px);
  z-index: 20;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  position: fixed;
}
.slider-menu.active {
  transform: translateX(0);
}
.slider-menu.active .slider-menu-overlay {
  opacity: 0.8;
}
.slider-menu.active .slider-menu-container {
  transform: translateX(0);
}

.slider-menu-overlay {
  position: absolute;
  display: block;
  height: 100vh;
  width: 100%;
  background: #454B60;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: #FFFFFF;
  transform: translateX(-600px);
  transition: transform 0.5s ease-in-out;
}

.slider-menu-header {
  height: 80px;
  width: 100%;
  padding: 0 18px;
  border-bottom: 1px solid #EAEAEA;
}

.slider-menu-body {
  width: 100%;
  padding: 18px 18px;
}
.slider-menu-body .nav-link {
  padding: 0.8rem 0;
}
.slider-menu-body .nav-item a {
  padding: 0.8rem 0;
  display: block;
}

.slider-menu-footer {
  padding: 36px 18px;
}

#slideBtnLm .btn-lm {
  border-radius: 40px 0 0 40px;
  cursor: auto;
}

@media (max-width: 1359px) {
  #slideBtnLm {
    margin-left: 80px;
  }
  #slideBtnLm .btn-lm {
    position: absolute;
    top: 8px;
    right: -192px;
    transition: all 0.3s ease-in-out;
  }
  #slideBtnLm .btn-lm-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
  }
  #slideBtnLm .btn-lm-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  #slideBtnLm.active .btn-lm {
    right: 0;
  }
  #slideBtnLm.active .btn-lm-icon {
    transform: rotate(-360deg);
  }
  #slideBtnLm.active .btn-lm-content {
    opacity: 1;
  }
}
.registration-modal {
  top: 5%;
}
.registration-modal .benefits-content ul {
  list-style: none;
  padding: 0 4px;
}
.registration-modal .disclaimer {
  font-style: italic;
  font-size: 12px;
  color: #9B9B9B;
}

.cta-footer {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/top-half-diamond.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 100px;
}
@media (min-width: 1140px) {
  .cta-footer {
    padding-bottom: 240px;
  }
}
@media (min-width: 1360px) {
  .cta-footer {
    background-size: contain;
    padding-top: 80px;
  }
}

.footer-logo {
  position: relative;
  top: -65px;
  margin: 0 auto -65px;
  width: 65px;
  height: 130px;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/logo/owiwi-logo-mobile.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1140px) {
  .footer-logo {
    top: -180px;
    margin: 0 auto -180px;
    width: 180px;
    height: 360px;
  }
}

.footer {
  font-size: 16px;
  font-weight: 300;
  background-color: #454B60;
  color: rgba(255, 255, 255, 0.8);
}
.footer a {
  color: rgba(255, 255, 255, 0.8);
}
.footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: #FAAA1E;
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer .form-control {
  font-size: 16px;
}
.footer .btn-group .btn {
  background-color: #4D546D;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  padding: 1rem 1em;
  color: #FFFFFF;
}
.footer .btn-group .active {
  background-color: #4D546D;
  color: #FFFFFF;
}
.footer .btn-group:before {
  background: rgba(255, 255, 255, 0.38);
}
@media (max-width: 768px) {
  .footer .btn-group {
    flex-direction: column;
  }
  .footer .btn-group .btn:not(:last-child) {
    border-top-right-radius: 0.4em;
    border-bottom-left-radius: 0;
  }
  .footer .btn-group .btn:not(:first-child) {
    border-bottom-left-radius: 0.4em;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .footer .btn-group:before {
    height: 1px;
    width: 40%;
    transform: translate(-50%, -50%);
  }
}

.nav-footer .nav-link {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  padding: 0;
  opacity: 0.85;
  color: #FFFFFF;
}
.nav-footer .nav-link:hover, .nav-footer .nav-link:focus {
  opacity: 1;
}

.collapsable-mobile .collapse-control {
  margin-bottom: 2em;
}
.collapsable-mobile:not(.activated) .collapse-control:after {
  content: none;
}
.collapsable-mobile.activated {
  padding: 16px 0;
}
.collapsable-mobile.activated:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}
.collapsable-mobile.activated .email-form,
.collapsable-mobile.activated .nav-footer,
.collapsable-mobile.activated .map-rounded {
  margin-top: 30px;
}
.collapsable-mobile.activated .collapse-control {
  margin-bottom: 0;
}

.social-media-footer {
  text-align: center;
  margin-bottom: 50px;
}
.social-media-footer h4 {
  margin-bottom: 20px;
}
.social-media-footer .social-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 30px;
  vertical-align: bottom;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.social-media-footer *:nth-child(2) .social-icon {
  margin-left: 0;
}

.social-icon.instagram {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/instagram.svg);
}
.social-icon.twitter {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/twitter.svg);
}
.social-icon.linkedin {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/linkedin.svg);
}
.social-icon.facebook {
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/facebook.svg);
  background-size: auto 100%;
}

.copyright {
  font-size: 14px;
  text-align: center;
}

.newsletter-info {
  font-size: 14px;
  color: #FAAA1E;
  margin: 1rem 2.5rem;
}

@media (min-width: 1140px) {
  .social-media-footer *:nth-child(2) .social-icon {
    margin-left: 24px;
  }
}
@media (min-width: 768px) {
  .copyright {
    text-align: right;
  }

  .social-media-footer {
    margin-bottom: 0;
    text-align: left;
  }
  .social-media-footer h4 {
    margin-bottom: 0;
  }
}
.form-control {
  background-color: #FFFFFF;
  border: 1px solid #DCDFE6;
  border-radius: 4px;
  font-size: 16px;
  padding: 0 0.8em;
}
.form-control:active, .form-control:focus {
  box-shadow: 0 0;
  outline: 0;
}

label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  color: #909399;
}

textarea.form-control {
  padding: 1em 0.8em;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/angle-down.svg);
  background-position: 96%;
  background-size: 14px;
  background-repeat: no-repeat;
}

.email-form {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
}
.email-form .form-control {
  height: auto;
  width: 60%;
  padding: 1em 1.2em;
  border: 0;
  border-radius: 8px 0 0 8px;
  color: #FFFFFF;
  background: transparent;
}
.email-form .form-control:active, .email-form .form-control:focus {
  background: transparent;
}
.email-form .form-control::placeholder {
  color: #FFFFFF;
}
.email-form .btn {
  width: 40%;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 768px) {
  .email-form {
    display: block;
    border: 0;
  }
  .email-form .form-control {
    width: 100%;
    font-size: 18px;
    border: 1px solid #FFFFFF;
    border-radius: 0.4em;
    margin-bottom: 8px;
  }
  .email-form .btn {
    font-size: 18px;
    width: 100%;
    border-radius: 0.4em;
  }
}

.btn {
  border-radius: 0.4em;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  padding: 1em 3.1em;
  cursor: pointer;
  text-transform: uppercase;
}
.btn:focus {
  color: #FFFFFF;
  box-shadow: 0 0 !important;
}
@media (min-width: 1140px) {
  .btn {
    font-size: 18px;
  }
}

.btn-sm {
  padding: 0.8em 1.1em;
}

.btn-shadow {
  box-shadow: 0 0.55em 1.6em 0 rgba(0, 0, 0, 0.16);
}

.btn-primary {
  color: #FFFFFF;
}
.btn-primary:hover, .btn-primary:focus {
  color: #FFFFFF !important;
}

.btn-secondary {
  color: #FFFFFF;
}
.btn-secondary:focus {
  color: #FFFFFF !important;
  box-shadow: 0 0 !important;
}

.btn-outline-secondary {
  color: #454B60;
  border-width: 2px;
}
.btn-outline-secondary:focus, .btn-outline-secondary:active {
  background-color: #454B60 !important;
}

.btn-spacing {
  margin-bottom: 16px;
}
@media (max-width: 444px) {
  .btn-spacing {
    margin-bottom: 0;
  }
  .btn-spacing.no-credit-card-required {
    margin-bottom: 24px;
  }
}

.btn-link {
  text-transform: none;
  color: #454B60;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: #9B9B9B;
  text-decoration: none;
}

.btn-lm {
  display: flex;
  align-items: center;
  background: #454B60;
  width: 250px;
  border-radius: 45px;
  margin-left: 16px;
  padding: 10px 20px 10px 10px;
  font-size: 14px;
  text-align: left;
}
.btn-lm-icon {
  width: 42px;
  height: 42px;
  margin-right: 10px;
  display: inline-block;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/the-eye.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-lm-cta {
  font-weight: 300;
  letter-spacing: 0.1px;
  line-height: 16px;
  color: #FFFFFF;
}
.btn-lm-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08px;
  line-height: 14px;
}

.btn-group .btn {
  min-width: 125px;
  padding: 1em 1.3em;
  border-radius: 0.4em;
  border: 0;
  background-color: #d9dce4;
  text-transform: none;
  color: #454B60;
}
@media (min-width: 768px) {
  .btn-group .btn {
    min-width: 186px;
  }
}
.btn-group .active {
  background-color: #454B60;
  color: #FFFFFF;
}
.btn-group:before {
  content: "";
  position: absolute;
  height: 32px;
  left: 50%;
  top: 50%;
  display: block;
  width: 1px;
  transform: translate(-6px, -50%);
  z-index: 2;
}

.card {
  margin-bottom: 8px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .card {
    margin-bottom: 24px;
  }
}
.card .card-body {
  padding: 0.95rem;
}

.card-body img {
  max-width: 75px;
  max-height: 75px;
  margin-right: 8px;
}

.card-body .small {
  font-size: 16px;
}

.card-rounded {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 32px;
}
.card-rounded .card-image {
  width: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.card-rounded .card-body {
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .card-rounded .card-body {
    padding: 32px;
  }
}
.card-rounded .card-link {
  font-size: 18px;
  padding: 0;
  color: #FAAA1E;
}
@media (min-width: 768px) {
  .card-rounded .card-link {
    font-size: 21px;
  }
}
.card-rounded .card-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.007em;
  line-height: 1.7;
  margin-bottom: 0;
  color: #454B60;
}
@media (min-width: 768px) {
  .card-rounded .card-title {
    font-size: 24px;
  }
}
.card-rounded .collapsable-content {
  display: none;
}

.card-timeline .card-rounded {
  width: 100%;
}
@media (min-width: 768px) {
  .card-timeline .card-rounded {
    width: 66.66%;
    transition: all 0.5s 0.7s ease-out;
  }
  .card-timeline .card-rounded:nth-child(2n) {
    margin-left: 33.33%;
  }
  .card-timeline .card-rounded.active {
    width: 100%;
    margin-left: 0 !important;
    transition: all 0.5s ease-out;
  }
}
@media (min-width: 1140px) {
  .card-timeline .card-rounded {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .card-timeline .card-rounded .card-body {
    padding: 32px 65px;
  }
}
@media (min-width: 1140px) {
  .card-timeline .card-rounded .card-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .definitions-page .card-timeline .card-rounded {
    width: 80%;
  }
  .definitions-page .card-timeline .card-rounded:nth-child(2n) {
    margin-left: 20%;
  }
}
.definitions-page .card-timeline .card-rounded .card-image {
  margin: 16px;
  background-size: contain;
}
.definitions-page .card-timeline .card-rounded .card-title {
  text-decoration: underline;
}
.definitions-page .card-timeline .card-rounded .card-title.accountability {
  text-decoration-color: #e7adff;
}
.definitions-page .card-timeline .card-rounded .card-title.adaptability {
  text-decoration-color: #fec424;
}
.definitions-page .card-timeline .card-rounded .card-title.decision_making {
  text-decoration-color: #9de589;
}
.definitions-page .card-timeline .card-rounded .card-title.flexibility {
  text-decoration-color: #58b5ff;
}
.definitions-page .card-timeline .card-rounded .card-title.work_ethic {
  text-decoration-color: #f67280;
}
.definitions-page .card-timeline .card-rounded .card-title.learning_agility {
  text-decoration-color: #a99bfb;
}
.definitions-page .card-timeline .card-rounded .card-title.resilience {
  text-decoration-color: #f38531;
}
.definitions-page .card-timeline .card-rounded .card-title.teamwork {
  text-decoration-color: #b48f6b;
}
.definitions-page .card-timeline .card-rounded .card-title.project_management {
  text-decoration-color: #8a6bb4;
}
.definitions-page .card-timeline .card-rounded .card-title.entrepreneurship {
  text-decoration-color: #6bb4aa;
}
.definitions-page .card-timeline .card-rounded .card-title.people_support {
  text-decoration-color: #397127;
}

.card.card-cta .card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.card.card-cta .card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
@media (max-width: 767px) {
  .card.card-cta .card-content {
    flex-direction: column;
    text-align: center;
  }
}

.card.card-contact {
  font-size: 18px;
  font-weight: 700;
}
.card.card-contact .seperator {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.card.card-contact .seperator:before, .card.card-contact .seperator:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cbced9;
}
.card.card-contact .seperator:before {
  margin-right: 20px;
}
.card.card-contact .seperator:after {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .card.card-contact .seperator {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .card.card-contact .seperator:before, .card.card-contact .seperator:after {
    content: none;
  }
}
@media (min-width: 1140px) {
  .card.card-contact {
    font-size: 24px;
  }
}

.bubble {
  width: 144px;
  height: 144px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 100%;
  box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.06);
}

.bubble-animated {
  width: 72px;
  height: 72px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 100%;
  box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(32px) rotate3d(0, 0, 1, 0deg) scale(0);
}
.bubble-animated.big {
  width: 100px;
  height: 100px;
}
.bubble-animated.small {
  width: 72px;
  height: 72px;
}
@media (min-width: 768px) {
  .bubble-animated {
    width: 130px;
    height: 130px;
  }
  .bubble-animated.big {
    width: 180px;
    height: 180px;
  }
  .bubble-animated.small {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1140px) {
  .bubble-animated {
    width: 164px;
    height: 164px;
  }
  .bubble-animated.big {
    width: 230px;
    height: 230px;
  }
  .bubble-animated.small {
    width: 120px;
    height: 120px;
  }
}

.float-eye,
.float-skull {
  position: absolute;
  background-color: #FDD829;
  border-radius: 100%;
  box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.06);
  transform: translateY(32px) rotate3d(0, 0, 1, 0deg) scale(0);
}
.float-eye::before,
.float-skull::before {
  position: absolute;
  left: -25px;
  bottom: 4px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 1140px) {
  .float-eye::before,
.float-skull::before {
    left: -40px;
    bottom: 6px;
  }
}

.float-eye {
  left: 0%;
  bottom: 0%;
  left: 4%;
  bottom: 20%;
  width: 37px;
  height: 37px;
}
.float-eye::before {
  width: 57px;
  height: 57px;
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/the-eye.png");
}
@media (min-width: 1140px) {
  .float-eye {
    left: 4%;
    bottom: 20%;
    width: 64px;
    height: 64px;
  }
  .float-eye::before {
    width: 88px;
    height: 86px;
  }
}

.float-skull {
  top: -25px;
  right: 0%;
  width: 25px;
  height: 25px;
}
.float-skull::before {
  width: 43px;
  height: 43px;
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/the-skull.png");
}
@media (min-width: 1140px) {
  .float-skull {
    top: -68px;
    right: 4%;
    width: 51px;
    height: 51px;
  }
  .float-skull::before {
    width: 70px;
    height: 70px;
  }
}

.dynamic-list {
  list-style: none;
  margin-left: 0;
  padding-left: 30px;
  counter-reset: section;
}
.dynamic-list-item {
  margin-bottom: 40px;
  font-size: 14px;
}
.dynamic-list-item h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 1140px) {
  .dynamic-list-item {
    font-size: 18px;
    margin-bottom: 0;
  }
  .dynamic-list-item h4 {
    font-size: 21px;
  }
}
.dynamic-list-item.active .dynamic-list-bullet {
  border-color: #FEC124;
  transition: border 0.4s 0.2s ease-out;
}
@media (max-width: 1139px) {
  .dynamic-list-item.active .dynamic-list-image {
    height: 240px;
  }
  .dynamic-list-item.active .dynamic-list-image img {
    opacity: 1;
    transition: opacity 0.2s 0.1s ease-out;
  }
}
.dynamic-list-image {
  height: 0;
  position: relative;
  z-index: -1;
  transition: height 0.2s ease-in;
}
.dynamic-list-image img {
  display: block;
  opacity: 0;
  max-height: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.2s ease-in;
}
.dynamic-list-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
  margin-bottom: 15px;
}
@media (min-width: 1140px) {
  .dynamic-list-header {
    margin-bottom: 45px;
  }
}
.dynamic-list-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 40px;
  background-color: #FFFFFF;
  border: 2px solid transparent;
  box-shadow: 0 1px 17px 0 rgba(69, 75, 96, 0.19);
  transform: rotate(45deg);
  transition: border 0.4s ease-in;
}
.dynamic-list-bullet:before {
  display: block;
  counter-increment: section;
  content: counter(section);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-45deg);
}
@media (min-width: 1140px) {
  .dynamic-list-bullet {
    width: 60px;
    height: 60px;
    margin-right: 60px;
  }
  .dynamic-list-bullet:before {
    font-size: 32px;
  }
}

.counter-wrapper {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.007em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .counter-wrapper {
    width: 67px;
    margin-right: 0.7em;
  }
}
@media (min-width: 1920px) {
  .counter-wrapper {
    width: 120px;
    font-size: 56px;
  }
}

.icon-grid-box {
  padding: 15px 30px;
}
.icon-grid-box:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 1.125s;
}
.icon-grid-box:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1.25s;
}
.icon-grid-box:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 1.375s;
}
.icon-grid-box:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 1.5s;
}
.icon-grid-box:nth-child(5) {
  animation-delay: 0.5s;
  animation-duration: 1.625s;
}
.icon-grid-box:nth-child(6) {
  animation-delay: 0.6s;
  animation-duration: 1.75s;
}
.icon-grid-box:nth-child(7) {
  animation-delay: 0.7s;
  animation-duration: 1.875s;
}
.icon-grid-box:nth-child(8) {
  animation-delay: 0.8s;
  animation-duration: 2s;
}
.icon-grid-box .icon {
  width: 52px;
  margin-bottom: 15px;
}
@media (min-width: 1140px) {
  .icon-grid-box {
    padding: 30px 40px;
  }
  .icon-grid-box .icon {
    width: 80px;
  }
  .icon-grid-box .icon-lg {
    width: 114px;
  }
}
@media (min-width: 1920px) {
  .icon-grid-box {
    padding: 40px 80px;
  }
  .icon-grid-box .icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 1139px) {
  .icon-grid-row:last-child {
    margin-bottom: 1rem;
  }
}
.icon-grid-row-details {
  width: 100%;
}
.icon-grid-row-details h3 {
  font-size: 1rem;
  text-transform: uppercase;
}
.icon-grid-row-details p {
  line-height: 1.3;
}
@media (max-width: 1139px) {
  .icon-grid-row-details {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.icon-grid-row-title {
  font-size: 1.35rem;
}
@media (min-width: 1140px) {
  .icon-grid-row-title {
    text-align: left;
    width: 50%;
  }
}

.award {
  text-align: center;
}
.award:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 1.125s;
}
.award:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1.25s;
}
.award:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 1.375s;
}
.award img {
  max-height: 135px;
  max-width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .award {
    margin-bottom: 60px;
  }
  .award img {
    max-width: 200px;
    margin-bottom: 60px;
  }
}

.thats-why {
  position: relative;
  bottom: 70px;
  left: calc(50% - 90px);
  width: 180px;
  height: 180px;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FAAA1E;
  transform: rotate(45deg);
  margin-bottom: 60px;
}
.thats-why-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.007em;
  line-height: 1;
  color: #FFFFFF;
  transform: rotate(-45deg);
}
@media (min-width: 1140px) {
  .thats-why {
    position: absolute;
    bottom: -200px;
    left: 25%;
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 1360px) {
  .thats-why {
    bottom: -200px;
    left: 25%;
    width: 250px;
    height: 250px;
  }
  .thats-why-text {
    font-size: 32px;
  }
}

.team-box {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.team-box-wrapper {
  margin-bottom: 180px;
  padding-left: 15px;
}
.team-box-wrapper:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 1.125s;
}
.team-box-wrapper:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1.25s;
}
.team-box-wrapper:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 1.375s;
}
.team-box-wrapper:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 1.5s;
}
.team-box-wrapper:nth-child(5) {
  animation-delay: 0.5s;
  animation-duration: 1.625s;
}
.team-box-wrapper:nth-child(6) {
  animation-delay: 0.6s;
  animation-duration: 1.75s;
}
.team-box-wrapper:nth-child(7) {
  animation-delay: 0.7s;
  animation-duration: 1.875s;
}
.team-box-wrapper:nth-child(8) {
  animation-delay: 0.8s;
  animation-duration: 2s;
}
.team-box-wrapper:nth-child(9) {
  animation-delay: 0.9s;
  animation-duration: 2.125s;
}
.team-box-wrapper:nth-child(10) {
  animation-delay: 1s;
  animation-duration: 2.25s;
}
.team-box-wrapper:nth-child(11) {
  animation-delay: 1.1s;
  animation-duration: 2.375s;
}
.team-box-wrapper:nth-child(12) {
  animation-delay: 1.2s;
  animation-duration: 2.5s;
}
.team-box-wrapper:nth-child(n) .team-box-image:before {
  width: 48px;
  height: 48px;
  top: 57px;
  left: auto;
  right: 11px;
}
.team-box-wrapper:nth-child(3n+2) .team-box-image:before {
  width: 42px;
  height: 42px;
  top: auto;
  bottom: 22px;
  left: auto;
  right: 60px;
}
.team-box-wrapper:nth-child(2n+1) .team-box-image:before {
  width: 68px;
  height: 68px;
  top: 120px;
  left: 0;
}
@media (min-width: 1140px) {
  .team-box-wrapper {
    padding-left: 0;
  }
}
@media (min-width: 1920px) {
  .team-box-wrapper:nth-child(n) .team-box-image:before {
    width: 64px;
    height: 64px;
    top: 76px;
    left: auto;
    right: 15px;
  }
  .team-box-wrapper:nth-child(3n+2) .team-box-image:before {
    width: 56px;
    height: 56px;
    top: auto;
    bottom: 30px;
    left: auto;
    right: 80px;
  }
  .team-box-wrapper:nth-child(2n+1) .team-box-image:before {
    width: 90px;
    height: 90px;
    top: 160px;
    left: 0;
  }
}

.team-box-image {
  width: 240px;
  height: 240px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.team-box-image img {
  width: 240px;
  height: 240px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.team-box-image:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1920px) {
  .team-box-image {
    width: 320px;
    height: 320px;
    margin-bottom: 30px;
  }
  .team-box-image img {
    width: 320px;
    height: 320px;
  }
}

.team-box-body {
  width: 220px;
  padding: 240px 30px 15px;
  position: absolute;
  left: 50%;
  top: 20px;
  z-index: 0;
  background: white;
  font-size: 16px;
  transform: translateX(-50%);
}
@media (min-width: 1920px) {
  .team-box-body {
    width: 260px;
    padding: 320px 45px 15px;
    top: 30px;
  }
}

.team-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.team-carousel:not(.owl-carousel) {
  display: flex;
  flex-wrap: wrap;
}
.team-carousel:not(.owl-carousel) .team-box-wrapper {
  max-width: 25%;
  width: 100%;
}

.team-box-social .social-icon {
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.team-box-social .social-icon.facebook {
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/facebook-2.png");
}
.team-box-social .social-icon.twitter {
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/twitter-2.png");
}
.team-box-social .social-icon.linkedin {
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/linkedin-2.png");
}
.team-box-social .social-icon.instagram {
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/instagram-2.png");
}

.pagination-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #E0E1E4;
}
@media (min-width: 1140px) {
  .pagination-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (max-width: 373.98px) {
  .pagination {
    flex-direction: column;
    align-items: center;
  }
}
.pagination-link {
  display: block;
  padding: 0.5em 0.8em;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  color: #454B60;
  text-transform: lowercase;
}
@media (min-width: 1140px) {
  .pagination-link {
    font-size: 34px;
  }
}
.pagination-link:hover, .pagination-link:focus {
  color: #9B9B9B;
}
.pagination-link:first-child {
  padding-left: 0;
}
.pagination-link:last-child {
  padding-right: 0;
}
@media (max-width: 373.98px) {
  .pagination-link {
    padding-left: 0;
    padding-right: 0;
  }
}

.cta {
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/diamond.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cta-logo {
  max-width: 1276.63px;
}

.cta-h2 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.007em;
  text-shadow: 0px 2px 24px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1140px) {
  .cta-h2 {
    font-size: 48px;
  }
}

.cta-image {
  max-width: 960px;
  width: 100%;
}

.contact-box {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
}
.contact-box .get-directions {
  color: #454B60;
}
.contact-box .get-directions:after {
  width: 36px;
  height: 36px;
  margin-left: 24px;
}
@media (min-width: 1140px) {
  .contact-box {
    font-size: 16px;
  }
}

.map-rounded {
  border-radius: 16px;
  margin-bottom: 0.5rem;
}
.map-rounded-lg {
  border-radius: 8px;
}

.get-directions:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/reply.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
  vertical-align: middle;
}

.collapse-control {
  position: relative;
  display: block;
  cursor: pointer;
}
.collapse-control:after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjI4NC45MjlweCIgaGVpZ2h0PSIyODQuOTI5cHgiIHZpZXdCb3g9IjAgMCAyODQuOTI5IDI4NC45MjkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI4NC45MjkgMjg0LjkyOTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZmlsbD0iIzVFNjY4MyIgZD0iTTI4Mi4wODIsNzYuNTExbC0xNC4yNzQtMTQuMjczYy0xLjkwMi0xLjkwNi00LjA5My0yLjg1Ni02LjU3LTIuODU2Yy0yLjQ3MSwwLTQuNjYxLDAuOTUtNi41NjMsMi44NTZMMTQyLjQ2NiwxNzQuNDQxDQoJCUwzMC4yNjIsNjIuMjQxYy0xLjkwMy0xLjkwNi00LjA5My0yLjg1Ni02LjU2Ny0yLjg1NmMtMi40NzUsMC00LjY2NSwwLjk1LTYuNTY3LDIuODU2TDIuODU2LDc2LjUxNUMwLjk1LDc4LjQxNywwLDgwLjYwNywwLDgzLjA4Mg0KCQljMCwyLjQ3MywwLjk1Myw0LjY2MywyLjg1Niw2LjU2NWwxMzMuMDQzLDEzMy4wNDZjMS45MDIsMS45MDMsNC4wOTMsMi44NTQsNi41NjcsMi44NTRzNC42NjEtMC45NTEsNi41NjItMi44NTRMMjgyLjA4Miw4OS42NDcNCgkJYzEuOTAyLTEuOTAzLDIuODQ3LTQuMDkzLDIuODQ3LTYuNTY1QzI4NC45MjksODAuNjA3LDI4My45ODQsNzguNDE3LDI4Mi4wODIsNzYuNTExeiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.collapse-control.active:after, .collapse-control[aria-expanded=true]:after {
  transform: translateY(-50%) rotate(180deg);
}
.collapse-control[aria-expanded=true]:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjI4NC45MjlweCIgaGVpZ2h0PSIyODQuOTI5cHgiIHZpZXdCb3g9IjAgMCAyODQuOTI5IDI4NC45MjkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI4NC45MjkgMjg0LjkyOTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZmlsbD0iIzAwMCIgZD0iTTI4Mi4wODIsNzYuNTExbC0xNC4yNzQtMTQuMjczYy0xLjkwMi0xLjkwNi00LjA5My0yLjg1Ni02LjU3LTIuODU2Yy0yLjQ3MSwwLTQuNjYxLDAuOTUtNi41NjMsMi44NTZMMTQyLjQ2NiwxNzQuNDQxDQoJCUwzMC4yNjIsNjIuMjQxYy0xLjkwMy0xLjkwNi00LjA5My0yLjg1Ni02LjU2Ny0yLjg1NmMtMi40NzUsMC00LjY2NSwwLjk1LTYuNTY3LDIuODU2TDIuODU2LDc2LjUxNUMwLjk1LDc4LjQxNywwLDgwLjYwNywwLDgzLjA4Mg0KCQljMCwyLjQ3MywwLjk1Myw0LjY2MywyLjg1Niw2LjU2NWwxMzMuMDQzLDEzMy4wNDZjMS45MDIsMS45MDMsNC4wOTMsMi44NTQsNi41NjcsMi44NTRzNC42NjEtMC45NTEsNi41NjItMi44NTRMMjgyLjA4Miw4OS42NDcNCgkJYzEuOTAyLTEuOTAzLDIuODQ3LTQuMDkzLDIuODQ3LTYuNTY1QzI4NC45MjksODAuNjA3LDI4My45ODQsNzguNDE3LDI4Mi4wODIsNzYuNTExeiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
}

.cursor-animation,
.animate {
  will-change: transform;
}

.testimonial-carousel.owl-carousel .owl-stage,
.testimonial-carousel.owl-carousel .owl-item {
  display: flex;
}
.testimonial-carousel.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 16px;
}
.testimonial-carousel.owl-carousel .owl-dots button.owl-dot {
  padding: 8px !important;
}
@media (max-width: 1139px) {
  .testimonial-carousel.owl-carousel .owl-dots button.owl-dot {
    display: none;
  }
}
.testimonial-carousel.owl-carousel .owl-dots button.owl-dot:focus {
  outline: 0;
}
.testimonial-carousel.owl-carousel .owl-dots button.owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: #E0E1E4;
}
.testimonial-carousel.owl-carousel .owl-dots button.owl-dot.active span {
  background-color: #454B60;
}

.testimonial {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 3px;
  box-shadow: 0 8px 20px 0 rgba(224, 224, 224, 0.5);
  padding: 30px 25px;
  transition: all 0.3s ease-in-out;
}
.testimonial blockquote {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  text-align: left;
  color: #454B60;
  overflow: hidden;
}
.testimonial cite {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
  color: #454B60;
}
.testimonial cite:before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  background-color: #454B60;
}

.center.active .testimonial {
  background: #FAAA1E;
}
.center.active .testimonial blockquote,
.center.active .testimonial cite {
  color: #FFFFFF;
}
.center.active .testimonial cite:before {
  background-color: #FFFFFF;
}

.landing-hero-no-padding {
  padding-right: 0;
  padding-left: 0;
}

.measurements-animation:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 1.125s;
}
.measurements-animation:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1.25s;
}
.measurements-animation:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 1.375s;
}
.measurements-animation:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 1.5s;
}
.measurements-animation:nth-child(5) {
  animation-delay: 0.5s;
  animation-duration: 1.625s;
}
.measurements-animation:nth-child(6) {
  animation-delay: 0.6s;
  animation-duration: 1.75s;
}
.measurements-animation:nth-child(7) {
  animation-delay: 0.7s;
  animation-duration: 1.875s;
}
.measurements-animation:nth-child(8) {
  animation-delay: 0.8s;
  animation-duration: 2s;
}

.measurements-grid-box {
  position: relative;
  margin: 12px 0;
  background-color: #fff;
  border-radius: 8px;
}
.measurements-grid-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.measurements-grid-box.accountability:before {
  background-color: #e7adff;
}
.measurements-grid-box.adaptability:before {
  background-color: #fec424;
}
.measurements-grid-box.decision_making:before {
  background-color: #9de589;
}
.measurements-grid-box.flexibility:before {
  background-color: #58b5ff;
}
.measurements-grid-box.work_ethic:before {
  background-color: #f67280;
}
.measurements-grid-box.learning_agility:before {
  background-color: #a99bfb;
}
.measurements-grid-box.resilience:before {
  background-color: #f38531;
}
.measurements-grid-box.teamwork:before {
  background-color: #b48f6b;
}
.measurements-grid-box.project_management:before {
  background-color: #8a6bb4;
}
.measurements-grid-box.entrepreneurship:before {
  background-color: #6bb4aa;
}
.measurements-grid-box.people_support:before {
  background-color: #397127;
}
.measurements-grid-box h3 {
  margin: 0;
}
.measurements-grid-box .icon {
  max-width: 52px;
  max-height: 60px;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 1360px) {
  .measurements-grid-box {
    margin: 24px 0;
  }
  .measurements-grid-box .icon {
    max-width: 114px;
    max-height: 132px;
    margin-top: -8px;
    margin-bottom: -8px;
  }
}

.no-credit-card-required {
  position: relative;
}
.no-credit-card-required:after {
  content: "No Credit Card Required";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font-size: 10px;
  font-style: italic;
  color: #9B9B9B;
  margin-top: 4px;
  text-transform: none;
}

.science-guidelines .container {
  max-width: 1024px;
}
.science-guidelines .curved-image {
  border-radius: 16px;
}

.product-page .section-measurements,
.company-page .section-measurements {
  padding-top: 0;
}

.section-cso .cso-mobile {
  width: 100%;
}

.notification-popup {
  position: fixed;
  top: 96px;
  z-index: 2000;
  display: flex;
  width: 410px;
  max-width: calc(100% - 32px);
  padding: 16px;
  color: #454B60;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: 1px solid #EBEEF5;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s;
  overflow: hidden;
}
.notification-popup.right {
  right: 16px;
}
.notification-popup.left {
  left: 16px;
}
.notification-popup.bottom {
  top: unset;
  bottom: 32px;
}
.notification-popup .title {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}
.notification-popup .content {
  font-size: 14px;
  line-height: 21px;
  margin: 6px 0 0 0;
  text-align: justify;
}
.notification-popup .content p {
  margin: 0;
}
.notification-popup .success-mark {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.notification-popup .close-button {
  cursor: pointer;
  color: #909399;
  font-size: 24px;
  line-height: 16px;
  margin-left: 8px;
}
.notification-popup .close-button:hover {
  color: #454B60;
}

.section.pricing-free-trial {
  padding-bottom: 30px;
  padding-top: 30px;
}
.section.pricing-free-trial .trial-p .trial-description {
  display: block;
  font-size: 21px;
}
.section.pricing-free-trial .trial-p .bullet:before {
  content: "•";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}
.section.pricing-free-trial .trial-p .bullet + .bullet {
  margin-left: 16px;
}
@media (max-width: 576px) {
  .section.pricing-free-trial .trial-p .bullet {
    display: block;
  }
  .section.pricing-free-trial .trial-p .bullet + .bullet {
    margin-left: 0;
  }
}
.section.pricing-free-trial .trial-features {
  margin: 16px 0 0 0;
  font-size: 16px;
  font-style: italic;
  cursor: pointer;
  text-shadow: 0px 2px 24px rgba(0, 0, 0, 0.4);
}
.section.pricing-free-trial .pricing-plan-list {
  display: inline-block;
  min-width: 280px;
  list-style: none;
  text-align: left;
  margin: 0 auto;
}
.section.pricing-free-trial .pricing-plan-list li.active {
  font-weight: 600;
}
.section.pricing-free-trial .pricing-plan-list li:before {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 14px;
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/check.png");
  background-size: cover;
}
.section.pricing-free-trial .pricing-plan-list li.inactive {
  opacity: 0.5;
  text-decoration: line-through;
}
.section.pricing-free-trial .pricing-plan-list li.inactive:before {
  width: 14px;
  height: 14px;
  background-image: url("https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/cancel.png");
}
.section.pricing-free-trial .feature {
  display: inline-block;
  min-width: 210px;
  text-align: left;
  padding: 4px 0;
}
.section.pricing-free-trial .feature.disabled {
  color: #9B9B9B;
  text-decoration: line-through;
}
@media (max-width: 576px) {
  .section.pricing-free-trial .feature {
    min-width: 180px;
  }
}
.section.pricing-free-trial .feature-icon {
  width: 20px;
}

.chain-animation .animated:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 1.1s;
}
.chain-animation .animated:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1.2s;
}
.chain-animation .animated:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 1.3s;
}
.chain-animation .animated:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 1.4s;
}
.chain-animation .animated:nth-child(5) {
  animation-delay: 0.5s;
  animation-duration: 1.5s;
}
.chain-animation .animated:nth-child(6) {
  animation-delay: 0.6s;
  animation-duration: 1.6s;
}
.chain-animation .animated:nth-child(7) {
  animation-delay: 0.7s;
  animation-duration: 1.7s;
}
.chain-animation .animated:nth-child(8) {
  animation-delay: 0.8s;
  animation-duration: 1.8s;
}
.chain-animation .animated:nth-child(9) {
  animation-delay: 0.9s;
  animation-duration: 1.9s;
}
.chain-animation .animated:nth-child(10) {
  animation-delay: 1s;
  animation-duration: 2s;
}
.chain-animation .animated:nth-child(11) {
  animation-delay: 1.1s;
  animation-duration: 2.1s;
}
.chain-animation .animated:nth-child(12) {
  animation-delay: 1.2s;
  animation-duration: 2.2s;
}
.chain-animation .animated:nth-child(13) {
  animation-delay: 1.3s;
  animation-duration: 2.3s;
}
.chain-animation .animated:nth-child(14) {
  animation-delay: 1.4s;
  animation-duration: 2.4s;
}
.chain-animation .animated:nth-child(15) {
  animation-delay: 1.5s;
  animation-duration: 2.5s;
}
.chain-animation .animated:nth-child(16) {
  animation-delay: 1.6s;
  animation-duration: 2.6s;
}
.chain-animation .animated:nth-child(17) {
  animation-delay: 1.7s;
  animation-duration: 2.7s;
}
.chain-animation .animated:nth-child(18) {
  animation-delay: 1.8s;
  animation-duration: 2.8s;
}
.chain-animation .animated:nth-child(19) {
  animation-delay: 1.9s;
  animation-duration: 2.9s;
}
.chain-animation .animated:nth-child(20) {
  animation-delay: 2s;
  animation-duration: 3s;
}
.chain-animation .animated:nth-child(21) {
  animation-delay: 2.1s;
  animation-duration: 3.1s;
}
.chain-animation .animated:nth-child(22) {
  animation-delay: 2.2s;
  animation-duration: 3.2s;
}
.chain-animation .animated:nth-child(23) {
  animation-delay: 2.3s;
  animation-duration: 3.3s;
}
.chain-animation .animated:nth-child(24) {
  animation-delay: 2.4s;
  animation-duration: 3.4s;
}
.chain-animation .animated:nth-child(25) {
  animation-delay: 2.5s;
  animation-duration: 3.5s;
}
.chain-animation .animated:nth-child(26) {
  animation-delay: 2.6s;
  animation-duration: 3.6s;
}
.chain-animation .animated:nth-child(27) {
  animation-delay: 2.7s;
  animation-duration: 3.7s;
}
.chain-animation .animated:nth-child(28) {
  animation-delay: 2.8s;
  animation-duration: 3.8s;
}
.chain-animation .animated:nth-child(29) {
  animation-delay: 2.9s;
  animation-duration: 3.9s;
}
.chain-animation .animated:nth-child(30) {
  animation-delay: 3s;
  animation-duration: 4s;
}
.chain-animation .animated:nth-child(31) {
  animation-delay: 3.1s;
  animation-duration: 4.1s;
}
.chain-animation .animated:nth-child(32) {
  animation-delay: 3.2s;
  animation-duration: 4.2s;
}
.chain-animation .animated:nth-child(33) {
  animation-delay: 3.3s;
  animation-duration: 4.3s;
}
.chain-animation .animated:nth-child(34) {
  animation-delay: 3.4s;
  animation-duration: 4.4s;
}
.chain-animation .animated:nth-child(35) {
  animation-delay: 3.5s;
  animation-duration: 4.5s;
}
.chain-animation .animated:nth-child(36) {
  animation-delay: 3.6s;
  animation-duration: 4.6s;
}
.chain-animation .animated:nth-child(37) {
  animation-delay: 3.7s;
  animation-duration: 4.7s;
}
.chain-animation .animated:nth-child(38) {
  animation-delay: 3.8s;
  animation-duration: 4.8s;
}
.chain-animation .animated:nth-child(39) {
  animation-delay: 3.9s;
  animation-duration: 4.9s;
}
.chain-animation .animated:nth-child(40) {
  animation-delay: 4s;
  animation-duration: 5s;
}

.float {
  animation-name: pop, floating;
  animation-direction: normal, alternate;
  animation-iteration-count: 1, infinite;
  animation-timing-function: ease-out, ease-in-out;
  animation-fill-mode: none;
}
.float:nth-child(1) {
  animation-delay: 0.1s, 1.225s;
  animation-duration: 1.125s, 3.97s;
}
.float:nth-child(2) {
  animation-delay: 0.2s, 1.45s;
  animation-duration: 1.25s, 3.86s;
}
.float:nth-child(3) {
  animation-delay: 0.3s, 1.675s;
  animation-duration: 1.375s, 4.65s;
}
.float:nth-child(4) {
  animation-delay: 0.4s, 1.9s;
  animation-duration: 1.5s, 4.38s;
}
.float:nth-child(5) {
  animation-delay: 0.5s, 2.125s;
  animation-duration: 1.625s, 3.92s;
}
.float:nth-child(6) {
  animation-delay: 0.6s, 2.35s;
  animation-duration: 1.75s, 4.15s;
}
.float:nth-child(7) {
  animation-delay: 0.7s, 2.575s;
  animation-duration: 1.875s, 4.18s;
}
.float:nth-child(8) {
  animation-delay: 0.8s, 2.8s;
  animation-duration: 2s, 4.18s;
}
.float:nth-child(9) {
  animation-delay: 0.9s, 3.025s;
  animation-duration: 2.125s, 4.67s;
}
.float:nth-child(10) {
  animation-delay: 1s, 3.25s;
  animation-duration: 2.25s, 4.7s;
}
.float:nth-child(11) {
  animation-delay: 1.1s, 3.475s;
  animation-duration: 2.375s, 4.33s;
}
.float:nth-child(12) {
  animation-delay: 1.2s, 3.7s;
  animation-duration: 2.5s, 3.99s;
}
.float:nth-child(13) {
  animation-delay: 1.3s, 3.925s;
  animation-duration: 2.625s, 3.83s;
}
.float:nth-child(14) {
  animation-delay: 1.4s, 4.15s;
  animation-duration: 2.75s, 4.01s;
}
.float:nth-child(15) {
  animation-delay: 1.5s, 4.375s;
  animation-duration: 2.875s, 4.03s;
}
.float:nth-child(16) {
  animation-delay: 1.6s, 4.6s;
  animation-duration: 3s, 4.47s;
}
.float:nth-child(17) {
  animation-delay: 1.7s, 4.825s;
  animation-duration: 3.125s, 3.86s;
}
.float:nth-child(18) {
  animation-delay: 1.8s, 5.05s;
  animation-duration: 3.25s, 4.33s;
}
.float:nth-child(19) {
  animation-delay: 1.9s, 5.275s;
  animation-duration: 3.375s, 4.33s;
}
.float:nth-child(20) {
  animation-delay: 2s, 5.5s;
  animation-duration: 3.5s, 4.64s;
}

.float-rotated {
  animation-name: popAlt, floating-rotated;
  animation-direction: normal, alternate;
  animation-iteration-count: 1, infinite;
  animation-play-state: running;
  animation-timing-function: ease-out, ease-in-out;
  animation-fill-mode: none;
  animation-delay: 1s, 1.8s;
  animation-duration: 0.8s, 3.8s;
  opacity: 0;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(32px) rotate3d(0, 0, 1, 0deg) scale(0);
  }
  to {
    opacity: 1;
    transform: translateY(-8px) rotate3d(0, 0, 1, -3deg) scale(1);
  }
}
@keyframes popAlt {
  from {
    opacity: 0;
    transform: translateY(32px) rotate3d(0, 0, 1, 180deg) scale(0);
  }
  to {
    opacity: 1;
    transform: translateY(8px) rotate3d(0, 0, 1, 45deg) scale(1);
  }
}
@keyframes floating {
  from {
    opacity: 1;
    transform: translateY(-8px) rotate3d(0, 0, 1, -3deg) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(8px) rotate3d(0, 0, 1, 3deg) scale(1);
  }
}
@keyframes floating-rotated {
  from {
    opacity: 1;
    transform: translateY(8px) rotate3d(0, 0, 1, 45deg) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(-8px) rotate3d(0, 0, 1, 45deg) scale(1);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSm {
  animation-name: fadeInUpSm;
}

@keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInAlt {
  from {
    opacity: 0;
    transform: translateY(8px) rotate3d(0, 0, 1, 45deg) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(-8px) rotate3d(0, 0, 1, 45deg) scale(1);
  }
}
.delay-300 {
  animation-delay: 300ms;
}

.delay-500 {
  animation-delay: 500ms;
}

.delay-800 {
  animation-delay: 800ms;
}

.delay-1300 {
  animation-delay: 1300ms;
}

.delay-1500 {
  animation-delay: 1500ms;
}

.delay-1800 {
  animation-delay: 1800ms;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}
@media (min-width: 1360px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 21px;
  }
}

body {
  max-width: 100%;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  color: #454B60;
  background: #F5F8FA;
}

/* Contact Form 7  */
span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 11px;
  font-weight: normal;
  display: block;
}

div.wpcf7-response-output {
  margin: 2em 0;
  padding: 0.2em 1em;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

/* .Contact Form 7  */
@media (max-width: 1366px) {
  .post-title {
    font-size: 36px;
  }
}
@media (min-width: 1140px) {
  .post-header {
    min-height: 200px;
  }

  .section-cso .container {
    padding-top: 100px;
  }

  .cso-mobile {
    display: none;
  }

  .section-cso.background-diamond-left {
    background-image: url(https://c7e8f8x7.stackpathcdn.com/wp-content/themes/sw_owiwi/img/cso-diamond.png);
    background-position: left 70%;
  }
}
@media (max-width: 768px) {
  .background-diamond-left .graphic-background {
    display: none;
  }

  .hide-on-desktop {
    display: none;
  }

  .section-cso.background-diamond-left {
    background-image: none;
  }

  .cso-mobile {
    display: block;
  }
}
.grecaptcha-badge {
  visibility: collapse !important;
}

.section-title-lineless {
  line-height: 1;
}

.selected-value {
  background: #FFFFFF;
  padding-bottom: 8px;
  border-radius: 8px;
}

.selected-value::after {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  content: "";
  position: absolute;
  left: calc( 50% - 16px);
  bottom: 8px;
  border-top: 16px solid #fff;
}

.grwf2_backdrop {
  display: none !important;
}

.post-tags {
  margin: 25px 0 0;
  font-size: 0.95em;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
