@charset "UTF-8";
/*!
Theme Name: Katasa - Salient Child Theme
Theme URI: https://katasa.io/
Description: This is the Katasa custom child theme for Salient
Author: Katasa
Author URI: https://katasa.io/
Template: salient
Version: 1.1.6
*/
/*  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
	Vendor
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/*
 * Retrieves a color value from the $material-colors Sass map
 * Inspired by https://github.com/nilskaspersson/Google-Material-UI-Color-Palette/
 *
 * @function
 * @param {string} color-name             - quoted, lower-case, dasherized color
 *                                          name (e.g. 'pink', 'amber')
 * @param {string} [color-variant='500']  - quoted, lowercase color variant (e.g.
 *                                          '200', 'a100')
 */
/*  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
	Foundation / Config
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/*
 * SASS Variables for Katasa Salient Child Theme
 **/
/*
 * Breakpoints SASS functions and mixins
 * Author: Katasa
 * Author URI: https://katasa.io/
 */
/*
 * Get normalized breakpoint name
 *
 * @function breakpoint-name
 * @param {string} $breakpoint-alias - The breakpoint name or alias
 * @return {string} - The normalized name of the breakpoint (key of $breakpoints)
 */
/*
 * Get breakpoint values
 *
 * @function breakpoint-vars
 * @param {string} $breakpoint - The breakpoint name or alias
 * @return {map} - The breakpoint values map
 */
/*
 * Generate @media query for a breakpoint
 *
 * @function breakpoint-media-query
 * @param {string} $breakpoint - The breakpoint name or alias
 * @param {string} $to - The direction or boundary of the query
 * 	- As a direction: 'up', 'down': The query will be a min/max-width from $breakpoint (inclusive)
 * 	- As a boundary: another breakpoint or 'only': The query will be a min/max-width query from $breakpoint to the next breakpoint
 * @param {string} $media-type - The media type of the query
 * @return {string} - The @media query string
 */
/*
 * _onyx_init.scss
 * Amazing Styles and Mixins by ONYX Design
 * 
 * ONYX DESIGN
 * onyxdesign.net
 *
 * @version 1.1
 * @updated 2017-11-13
 */
