.button {
  border-radius: 1.5rem;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  width: fit-content;
  border-color: transparent;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.button:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

.primary-button {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  color: #ffffff;
}
.primary-button .icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  margin-right: 0.5rem;
}

.secondary-button {
  padding: 0.5rem 1.125rem;
  background-color: #ffffff;
  color: #1E803D;
  border: #1E803D 2px solid;
}
.secondary-button .icon {
  color: #ffffff;
  background-color: #1E803D;
}
.secondary-button:hover {
  background-color: #369152;
  border-color: #369152;
  color: #ffffff;
}
.secondary-button:hover .icon {
  background-color: #369152;
}

.accent-green {
  background-color: #1E803D;
}
.accent-green:hover {
  background-color: #369152;
}
.accent-green:hover .icon {
  color: #369152;
}
.accent-green .icon {
  color: #1E803D;
}

.accent-blue {
  background-color: #1A6EF4;
}
.accent-blue:hover {
  background-color: #4773BB;
}
.accent-blue:hover .icon {
  color: #4773BB;
}
.accent-blue .icon {
  color: #1A6EF4;
}

.accent-yellow {
  background-color: #F9BF0D;
}
.accent-yellow .icon {
  color: #F9BF0D;
}

.accent-white {
  background-color: #ffffff;
  color: #202142;
}
.accent-white:hover {
  background-color: #F9BF0D;
}
.accent-white:hover .icon {
  color: #F9BF0D;
}
.accent-white .icon {
  background-color: #202142;
  color: #ffffff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -1rem;
  margin-right: -1rem;
}
.row > * {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.col {
  flex: 1 0 0;
  width: auto;
}

.col-sm-1 {
  flex: 0 0 8.3333333333%;
  min-width: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    min-width: 8.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    min-width: 16.6666666667%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    min-width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    min-width: 33.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    min-width: 41.6666666667%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    min-width: 58.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    min-width: 66.6666666667%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 75%;
    min-width: 75%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    min-width: 83.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    min-width: 91.6666666667%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    min-width: 8.3333333333%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    min-width: 16.6666666667%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    min-width: 25%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    min-width: 33.3333333333%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    min-width: 41.6666666667%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    min-width: 50%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    min-width: 58.3333333333%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    min-width: 66.6666666667%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 75%;
    min-width: 75%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    min-width: 83.3333333333%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    min-width: 91.6666666667%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-12 {
    flex: 0 0 100%;
    min-width: 100%;
    margin-bottom: 0;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("/assets/fonts/icomoon.eot?7pmr69");
  src: url("/assets/fonts/icomoon.eot?7pmr69#iefix") format("embedded-opentype"), url("/assets/fonts/icomoon.ttf?7pmr69") format("truetype"), url("/assets/fonts/icomoon.woff?7pmr69") format("woff"), url("/assets/fonts/icomoon.svg?7pmr69#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-x:before {
  content: "\e91f";
  padding-top: 0.2rem;
}

.icon-phone-ring:before {
  content: "\e91e";
  font-size: 1rem;
  padding-top: 0.2rem;
}

.icon-visibility:before {
  content: "\e90a";
}

.icon-search:before {
  content: "\e90b";
}

.icon-scalable:before {
  content: "\e90c";
}

.icon-refresh:before {
  content: "\e90e";
}

.icon-profit:before {
  content: "\e90f";
}

.icon-login:before {
  content: "\e910";
}

.icon-location:before {
  content: "\e911";
}

.icon-linkedin:before {
  content: "\e912";
}

.icon-facebook:before {
  content: "\e913";
}

.icon-email:before {
  content: "\e914";
  font-size: 1rem;
}

.icon-code:before {
  content: "\e915";
}

.icon-check-circle:before {
  content: "\e916";
}

.icon-web-link:before {
  content: "\e917";
}

.icon-new-web:before {
  content: "\e918";
}

.icon-webpages:before {
  content: "\e919";
}

.icon-check-circle-solid:before {
  content: "\e91a";
}

.icon-automation:before {
  content: "\e91b";
}

.icon-sitemap:before {
  content: "\e91c";
}

.icon-sitemap-solid:before {
  content: "\e91d";
}

.icon-personalization:before {
  content: "\e900";
}

.icon-resources:before {
  content: "\e901";
}

.icon-commitment:before {
  content: "\e902";
}

.icon-deal:before {
  content: "\e903";
}

.icon-user-engagement:before {
  content: "\e904";
}

.icon-save-time:before {
  content: "\e905";
}

.icon-boost-visibility:before {
  content: "\e906";
}

.icon-indexing-bee:before {
  content: "\e907";
}

.icon-seo-validator:before {
  content: "\e908";
}

.icon-optimizer:before {
  content: "\e909";
}

.icon-check-point:before {
  content: "\e90d";
}

.icon-arrow-right:before {
  content: "\ea3c";
}

.icon-youtube:before {
  content: "\ea9d";
  font-size: 1.2rem;
  padding-top: 0.1rem;
}

.icon-close-solid:before {
  content: "\e920";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-smart-artical:before {
  content: "\e005";
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  html {
    font-size: 22px;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 26px;
  }
}

.dbl {
  font-family: "Poppins";
  margin: 0;
}

ul, li {
  list-style: none;
}

ul, a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  color: inherit;
}

.container-fluid {
  margin: auto;
  position: relative;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.container {
  margin: auto;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 85%;
    margin: auto;
  }
}

.p-t-1 {
  padding-top: 1rem;
}

.text-underline {
  text-decoration: underline;
}

.flex-end {
  display: flex;
  justify-content: end;
  padding-right: 0;
}

.sub-text {
  font-size: 1.25rem;
}

.content-wrapper {
  padding: 3rem 0;
}

.center-content-wrapper .title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 85%;
  margin: auto;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .center-content-wrapper .title-wrapper {
    padding-bottom: 2rem;
    max-width: 40rem;
  }
}
.center-content-wrapper .title-wrapper p {
  margin-top: 0px;
}

.dark-banner-block {
  background-color: #161630;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0px 20px #F9BF0D;
  color: white;
}
.dark-banner-block .dark-banner-column {
  margin: auto;
}

.w-100 {
  width: 100%;
  height: auto;
}

.header {
  transition: all 200ms ease-in-out;
  position: fixed;
  z-index: 99999999;
  width: 100%;
  padding-top: 2rem;
}

.navbar {
  height: 3.5rem;
  padding: 0 1rem;
  border-radius: 1rem;
  display: flex;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
}
@media (min-width: 992px) {
  .navbar {
    height: auto;
    padding: 0 1.5rem;
  }
}
.navbar .nav-wrapper {
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991.98px) {
  .navbar .nav-wrapper.toggled {
    display: flex;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    width: 100%;
    top: 0;
    position: fixed;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding-top: 5.5rem;
    box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
  }
  .navbar .nav-wrapper.toggled .menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .nav-wrapper.toggled .menu .menu-link {
    height: 2.5rem;
    flex-direction: row;
    align-items: center;
  }
  .navbar .nav-wrapper.toggled .menu .menu-link a {
    align-content: center;
  }
  .navbar .nav-wrapper.toggled .menu .menu-link a:hover {
    color: #1A6EF4;
  }
}
@media (min-width: 992px) {
  .navbar .nav-wrapper {
    visibility: visible;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    opacity: 1;
  }
  .navbar .nav-wrapper .menu-title:hover {
    color: #1A6EF4;
  }
}
.navbar .menu {
  align-items: center;
  display: flex;
}
.navbar .menu .menu-item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #B3B3B3;
}
.navbar .menu .menu-item:last-child {
  border-bottom: 0;
}
.navbar .menu .menu-item .menu-expand-button {
  width: 3rem;
  height: 2rem;
}
.navbar .menu .menu-item .menu-expand-icon {
  position: absolute;
  content: " ";
  right: 1.85rem;
  z-index: -1;
  top: 0.35rem;
  transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-90deg);
  width: 1.85rem;
  fill: #5B5656;
}
@media (min-width: 768px) {
  .navbar .menu .menu-item .menu-expand-icon {
    right: 2.7rem;
  }
}
@media (min-width: 992px) {
  .navbar .menu .menu-item {
    display: flex;
    height: 3.35rem;
    border-bottom: 0;
  }
  .navbar .menu .menu-item:hover .sub-menu-extra-wide {
    display: flex;
    visibility: visible;
  }
  .navbar .menu .menu-item .menu-expand-button {
    display: none;
  }
}
.navbar .menu .menu-item .sub-menu-extra-wide {
  display: none;
  position: absolute;
  top: 3.35rem;
  width: 40rem;
  left: -10rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #B3B3B3;
  visibility: hidden;
  margin-left: -2.5rem;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block {
  padding: 1.5rem;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block-wide {
  width: 65%;
  border-right: 1px solid #B3B3B3;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block-narrow {
  width: 35%;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block-narrow .sub-menu-item {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 1rem;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block-narrow .sub-menu-item.block-green {
  background-color: #A9DCB9;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-block-narrow .sub-menu-item.block-yellow {
  background-color: #FDE59E;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-section-title {
  font-size: 1rem;
  color: #1E803D;
  margin-bottom: 0;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-item {
  padding-top: 1rem;
  line-height: 1rem;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-item.block-green {
  background-color: #A9DCB9;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-item.block-yellow {
  background-color: #FDE59E;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-link {
  display: grid;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-link label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 0.85rem;
  margin-bottom: 0.5rem;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-link:hover {
  cursor: pointer;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-link:hover label {
  color: #1A6EF4;
  cursor: pointer;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-link:hover .sub-menu-para {
  color: #000000;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-style {
  margin: 0;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-para {
  font-size: 0.65rem;
  color: #5B5656;
  transition: color 0.3s;
}
.navbar .menu .menu-item .sub-menu-extra-wide .sub-menu-para:hover {
  color: black !important;
}
.navbar .menu .menu-link {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  color: #000;
  font-weight: 600;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .navbar .menu .menu-link {
    justify-content: center;
    padding: 0 0.75rem;
  }
}
@media (min-width: 1500px) {
  .navbar .menu .menu-link {
    padding: 0 1rem;
  }
}
.navbar .menu .sub-menu-mobile {
  display: none;
  border-top: 1px solid #B3B3B3;
}
.navbar .menu .sub-menu-mobile .sub-menu-item {
  padding: 0.5rem 2rem 0.5rem 2rem;
}
.navbar .menu .sub-menu-mobile .sub-menu-item:last-child {
  padding-bottom: 1rem;
}
.navbar .menu .sub-menu-mobile .sub-menu-item:first-child {
  padding-top: 1rem;
}
.navbar .menu .sub-menu-mobile .sub-menu-item a::before {
  display: inline;
  content: "-";
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .navbar .menu .sub-menu-mobile {
    display: none;
  }
}
.navbar .button-container {
  display: flex;
  padding: 1rem;
}
.navbar .button-container .button-wrapper .button {
  height: 2.5rem;
}
.navbar .button-container .button-wrapper .primary-button {
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  margin-left: 0.3rem;
}
.navbar .button-container .button-wrapper .primary-button .button-icon {
  display: none;
}
.navbar .button-container .button-wrapper .secondary-button {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
@media (min-width: 992px) {
  .navbar .button-container {
    padding: 0;
  }
  .navbar .button-container .button-wrapper .primary-button {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
  .navbar .button-container .button-wrapper .primary-button .button-icon {
    display: block;
  }
  .navbar .button-container .button-wrapper .secondary-button {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}
.navbar .nav-logo {
  display: flex;
}
.navbar .nav-logo img {
  width: 8rem;
  height: 3.35rem;
  z-index: 1;
  align-self: center;
}
.navbar .hamburger {
  display: block;
  padding: 22px 0;
}
.navbar .hamburger span {
  border-radius: 3px;
  display: block;
  height: 3px;
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
  background-color: #5B5656;
}
.navbar .hamburger span:nth-child(2) {
  margin: 4px 0;
}
.navbar .hamburger.toggled span:first-child {
  transform: translateY(6px) rotate(45deg);
}
.navbar .hamburger.toggled span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.toggled span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 992px) {
  .navbar .hamburger {
    display: none;
  }
}
.navbar .language-switcher {
  position: relative;
  display: flex;
  padding-bottom: 1rem;
  padding-left: 1.1rem;
}
.navbar .language-switcher .dropdown {
  position: relative;
  display: inline-block;
}
.navbar .language-switcher .dropdown .dropdown-button {
  border: none;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
}
@media (min-width: 1500px) {
  .navbar .language-switcher .dropdown .dropdown-button {
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 1200.98px) {
  .navbar .language-switcher .dropdown .dropdown-button span {
    display: none;
  }
}
.navbar .language-switcher .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  border: none;
  border-radius: 0.3rem;
  width: 100%;
  z-index: 1;
  max-height: 12.5rem;
  overflow-y: auto;
}
.navbar .language-switcher .dropdown .dropdown-item {
  padding: 0.62rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.navbar .language-switcher .dropdown .dropdown-item img {
  width: 1.25rem;
  height: 0.94;
  margin-right: 0.62rem;
}
.navbar .language-switcher .flag-icon {
  width: 1.3rem;
  margin-right: 0.22rem;
}
@media (min-width: 992px) {
  .navbar .language-switcher {
    padding-left: 0.75;
    padding-bottom: 0;
  }
}

.footer {
  color: white;
}
.footer .subscribe {
  text-align: center;
}
.footer .subscribe .subscribe-text {
  margin-top: 0;
}
.footer .subscribe .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer .subscribe {
    text-align: unset;
  }
}
.footer .subscription-alignment {
  display: block;
}
@media (min-width: 576px) {
  .footer .subscription-alignment {
    display: flex;
  }
}
@media (min-width: 992px) and (max-width: 1119.98px) {
  .footer .subscription-alignment {
    display: block;
  }
}
.footer .subscribtion-style {
  height: 2.7rem;
  border-radius: 1.5rem;
  width: 100%;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  margin-right: 1.1rem;
  border: none;
}
@media (min-width: 576px) {
  .footer .subscribtion-style {
    width: calc(100% - 9rem);
  }
}
@media (min-width: 992px) and (max-width: 1119.98px) {
  .footer .subscribtion-style {
    width: 100%;
  }
}
.footer .honeypot {
  display: none;
}
.footer .message-alignment {
  margin-top: 1rem;
}
.footer .subscribe-button {
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .footer .subscribe-button {
    width: 9rem !important;
    margin-top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1119.98px) {
  .footer .subscribe-button {
    margin-top: 1rem;
  }
}
.footer .button-alignment {
  justify-content: flex-start !important;
}

.footer-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #161630;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .footer-container {
    padding-bottom: 5.3rem;
  }
}
.footer-container .content-block {
  font-size: 0.875rem;
}
.footer-container .content-block p {
  margin: 0;
}
.footer-container .footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 1rem;
}
.footer-container .social-link-block {
  display: flex;
  padding-top: 1rem;
}
.footer-container .social-link-block a {
  margin-right: 0.5rem;
}
.footer-container .social-link-block .icon {
  background: #ffffff;
  color: #161630;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
}
.footer-container .social-link-block .icon.icon-x {
  font-size: 0.75rem;
}
.footer-container .social-link-block .icon.icon-facebook, .footer-container .social-link-block .icon.icon-linkedin {
  font-size: 1.2rem;
}
.footer-container .social-link-block .icon:hover {
  color: #1A6EF4;
}
.footer-container .social-link-block .icon-padding {
  padding-top: 0.3rem;
}
.footer-container a:hover {
  color: #1A6EF4;
}

.footer-row-1 .link-list-wrapper {
  padding-top: 0.75rem;
}
@media (min-width: 992px) {
  .footer-row-1 .link-list-wrapper {
    padding-top: 0;
  }
}

.footer-row-2 .text {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .footer-row-2 .text {
    padding-top: 0;
  }
}

.copywrite-container {
  background-color: #202142;
  font-size: 0.775rem;
  padding: 0.75rem 0rem;
  text-align: center;
}
@media (min-width: 768px) {
  .copywrite-container {
    text-align: left;
  }
  .copywrite-container .copywrite-links {
    display: flex;
    justify-content: end;
  }
  .copywrite-container .copywrite-links a:hover {
    color: #1A6EF4;
  }
}

.link-list a {
  color: #ffffff;
  font-size: 0.775rem;
}

.order-last {
  order: 12;
}
@media (min-width: 992px) {
  .order-last {
    order: 0;
  }
}

.payment-methods {
  padding-top: 0.5rem;
  display: block;
  align-items: center;
}
@media (min-width: 768px) {
  .payment-methods {
    position: absolute;
  }
}

.payment-methods img {
  height: 1.7rem;
  width: 2.6rem;
  border-radius: 0.2rem;
  object-fit: cover;
}

@media (min-width: 1201px) {
  .footer-ml {
    margin-left: 2rem;
  }
}

.contact .col-bottom {
  order: 12;
}
@media (min-width: 992px) {
  .contact .col-bottom {
    order: 0;
  }
}
@media (min-width: 992px) {
  .contact .contact-details {
    padding-left: 2rem;
  }
}
.contact .contact-details .title {
  margin-top: 0;
}
.contact .contact-info {
  color: #5B5656;
}
@media (min-width: 992px) {
  .contact .contact-info {
    font-size: 0.875rem;
  }
}
@media (min-width: 1500px) {
  .contact .contact-info {
    font-size: 1rem;
  }
}
.contact .contact-info .contact-item {
  display: flex;
  margin-bottom: 0.5rem;
}
.contact .contact-info .contact-item .icon {
  display: flex;
  justify-content: center;
  margin-right: 0.5rem;
  color: #000000;
  margin-top: 0.25rem;
}
.contact .form-group {
  margin-bottom: 1.25rem;
}
.contact .form-control {
  font-family: "Poppins";
  width: 100% !important;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact .form-label {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.contact .spinner {
  display: none;
}

.message {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  display: none;
  font-size: 0.775rem;
}
.message.error-message {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}
.message.success-message {
  color: #369152;
  background-color: #A9DCB9;
  border: 1px solid #369152;
}
.message.visible {
  display: block;
}

.spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner-button {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #1A6EF4;
  width: 16px;
  height: 16px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  display: inline-block;
}

.disabled-button {
  background-color: #cccccc;
  color: #757575;
  cursor: not-allowed;
  pointer-events: none;
}

.captcha-wrapper {
  display: flex;
  color: #5B5656;
  flex-direction: column;
}
@media (min-width: 576px) {
  .captcha-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.captcha-wrapper label {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .captcha-wrapper label {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .captcha-wrapper .captcha-number {
    margin: 0 0.25rem;
  }
}
.captcha-wrapper .captcha-input {
  width: 75px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  font-size: 0.875rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #757575;
  content: "/";
}
.breadcrumb .breadcrumb-item a {
  color: #1A6EF4;
}
.breadcrumb .breadcrumb-item.active {
  color: #757575;
}

.bg-ovel {
  background: rgb(238, 241, 246);
  background: linear-gradient(90deg, rgb(238, 241, 246) 44%, rgb(238, 241, 246) 90%);
  border-bottom-left-radius: 32%;
  border-bottom-right-radius: 59%;
  padding-bottom: 3rem;
}

.hero .container {
  padding-top: 8rem;
}
.hero .hero-image {
  width: 100%;
  height: auto;
}
.hero .heading-wrapper {
  display: block;
}
@media (min-width: 576px) {
  .hero .heading-wrapper {
    display: flex;
    gap: 1rem;
  }
}
.hero .label-wrapper {
  margin-top: 0.6rem;
}
@media (max-width: 575.98px) {
  .hero .label-wrapper {
    margin-bottom: 2rem;
  }
}
.hero .coming-soon {
  background-color: #F9BF0D;
  color: black;
  padding: 0.2rem 0.5rem;
  border-radius: 1.5rem;
}
.hero .breadcrumb {
  height: 2rem;
}
@media (min-width: 420px) {
  .hero .breadcrumb {
    height: auto;
  }
}
.hero .heading-wrapper {
  height: 4rem;
}
@media (min-width: 420px) {
  .hero .heading-wrapper {
    height: auto;
  }
}

.main-content .main-title {
  padding-bottom: 0;
  margin-bottom: 1rem;
}
.main-content .main-para {
  font-size: 1.25rem;
  text-align: center;
  margin: 0rem;
  color: #5B5656;
}
.main-content .line-space {
  margin-bottom: 0rem;
}

.website-audit .content-wrapper {
  padding-top: 2rem;
}
.website-audit .block-image {
  width: 100%;
  object-fit: cover;
  max-width: 25rem;
  height: auto;
  padding: 2rem;
}
.website-audit .image-align {
  text-align: center;
}
.website-audit .guidance-item {
  display: flex;
  padding: 1rem 0;
  position: relative;
}
.website-audit .guidance-icon-wrapper {
  padding-top: 0.5rem;
}
.website-audit .guidance-icon {
  border: 0.35rem white solid;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
  color: #ffffff;
  font-size: 1.5rem;
}
.website-audit .guidance-icon.wrapper-blue {
  background-color: #1A6EF4;
}
.website-audit .guidance-icon.wrapper-green {
  background-color: #1E803D;
}
.website-audit .guidance-icon.wrapper-yellow {
  background-color: #F9BF0D;
}
.website-audit .guidance-icon.wrapper-gray {
  background-color: #757575;
}
.website-audit .guidance-content {
  margin-left: 1rem;
}
.website-audit .guidance-content p {
  margin: 0rem;
}
.website-audit .guidance-content .feature-title {
  margin-bottom: 0rem;
}
.website-audit .chain {
  border-left: 0.175rem dashed black;
  position: absolute;
  z-index: 0;
  left: 1.5rem;
}
.website-audit .chain.chain-bottom {
  height: calc(100% - 4.8rem);
  bottom: 0rem;
}
.website-audit .chain.chain-top {
  top: 0.18rem;
  height: 1.2rem;
}
.website-audit .guidance-block {
  display: flex;
  justify-content: center;
}
.website-audit .content-item {
  display: flex;
}
.website-audit .content-item .content-title {
  margin-bottom: 0.5rem;
}
.website-audit .content-item .content-text {
  margin-top: 0rem;
}
.website-audit .content-item .icon {
  margin-top: 0.2rem;
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: #1E803D;
}

.smat-audit {
  background-color: #F3F3F3;
}
@media (min-width: 992px) {
  .smat-audit .box-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.smat-audit .box {
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border-radius: 1rem;
  height: 100%;
  background-color: #ffffff;
  border: 2px solid #1E803D;
}
@media (min-width: 768px) {
  .smat-audit .box {
    height: 8rem;
  }
}
@media (min-width: 992px) {
  .smat-audit .box {
    height: 16rem;
  }
}
@media (min-width: 1500px) {
  .smat-audit .box {
    height: 14rem;
  }
}
.smat-audit .box .box-icon {
  min-height: 4.5rem;
  width: 4.5rem;
  background-color: #1E803D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.smat-audit .box .box-icon .icon {
  color: #ffffff;
  font-size: 2.5rem;
}
.smat-audit .box .box-title {
  margin-top: 1rem;
}
.smat-audit .box .list-item {
  display: flex;
}
.smat-audit .box .list-item p {
  margin: 0;
}
.smat-audit .box .list-item .icon {
  color: #757575;
  padding: 0.25rem 0.75rem 0 0;
}
.smat-audit .title-pd {
  padding-top: 2rem;
}

.line-space {
  line-height: 2.3rem;
}
@media (min-width: 599px) {
  .line-space {
    line-height: 1.85rem;
  }
}

.features .feature-title {
  padding-top: 1rem;
  margin-bottom: 0;
}
.features .problem-image {
  display: none;
}
@media (min-width: 992px) {
  .features .problem-image {
    display: block;
    max-width: 714px;
    padding: 2rem;
  }
}
.features .main-para {
  font-size: 1.25rem;
  text-align: center;
  margin: 0rem;
  padding-bottom: 3rem;
  color: #5B5656;
  height: 9rem;
}
@media (min-width: 420px) {
  .features .main-para {
    height: auto;
  }
}
.features .content-item {
  display: flex;
}
.features .content-item .content-title {
  margin-bottom: 0.5rem;
}
.features .content-item .content-text {
  margin-top: 0.5rem;
}
.features .content-item .icon {
  margin-top: 0.2rem;
  margin-right: 0.75rem;
  font-size: 1.5rem;
  color: #1A6EF4;
}

.works {
  background-color: #F3F3F3;
}
.works .process-block {
  padding-top: 1rem;
}
.works .process-block h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.works .process-block ul {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}
.works .process-block .process-item {
  width: 100%;
  max-width: 30rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row-reverse;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .works .process-block .process-item {
    display: inline;
    width: calc(20% - 1rem);
    padding: 0;
    margin-left: unset;
    margin-right: unset;
  }
}
.works .process-block .card {
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 1.75rem 1rem;
  text-align: center;
  width: 65%;
}
@media (min-width: 992px) {
  .works .process-block .card {
    width: 100%;
    height: calc(100% - 5.75rem);
  }
}
.works .process-block .card p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.works .process-block .card .icon {
  margin-top: 0.2rem;
  font-size: 1.45rem;
  color: #1A6EF4;
}
.works .process-block .step-number-block {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  justify-content: center;
  width: 35%;
}
.works .process-block .step-number-block .step-number {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  width: 2rem;
}
.works .process-block .step-number-block .step-number-bullet {
  width: 1rem;
  height: 1rem;
  background: #1A6EF4;
  border: 0.25rem solid #CBDBF6;
  border-radius: 50%;
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .works .process-block .step-number-block {
    width: 100%;
    padding-bottom: 2rem;
    flex-direction: column;
  }
  .works .process-block .step-number-block .step-number-bullet {
    margin-right: 0;
  }
}
.works .process-block .step-number-block .chain {
  position: absolute;
  border-left: 1px solid #B3B3B3;
  height: calc(50% + 0.75rem);
  right: calc(50% + 1.465rem);
}
.works .process-block .step-number-block .chain.chain-left {
  bottom: -1rem;
}
.works .process-block .step-number-block .chain.chain-right {
  top: -1rem;
}
@media (min-width: 992px) {
  .works .process-block .step-number-block .chain {
    border-left: 0;
    border-bottom: 1px solid #B3B3B3;
    width: calc(50% + 1rem);
    bottom: 2.5rem !important;
    top: unset !important;
    height: unset;
  }
  .works .process-block .step-number-block .chain.chain-left {
    right: -1.25rem;
  }
  .works .process-block .step-number-block .chain.chain-right {
    left: -1.25rem;
  }
}

.benifits .fearured-list-block .image-block {
  background-color: #F3F3F3;
  padding: 2rem;
  height: 100%;
}
.benifits .fearured-list-block .image-border {
  border-radius: 1rem;
}
.benifits .fearured-list-block .fearured-list-item {
  margin-bottom: 1.5rem;
  min-height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
}
.benifits .fearured-list-block .fearured-list-item .fearured-list-icon {
  min-width: 3.5rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.2), 2px 6px 50px 2px rgba(0, 0, 0, 0.19);
}
.benifits .fearured-list-block .fearured-list-item .fearured-list-icon .icon {
  color: #1E803D;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .benifits .fearured-list-block .fearured-list-item .fearured-list-icon {
    display: none;
  }
}
@media (min-width: 576px) {
  .benifits .fearured-list-block .fearured-list-item .fearured-list-icon {
    min-height: 9rem;
  }
}
@media (min-width: 992px) {
  .benifits .fearured-list-block .fearured-list-item .fearured-list-icon {
    min-height: 7.3rem;
  }
}
.benifits .fearured-list-block .fearured-list-item .fearured-list-content {
  padding: 1rem;
}
.benifits .fearured-list-block .fearured-list-item .fearured-list-text {
  margin: 0;
}
@media (min-width: 992px) {
  .benifits .fearured-list-block .fearured-list-item:last-child {
    margin-bottom: 0;
  }
}
.benifits .title-mr {
  margin-top: 3rem;
}

.get-started {
  background-color: #F3F3F3;
}

.smart-article-price .pricing-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 1284px) {
  .smart-article-price .pricing-wrapper {
    justify-content: center;
  }
}
.smart-article-price .pricing-card {
  display: flex;
  align-items: center;
}
.smart-article-price .price-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid #1A6EF4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.smart-article-price .price-circle .currency {
  font-size: 1rem;
  vertical-align: top;
}
.smart-article-price .price-circle .price {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
.smart-article-price .price-circle .per-article {
  font-size: 0.75rem;
  font-weight: normal;
}
.smart-article-price .price-info {
  border-right: 1px solid #1A6EF4;
  border-top-right-radius: 1rem;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  font-weight: bold;
  border-top: 1px solid #1A6EF4;
  border-bottom: 1px solid #1A6EF4;
  border-bottom-right-radius: 1rem;
  min-width: 281px;
  margin-left: -9px;
}
@media (max-width: 575.98px) {
  .smart-article-price .price-info {
    min-width: unset;
  }
}
.smart-article-price .register {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
  text-align: center;
}
.smart-article-price .register .article-reg-button {
  display: flex;
  justify-content: center;
}
.smart-article-price .register .article-reg-button .button {
  max-height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 575.98px) {
  .smart-article-price .register {
    flex-direction: column;
  }
}