/*!
Theme Name: SoWhatLabs
Theme URI: https://sowhatlabs.com
Author: Isotope Team
Author URI: https://www.isotopeconsulting.co.uk/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: isotope
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Isotope is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*!
* 	Theme Variables
* ----------------------------------------------- */

:root {
  --primary: #ffd705;
  --secondary: #007efc;
  --body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  --body-font-size: 16px;
  --body-font-weight: 400;
  --body-bg: #fff;
  --body-color: #757575;
  --body-line-height: 1.5;
  --heading-font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  --heading-font-weight: 600;
  --heading-color: #1a1b2f;
  --heading-margin-bottom: 24px;
  --heading-line-height: 1.25;
  --link-color: #1977f2;
  --link-hover-color: #000;
  --btn-font-family: var(--body-font-family);
  --btn-font-size: var(--body-font-size);
  --btn-font-weight: bold;
  --btn-line-height: 1.125;
  --btn-padding: 16px 20px;
  --btn-color: #1a1b2f;
  --btn-bg: var(--primary);
  --btn-hover-color: #fff;
  --btn-hover-bg: var(--secondary);
  --form-control-font-family: var(--body-font-family);
  --form-control-font-size: var(--body-font-size);
  --form-control-font-weight: var(--body-font-weight);
  --form-control-line-height: 1.15;
  --form-control-padding: 8px 16px;
  --form-control-min-height: 40px;
  --form-control-bg: transparent;
  --form-control-border-color: #ccc;
  --form-control-focus-border-color: var(--secondary);
  --paragraph-margin-bottom: 24px;
  --section-padding-y: 100px;
  --wrap-width: 1284px;
  --gutter-width: 32px;
  --white-color: #fff;
  --dark-blue: #1a1b2f;
  --green-color: #2bc3c4;
  --orange-color: #f87060;
  --blue-color: #4ca6ff;
  --purple-color: #8f7ee0;
}

/*!
* 	Reset Styles
* ----------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex='-1']:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-color);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  background-color: var(--body-bg);
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: var(--link-hover-color);
}

p {
  margin-top: 0;
  margin-bottom: var(--paragraph-margin-bottom);
}

p:last-child {
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-left: 0;
  margin-bottom: var(--paragraph-margin-bottom);
  padding-left: 16px;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 16px;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 16px;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  margin-bottom: 24px;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
  padding: 16px 24px;
  font-weight: normal;
  border-bottom: 1px solid #eaeaea;
}

th {
}

td {
  border-bottom: 1px solid #eaeaea;
  min-height: 24px;
  padding: 16px 24px;
  vertical-align: middle;
  font-size: 16px;
  color: #000;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none !important;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 4px 8px;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 2px;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
  margin-bottom: var(--heading-margin-bottom);
  line-height: var(--heading-line-height);
}

h1,
.h1 {
  font-size: calc(var(--body-font-size) * 3.375);
}

h2,
.h2 {
  font-size: calc(var(--body-font-size) * 2.625);
}

h3,
.h3 {
  font-size: calc(var(--body-font-size) * 1.5);
}

h4,
.h4 {
  font-size: calc(var(--body-font-size) * 1.25);
  font-weight: var(--body-font-weight);
}

h5,
.h5 {
  font-size: calc(var(--body-font-size) * 0.875);
}

h6,
.h6 {
  font-size: calc(var(--body-font-size) * 0.875);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0;
}

h6 + h1,
h6 + h2,
.h6 + h1,
.h6 + h2 {
  margin-top: 24px;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
.h1 strong,
.h2 strong,
.h3 strong,
.h4 strong {
  color: var(--primary);
  font-weight: inherit;
}

h2:last-child {
  margin-bottom: 0;
}

.ai {
  position: relative;
}

.ai::after,
.ai::before {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ai::after {
  top: 0px;
  left: -4px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%23FFDA1E"/></svg>');
  animation: twinkle 1.5s infinite ease-in-out;
  z-index: 2;
}
.ai::before {
  top: -4px;
  left: 10px;
  width: 8px;
  height: 8px;
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%23FFDA1E"/></svg>');
  animation: twinklesmall 1.3s infinite ease-in-out;
  z-index: 3;
}

.hero__content h1 strong,
.hero-content h1 strong,
.ai-override {
  position: relative;
  display: inline-block;
}

.ai-override {
  line-height: 1.4;
}

.hero__content h1 strong::before,
.hero-content h1 strong::before,
.ai-override::before {
  content: '';
  position: absolute;
  right: 14px;
  top: 10px;
  height: 12px;
  width: 14px;
  background-color: var(--dark-blue);
  z-index: 1;
}

.ai-override::before {
  right: 4px;
  top: 2px;
  height: 10px;
  width: 10px;
}

.ai-override .ai::after {
  top: -4px;
  left: -3px;
  width: 12px;
  height: 12px;
}

.ai-override .ai::before {
  top: -5px;
  left: 5px;
  width: 6px;
  height: 5px;
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes twinklesmall {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/*!
*	Common
* ----------------------------------------------- */

#wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  position: relative;
}

.section--black {
  background-color: var(--secondary);
}

.section--light {
  background-color: #f2f4f6;
}

.section--black * {
  color: #cacaca;
}

.section--black h2,
.section--black h3 {
  color: #fff;
}

.section__heading {
  position: relative;
  margin-bottom: 48px;
  max-width: 560px;
}

.section__heading span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  color: #888;
  font-size: 14px;
}

.section__heading h2 {
  margin-bottom: 12px;
}

.section__heading :last-child {
  margin-bottom: 0;
}

.section__heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */

#primary[tabindex='-1']:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center !important;
}

.text-green {
  color: #03a645;
}

.text-blue {
  color: var(--secondary);
}

.text-gold {
  color: var(--primary);
}

.text-white {
  color: var(--white-color);
}

/* BG Color */

.light-blue {
  background-color: rgba(153, 203, 254, 0.3) !important;
}

.light-yellow {
  background-color: rgba(255, 239, 155, 0.3) !important;
}

.light-green {
  background-color: rgba(170, 231, 231, 0.3) !important;
}

.light-orange {
  background-color: rgba(252, 198, 191, 0.3) !important;
}

.light-purple {
  background-color: rgba(221, 217, 241, 0.3) !important;
}

.light-gray {
  background-color: rgba(178, 183, 189, 0.3) !important;
}

/*!
*	Spacing
* ----------------------------------------------- */

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.py-0,
.pt-0 {
  padding-top: 0 !important;
}

.py-0,
.pb-0 {
  padding-bottom: 0 !important;
}

.pt-120 {
  padding-top: var(--section-padding-y);
}

.bg-dark {
  background-color: #efede0;
}

.bg-light {
  background-color: #f8f8f8;
}

.bg-image {
  background-size: cover;
  background-position: center;
}

/*!
*	Grid System
* ----------------------------------------------- */

.wrap,
.wrap-fluid {
  width: 100%;
  padding-left: calc(var(--gutter-width) * 0.5);
  padding-right: calc(var(--gutter-width) * 0.5);
}

.wrap *,
.wrap-fluid * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wrap {
  max-width: var(--wrap-width);
  margin-left: auto;
  margin-right: auto;
}

.wrap--lg {
  max-width: 1550px;
}

.row {
  margin-left: calc(-0.5 * var(--gutter-width));
  margin-right: calc(-0.5 * var(--gutter-width));
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

.row.row--lg {
  --gutter-width: 64px;
}

.row.row--sm {
  --gutter-width: 24px;
}

.gap {
  margin-top: calc(-1 * var(--gutter-width));
}

.gap > .col {
  margin-top: var(--gutter-width);
}

.col {
  flex: 0 0 auto;
  min-height: 1px;
  padding-left: calc(var(--gutter-width) * 0.5);
  padding-right: calc(var(--gutter-width) * 0.5);
}

.col--1 {
  width: 8.33333333%;
}

.col--2 {
  width: 16.66666667%;
}

.col--3 {
  width: 25%;
}

.col--4 {
  width: 33.33333333%;
}

.col--5 {
  width: 41.66666667%;
}

.col--6 {
  width: 50%;
}

.col--7 {
  width: 58.33333333%;
}

.col--8 {
  width: 66.66666667%;
}

.col--9 {
  width: 75%;
}

.col--10 {
  width: 83.33333333%;
}

.col--11 {
  width: 91.66666667%;
}

.col--12 {
  width: 100%;
}

.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter > .col {
  padding-right: 0;
  padding-left: 0;
}

.row--reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row--items-center {
  -webkit-align-items: center;
  align-items: center;
}

.row--items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.row-justify-between {
  justify-content: space-between;
}

/*!
*	Form Styling
* ----------------------------------------------- */

.btn {
  display: inline-block;
  padding: var(--btn-padding);
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--btn-bg);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border: none;
  color: var(--btn-color);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: var(--btn-line-height);
  text-align: center;
  position: relative;
  clip-path: polygon(0 2px, 100% 0, 100% 100%, 0 calc(100% - 2px));
  overflow: hidden;
}