.d-b {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
 * Margin, Border, Padding
 */
.p-0 {
  padding: 0;
}

.b-0 {
  border: 0;
}

.m-0 {
  margin: 0;
}

.pbm-0 {
  padding: 0;
  border: 0;
  margin: 0;
}

/*
 * Filling parent element
 */
.fill-height {
  min-height: 100%;
  height: 100%;
}

.fill-width {
  min-width: 100%;
  width: 100%;
}

.fill-parent {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  min-width: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}

.fill-parent-abs {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
  width: auto;
  min-width: 100%;
}

.fill-parent-rel {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  margin: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  min-width: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  position: relative;
}

/*
*
*	Salient Init CSS
*		Tested with Salient 10.0.1	
*
*/
/*
*	Emulates a salient full-width container's padding
*/
/*
*	For applying background images to salient rows and columns
*/
@media all and (min-width: 1000px) {
  .hide--desktop {
    display: none !important;
  }
}

@media all and (max-width: 999px) {
  .hide--mobile {
    display: none !important;
  }
}

@media all and (max-width: 690px) {
  .hide--small-screen {
    display: none !important;
  }
}

.color-primary {
  color: #673ab7;
}

.color-secondary {
  color: #4a148c;
}

@media all and (max-width: 690px) {
  #copyright .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #copyright .container .col.span_5,
  #copyright .container .col.span_7 {
    margin-bottom: 0 !important;
  }
  #copyright .container .col.span_5 li,
  #copyright .container .col.span_7 li {
    float: none !important;
    display: block;
    margin: 0 !important;
  }
}
/*  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
	Components
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.kts-tooltip {
  display: inline-block;
  position: relative;
}
.kts-tooltip::after {
  display: block;
  content: "";
  position: absolute;
  height: 3em;
  width: 3em;
  left: -1em;
  top: -1em;
  cursor: help;
}
.kts-tooltip svg.kts-tooltip-icon {
  height: 1em;
  min-height: 1rem;
  width: auto;
  vertical-align: text-bottom;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: help;
}
.kts-tooltip.kts-tooltip--blue svg.kts-tooltip-icon {
  fill: #1976d2;
}
.kts-tooltip.kts-tooltip--blue:hover svg.kts-tooltip-icon {
  fill: #42a5f5;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 1px 0, rgba(0, 0, 0, 0.05) 0 2px 7px, rgba(0, 0, 0, 0.06) 0 12px 22px;
          box-shadow: rgba(0, 0, 0, 0.04) 0 1px 0, rgba(0, 0, 0, 0.05) 0 2px 7px, rgba(0, 0, 0, 0.06) 0 12px 22px;
}

body .ui-tooltip {
  border-width: 2px;
}

body .ui-tooltip-content {
  font-size: 0.75rem;
  line-height: 1.4em;
  max-width: 250px;
}

.nectar-button,
.nectar-cta[data-using-bg=true] .link_wrap {
  overflow: hidden !important;
}
.nectar-button::before,
.nectar-cta[data-using-bg=true] .link_wrap::before {
  border-radius: inherit !important;
}

@-webkit-keyframes ctaArrowSVGStartKTS {
  0% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
  }
}

@keyframes ctaArrowSVGStartKTS {
  0% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
  }
}
@-webkit-keyframes ctaArrowSVGEndKTS {
  0% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
  }
}
@keyframes ctaArrowSVGEndKTS {
  0% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(0) translateZ(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
            transform: translateY(calc(-50% + 1px)) translateX(8px) translateZ(0);
  }
}
@-webkit-keyframes ctaArrowEndKTS {
  0% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 140px;
  }
  100% {
    stroke-dashoffset: -280px;
    stroke-dasharray: 140px;
  }
}
@keyframes ctaArrowEndKTS {
  0% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 140px;
  }
  100% {
    stroke-dashoffset: -280px;
    stroke-dasharray: 140px;
  }
}
@-webkit-keyframes ctaArrowStartKTS {
  0% {
    stroke-dashoffset: -280px;
    stroke-dasharray: 140px;
  }
  100% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 140px;
  }
}
@keyframes ctaArrowStartKTS {
  0% {
    stroke-dashoffset: -280px;
    stroke-dasharray: 140px;
  }
  100% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 140px;
  }
}
@-webkit-keyframes ctaArrowLineStartKTS {
  0% {
    -webkit-transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
  }
  100% {
    -webkit-transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
  }
}
@keyframes ctaArrowLineStartKTS {
  0% {
    -webkit-transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
  }
  100% {
    -webkit-transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
  }
}
@-webkit-keyframes ctaArrowLineEndKTS {
  0% {
    -webkit-transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
  }
  100% {
    -webkit-transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
  }
}
@keyframes ctaArrowLineEndKTS {
  0% {
    -webkit-transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(0) translateX(0px) translateY(calc(-50% + 1px)) translateZ(0);
  }
  100% {
    -webkit-transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
            transform: scaleX(1.2) translateX(4px) translateY(calc(-50% + 1px)) translateZ(0);
  }
}
.nectar-cta.kts-cta[data-style=arrow-animation]:not(.loaded) * {
  -webkit-animation-duration: 0s !important;
          animation-duration: 0s !important;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap .link_text {
  padding-left: 0 !important;
  padding-right: 10px !important;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap .link_text > .text {
  -webkit-animation-name: none !important;
          animation-name: none !important;
  margin-right: 0 !important;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap .link_text svg {
  position: absolute;
  left: auto !important;
  right: -2px !important;
  top: 50%;
  width: 6px;
  -webkit-animation: ctaArrowSVGStartKTS 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
          animation: ctaArrowSVGStartKTS 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
  stroke: currentColor;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap .link_text svg polyline {
  stroke-dashoffset: 0px;
  stroke-dasharray: 140px;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 18px;
  opacity: 1 !important;
  -webkit-transform: translateX(-6px);
      -ms-transform: translateX(-6px);
          transform: translateX(-6px);
  -webkit-animation: 0.9s cubic-bezier(0.23, 0.46, 0.4, 1) forwards ctaArrowStartKTS;
          animation: 0.9s cubic-bezier(0.23, 0.46, 0.4, 1) forwards ctaArrowStartKTS;
  stroke: currentColor;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap .link_text span.line {
  height: 2px;
  width: 9px;
  top: 50%;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  background-color: #000;
  -webkit-transform: translateY(calc(-50% + 1px)) translateZ(0);
          transform: translateY(calc(-50% + 1px)) translateZ(0);
  left: auto !important;
  right: 0px;
  -webkit-animation-name: ctaArrowLineStartKTS;
          animation-name: ctaArrowLineStartKTS;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap:hover .link_text > .text {
  -webkit-animation-name: none !important;
          animation-name: none !important;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap:hover .link_text svg {
  -webkit-animation: ctaArrowSVGEndKTS 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
          animation: ctaArrowSVGEndKTS 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap:hover .link_text svg polyline {
  -webkit-animation: 0.9s ease forwards ctaArrowEndKTS;
          animation: 0.9s ease forwards ctaArrowEndKTS;
}
.nectar-cta.kts-cta[data-style=arrow-animation] .link_wrap:hover .link_text span.line {
  -webkit-animation-name: ctaArrowLineEndKTS;
          animation-name: ctaArrowLineEndKTS;
}

.kts-btn-gradient-bg-amber .link_wrap {
  background: #ffc107 !important;
  background: linear-gradient(135deg, #ffa000, #ffc107) !important;
}
.kts-btn-gradient-bg-amber .link_wrap:before {
  background-color: #ffc400 !important;
}

.kts-testimonial-block .nectar-star-rating .nectar-star-rating__icon {
  background: linear-gradient(135deg, #ffa000, #ffc107);
  -webkit-background-clip: text;
          background-clip: text;
}
.kts-testimonial-block .nectar_single_testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}

.nectar_single_testimonial .nectar-star-rating {
  margin-bottom: 10px;
  display: block;
}
.nectar_single_testimonial p {
  position: relative;
}
.nectar_single_testimonial p .open-quote {
  display: none;
}
.nectar_single_testimonial p:first-of-type:before {
  content: "”";
  display: block;
  position: absolute;
  z-index: 0;
  font-size: 360px;
  top: 45px;
  right: -20px;
  opacity: 0.1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 60px;
}
.nectar_single_testimonial .image-icon {
  width: 64px;
  height: 64px;
}
.nectar_single_testimonial span.wrap {
  text-align: left;
}
.nectar_single_testimonial span.wrap span.title {
  line-height: 20px;
  opacity: 0.75;
}
.nectar_single_testimonial span.wrap span.link {
  font-size: 14px;
  line-height: 20px;
}
.nectar_single_testimonial span.wrap span.link a {
  display: block;
  position: relative;
  height: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.75;
}
.nectar_single_testimonial span.wrap span.link a:hover {
  opacity: 1;
}
.nectar_single_testimonial span.wrap span.link a .link_icon {
  display: inline-block;
  vertical-align: middle;
  height: 1.1em;
  margin-bottom: 0.1em;
  position: relative;
  bottom: 0.07em;
}
.nectar_single_testimonial span.wrap.link_inline span.title,
.nectar_single_testimonial span.wrap.link_inline span.link {
  display: inline-block;
  line-height: 22px;
}
.nectar_single_testimonial span.wrap.link_inline span.link {
  margin-left: 1em;
}

.nectar-fancy-ul ul li {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}
.nectar-fancy-ul ul li > ul {
  margin-top: 0.5em;
}
.nectar-fancy-ul[data-list-icon=icon-salient-check] ul li i {
  font-weight: bold;
}
.nectar-fancy-ul[data-list-icon=icon-salient-check] ul li i:after {
  display: block;
  position: absolute;
  top: 0.86em;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin-top: -0.5px;
  left: 50%;
  content: "";
  background-color: currentColor;
  height: 1.3em;
  width: 1.3em;
  border-radius: 1em;
  opacity: 0.2;
}
.nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--horizontal li {
  width: 50%;
}
@media all and (max-width: 467px) {
  .nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--horizontal li {
    padding-left: 30px;
  }
  .nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--horizontal li:nth-child(2n+1) {
    padding-right: 0.3em;
  }
  .nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--horizontal li:nth-child(2n+1):last-child {
    width: 100%;
  }
}
.nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--light-blue li i {
  color: #01579b;
}
.nectar-fancy-ul ul.kts-nectar-fancy-list.kts-nectar-fancy-list--indigo li i {
  color: #303f9f;
}

.kts-pricing-table .kts-pricing-table__product__title {
  line-height: 100%;
  margin-bottom: 8px;
  font-weight: 600 !important;
  font-size: 28px;
}

.kts-pricing-discount {
  font-weight: 500 !important;
  line-height: 100%;
  margin-bottom: 8px;
}
.kts-pricing-discount--large {
  font-weight: 600 !important;
  font-size: 42px;
}

.kts-pricing-plan-toggle ul.wpb_tabs_nav {
  margin-bottom: 0 !important;
  max-width: 340px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item a {
  padding: 4px 20px 16px;
  margin-top: -4px;
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item a span {
  position: relative;
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item a span::after {
  display: block;
  width: auto;
  position: absolute;
  text-align: center;
  top: 100%;
  margin-top: -4px;
  font-size: 0.8em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item:first-child a span::after {
  content: "Pay monthly or yearly";
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item:last-child a span::after {
  content: "Pay monthly";
}
.kts-pricing-plan-toggle ul.wpb_tabs_nav .tab-item:not(.toggle-button) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.kts-pricing-plan-toggle > .wpb_wrapper > .wpb_tab {
  display: none !important;
}

.kts-range-slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
}
.kts-range-slider-wrap .input-display-wrap {
  max-width: 280px;
  min-width: 280px;
}
.kts-range-slider-wrap label {
  max-width: 60px;
  line-height: 1;
  text-align: center;
}

.input-ticks-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
}
.input-ticks-wrap .input-tick {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  display: block;
  position: relative;
}
.input-ticks-wrap .input-tick::after {
  content: "";
  display: block;
  width: 1px;
  height: 6px;
  background-color: #b0bec5;
  position: absolute;
  top: 100%;
  left: 50%;
}
.input-ticks-wrap .input-tick.input-tick--active {
  font-weight: 600;
  color: #673ab7;
  font-size: 14px;
  margin-top: -1px;
}
.input-ticks-wrap .input-tick.input-tick--active::after {
  background-color: #673ab7;
  width: 3px;
  margin-left: -1px;
}
.input-ticks-wrap .input-tick--active {
  font-weight: 600;
}

.range-slider-input-element-wrap {
  padding-left: 4%;
  padding-right: 5%;
}

.kts-range-slider-input {
  width: 100%;
  margin-top: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  outline: none;
  border-radius: 16px;
  height: 6px;
}
.kts-range-slider-input::-webkit-slider-runnable-track {
  height: 6px;
  background: #b0bec5;
  border-radius: 16px;
}
.kts-range-slider-input::-moz-range-track {
  height: 6px;
  background: #b0bec5;
  border-radius: 16px;
}
.kts-range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: #673ab7 !important;
  height: 16px;
  width: 16px;
  border-radius: 15px;
  top: -4px;
  position: relative;
}
.kts-range-slider-input::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #673ab7 !important;
  height: 16px;
  width: 16px;
  border-radius: 15px;
  top: -4px;
  position: relative;
}

.pricing-caption {
  font-size: 14px;
  line-height: 1em;
  font-weight: 500;
  padding-bottom: 0px;
}
.pricing-caption + .pricing-caption {
  padding-top: 8px;
}
.pricing-caption ~ p:empty {
  display: none;
}

.pricing-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pricing-price .price-amount {
  display: inline-block;
  position: relative;
  line-height: 100%;
}
.pricing-price .price-amount:before {
  content: "$";
  font-size: 0.8em;
}
.pricing-price .price-amount.price-amount--strikethrough::after {
  content: "";
  display: block;
  width: 120%;
  height: 1px;
  position: absolute;
  background-color: #000000;
  opacity: 0.9;
  top: 50%;
  left: -10%;
  -webkit-transform: rotate(-6deg);
      -ms-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
.pricing-price .price-amount .price-amount-cents {
  font-size: 0.8em;
}
.pricing-price .price-amount .price-amount-cents:not(:empty):before {
  content: ".";
}
.pricing-price.pricing-price--retail {
  margin-bottom: 12px !important;
}
.pricing-price.pricing-price--katasa {
  margin-bottom: 4px !important;
}
.pricing-price.pricing-price--katasa .price-amount {
  font-size: 28px;
  font-weight: 600;
}
.pricing-price br {
  display: none;
}

.price-label {
  display: block;
  font-size: 12px;
  line-height: 100%;
  position: relative;
}
.price-label .kts-tooltip-wrap {
  position: absolute;
  left: 100%;
  left: calc(100% + 2px);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.kts-text-block-html.kts-pricing--show-flexible .pricing-price--katasa .price-amount, .kts-text-block-html.kts-pricing--show-annual .pricing-price--katasa .price-amount {
  display: inline;
  background: linear-gradient(135deg, #673ab7, #d500f9);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.pricing-discount {
  font-weight: 500;
  font-size: 18px;
  margin-top: 12px !important;
  background: linear-gradient(135deg, #673ab7, #d500f9);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-pricing-savings-wrap .pricing-savings-amount .price-amount {
  display: inline;
  background: linear-gradient(135deg, #689f38, #00e676);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.kts-pricing-savings-wrap .pricing-caption {
  background: linear-gradient(135deg, #689f38, #00e676);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-pricing-table-row .kts-text-block-html {
  margin-bottom: 12px !important;
}
.kts-pricing-table-row .kts-nectar-fancy-list {
  font-size: 14px;
}
.kts-pricing-table-row .kts-nectar-fancy-list li {
  line-height: 1.4 !important;
  margin-bottom: 0.7em;
}
.kts-pricing-table-row .kts-nectar-fancy-list li i {
  height: 14px !important;
  left: 0.5em !important;
}
.kts-pricing-table-row .kts-nectar-fancy-list li i:before {
  line-height: 20px !important;
  display: block;
}
.kts-pricing-table-row .kts-nectar-fancy-list li i:after {
  display: none !important;
}
.kts-pricing-table-row .nectar-flickity:not(.masonry) .flickity-slider .cell {
  max-width: 250px !important;
}

/*
 * Form styling
 */
.kts-form {
  max-width: 400px;
  margin: 0 auto;
}

.kts-form-row {
  margin-bottom: 1em;
}

.kts-field__label {
  display: block;
  margin-bottom: 0.25rem;
  color: #212121;
}

.kts-field__details {
  font-size: 0.75rem;
  line-height: 1.2em;
  display: block;
  width: 100%;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #9e9e9e;
  margin-bottom: 0.25rem;
}

.kts-field__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kts-field__input-wrap:first-child {
  margin-top: 0.25rem;
}
.kts-field__input-wrap .kts-input__content-inner {
  position: absolute;
  top: 0;
}
.kts-field__input-wrap .kts-input__content-inner.kts-input__prepend-inner {
  left: 0;
}
.kts-field__input-wrap .kts-input__content-inner.kts-input__append-inner {
  right: 0;
}
.kts-field__input-wrap .kts-input__content-inner .kts-field__input-prefix,
.kts-field__input-wrap .kts-input__content-inner .kts-field__input-suffix {
  display: block;
  padding: 10px;
  font-size: 14px;
  font-family: inherit;
  line-height: 24px;
}

.kts-field__input {
  width: 100%;
}
.kts-field__input.kts-field--invalid {
  border-bottom-color: #b71c1c !important;
}

.kts-input__feedback {
  font-size: 0.75rem;
  line-height: 1.2em;
  display: block;
  width: 100%;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #9e9e9e;
  margin-bottom: 0.25rem;
}