.btn:hover {
  color: var(--btn-hover-color);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-hover-bg);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.5s ease;
  z-index: 1;
}

.btn:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn span {
  z-index: 2;
  position: relative;
}

.btn--secondary {
  background-color: var(--secondary);
  color: var(--btn-hover-color);
}

.btn--secondary:hover {
  color: var(--btn-color);
}

.btn--secondary:before {
  background-color: var(--btn-bg);
}

.btn-inline {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
}

.btn-inline .btn + .btn {
  margin-left: 12px;
}

.btn--block {
  display: block;
}

.btn.btn--lg {
  --btn-font-size: 16px;
  --btn-padding: 16px 32px;
}

.btn--border {
  padding: 10px 16px;
  border-radius: 4px;
  border: solid 2px #ffd806;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  background: none;
}

.btn--border svg {
  margin-left: 4px;
  transform: rotate(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn--border:hover {
  background-color: #ffd806;
  border-color: #ffd806;
  color: #000;
}

.btn--border:hover svg {
  transform: rotate(-45deg);
}

.btn--secondary {
  background: var(--link-color);
}

.btn--secondary:hover {
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.16);
}

.btn-link {
  display: inline-block;
  position: relative;
  max-width: max-content;
  padding-right: 37px;
  transition: all 0.3s ease;
  line-height: normal;
  padding-top: 4px;
  padding-bottom: 4px;
}

.btn-link span {
  line-height: normal;
}

.btn-link::before,
.btn-link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 27px;
  min-width: 27px;
  width: 27px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--secondary);
  transition: all 0.3s ease;
  right: 0;
}

.btn-link::before {
  background-image: url('./images/link-arrow.svg');
  background-size: 6px;
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
}

.btn-link::after {
  background-image: url('./images/link-hover-arrow.svg');
  background-size: 18px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0) translateY(-50%);
  transform-origin: left center;
}

.btn-link:hover {
  color: var(--secondary);
  padding-right: 47px;
}

.btn-link:hover::before {
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
}

.btn-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1) translateY(-50%);
  width: 37px;
}

.btn--inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-field,
.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 1px solid var(--form-control-border-color);
  min-height: var(--form-control-min-height);
  padding: var(--form-control-padding);
  background-color: var(--form-control-bg);
  font-family: var(--form-control-font-family);
  font-size: var(--form-control-font-size);
  color: var(--body-font-color);
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--form-control-focus-border-color);
}