.kts-input__message {
  padding: 0.25rem 10px;
}
.kts-input__message.kts-input__message--error {
  color: #b71c1c;
}

.kts-field p.form-row {
  padding: 0;
}
.kts-field .woocommerce-input-wrapper .fancy-select-wrap {
  padding-top: 0;
}

.wpcf7-form {
  max-width: 400px;
  margin: 0 auto;
}
.wpcf7-form .kts-field {
  margin-bottom: 1em;
}
.wpcf7-form .kts-field input[type=text],
.wpcf7-form .kts-field input[type=email],
.wpcf7-form .kts-field input[type=tel],
.wpcf7-form .kts-field input[type=url],
.wpcf7-form .kts-field input[type=password],
.wpcf7-form .kts-field input[type=number],
.wpcf7-form .kts-field input[type=date],
.wpcf7-form .kts-field input[type=time],
.wpcf7-form .kts-field input[type=datetime-local],
.wpcf7-form .kts-field input[type=month],
.wpcf7-form .kts-field input[type=week],
.wpcf7-form .kts-field input[type=search] {
  margin-bottom: 0.25rem  !important;
}
.wpcf7-form .kts-field input[type=text].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=email].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=tel].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=url].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=password].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=number].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=date].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=time].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=datetime-local].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=month].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=week].wpcf7-not-valid:not(:focus),
.wpcf7-form .kts-field input[type=search].wpcf7-not-valid:not(:focus) {
  border-color: #b71c1c;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item span.wpcf7-list-item-label, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item span.wpcf7-list-item-label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #424242;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item span.wpcf7-list-item-label::before {
  display: inline-block !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.4em;
  background-color: #f7f7f7;
  -webkit-transition: inherit;
  transition: inherit;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:hover span.wpcf7-list-item-label, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:hover span.wpcf7-list-item-label {
  color: #212121;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked + span.wpcf7-list-item-label, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input:checked + span.wpcf7-list-item-label {
  color: #673ab7 !important;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  /*
   * CHECKBOX SPECIFIC
   */
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=checkbox] + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + span.wpcf7-list-item-label::before {
  content: "⎷";
  line-height: 1.2em;
  text-align: center;
  font-weight: bold;
  -webkit-text-stroke: 1px;
  color: transparent;
  border-radius: 0.2em;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:hover input[type=checkbox]:not(:checked) + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:hover input[type=checkbox]:not(:checked) + span.wpcf7-list-item-label::before {
  background-color: rgb(221.5, 221.5, 221.5);
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + span.wpcf7-list-item-label::before {
  background-color: #673ab7;
  color: #ffffff;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  /*
   * RADIO SPECIFIC
   */
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio] + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input[type=radio] + span.wpcf7-list-item-label::before {
  content: "" !important;
  border: 0.4em solid transparent;
  border-radius: 50%;
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:hover input[type=radio]:not(:checked) + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:hover input[type=radio]:not(:checked) + span.wpcf7-list-item-label::before {
  background-color: #c4c4c4;
  border-color: rgb(221.5, 221.5, 221.5);
}
.wpcf7-form .kts-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked + span.wpcf7-list-item-label::before, .wpcf7-form .kts-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input:checked + span.wpcf7-list-item-label::before {
  background-color: #ffffff;
  border-color: #673ab7;
}
.wpcf7-form .kts-field .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  line-height: 1.2em;
  display: block;
  width: 100%;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #9e9e9e;
  margin-bottom: 0.25rem;
  color: #b71c1c;
  background-color: transparent;
}

#header-outer #logo.no-image {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline;
  background: linear-gradient(135deg, #673ab7, #d500f9);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-social-proof-avatars-row .col .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 520px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media all and (max-width: 999px) {
  .kts-social-proof-avatars-row .col .wpb_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.kts-social-proof-avatars-row .col .wpb_wrapper > .img-with-aniamtion-wrap,
.kts-social-proof-avatars-row .col .wpb_wrapper img.img-with-animation {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.kts-social-proof-avatars-row .col .wpb_wrapper > .img-with-aniamtion-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 13px;
}
.kts-social-proof-avatars-row .col .wpb_wrapper > .img-with-aniamtion-wrap .hover-wrap {
  margin-bottom: 0;
  height: 100%;
}
.kts-social-proof-avatars-row .col .wpb_wrapper > .img-with-aniamtion-wrap .hover-wrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.kts-social-proof-avatars-row .col .wpb_wrapper > .img-with-aniamtion-wrap img.img-with-animation {
  height: 100% !important;
  max-height: 58px !important;
  width: auto;
}
.kts-social-proof-avatars-row .col .wpb_wrapper .nectar-star-rating {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 300px;
}
@media all and (min-width: 691px) {
  .kts-social-proof-avatars-row .col .wpb_wrapper .nectar-star-rating {
    min-width: 288px;
  }
}
.kts-social-proof-avatars-row .col .wpb_wrapper .nectar-star-rating .nectar-star-rating__icon {
  background: linear-gradient(135deg, #ffa000, #ffc107);
  -webkit-background-clip: text;
          background-clip: text;
}
.kts-social-proof-avatars-row .col .wpb_wrapper .nectar-star-rating .nectar-star-rating__content {
  margin-left: 0;
  font-size: 0.9rem;
  line-height: 1.2em;
}

#footer-outer #footer-widgets .container .row {
  padding-bottom: 0;
}
@media all and (min-width: 691px) and (max-width: 1000px) {
  #footer-outer #footer-widgets .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#footer-outer #footer-widgets .container .row .col.span_3:first-child img[src*=katasa-logo] {
  max-width: 170px;
}
#footer-outer #footer-widgets .container .row .col.span_3:first-child img[src*=Google_Cloud_Partner] {
  width: 80%;
  max-width: 240px !important;
  min-width: 200px !important;
  margin-left: -2px;
}
@media all and (max-width: 999px) {
  #footer-outer #footer-widgets .container .row .col.span_3:nth-child(2) {
    display: none;
  }
  #footer-outer #footer-widgets .container .row .col.span_3:last-child, #footer-outer #footer-widgets .container .row .col.span_3:nth-last-child(2) {
    width: 50% !important;
    margin-right: 0 !important;
  }
}

/*  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
	Templates
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
#kts-footer-cta .row-bg-wrap > .row-bg-overlay,
#kts-footer-cta .row-bg-wrap > canvas {
  display: none;
}
#kts-footer-cta .row-bg-wrap .inner-wrap {
  background: linear-gradient(135deg, #673ab7, #d500f9);
}
#kts-footer-cta .row-bg-wrap .inner-wrap > .row-bg-overlay,
#kts-footer-cta .row-bg-wrap .inner-wrap > canvas {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#kts-footer-cta.bg-clip-fixed .row-bg-wrap .inner-wrap > .row-bg-overlay,
#kts-footer-cta.bg-clip-fixed .row-bg-wrap .inner-wrap > canvas {
  opacity: 1;
}
#kts-footer-cta .kts-footer-cta-heading h2 {
  font-weight: 900;
  text-transform: uppercase;
}

body.page-template-kts-account-setup #ajax-content-wrap .container-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}
body.page-template-kts-account-setup #ajax-content-wrap .container-wrap > .main-content > .row {
  height: 100%;
}

.kts-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 70px;
}

.kts-stepper-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 50px;
}

.kts-stepper-header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kts-stepper-header-item .kts-stepper-header-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 0.5em;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  background-color: #90a4ae;
}
.kts-stepper-header-item.step--active .kts-stepper-header-item__icon {
  background-color: #37474f;
}
.kts-stepper-header-item.step--complete .kts-stepper-header-item__icon {
  background-color: #673ab7;
}

.kts-stepper-steps {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.kts-stepper-step {
  display: none;
  margin: 0 auto;
}
.kts-stepper-step.step--active {
  display: block;
}

.kts-stepper-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 50px;
  background-color: #f7f7f7;
  z-index: 100;
  padding: 0.5em 0;
}

.flex-spacer {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.kts-stepper-footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kts-stepper-footer-inner .kts-stepper-action-button {
  margin-bottom: 0;
}

.kts-stepper-action-button:not(:disabled) {
  cursor: pointer;
}

img.hero-photo {
  right: -38%;
  left: auto;
  width: 110%;
  top: -2%;
}

.kts-home-hero-row .kts-social-proof-avatars-row .nectar-star-rating__content {
  color: #424242;
}

.kts-home-hero-row .col-kts-hero-graphic * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media all and (max-width: 999px) {
  .kts-home-hero-row .col-kts-hero-graphic {
    min-height: 55vw;
    margin-top: -3vw;
  }
}
@media all and (max-width: 467px) {
  .kts-home-hero-row .col-kts-hero-graphic {
    margin-top: -10vw;
  }
}
.kts-home-hero-row .col-kts-hero-graphic > .vc_column-inner > .wpb_wrapper {
  position: relative;
  height: 100%;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg-wrap {
  position: absolute;
  left: 0;
  width: 70vw;
  max-width: 1500px;
  height: 67.3076923077vw;
  max-height: 1442.3076923077px;
  overflow: hidden;
}
@media all and (max-width: 999px) {
  .kts-home-hero-row .col-kts-hero-graphic .hero-svg-wrap {
    width: 100vw;
  }
}
@media all and (max-width: 690px) {
  .kts-home-hero-row .col-kts-hero-graphic .hero-svg-wrap {
    width: 100vw;
  }
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg-wrap.hero-svg-wrap--before {
  bottom: 50%;
  z-index: 2;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg-wrap.hero-svg-wrap--after {
  top: 50%;
  z-index: 7;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg.hero-svg--before {
  bottom: 0;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-svg.hero-svg--after {
  top: 0;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap {
  position: absolute;
  display: block;
  width: 70vw;
  max-width: 1500px;
  height: 134.6153846154vw;
  max-height: 2884.6153846154px;
  overflow: hidden;
}
@media all and (max-width: 999px) {
  .kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap {
    width: 100vw;
  }
}
@media all and (max-width: 690px) {
  .kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap {
    width: 100vw;
  }
}
.kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap {
  top: 50%;
  margin: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap:after {
  content: "";
  position: absolute;
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  height: 100%;
  width: 20%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
}
@media all and (max-width: 999px) {
  .kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap:after {
    display: none;
  }
}
.kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap .hero-bg .row-bg-wrap {
  position: absolute;
  height: auto;
  width: auto;
  left: 1px;
  top: 3px;
  bottom: 3px;
  right: 1px;
  margin: 0 !important;
}
.kts-home-hero-row .col-kts-hero-graphic .hero-bg-wrap .hero-bg .row-bg-wrap .inner-wrap .row-bg {
  background: linear-gradient(135deg, #673ab7, #d500f9);
}
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row,
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row > .row_col_wrap_12_inner,
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row .vc_column-inner {
  height: 100%;
  width: 100%;
}
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row .img-with-aniamtion-wrap:first-child {
  width: 77%;
}
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row .img-with-aniamtion-wrap:nth-child(2) {
  width: 42%;
}
.kts-home-hero-row .col-kts-hero-graphic .kts-hero-graphic-imgs-row .img-with-aniamtion-wrap:nth-child(2) img.kts-hero-img--laptop {
  -webkit-transform: rotate(-1deg);
      -ms-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

.kts-home-benefits-row .kts-benefits-col--setup [class^=icon-].icon-default-style {
  color: #3f51b5;
}
.kts-home-benefits-row .kts-benefits-col--control [class^=icon-].icon-default-style {
  color: #9c27b0;
}

body .nectar-icon-list[data-icon-size=medium] .nectar-icon-list-item {
  padding-left: 80px;
}

.kts-how-it-works-details-col .nectar-icon-list:after {
  height: 105%;
}
.kts-how-it-works-details-col .nectar-icon-list .list-icon-holder > span {
  display: block !important;
  margin-top: -1px;
  margin-left: -1px;
}
.kts-how-it-works-details-col .nectar-icon-list .list-icon-holder:first-child > span {
  margin-left: -2px;
}

.kts-legal-text h1 {
  font-size: 32px;
}
.kts-legal-text p {
  font-size: 14px;
  line-height: 1.5;
}
.kts-legal-text ol {
  margin-left: 0;
}
.kts-legal-text li {
  list-style-type: none;
}
.kts-legal-text li h2, .kts-legal-text li h3, .kts-legal-text li p {
  display: inline-block;
}
.kts-legal-text li h2 {
  font-size: 24px;
  margin-top: 1em;
}
.kts-legal-text li h3 {
  font-size: 20px;
}
.kts-legal-text ol {
  counter-reset: item;
  list-style-type: none;
}
.kts-legal-text ol li:before {
  display: inline-block;
  width: 3em;
  counter-increment: item;
  content: counters(item, ".", decimal) ".";
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
}
.kts-legal-text ol:not(ol ol) ol ol {
  margin-left: 4em;
  margin-bottom: 1em;
}
.kts-legal-text ol:not(ol ol) ol ol li {
  font-size: 14px;
  line-height: 1.5;
}

/*  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
	General
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
.kts-google-partner-badge {
  width: 50% !important;
  max-width: 220px !important;
  min-width: 160px !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

body p {
  padding-bottom: 1em;
}
body .nectar-icon-list-item .content {
  color: #424242;
}

#slide-out-widget-area {
  background: linear-gradient(135deg, #673ab7, #d500f9) !important;
}

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

.color-primary {
  color: #673ab7;
}

.bg-kts-gradient-primary {
  background: linear-gradient(135deg, #673ab7, #d500f9);
}

.kts-gradient-text, .text-bg-kts-gradient-primary {
  display: inline;
  background: linear-gradient(135deg, #673ab7, #d500f9);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-gradient-text--amber, .text-bg-kts-gradient-amber {
  display: inline;
  background: linear-gradient(135deg, #ffa000, #ffc107);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-gradient-text--blue, .text-bg-kts-gradient-blue {
  display: inline;
  background: linear-gradient(135deg, #2962ff, #00e5ff);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.kts-gradient-text--green, .text-bg-kts-gradient-green {
  display: inline;
  background: linear-gradient(135deg, #689f38, #00e676);
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.row-bg-overlay-behind-bg .row-bg-wrap .row-bg-overlay {
  z-index: 0;
}

@media all and (max-width: 999px) {
  .kts-boxed-column,
  .card-col-wider-mobile {
    margin-left: -3% !important;
    margin-right: -3% !important;
    width: auto !important;
  }
}

.kts-text-block-html br {
  display: none;
}
.kts-text-block-html .wpb_wrapper div {
  margin: 0;
}/*# sourceMappingURL=style.css.map */