select.form-control {
  background-image: url(../images/icons/angle-down.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

textarea.form-control {
  height: 100px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 500;
}

/**/

.site-main {
  padding-top: var(--header-height);
}

/*!
*	Header
* ----------------------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.wrap--header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  position: relative;
  z-index: 9;
}

/* .sub-menu li a {
  position: relative;
  padding-left: 53px !important;
} */
/* .sub-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  height: 37px;
  width: 37px;
  min-width: 37px;
} */
/* .sub-menu .google-analytics-engine a::before {
  background-image: url('images/google-analytics-engine.svg');
}
.sub-menu .google-ads-optimiser a::before {
  background-image: url('images/google-ads-optimiser.svg');
}
.sub-menu .seo-strategy-engine a::before {
  background-image: url('images/seo-strategy-engine.svg');
}
.sub-menu .meta-ads-optimiser a::before {
  background-image: url('images/meta-ads-optimiser.svg');
}
.sub-menu .shopify-stretegy-engine a::before {
  background-image: url('images/shopify-strategy-engine.svg');
}
.sub-menu .ai-content-engine a::before {
  background-image: url('images/ai-content-engine-menu.svg');
} */

/*Mobile*/

.menu-toggle {
  width: 28px;
  height: 16px;
  z-index: 999;
  cursor: pointer;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
  display: none;
}

.menu-toggle,
.menu-toggle::before,
.menu-toggle::after {
  border-top: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.menu-toggle:focus,
.menu-toggle:focus:before,
.menu-toggle:focus:after {
  border-color: #fff;
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
}

.menu-toggle::before {
  left: 0;
  top: 5px;
}

.menu-toggle::after {
  right: 0;
  bottom: 0;
}

body.nav-on {
  overflow: hidden;
}

.nav-on .menu-toggle {
  width: 28px;
  height: 22px;
  border-top: 0;
  z-index: 100;
}

/* .nav-on .menu-toggle:before,
.nav-on .menu-toggle:after {
  border-color: var(--dark-blue);
} */

.nav-on .menu-toggle:before {
  transform-origin: 15% 40%;
  transform: rotate(45deg);
  left: 2px;
  top: 3px;
}

.nav-on .menu-toggle:after {
  transform-origin: 15% 40%;
  transform: rotate(-45deg);
  right: -1px;
  bottom: 3px;
}

.navbar ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar ul li + li {
  margin-left: 40px;
}

.navbar > ul > li {
  padding: 0;
}

.navbar > ul > li:has(.btn) {
  padding: 28px 0 15px;
}

.navbar ul .btn-menu + .btn-menu {
  margin-left: 16px;
}

.navbar a:not(.btn) {
  display: block;
  color: var(--white-color);
}

.navbar a:not(.btn):hover {
  color: var(--primary);
}

.navbar > ul > li a {
  position: relative;
}

.navbar > ul > li a:not(.btn):after {
  content: '';
  width: 0;
  height: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: 5px solid var(--primary);
  -webkit-transition: width 0.35s ubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -moz-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -ms-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -o-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
}

.navbar > ul > li > a:not(.btn) {
  padding-bottom: 30px;
  padding-top: 44px;
}

.navbar a:not(.btn):hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.navbar .btn {
  display: block;
}

.btn-menu a:after {
  display: none !important;
}

.btn-menu a {
  border-radius: 8px;
  border: 1px solid transparent;
  line-height: 20px;
  font-weight: 400;
  padding: 10px 16px;
}

.btn-menu--login a {
  background: #fff;
  border-color: #cacaca;
  color: #333;
}

.btn-menu--login a:hover {
  color: #fff;
  background: #333;
  border-color: #333;
}

.btn-menu--signup a {
  color: #fff;
  background: #333;
  border-color: #333;
}

.btn-menu--signup a:hover {
  color: #333;
  background: #fff;
  border-color: #fff;
}

/* .navbar .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: auto;
  -webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 16px 24px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  display: block;
} */

/* .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
} */

/* .navbar .sub-menu li {
  padding: 0;
} */

.navbar .sub-menu li + li {
  /* border-top: 1px solid #eee; */
  /* margin-left: 0; */
}

/* .navbar .sub-menu li a {
  padding: 20px 0;
  white-space: nowrap;
  color: var(--dark-blue);
}

.navbar .sub-menu li a:hover {
  color: var(--primary);
} */

/* Mega Menu */

.mega-menu > .sub-menu > li > a::after {
  display: none;
}

.mega-menu > .sub-menu > li a:hover {
  color: var(--dark-blue);
}

.mega-menu .sub-menu {
  background: transparent;
  box-shadow: inherit;
  transform: inherit;
  padding: 0;
  border-radius: inherit;
  align-items: inherit;
}

.mega-menu .sub-menu li + li {
  margin-left: 0;
}

.mega-menu > .sub-menu {
  /* background-color: var(--dark-blue); */
  background-color: #f2f4f6;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
}

.mega-menu > .sub-menu > li > a {
  color: var(--dark-blue);
  font-weight: 500;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.mega-menu ul {
  padding: 25px 0 0 0;
  margin: 0;
  list-style: none;
}

.mega-menu .sub-menu > li > .sub-menu > li + li {
  margin-top: 16px;
}

.mega-menu > .sub-menu > li > .sub-menu {
  padding-top: 25px;
  display: block;
}

.mega-menu .sub-menu > li > .sub-menu > li {
  position: relative;
}

.mega-menu .sub-menu > li > .sub-menu > li a {
  color: #868792;
  font-size: 15px;
  padding: 10px 0;
}
/* .mega-menu .sub-menu > li > .sub-menu > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  height: 42px;
  width: 42px;
  min-width: 42px;
} */

.mega-menu > .sub-menu > li > .sub-menu > li > a {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mega-menu > .sub-menu > li > .sub-menu > li > a img {
  width: 40px;
}
.mega-menu > .sub-menu > li > .sub-menu > li > a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--primary);
  -webkit-transition: width 0.35s ubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -moz-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -ms-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  -o-transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
  transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
}

.mega-menu .sub-menu > li > .sub-menu > li a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.mega-menu .sub-menu > li > .sub-menu > li a:hover {
  color: var(--dark-blue);
}

/* .mega-menu ul li.ai-content-engine::before {
  background-image: url('./images/shopify-strategy-engine-hero.svg');
}
.mega-menu ul li.seo-strategy-engine::before {
  background-image: url('./images/shopify-strategy-engine-hero.svg');
}
.mega-menu ul li.google-ads-optimiser::before {
  background-image: url('./images/shopify-strategy-engine-hero.svg');
}
.mega-menu ul li.meta-ads-optimiser::before {
  background-image: url('./images/shopify-strategy-engine-hero.svg');
}
.mega-menu ul li.shopify-stretegy-engine::before {
  background-image: url('./images/shopify-strategy-engine-hero.svg');
} */

.mega-menu > .sub-menu > li > .sub-menu {
  display: block;
}

.mega-menu:hover > .sub-menu {
  display: flex;
}

/**/

.section--hero {
  background-color: var(--dark-blue);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}

.section--hero .wrap {
  z-index: 9;
  position: relative;
}
.hero__content {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
}
.section--hero p,
.section--hero h1 {
  color: #fff;
}

.subtitle {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

/**/

.card__feature img {
  margin-bottom: 24px;
}

.feature-image {
  /* padding: 10px;
  border-radius: 14px; */
  box-shadow: 0 4px 55px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.feature-image img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

/* Footer */

.site-footer {
  padding-top: 150px;
  background-color: #f2f4f6;
}

.footer-main {
  background-color: var(--dark-blue);
  position: relative;
  padding-top: 10px;
  padding-bottom: 50px;
}

.footer-main::after,
.footer-main::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
}

.footer-main::after {
  height: 150px;
  background: linear-gradient(90deg, #ffd705 0%, #ffd705 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%, 100% 100%);
  bottom: calc(100% - 1px);
  z-index: 2;
}

.footer-main::before {
  height: 150px;
  background: linear-gradient(90deg, var(--dark-blue) 0%, var(--dark-blue) 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%, 100% 100%);
  bottom: calc(100% - 11px);
  z-index: 3;
}

.footer-top {
  padding-bottom: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo a {
  display: inline-block;
}

.footer-logo a img {
  max-width: 147px;
  width: 100%;
  object-fit: contain;
}

.footer__bottom {
  padding-top: 75px;
}

.footer__bottom a {
  color: var(--white-color);
}

.footer__bottom a:hover {
  color: var(--primary);
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-left h3 {
  padding-bottom: 35px;
  max-width: 325px;
}

.footer-bottom-right {
  display: flex;
  justify-content: end;
  column-gap: 80px;
  row-gap: 30px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links li:last-child {
  margin-bottom: 0;
}

.footer__links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
}

.social-links li + li {
  margin-left: 16px;
}

.social-links a {
  display: block;
}

.social-links svg {
  height: 28px;
  display: block;
  fill: var(--white-color);
}

.footer-nav h6,
.company-data h6 {
  margin-bottom: 24px;
}

.company-data {
  max-width: 260px;
}

.company-data .footer__links li {
  margin-bottom: 20px;
}

.company-data .footer__links li p {
  color: var(--white-color);
}
.company-data .footer__links li p,
.company-data .footer__links li a {
  display: flex;
  gap: 10px;
}

.subscribe-box {
  display: flex;
  column-gap: 24px;
  align-items: center;
}

.subscribe-box input[type='email'] {
  flex: 1;
  padding: 13px 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: var(--body-font-size);
  width: 524px;
}

.subscribe-box input::placeholder {
  color: var(--white-color);
}

/* Collapses */

.collapses .collapse {
  transition: all 0.45s;
}

.collapses .collapse.active {
  background-color: #f5f5f5;
  border-radius: 8px;
}

.collapses .collapse:not(:last-child):not(.active) {
  border-bottom: 1px solid rgba(217, 217, 217, 0.6);
}

.collapse .collapse__head {
  font-weight: 600;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 16px;
  cursor: pointer;
}

.collapse .collapse__head .collapse__head__icon {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 16px;
}

.collapse .collapse__head .collapse__head__title {
  padding-right: 16px;
}

.collapse .collapse__head .collapse__head__indicator {
  margin-left: auto;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.collapse .collapse__head.active {
  padding-left: 24px;
  padding-right: 24px;
}

.collapse .collapse__head.active .plus,
.collapse .collapse__head:not(.active) .minus {
  display: none;
}

.collapse .collapse__body {
  padding: 0 24px 24px;
  display: none;
}

/**/

.entry-content a {
  text-decoration: underline;
}

/**/

.section--contact-form > .wrap > .row {
  justify-content: center;
  margin-bottom: -210px;
}

.contact-heading {
  padding: 100px 0;
  margin-right: 60px;
}

.contact-heading h6 {
  color: var(--orange-color);
}

.contact-form {
  padding: 32px 32px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.1);
  border: solid 2px var(--dark-blue);
  background-color: var(--dark-blue);
  position: relative;
  z-index: 2;
}

.search-field,
.form-control {
  border-color: #3d3f5f;
}

.contact-form .form-group label {
  color: var(--white-color);
}

.contact-bottom-img img {
  width: 100%;
}

/* section--advantages */

.advantages-items {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  flex-direction: column;
  row-gap: 15px;
  padding: 20px 20px 20px 5px;
  height: 100%;
  position: relative;
}

.advantages-items::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(103, 103, 103, 0.25);
}

.advantages-items img {
  height: 40px;
  width: 40px;
  min-width: 40px;
  object-fit: contain;
}

.section--advantages .row > div:last-child .advantages-items::before {
  background: transparent;
}

.section--advantages .row {
  row-gap: 30px;
  justify-content: center;
}

/*  */

.section--overview .row {
  justify-content: center;
  align-items: center;
}

.overview-header {
  margin-right: 60px;
}

.overview-block .overview-item {
  border-bottom: 1px solid #d9d9d9;
  padding: 40px 107px 40px 0;
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.overview-block .overview-item img {
  height: 66px;
  width: 66px;
  min-width: 66px;
  object-fit: contain;
}

.overview-block .overview-item h4 {
  margin-bottom: 0;
  line-height: 1;
}

.overview-block .overview-item:first-child {
  padding-top: 0;
}

.overview-block .overview-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.overview-img {
  position: relative;
  padding: 0 54px 90px 54px;
  max-width: 610px;
  margin-left: auto;
}

.overview-img img {
  aspect-ratio: 16/21.662;
  width: 100%;
}

.overview-img::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--primary);
  height: calc(100% - 250px);
  width: 100%;
  z-index: -1;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 93%);
}

/**/

.check-circle {
  /* background-color: #ebf3fb;
    border-radius: 50%; */
  display: block;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  text-indent: -1000px;
  width: 35px;
}

.check-circle:before {
  border: solid var(--body-color);
  border-width: 0 3px 3px 0;
  content: '';
  display: block;
  height: 16px;
  left: 13px;
  position: absolute;
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
}

.pricing-block {
  text-align: center;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-block.recommended {
  background-color: var(--primary);
  border-color: var(--primary);
}

.pricing-block-header {
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: #000;
}

.price .rprice {
  text-decoration: line-through;
  color: #a2a2a2;
  font-style: italic;
  font-size: 16px;
}

.recommended .price .rprice {
  color: #898787;
}

.month-year {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.pricing-block ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.pricing-block li + li {
  margin-top: 12px;
}

.features__table {
  width: 100%;
}

.features__table th {
  font-weight: 500;
  text-align: center;
}

/* Modal */

.modal-open {
  overflow: hidden;
  padding-right: 17px;
}

.modal.show,
.modal .modal__dialog.show {
  visibility: visible;
  opacity: 1;
}

.modal .modal__dialog.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding: 0 16px;
  overflow: auto;
}

.modal .modal__container,
.modal .modal__dialog .close {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal .modal__container {
  margin: 40px 0;
  min-height: calc(100% - 80px);
}

.modal .modal__dialog {
  max-width: 960px;
  width: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-64px);
  -ms-transform: translateY(-64px);
  transform: translateY(-64px);
  -webkit-transition: all 0.25s ease-in-out 0.15s;
  -o-transition: all 0.25s ease-in-out 0.15s;
  transition: all 0.25s ease-in-out 0.15s;
  max-height: 100%;
  background-color: #fff;
  padding: 16px;
  border-radius: 16px;
}

.modal .modal__dialog .close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.video-frame {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  position: relative;
}

.video-frame:before {
  content: '';
  display: block;
  padding-bottom: calc(9 / 16 * 100%);
}

.video-frame .video-frame__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.single-post .video-frame {
  margin-bottom: 32px;
}

.single-post .entry-content {
  max-width: 1068px;
  margin: 0 auto 100px auto;
}

.single-post .entry-content strong,
.single-post .entry-content h4 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  display: inline-block;
}

.section-blog--bottom {
  padding-left: 15px;
  padding-right: 15px;
}

.today-block {
  max-width: 1038px;
  margin: 30px auto 0 auto;
  padding: 0 0px 0 68px;
  background-color: var(--dark-blue);
  border-radius: 24px;
}

.today-block .row {
  align-items: center;
  justify-content: space-between;
}

.today-block .today-content {
  padding: 63px 0;
}

.today-block .today-img {
  display: flex;
  justify-content: flex-end;
  margin-top: -30px;
  position: relative;
  margin-right: -16px;
}

.today-block .today-img img {
  height: 283px;
  width: 455px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.post-navigation-wrapper {
  max-width: 1068px;
  margin: 90px auto 0 auto;
  display: flex;
  padding-left: 16px;
  padding-right: 16px;
}

.post-navigation-wrapper .nav-box {
  padding: 32px 36px;
  max-width: 290px;
  background-color: #f2f4f6;
  border-radius: 24px;
}

.post-navigation-wrapper .nav-box p {
  font-weight: 700;
}

.post-navigation-wrapper .nav-box.next-post {
  margin-left: auto;
}

.post-navigation-wrapper .nav-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 10px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: capitalize;
}

.post-navigation-wrapper .nav-box.prev-post a img {
  transform: rotate(180deg);
}

/**/

.video__card .video-thumbnail {
  display: block;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.video__card .video-thumbnail img {
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.video__card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video__card .h4,
.video__card h4 {
  margin-bottom: 16px;
}

.video__card .video-thumbnail svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*.video__card .video-thumbnail:before {
    content: '';
    display: block;
    padding-bottom: calc(9 / 16 * 100%);
}

.video__card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}*/

.plan-box {
  text-align: center;
  padding: 32px 24px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-box--bg1 {
  background-color: #e6f3ff;
}

.plan-box--bg2 {
  background-color: #e0fef3;
}

.plan-box--bg3 {
  background-color: #f5f7d7;
}

.plan-box .plan-box__icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-box .plan-box__icon img {
  width: 40px;
}

.plan-box .plan-box__info {
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-box__info ul {
  list-style: none;
}

.plan-box li + li {
  margin-top: 8px;
}

/* .section--products {
  padding-top: 0;
}
.section--products::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background-color: var(--primary);
  z-index: 1;
}
.product-grid-shadow {
  background-color: #fff;
  z-index: 2;
  position: relative;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.2);
} */

.product__block {
  /* border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc;
  padding: 32px;
  text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product__block .product__icon {
  margin-bottom: 16px;
}

.product__block img {
  max-height: 72px;
}

.product__block .product__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product__block .product__name {
  font-weight: bold;
  margin-bottom: 16px;
}

.product__block .product__info p {
  margin-bottom: 16px;
  flex-grow: 1;
}

.section--heroimage::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background-color: var(--primary);
  z-index: 1;
}

.section--heroimage .hero__image {
  margin: 32px;
}

.section--intelligence {
  background-color: #000;
  color: #cacaca;
}

.section--intelligence h2 {
  color: #fff;
}

.section--intelligence .feature-image {
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.section--intelligence .feature-image img {
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

/*section--logo*/

.section--logo {
  background-color: #0e0a25;
  padding-top: 64px;
  padding-bottom: 64px;
}

.section__subtitle {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #6b67f1, #9981f7);
  background-clip: text;
  font-weight: 700;
}

.logo-grid {
  display: flex;
}

.logo-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section--feature {
  background-color: #0e0a25;
}

.color-primary {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #59cad1, #6267f0 51%, #d462f0);
  -webkit-background-clip: text;
  background-clip: text;
}

/* cta */

.section--cta {
  padding-bottom: 200px;
}

.cta__content {
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
}

.cta__content img {
  max-width: 120px;
}

.benefit-content {
  position: sticky;
  top: 100px;
}

.section--featureh {
  background-color: #f5f5f5;
}

.benefit-card {
  padding: 24px;
  border-top: 1px solid #cacaca;
  border-radius: 8px;
  cursor: pointer;
}

.benefit-card.active {
  border-top: 1px solid transparent;
  background-color: #fff;
}

.benefit-card.active + .benefit-card {
  border-top: none;
}

.features_scroll-block {
  background-color: #fff;
  /*padding: 12px;
    border-radius: 20px; */
  box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.1);
  /* border: solid 2px #fff; */
}

.benefit-card h4 {
  margin-bottom: 0;
}

.benefit-card img {
  display: none;
  margin-bottom: 24px;
}

.benefit-card p {
  display: none;
  margin-top: 12px;
}

.benefit-card.active p {
  display: block;
}

.benefit-card.active img {
  display: block;
}

/* .benefit-card + .benefit-card {
  margin-top: 24px;
} */

/**/

.featurescroll.hide {
  display: none;
}

.collapses.collapses--featurescroll .collapse {
  position: relative;
}

@keyframes collapse-indicator {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.featurescroll.active,
.collapses .featurescroll {
  display: block;
}

.featurescroll:not(.show) {
  opacity: 0;
}

.collapses .featurescroll {
  opacity: 1;
}

.collapses.collapses--featurescroll .collapse .collapse__body,
.collapses.collapses--featurescroll .collapse .collapse__head.active {
  padding-left: 16px;
  padding-right: 16px;
}

.collapses.collapses--featurescroll .collapse .collapse__head.active:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  animation: collapse-indicator var(--line-animation-duration, 5000ms) linear both;
}

.collapses.collapses--featurescroll .collapse__body p {
  margin-bottom: 0;
}

.desktop-hide {
  display: none !important;
}

.currency {
  position: relative;
  overflow: hidden;
  background: none;
  display: inline-block;
}

.currency .checkbox {
  position: absolute;
  left: -100px;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.currency label {
  z-index: 2;
  display: flex;
  border-radius: 100px;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  padding: 4px;
}

.currency label:after,
.currency label:before {
  content: 'Monthly';
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #000;
  background-color: var(--primary);
  border-radius: 100px;
  padding: 4px 16px;
  -webkit-transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  -o-transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  cursor: pointer;
}

.currency label:after {
  content: 'Yearly';
  /* color: #fff; */
  left: initial;
  right: 7px;
  background: none;
}

.currency .checkbox:checked + label::before {
  /* color: #fff; */
  background: none;
}

.currency .checkbox:checked + label:after {
  color: #000;
  background-color: var(--primary);
}

.pricing-heading {
  display: flex;
}

.pricing-heading .currency {
  margin-left: 24px;
}

.sticky-section-main {
  background-color: #f2f4f6;
}

.sticky-section {
  position: relative;
}

.section-sticky-title.sticky {
  position: sticky;
  top: 50px;
}

.sticky-section .section {
  position: -webkit-sticky;
  position: sticky;
  height: 80vh;
}

.sticky-section .section .row {
  row-gap: 40px;
}

.sticky-section .section .row {
  justify-content: space-between;
}

.section--sticky-left {
  display: flex;
  gap: 30px;
  background-color: #f2f4f6;
  padding-top: 30px;
}

.section--sticky-img {
  padding: 6px 0 45px 10px;
  position: relative;
  background-color: #f2f4f6;
}

.section--sticky-img img {
  position: relative;
  width: 100%;
}

.section--sticky-img::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #99cbfe;
  height: calc(100% - 60px);
  width: calc(100% - 140px);
  z-index: 0;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 93%);
}

.section--sticky-2 .section--sticky-img::before {
  background-color: #ffef9b;
}

.section--sticky-3 .section--sticky-img::before {
  background-color: #aae7e7;
}

.section--sticky-4 .section--sticky-img::before {
  background-color: #fcc6bf;
}

.section--sticky-5 .section--sticky-img::before {
  background-color: #ddd9f1;
}

.section--sticky-6 .section--sticky-img::before {
  background-color: #b2b7bd;
}

.sticky-section .section:nth-child(even) .section--sticky-img {
  padding: 0 0 45px 0;
}

.sticky-section .section:nth-child(even) .section--sticky-img::before {
  right: inherit;
  left: 0;
}

.section--sticky-left .section--sticky-icon img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  object-fit: contain;
}

.section--sticky-left .section--sticky-content {
  max-width: 300px;
}

.sticky-section .section--sticky-1,
.sticky-section .section--sticky-2,
.sticky-section .section--sticky-3,
.sticky-section .section--sticky-4,
.sticky-section .section--sticky-5,
.sticky-section .section--sticky-6 {
  top: 170px;
}

.section--sticky-2 .section--sticky-left {
  margin-top: 80px;
}

.section--sticky-3 .section--sticky-left {
  margin-top: 160px;
}

.section--sticky-4 .section--sticky-left {
  margin-top: 240px;
}

.section--sticky-5 .section--sticky-left {
  margin-top: 320px;
}

.section--sticky-6 .section--sticky-left {
  margin-top: 390px;
}

/* Trust Factors Slider */

.section--trust-factors {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 40%, black 80%, transparent);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.trust-factors-slider.swiper {
  overflow: visible !important;
}

.trust-factors-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.trust-factors-slider .swiper-wrapper .swiper-slide {
  display: flex;
  width: auto;
}

.trust-factors-slider .swiper-wrapper .swiper-slide img {
  width: 215px;
  height: 108px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Section Demo */

/* .page-id-746 .site-footer {
  background-color: var(--white-color);
} */

.section--demo {
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.section--demo h2,
.section--demo p {
  color: var(--white-color);
}

.section--demo-content {
  position: absolute;
  /* right: 50%; */
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  width: 626px;
}
.section--demo-content p {
  max-width: 400px;
}

.demo-video {
  background-color: #11112a;
}

.demo-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-color: #11112a;
}

.demo-video video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

/* What Intelligence */

.section--what-intelligence .intelligence-content {
  max-width: 930px;
  margin: 0 auto;
}

.section--what-intelligence .intelligence-video {
  margin: 50px 0;
}

.intelligence-video video {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
}

/* Why Customers */

.section--why-customers {
  background-color: var(--dark-blue);
}

.section--why-customers .row {
  justify-content: end;
}

.why-customers-img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% + 91px);
  height: 100%;
}

.why-customers-img img {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.why-customers-block {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.why-customers-block .why-customers-block-item {
  display: flex;
  gap: 24px;
}

.why-customers-block-content h3 {
  margin-bottom: 10px;
}

.why-customers-block .why-customers-block-item .icon img {
  height: 48px;
  width: 48px;
  min-width: 48px;
}

/* Section Features */

.section--features .features-content {
  max-width: 815px;
  margin: 0 auto;
  color: var(--dark-blue);
}

.section--features .row {
  row-gap: 30px;
}

.features-card {
  background-color: #99cbfe;
  border-radius: 24px;
  padding: 30px 30px 0 30px;
  transition: all 0.5s ease;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.features-card h3 {
  margin-bottom: 0;
}

.features-card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.5s ease,
    max-height 0.5s ease,
    top 0.5s ease;
  margin-top: 10px;
  position: relative;
  top: -40px;
}

.features-card-img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  /* transform: translateY(0); */
  transition: transform 0.5s ease;
  will-change: transform;
  margin-top: 24px;
}

.features-card-img img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.features-card:hover h4 {
  margin-bottom: 10px;
}

.features-card:hover .features-card-description {
  opacity: 1;
  max-height: 90px;
  top: 0;
}

/* .features-card:hover .features-card-img {
  transform: translateY(0);
} */

/* Testimonials */

.testimonials-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.testimonials-title h2 {
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
}

.testimonials-title h2 img {
  height: 49px;
  width: 70px;
  object-fit: contain;
}

.testimonials-counter {
  display: flex;
  column-gap: 40px;
  row-gap: 24px;
  max-width: 410px;
  margin-left: auto;
}

.counter-block h2 {
  margin-bottom: 8px;
}

.counter-block p {
  color: var(--dark-blue);
}

.section--testimonials .row {
  row-gap: 32px;
}

.testimonials-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials-info {
  background-color: #f2f4f6;
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  height: 100%;
}

.testimonials-info::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-top-color: #f2f4f6;
  border-bottom: 0;
  margin-bottom: -15px;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.author-info p {
  color: var(--dark-blue);
}

.author-block img {
  border-radius: 100%;
  border: 2px solid var(--secondary);
  display: inline-block;
  height: 56px;
  width: 56px;
  min-width: 56px;
}

.review-block {
  background-color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 24px;
  padding: 35px 70px;
  margin-top: 64px;
}

.review-block .review-title h2 {
  margin-bottom: 10px;
}

/* Recent Articles */

.section--recent-articles .row {
  row-gap: 32px;
}

.recent-articles-title {
  margin-bottom: 40px;
}

.blog__block {
  height: 100%;
}

.recent-articles-card {
  background-color: #f2f4f6;
  clip-path: polygon(0 4.7%, 100% 0, 100% 100%, 0 97%);
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 100%;
}

.recent-articles-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.recent-articles-card .recent-articles-img a {
  display: block;
}

.recent-articles-card .recent-articles-img img {
  width: 100%;
  height: auto;
  background-size: cover;
  aspect-ratio: 16/10.8;
}

.recent-articles-content {
  padding: 30px 30px 60px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recent-articles-content h3 a {
  color: var(--dark-blue);
}

.recent-articles-link {
  margin-top: auto;
}

/* Demo CTA */

.section--demo-cta {
  background-color: #f2f4f6;
}

.section--demo-cta .row {
  justify-content: space-between;
}

.demo-cta-img {
  position: relative;
  padding: 70px 0 0 0;
}

.demo-cta-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 53%;
  height: 45%;
  background-color: #ddd9f1;
  z-index: 0;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 93%);
}

.demo-cta-img img {
  position: relative;
  width: 100%;
}

.demo-cta-content {
  max-width: 400px;
  margin-left: auto;
}

/* Product Detail Page */

/* Inner Hero */

.inner--hero {
  background-color: var(--dark-blue);
  border-bottom: 12px solid var(--primary);
  padding-top: 100px;
  padding-bottom: 100px;
}

.inner--hero .hero-content {
  padding-top: 72px;
  max-width: 980px;
  margin: 0 auto;
}

.inner--hero h1 span {
  color: var(--primary);
}

.inner--hero .entry-meta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  column-gap: 80px;
  align-items: center;
}

.inner--hero .entry-meta .posted-on,
.inner--hero .entry-meta .byline {
  padding-left: 36px;
  position: relative;
}

.inner--hero .entry-meta .posted-on::after,
.inner--hero .entry-meta .byline::after {
  content: '';
  position: absolute;
  right: -41px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background: #3d3f5f;
}

.inner--hero .entry-meta .posted-on::before,
.inner--hero .entry-meta .byline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-image: url('./images/date.svg');
  background-repeat: no-repeat;
}

.inner--hero .entry-meta .byline::before {
  background-image: url('./images/by-sowhat-icon.svg');
}

.post-share {
  display: flex;
  align-items: center;
}

.post-share .share-icon {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
}

.post-share span {
  font-size: 16px;
}

.post-share .share-icon img {
  height: 20px;
  width: 20px;
  min-width: 20px;
  object-fit: contain;
}

/* Web Analyst Block */

.section--web-analyst-block .row {
  row-gap: 40px;
}

.section--web-analyst-block .row + .row {
  margin-top: 250px;
}

.section--web-analyst-block .web-analyst-content {
  max-width: 490px;
}

.section--web-analyst-block .web-analyst-content h2 {
  text-wrap: balance;
}

.web-analyst-content-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated {
  animation: fadeIn 0.3s ease-in forwards;
}

/* Key Features */

.section--key-features {
  background-color: #f2f4f6;
}

.key-features-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.key-features-items {
  width: 25%;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.key-features-items:nth-child(4n) {
  border-right: none;
}
.key-features-items:nth-child(n + 9) {
  border-bottom: none;
}
.key-features-items:nth-child(9) {
  border-left: 1px solid #e0e0e0;
}

.key-features-items img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: contain;
  margin: 0 auto 24px auto;
}

/* Apps */

.more-apps {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.more-apps .more-apps-items {
  padding: 24px;
  max-width: 290px;
  min-height: 246px;
  width: 100%;
  height: auto;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.more-apps .more-apps-items .apps-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: inline-block;
}

.more-apps .more-apps-items h3 {
  margin-bottom: 0;
  margin-top: 30px;
}

.more-apps .more-apps-items .btn-link {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transform: translateY(45px);
}

.more-apps .more-apps-items:hover {
  background-color: #f2f4f6;
  border-radius: 24px;
}

.more-apps .more-apps-items .apps-icon .icon-hover {
  display: none;
}

.more-apps .more-apps-items:hover .apps-icon .icon-hover {
  display: block;
}

.more-apps .more-apps-items:hover .apps-icon .icon {
  display: none;
}

.more-apps .more-apps-items:hover .btn-link {
  opacity: 1;
  visibility: visible;
  margin-top: 30px;
  transform: translateY(0);
}

/* Single Post */

.section--singlepost {
  padding-bottom: 0;
}

.section--singlepost .breadcrumbs {
  background-color: #f2f4f6;
  padding: 16px 0;
  margin-bottom: 50px;
  color: var(--dark-blue);
}
.section--singlepost .breadcrumbs a {
  color: var(--dark-blue);
}
.section--singlepost .breadcrumbs a:hover {
  color: var(--secondary);
}

.section--singlepost .entry-header {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.section--singlepost .entry-header .entry-meta {
  margin-bottom: 24px;
}

.section--singlepost h2,
.section--singlepost h3,
.section--singlepost h4,
.section--singlepost h5,
.section--singlepost h6,
.section--singlepost p,
.section--singlepost a,
.section--singlepost ul,
.section--singlepost ol,
.entry-footer {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.section--singlepost p:has(img) {
  max-width: 100%;
}
.section--singlepost .entry-content p img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.section--singlepost .entry-content a {
  color: var(--body-color);
}

.section--singlepost .entry-content a:hover {
  color: var(--secondary);
}

/* App Pricing Page */

.all-app--block {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 60px;
}

.all-app--block::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 126, 252, 1) 0%, rgba(143, 126, 224, 1) 25%, rgba(43, 195, 196, 1) 50%, rgba(248, 112, 96, 1) 75%, rgba(255, 215, 5, 1) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.all-app--block .row,
.app--bottom--item .row {
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.app-icon_top .app-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-icon img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.all-app_info {
  margin-top: 30px;
}

.all-app_info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.all-app_info ul li {
  position: relative;
  padding-left: 24px;
}

.all-app_info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 10px;
  background-image: url('./images/blue-tick.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.all-app-btn {
  display: flex;
  justify-content: flex-end;
}

.app--bottom--item {
  border: 1px solid rgba(62, 76, 89, 0.24);
  border-radius: 12px;
  padding: 60px 59px;
  margin-top: 60px;
}

.app-bottom__content {
  display: flex;
  gap: 30px;
}

.app-bottom__info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.app-bottom__info ul li {
  position: relative;
  padding-left: 24px;
}

.app-bottom__info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 10px;
  background-image: url('./images/blue-tick.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.simplify_block {
  padding: 0 62px 0 91px;
  background-color: var(--dark-blue);
  border-radius: 12px;
}

.simplify_block .row {
  margin-left: 0;
  margin-right: 0;
  justify-content: space-between;
  align-items: center;
}

.simplify_block .simplify--content {
  padding: 76px 0;
  max-width: 642px;
}

.simplify_block .simplify--right_img {
  display: flex;
  justify-content: flex-end;
}

.simplify_block .simplify--right_img img {
  width: 301px;
  height: 301px;
  object-fit: contain;
}

.app--bottom--item:nth-child(12),
.app--bottom--item:nth-child(13) {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  border: none;
}

.app--bottom--item:nth-child(12)::before,
.app--bottom--item:nth-child(13)::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(43, 195, 196, 1) 0%, rgba(143, 126, 224, 1) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.app--bottom--item:nth-child(13)::before {
  content: '';
  background: linear-gradient(90deg, rgba(248, 112, 96, 1) 0%, rgba(0, 126, 252, 1) 100%);
}

.app--bottom--item:nth-child(12)::before,
.app--bottom--item:nth-child(13)::before {
  padding: 4px;
}

.heading-and-app-category {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}

.app-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-category-link {
  border: 1px solid #3e4c593d;
  border-radius: 4px;
  background: transparent;
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 18px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.app-category-link.is-active,
.app-category-link:hover,
.app-category-link:focus-visible {
  border-color: var(--blue-color);
  color: var(--blue-color);
}

.app-listing-item.is-hidden {
  display: none;
}

.app-block {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.app-block:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.app-block h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}
.app-block .coming-soon {
  display: inline-block;
  font-size: 10px;
  line-height: 16px;
  border: 1px solid #3e4c593d;
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--dark-blue);
}
.app-block-content {
  flex: 1;
  padding: 0 12px;
}
.app-block svg {
  transition: all 0.3s ease;
}
.app-block:hover svg {
  fill: var(--secondary);
  transform: rotate(-45deg);
}
.app-block:hover svg path {
  fill: var(--white-color);
}
/**/
.app-block .arrow-link {
  display: inline-block;
  position: relative;
  width: 32px;
}

.app-block .arrow-link::before,
.app-block .arrow-link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--secondary);
  transition: all 0.3s ease;
  left: 0;
}

.app-block .arrow-link::before {
  background-image: url('./images/link-arrow.svg');
  background-size: 6px;
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
}

.app-block .arrow-link::after {
  background-image: url('./images/link-hover-arrow.svg');
  background-size: 18px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0) translateY(-50%);
  transform-origin: left center;
}

.app-block:hover .arrow-link::before {
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
}

.app-block:hover .arrow-link::after {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1) translateY(-50%);
  width: 37px;
}

.menu-text {
  display: block;
}

.menu-coming-soon {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  border: 1px solid #868792;
  border-radius: 4px;
  padding: 2px 6px;
  color: #868792;
  margin-top: 2px;
}
/**/
/*!
 *	Responsive
 * ----------------------------------------------- */

@media (max-width: 1199px) {
  .site-header {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar ul li + li {
    margin-left: 20px;
  }

  .inner--hero .hero-content .mb-64 {
    margin-top: 30px !important;
  }
  .section--web-analyst-block .row + .row {
    margin-top: 150px;
  }

  .more-apps {
    flex-wrap: wrap;
  }

  .site-footer {
    padding-top: 120px;
  }
  .footer-main::before,
  .footer-main::after {
    height: 120px;
  }
  .overview-header {
    margin-right: 0;
  }
  .contact-heading {
    margin-right: 0;
  }

  .all-app--block {
    padding: 50px 4px;
  }
  .app--bottom--item {
    padding: 50px 4px;
  }
  .simplify_block {
    padding: 0 4px 0 4px;
  }
  .simplify_block .simplify--content {
    padding: 20px 0;
  }
  .simplify_block .simplify--right_img img {
    height: auto;
  }

  .mega-menu > .sub-menu {
    gap: 20px;
    padding: 35px 20px;
  }
}

@media (max-width: 992px) {
  .col--md-3 {
    width: 25%;
  }
  .col--lg-3 {
    width: 25%;
  }
  .col--lg-4 {
    width: 33.33333333%;
  }
  .col--md-6 {
    width: 50%;
  }
  .col--lg-12 {
    width: 100%;
  }
  .col--md-12 {
    width: 100%;
  }
  .col--md-none {
    display: none !important;
  }
  .mb-md-24 {
    margin-bottom: 24px !important;
  }
  .site-header {
    padding: 20px 10px;
  }
  .section--hero {
    display: block;
  }
  .section--hero .swiper {
    position: static;
    width: auto;
    text-align: center;
  }
  .section--hero .swiper-pagination {
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-show {
    display: block !important;
  }
  .navbar {
    /* background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); */
    position: fixed;
    right: 0;
    top: 0;
    padding-right: 0;
    display: none;
  }
  .nav-on .navbar {
    display: block;
  }
  .navbar > ul {
    display: block;
    height: 100%;
    padding: 0 24px 24px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    min-width: 320px;
    background-color: var(--dark-blue);
    margin-top: 80px;
  }

  .navbar ul .btn-menu + .btn-menu,
  .navbar ul li + li {
    margin-left: 0;
    margin-top: 10px;
  }
  .navbar .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background: none;
    text-align: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 0;
  }
  /* .navbar a:not(.btn) {
    color: var(--dark-blue);
  } */
  .navbar .sub-menu li + li {
    border: none;
  }
  .navbar .sub-menu li {
    margin-top: 0;
  }

  .mega-menu > .sub-menu > li > a {
    color: #fff;
    padding: 12px 0;
  }

  .section--hero {
    padding: 150px 0 0;
  }

  .section--hero::after,
  .section--hero::before {
    height: 250px;
  }

  .hero__image {
    height: 100%;
  }

  .hero__image img {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .demo-video video {
    width: 100%;
  }
  .section--demo {
    padding-bottom: 0 !important;
  }
  .section--demo .row {
    row-gap: 40px;
  }
  .section--demo-content {
    position: relative;
    top: inherit;
    transform: inherit;
    width: 100%;
  }
  .section--demo-content,
  .section--demo-content p {
    max-width: 100%;
  }
  .demo-video {
    position: relative;
  }
  .demo-video::before {
    width: calc(100% + 32px);
    left: -16px;
  }
  .section--what-intelligence .row {
    row-gap: 20px;
  }
  .section-sticky-title.sticky {
    top: 0;
  }

  .section-sticky-title.sticky,
  .sticky-section .section {
    position: inherit;
  }

  .sticky-section .section {
    padding-bottom: 0;
    height: auto;
  }

  .section--sticky-left {
    margin-top: 50px !important;
    padding-top: 0;
  }

  .section--features .row.mt-64 {
    margin-top: 40px !important;
  }

  .sticky-section .section--sticky-1,
  .sticky-section .section--sticky-2,
  .sticky-section .section--sticky-3,
  .sticky-section .section--sticky-4,
  .sticky-section .section--sticky-5,
  .sticky-section .section--sticky-6 {
    top: 0;
  }

  .testimonials-counter {
    max-width: 100%;
    margin-left: inherit;
  }

  .review-block {
    padding: 30px 40px;
  }

  .section--web-analyst-block .web-analyst-content {
    max-width: 100%;
  }
  .section--web-analyst-block .web-analyst-content h2 {
    text-wrap: inherit;
  }
  .web-analyst-content .btn.mt-24 {
    margin-top: 0 !important;
  }

  .key-features-items {
    width: 33%;
  }
  .key-features-items:nth-child(4n) {
    border-right: 1px solid #e0e0e0;
  }
  .key-features-items:nth-child(3n) {
    border-right: none;
  }
  .key-features-items:nth-child(9) {
    border-left: none;
  }
  .key-features-items:nth-child(n + 9) {
    border-bottom: 1px solid #e0e0e0;
  }
  .key-features-items:nth-child(n + 10) {
    border-bottom: none;
  }
  .key-features-items:nth-child(10) {
    border-left: 1px solid #e0e0e0;
  }

  .more-apps.mt-64 {
    margin-top: 40px !important;
  }

  .section--why-customers {
    padding-bottom: 0;
  }
  .section--why-customers .row {
    row-gap: 40px;
    flex-direction: column-reverse;
  }
  .why-customers-img {
    position: relative;
    width: calc(100% + 32px);
    height: auto;
    left: -16px;
    top: inherit;
  }

  .section--demo-cta .row {
    row-gap: 40px;
    flex-direction: column-reverse;
  }
  .demo-cta-content {
    max-width: 100%;
  }

  .footer-top {
    padding-bottom: 50px;
  }
  .footer-left h3 {
    max-width: 100%;
  }
  .subscribe-box input[type='email'] {
    width: 350px;
  }
  .footer__bottom {
    padding-top: 50px;
  }
  .footer-top .row,
  .footer__bottom .row {
    row-gap: 40px;
  }
  .footer-bottom-right {
    justify-content: start;
  }
  .section--web-analyst-block .row + .row {
    margin-top: 100px;
  }

  .section--contact-form > .wrap > .row {
    margin-bottom: -20px;
  }
  .contact-heading {
    padding: 0 0 30px 0;
  }
  .section--advantages .row > div:nth-child(4) .advantages-items::before {
    background: transparent;
  }
  .overview-header {
    margin-bottom: 30px;
  }
  .overview-img {
    margin-right: auto;
  }
  .today-block {
    padding: 0;
  }
  .today-block .today-content {
    padding: 30px 0 30px 0;
  }
  .today-block .today-img {
    margin-top: 0;
  }
  .today-block .today-img img {
    height: auto;
  }
  .app-icon_top .app-icon {
    gap: 12px;
  }

  /* Mega Menu */

  .navbar > ul > li > a {
    font-weight: 600;
  }

  .navbar > ul > li + li {
    margin-top: 20px;
  }

  .navbar > ul > li > a:not(.btn) {
    padding: 0;
  }

  .mega-menu .sub-menu {
    flex-direction: column;
    padding: 0;
  }

  .mega-menu > .sub-menu {
    gap: 0;
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    padding-left: 12px;
  }
  /* 
  .mega-menu > .sub-menu > li > .sub-menu > li > a {
    color: var(--dark-blue);
  } */

  .mega-menu > .sub-menu > li > .sub-menu {
    padding-top: 0;
  }

  .mega-menu .sub-menu a::after,
  .navbar > ul > li a:not(.btn):after {
    display: none;
  }

  /* .mega-menu > .sub-menu > li > a,
  .mega-menu > .sub-menu > li > a:hover {
    color: var(--dark-blue);
    padding-bottom: 0;
  } */

  .mega-menu {
    flex-direction: column;
    gap: 0;
    row-gap: 30px;
  }

  .mega-menu h4 {
    margin-bottom: 0;
    padding-right: 18px;
  }

  .menu-item-has-children > a {
    cursor: pointer;
    position: relative !important;
  }

  .menu-item-has-children > a::after {
    content: '' !important;
    position: absolute !important;
    top: 6px !important;
    right: 0 !important;
    background-image: url(./images/menu-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    height: 12px !important;
    width: 12px !important;
    transform: rotate(90deg);
    display: block !important;
  }
  .mega-menu > .sub-menu > li > a::after {
    top: 20px !important;
  }
  .navbar a:not(.btn):hover:after {
    left: inherit;
  }

  .navbar > ul > li a:not(.btn):after {
    border: none;
    bottom: inherit;
  }

  .mega-menu > .sub-menu > li > .sub-menu {
    display: none;
  }

  .menu-accordion > a {
    cursor: pointer;
  }
  .navbar > ul > li:has(.btn) {
    padding: 0;
  }
  .mega-menu .sub-menu > li > .sub-menu {
    margin: 10px 0 10px 12px;
  }
  .mega-menu .sub-menu > li > .sub-menu > li a {
    padding: 0;
  }

  /* .mega-menu .sub-menu > li > .sub-menu > li a:hover {
    color: var(--dark-blue);
  } */

  .mega-menu:hover > .sub-menu {
    display: none;
  }

  .heading-and-app-category {
    display: block;
  }
  .app-category-links {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding-y: 64px;
  }
  .col--md-4 {
    width: 33.33333333%;
  }
  .col--md-6 {
    width: 50%;
  }
  .col--sm-12 {
    width: 100%;
  }
  .mb-sm-64 {
    margin-bottom: 64px !important;
  }
  .mb-sm-32 {
    margin-bottom: 32px !important;
  }
  .d-sm-none {
    display: none !important;
  }

  .section--web-analyst-block .row + .row {
    margin-top: 60px;
  }

  .site-footer {
    padding-top: 100px;
  }
  .footer-main::before,
  .footer-main::after {
    height: 100px;
  }
  .footer-top .row {
    flex-direction: column;
    align-items: start;
  }
  .footer-top .row > div {
    flex: 1;
    width: 100%;
  }
  .subscribe-box input[type='email'] {
    width: 100%;
  }
  .footer-bottom-right {
    row-gap: 30px;
    column-gap: 60px;
  }
  .contact-form {
    padding: 32px 20px 16px;
  }
  .section--advantages .row > div:nth-child(3) .advantages-items::before {
    background: transparent;
  }
  .section--advantages .row > div:nth-child(4) .advantages-items::before {
    background: rgba(103, 103, 103, 0.25);
  }
  .overview-block .overview-item {
    padding: 20px 0 20px 0;
    column-gap: 20px;
  }
  .inner--hero .entry-meta {
    flex-direction: column;
    row-gap: 24px;
  }
  .inner--hero .entry-meta .posted-on::after,
  .inner--hero .entry-meta .byline::after {
    display: none;
  }
  .all-app-btn {
    justify-content: flex-start;
    margin-top: 30px;
    margin-left: 92px;
  }
}

@media (max-width: 639px) {
  .section--hero::after,
  .section--hero::before {
    height: 220px;
  }

  .features-card {
    padding: 20px 15px 0 15px;
  }

  .testimonials-title h2 img {
    height: 30px;
    width: 40px;
  }

  .review-block {
    padding: 20px;
    margin-top: 40px;
  }

  .key-features-items {
    width: 50%;
  }
  .key-features-items:nth-child(4n) {
    border-right: 1px solid #e0e0e0;
  }
  .key-features-items:nth-child(3n) {
    border-right: 1px solid #e0e0e0;
  }
  .key-features-items:nth-child(2n) {
    border-right: none;
  }
  .key-features-items:nth-child(n + 9) {
    border-bottom: none;
  }
  .key-features-items:nth-child(10) {
    border-left: none;
  }

  .more-apps .more-apps-items {
    background-color: #f2f4f6;
  }

  .more-apps .more-apps-items .btn-link {
    opacity: 1;
    visibility: visible;
    margin-top: 30px;
    transform: translateY(0);
  }

  .subscribe-box {
    row-gap: 24px;
    align-items: start;
    flex-direction: column;
  }
  .footer-bottom-right {
    flex-direction: column;
  }
  .footer-nav h6,
  .company-data h6 {
    margin-bottom: 16px;
  }
  .post-navigation-wrapper {
    flex-direction: column;
    row-gap: 30px;
    margin: 50px auto 0 auto;
  }
  .post-navigation-wrapper .nav-box {
    max-width: 100%;
  }
  .post-navigation-wrapper .nav-box.next-post {
    margin-left: 0;
  }
  .all-app_info ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .col--xs-12 {
    width: 100%;
  }
  .col--sm-6 {
    width: 50%;
  }
  .mb-xs-32 {
    margin-bottom: 32px !important;
  }
  h1,
  .h1 {
    font-size: 36px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  h6,
  .h6 {
    font-size: 14px;
  }
  h1,
  .h1 {
    font-size: 36px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  .navbar,
  .navbar ul {
    min-width: initial;
    width: 100%;
  }
  .section--trust-factors {
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  }
  .trust-factors-slider .swiper-wrapper .swiper-slide img {
    width: 160px;
    height: 80px;
  }

  .ai::after {
    top: -2px;
    left: -2px;
    width: 15px;
    height: 15px;
  }
  .ai::before {
    top: -5px;
  }
  .hero__content h1 strong::before,
  .hero-content h1 strong::before {
    top: 4px;
    right: 7px;
  }
  .section--advantages .row > div:nth-child(3) .advantages-items::before {
    background: rgba(103, 103, 103, 0.25);
  }
  .section--advantages .row > div:nth-child(2) .advantages-items::before,
  .section--advantages .row > div:nth-child(4) .advantages-items::before {
    background: transparent;
  }

  .overview-img {
    padding: 0 20px 90px 20px;
  }

  .app-bottom__content {
    flex-direction: column;
  }
  .all-app-btn {
    margin-left: 0;
  }
}

@media only screen and (max-width: 390px) {
  .section--hero::after,
  .section--hero::before {
    height: 150px;
  }

  .key-features-items img {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  .key-features-items {
    width: 100%;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  .key-features-items:last-child {
    border-bottom: none !important;
  }
}
/*web*/
/* 
.page-id-325 .inner--hero h6,
.page-id-325 h1 strong,
.page-id-325 .inner--hero h1 span,
.page-id-325 .section--web-analyst-block .web-analyst-content h6,
.page-id-325 .key-features-content h6 {
  color: var(--orange-color);
}

.page-id-325 .inner--hero {
  border-color: var(--orange-color);
}

.page-id-325 .web-analyst-content .btn {
  background-color: var(--orange-color);
  color: var(--white-color);
}
.page-id-325 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%23f87060"/></svg>');
}
.page-id-325 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%23f87060"/></svg>');
}

/*Google ads*/
/* .page-id-1002 .inner--hero h6,
.page-id-1002 h1 strong,
.page-id-1002 .inner--hero h1 span,
.page-id-1002 .section--web-analyst-block .web-analyst-content h6,
.page-id-1002 .key-features-content h6 {
  color: var(--blue-color);
}

.page-id-1002 .inner--hero {
  border-color: var(--blue-color);
}

.page-id-1002 .web-analyst-content .btn {
  background-color: var(--blue-color);
  color: var(--white-color);
}
.page-id-1002 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%234ca6ff"/></svg>');
}
.page-id-1002 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%234ca6ff"/></svg>');
} */
/*seo*/
/* .page-id-1168 .inner--hero h6,
.page-id-1168 h1 strong,
.page-id-1168 .inner--hero h1 span,
.page-id-1168 .section--web-analyst-block .web-analyst-content h6,
.page-id-1168 .key-features-content h6 {
  color: var(--green-color);
}

.page-id-1168 .inner--hero {
  border-color: var(--green-color);
}

.page-id-1168 .web-analyst-content .btn {
  background-color: var(--green-color);
  color: var(--white-color);
}
.page-id-1168 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%232bc3c4"/></svg>');
}
.page-id-1168 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%232bc3c4"/></svg>');
} */

/*meta*/
/* .page-id-1233 .inner--hero h6,
.page-id-1233 h1 strong,
.page-id-1233 .inner--hero h1 span,
.page-id-1233 .section--web-analyst-block .web-analyst-content h6,
.page-id-1233 .key-features-content h6 {
  color: var(--purple-color);
}

.page-id-1233 .inner--hero {
  border-color: var(--purple-color);
}

.page-id-1233 .web-analyst-content .btn {
  background-color: var(--purple-color);
  color: var(--white-color);
}

.page-id-1233 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%238f7ee0"/></svg>');
}
.page-id-1233 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%238f7ee0"/></svg>');
} */

/*Shopify*/
/* .page-id-1569 .inner--hero h6,
.page-id-1569 h1 strong,
.page-id-1569 .inner--hero h1 span,
.page-id-1569 .section--web-analyst-block .web-analyst-content h6,
.page-id-1569 .key-features-content h6 {
  color: var(--green-color);
}

.page-id-1569 .inner--hero {
  border-color: var(--green-color);
}

.page-id-1569 .web-analyst-content .btn {
  background-color: var(--green-color);
  color: var(--white-color);
}

.page-id-1569 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%232bc3c4"/></svg>');
}
.page-id-1569 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%232bc3c4"/></svg>');
} */

/*AI Content engine*/
/* .page-id-1592 .inner--hero h6,
.page-id-1592 h1 strong,
.page-id-1592 .inner--hero h1 span,
.page-id-1592 .section--web-analyst-block .web-analyst-content h6,
.page-id-1592 .key-features-content h6 {
  color: var(--orange-color);
}

.page-id-1592 .inner--hero {
  border-color: var(--orange-color);
}

.page-id-1592 .web-analyst-content .btn {
  background-color: var(--orange-color);
  color: var(--white-color);
}

.page-id-1592 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%23f87060"/></svg>');
}
.page-id-1592 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%23f87060"/></svg>');
} */

/*Amazon Ads Optimiser*/
/* .page-id-1643 .inner--hero h6,
.page-id-1643 h1 strong,
.page-id-1643 .inner--hero h1 span,
.page-id-1643 .section--web-analyst-block .web-analyst-content h6,
.page-id-1643 .key-features-content h6 {
  color: var(--purple-color);
}

.page-id-1643 .inner--hero {
  border-color: var(--purple-color);
}

.page-id-1643 .web-analyst-content .btn {
  background-color: var(--purple-color);
  color: var(--white-color);
}

.page-id-1643 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%238f7ee0"/></svg>');
}
.page-id-1643 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%238f7ee0"/></svg>');
} */

/*Klaviyo Email Marketing*/
/* .page-id-1664 .inner--hero h6,
.page-id-1664 h1 strong,
.page-id-1664 .inner--hero h1 span,
.page-id-1664 .section--web-analyst-block .web-analyst-content h6,
.page-id-1664 .key-features-content h6 {
  color: var(--blue-color);
}

.page-id-1664 .inner--hero {
  border-color: var(--blue-color);
}

.page-id-1664 .web-analyst-content .btn {
  background-color: var(--blue-color);
  color: var(--white-color);
}

.page-id-1664 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%234ca6ff"/></svg>');
}
.page-id-1664 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%234ca6ff"/></svg>');
} */

/*Tiktok Ads Optimizer*/
/* .page-id-1686 .inner--hero h6,
.page-id-1686 h1 strong,
.page-id-1686 .inner--hero h1 span,
.page-id-1686 .section--web-analyst-block .web-analyst-content h6,
.page-id-1686 .key-features-content h6 {
  color: var(--green-color);
}

.page-id-1686 .inner--hero {
  border-color: var(--green-color);
}

.page-id-1686 .web-analyst-content .btn {
  background-color: var(--green-color);
  color: var(--white-color);
}

.page-id-1686 .section .ai::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="24" viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9883 12.6005C12.2314 13.7544 11.0302 15.2201 10.1293 23.7649C10.0993 24.0456 9.70889 24.0456 9.67886 23.7649C8.77795 15.2201 7.57673 13.7856 0.819893 12.6005C0.549619 12.5694 0.549619 12.1639 0.819893 12.1328C7.57673 10.9789 8.77795 9.54437 9.67886 0.999564C9.70889 0.718895 10.0993 0.718895 10.1293 0.999564C11.0302 9.54437 12.2314 10.9477 18.9883 12.1328C19.2285 12.1639 19.2285 12.5382 18.9883 12.6005Z" fill="%232bc3c4"/></svg>');
}
.page-id-1686 .section .ai::before {
  background-image: url('data:image/svg+xml,<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87402 4.74866C4.7719 5.18525 4.17129 5.90252 3.81092 8.45972C3.7809 8.74039 3.3905 8.74039 3.36047 8.45972C3.0001 5.90252 2.3995 5.18525 0.29737 4.71747C0.0571268 4.6551 0.0571268 4.31206 0.29737 4.24969C2.36946 3.81309 3.0001 3.09583 3.36047 0.538626C3.3905 0.257958 3.7809 0.257958 3.81092 0.538626C4.17129 3.09583 4.7719 3.81309 6.87402 4.28088C7.11427 4.34325 7.11427 4.71747 6.87402 4.74866Z" fill="%232bc3c4"/></svg>');
} */

/* BTN */
/* .page-id-1592 .section .btn:before,
.page-id-1569 .section .btn:before,
.page-id-325 .section .btn:before,
.page-id-1002 .section .btn:before,
.page-id-1168 .section .btn:before,
.page-id-1233 .section .btn:before,
.page-id-1643 .section .btn:before,
.page-id-1664 .section .btn:before,
.page-id-1686 .section .btn:before {
  background-color: var(--dark-blue);
} */
