:root {
  --black: #000;
  --light-black: #333333;
  --white: #fff;
  --light-blue: #486fa4;
  --dark-blue: #213265;
  --paragraph: #21243a;
  --sky-blue: #0083ff;
  --orange: #f16f1d;
  --brown: #522b25;
  --gray: #adaba2;
  --green: #7a8c22;
  --rhythm: #89779d;
  --fluorescent-blue: #29f1fd;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0%;
}

section p {
  font-family: "Inter", sans-serif;
  line-height: 26px;
  color: var(--light-black);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  margin: 0px;
}

ul {
  margin: 0px !important;
  padding-left: 0px !important;
}

li {
  list-style: none;
}

a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

i {
  transition: unset;
}

:focus {
  outline: 0px !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--dark-blue);
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/* BOOTSTRAP CSS START  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}

@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/* BOOTSTRAP CSS END  */

/* GLOBAL CSS START HERE  */

.section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.dark-blue {
  background-color: var(--dark-blue);
}

.sky-blue {
  background: var(--sky-blue);
}

.orange {
  background-color: var(--orange);
}

.brown {
  background-color: var(--brown);
}

.gray {
  background-color: var(--gray);
}

.green {
  background-color: var(--green);
}

.rhythm {
  background-color: var(--rhythm);
}

.fluorescent-blue {
  background-color: var(--fluorescent-blue);
}

.clr-orange {
  color: var(--orange);
}

.clr-blue {
  color: var(--dark-blue);
}

.row.footer-icon-row {
  margin-bottom: 0 !important;
}

.head {
  position: relative;
  margin: 0 0 4rem;
  padding: 0 0 1.5rem;
}

@media (min-width: 1200px) {
  .head-center {
    max-width: 80%;
    margin: 0 auto 3rem;
  }

  .head-50 {
    width: 50%;
  }

  .head-60 {
    width: 60%;
  }

  .head-70 {
    width: 70%;
  }

  .head-80 {
    width: 80%;
  }
}

.head h2 {
  color: var(--dark-blue);
  /* margin: 0 0 1.5rem; */
}

.head h2,
.head h2 span {
  position: relative;
  font-size: 3.125rem;
  font-weight: 800;
  line-height: 1;
}

.head h2 span {
  color: var(--orange);
}

.head:before {
  position: absolute;
  content: "";
  background-color: #c0c0c0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  margin: auto;
}

.head.head-center:before {
  margin: auto;
}
.head:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -3px;
  z-index: 9;
}
.head p {
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 500;
}

.head p a {
  text-decoration: underline !important;
  color: var(--orange);
}

.head p:last-child {
  margin-bottom: 0;
}

.head:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  right: 0;
  bottom: -3px;
  z-index: 9;
}

@media (min-width: 120px) {
  .width-50 {
    max-width: 50%;
  }

  .width-60 {
    max-width: 60%;
  }

  .width-70 {
    max-width: 70%;
  }

  .width-75 {
    max-width: 75%;
  }

  .width-80 {
    max-width: 80%;
  }

  .width-85 {
    max-width: 85%;
  }

  .width-90 {
    max-width: 90%;
  }

  .width-95 {
    max-width: 95%;
  }
}

.m-auto {
  margin: auto;
}

.div-CTA {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
  margin: 3rem 0 0;
}

.div-main-cta {
  font-family: "Inter", sans-serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  padding: 1rem 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5rem;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.div-main-cta.btn-orange {
  background: var(--orange);
  box-shadow: 2px 2px 20px rgb(241 111 29 / 40%);
}

.div-main-cta.btn-orange:hover {
  background: var(--dark-blue);
  box-shadow: unset;
}
.div-main-cta.btn-sky {
  background: var(--sky-blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgb(12 124 222 / 50%);
}
.div-main-cta.btn-sky:hover {
  background: var(--dark-blue);
  box-shadow: unset;
}
.div-main-cta.btn-blue {
  background: var(--dark-blue);
  box-shadow: 2px 2px 20px rgb(14 46 103 / 40%);
}

.div-main-cta.btn-blue:hover {
  background: var(--orange);
  box-shadow: unset;
}

.div-main-cta.btn-transparent.btn-border-blue {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.div-main-cta i {
  width: 25px;
  height: 25px;
  background: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}

.div-main-cta.btn-transparent.btn-border-blue:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.div-main-cta.btn-transparent.btn-border-blue:hover i {
  background: var(--white);
  color: var(--dark-blue);
}

.talk-phone {
  position: relative;
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  grid-gap: 15px;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  padding-left: 45px;
}

.talk-phone:before {
  position: absolute;
  content: "\f095";
  font-family: "FontAwesome";
  left: 0px;
  width: 35px;
  height: 35px;
  background: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.talk-phone:hover {
  color: var(--orange);
}

.talk-phone:hover:before {
  background: var(--orange);
}
section.diamond {
  padding-top: 5rem;
  margin-top: 3.75rem;
  overflow: visible;
  border-top: 1px solid #b9b9b9;
}

img.diamond {
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 9;
}

@media screen and (min-width: 991px) {
  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

/* GLOBAL CSS END HERE  */

/* SECTION ONE CSS START HERE */

.homeBanner.s1 {
  position: relative;
  background-image: url("/img/global/coverBanner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4rem 0;
}
.s1 .row {
  align-items: center;
}
.s1 h1 {
  position: relative;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
  margin: 0 0 1.5rem;
  padding: 0 0 1.5rem;
}

.s1 h1 span {
  color: var(--orange);
}

.s1 p {
  color: var(--paragraph);
}

.s1 h1:before {
  position: absolute;
  content: "";
  background-color: #c0c0c0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
}

.s1 h1:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -3px;
  z-index: 9;
}
.s1 .div-CTA {
  justify-content: flex-start;
}
.s1 img.bannerImage {
  display: none;
}
@media (min-width: 1200px) {
  .s1 .row {
    height: 500px;
  }
  .s1 img.bannerImage {
    display: block;
    top: 3%;
    position: absolute;
  }
  .s1 .div-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .s1 .div-text {
    padding-right: 4rem;
  }
}

.s1 .Form-box {
  max-width: 400px;
  width: 100%;
  background-color: var(--white);
  border-radius: 0 0 8px 8px;
  padding: 1.25rem 1.25rem 20px;
  border-top: 5px solid #4385f4;
  margin: 0 auto;
  display: block;
}
.s1 .Form-box:before {
  content: "";
  position: absolute;
  background-color: #f2701d;
  height: 10px;
  width: 100%;
  top: -15px;
  left: 0;
  border-radius: 8px 8px 0 0;
}

.s1 .Form-box h2 {
  margin: 0;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  padding: 25px 0 30px;
  font-weight: 800;
}
.s1 .Form-box h2 span {
  font-weight: 800;
}
.s1 .Form-box .form-group {
  position: relative;
  margin-bottom: 15px;
}
.s1 .Form-box .form-group i {
  position: absolute;
  font-size: 18px;
  color: var(--orange);
  left: 10px;
  height: 25px;
  width: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  line-height: 25px;
}
.s1 .Form-box .form-control {
  height: 40px;
  padding-left: 40px;
  background-color: #f3f3f3;
  font-size: 14px;
  color: #a9a9a9;
  border: 1px solid #f6f4f4;
  box-shadow: none;
}
.s1 .Form-box .form-control::placeholder {
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: #a9a9a9;
}
.s1 .Form-box .button-box {
  text-align: center;
  margin: 1.25rem 0 0;
}
.s1 .Form-box .button-box a {
  background: var(--orange);
  color: var(--white);
  padding: 14px 40px;
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgb(241 111 29 / 40%);
}
.s1 .Form-box .button-box a i {
  font-size: 14px;
}
.s1 .Form-box .button-box a:hover {
  background: var(--dark-blue);
  box-shadow: 2px 2px 6px rgb(0 22 94 / 40%);
}
.s1 .Form-box {
  position: relative;
}

.homeBanner .statsRow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  margin: 1.5rem 0 0;
  z-index: 9;
}
.homeBanner .statsRow .statsBox {
  flex: 1;
}
.homeBanner .statsBox h2 {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: revert;
  color: var(--dark-blue);
}

.homeBanner .statsBox p {
  font-weight: 500;
  color: var(--dark-blue);
}
.waves {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

.s2.diamond {
  margin: 0;
}
@media (min-width: 768px) {
  .s2 .div-text .head:before {
    width: 100%;
    right: unset;
  }
}

.s2 .row {
  align-items: center;
}
.s2 .div-text p {
  color: var(--paragraph);
}
.s2 .div-CTA {
  justify-content: flex-start;
}

.s2 .div-img {
  text-align: center;
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

.s3 {
  background: #fdf5f0;
}

.s3 .div-text {
  max-width: 1000px;
  margin: auto;
}

.s3 .div-text .keywords-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.s3 .div-text p {
  color: var(--paragraph);
}

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */

.s4 {
  background-image: url("/img/local-business-seo-ny/how-does-it-work.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5rem 0 7rem;
}

.s4 .head *:not(h2 span) {
  color: var(--white);
}

.s4 .head p {
  margin: 0;
}

.s4 .head h2 {
  margin: 0 0 1.5rem;
}
.s4 .rows-wrap {
  max-width: 950px;
  margin: auto;
}
.s4 .row {
  align-items: center;
}

.s4 .div-count span {
  font-family: "Inter", sans-serif;
  font-size: 9.375rem;
  font-weight: 800;
  color: var(--orange);
}

.s4 .div-text * {
  color: var(--white);
}

.s4 .div-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.s4 .div-text p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.s4 .div-shape {
  text-align: center;
}
.rows-wrap .row:nth-child(even) .div-shape img {
  transform: scaleX(-1);
}

.s4 .div-CTA .talk-phone {
  color: var(--white);
}

.s4 .div-CTA .talk-phone:before {
  background: var(--white);
  color: var(--dark-blue);
}

.s4 .div-CTA .talk-phone:hover {
  color: var(--orange);
}
.s4 .div-CTA .talk-phone:hover:before {
  background: var(--orange);
  color: var(--white);
}

.s4 .div-CTA .div-main-cta.btn-sky:hover {
  background: var(--white);
  color: var(--dark-blue);
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */

.s5.diamond {
  margin: 0;
}

.s5 .head {
  margin: 0 0 2rem;
}

.s5 .head span {
  display: block;
  color: var(--sky-blue);
}

.s5 .head:before {
  right: unset;
  width: 50%;
}

.s5 .head:after {
  right: unset;
  left: 286.5px;
}
.s5 .row {
  position: relative;
  align-items: center;
}
.s5 .div-text p {
  color: var(--paragraph);
}

.s5 .div-text p i {
  color: var(--orange);
}

@media (min-width: 1200px) {
  .s5 .div-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.features-sb {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
}
.features-sb > h3 {
  font-size: 1.625rem;
  text-align: center;
  font-weight: 800;
  color: var(--paragraph);
  max-width: 980px;
  margin: 2rem auto 3rem;
}
.features-sb table {
  border: 1px solid #dcdcdc;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

.features-sb th {
  border: 1px solid #dcdcdc;
  padding: 1rem;
}

.features-sb td {
  position: relative;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  padding: 1rem;
}
.features-sb tbody tr td:nth-child(2),
.features-sb tbody tr td:nth-child(3) {
  font-size: 0.875rem;
}
.features-sb thead th {
  font-size: 1.25rem;
  color: #151515;
  background: var(--white);
}

.features-sb thead tr th:nth-child(2),
.features-sb tbody tr td:nth-child(2) {
  background: #f0f8ff;
}

.features-sb tbody tr td i {
  width: 25px;
  height: 25px;
  float: left;
  margin-bottom: 20px;
  margin-right: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
}

.features-sb tbody tr td i.fa-check {
  background: #0aa06e;
}

.features-sb tbody tr td i.fa-times {
  background: #ef4b3e;
}

.features-sb tbody tr td i.fa-question {
  background: #f9973e;
}

.features-sb tbody tr td i.fa-question-circle {
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  color: #f9973e;
}

/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */

.s6 {
  padding-top: 0;
}
.s6 .head {
  margin: 0 0 2rem;
}
.s6 .head h2 {
  font-size: 2.5rem;
  max-width: 900px;
  margin: auto;
}

.s6 .div-text {
  max-width: 800px;
  margin: auto;
}

.s6 .div-text > p {
  font-size: 1.125rem;
  color: var(--paragraph);
}

.s6 .div-text > p > strong {
  color: var(--orange);
  font-size: 1.25rem;
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

.s7 {
  background: #f9fbff;
}
.s7 .head p {
  font-size: 1.125rem;
  margin: 2rem auto 0;
  color: #21243a;
}

.s7 .head p strong {
  color: var(--orange);
}

.s7 .tabs-list {
  max-width: 86%;
}
.s7 .tabs-list .tab-nav {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #777a89;
  padding: 0 0.4rem 0.8rem;
  margin: 0 0 0.8rem;
  cursor: pointer;
  line-height: 1.2;
}

.s7 .tabs-list .tab-nav:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.s7 .tabs-list .tab-nav.active {
  color: #21243a;
  border-color: var(--orange);
  /* border-width: 2px; */
}
.s7 .div-text h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #21243a;
  margin: 0 0 2rem;
}

.s7 .div-text p {
  font-size: 1.125rem;
  color: #21243a;
  line-height: 28px;
  max-width: 90%;
}

.s7 .div-text .div-main-cta {
  margin: 1.5rem 0 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.s7 .div-bottom {
  text-align: center;
  max-width: 750px;
  margin: 4rem auto;
}

.s7 .div-bottom h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--paragraph);
}
/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */

.s8 {
  background: #ecf3fe;
  padding-bottom: 7rem;
}
.s8 .head p {
  font-size: 1.125rem;
  color: #21243a;
  max-width: 85%;
  margin: 2rem auto 0;
}

.s8 .head p strong {
  color: var(--orange);
}

.s8 .row {
  grid-row-gap: 1.5rem;
}
.s8 .s-box {
  background: var(--white);
  height: 100%;
  border-radius: 0.6rem;
  padding: 2rem 1rem;
  text-align: center;
}

.s8 .s-box h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem;
}

.s8 .s-box p {
  max-width: 440px;
  margin: auto;
  line-height: 1.5;
}

.s8 .div-text {
  max-width: 1060px;
  margin: 3rem auto 0;
  padding: 0 0 1.5rem;
  position: relative;
}
.s8 .div-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--dark-blue);
}

.s8 .div-text h3 span {
  color: var(--orange);
}

.s8 .div-text p {
  color: #21243a;
  margin: 0 0 1.5rem;
}
.s8 .div-text h4 {
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.s8 .div-text:before {
  position: absolute;
  content: "";
  background-color: #c0c0c0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  margin: auto;
}

.s8 .div-text:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -3px;
  z-index: 9;
}
/* SECTION EIGHT CSS END HERE */

/* SECTION NINE CSS START HERE */

.s9.diamond {
  margin: 0;
}
.faq-box-wrap .faq-box {
  background: var(--white);
  padding: 1rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 40px #f3dfcf;
  height: 100%;
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  flex-wrap: wrap;
}

.faq-box-wrap .faq-box > span {
  font-size: 6.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: var(--dark-blue);
  opacity: 0.1;
  flex: 0 0 150px;
  display: flex;
  justify-content: center;
}

.faq-box-wrap .faq-box:not(:last-child) {
  margin: 0 0 1rem;
}

.faq-box-wrap .faq-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0 0 0.5rem;
}
.faq-box-wrap .faq-box > div {
  flex: 1;
}
/* SECTION NINE CSS END HERE */

@media (max-width: 1199px) {
  .head h2,
  .head h2 span {
    font-size: 2.5rem;
  }
  .s3 .div-text .keywords-images {
    flex-direction: column;
    align-items: center;
  }

  .s7 .div-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .row {
    grid-row-gap: 1.5rem;
  }
  .head h2,
  .head h2 span {
    font-size: 2rem;
  }

  .homeBanner.s1 .div-text {
    text-align: center;
  }

  .homeBanner.s1 .div-text h1:before {
    width: 50%;
  }

  .s1 h1 {
    font-size: 2.5rem;
  }

  .s1 .div-CTA {
    justify-content: center;
    margin: 2rem 0 1.5rem;
  }

  .s1.statsBox h2 {
    font-size: 2.5rem;
  }

  .s1 .statsBox p {
    font-size: 0.875rem;
  }
  .s2 .div-text {
    text-align: center;
  }

  .s2 .div-CTA {
    justify-content: center;
    margin: 2rem 0;
  }
  .s4 .rows-wrap {
    text-align: center;
  }

  .s4 .div-count span {
    line-height: 1;
  }

  .s4 .rows-wrap .row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .s4 .rows-wrap .div-shape {
    display: none;
  }

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

  .s5 .head:before {
    right: 0;
  }

  .s5 .head:after {
    right: 0;
    left: 0;
  }

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

  .div-img {
    text-align: center;
  }
  .features-sb td {
    font-size: 0.875rem;
  }

  .features-sb tbody tr td i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    font-size: 4rem;
  }
  .s7 .tabs-list {
    max-width: 100%;
    display: flex;
    overflow: auto;
    grid-gap: 1rem;
  }

  .s7 .tabs-list .tab-nav {
    border: 0 !important;
    border-right: 1px solid #ccc !important;
    font-size: 0.875rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex: 0 0 250px;
    text-align: center;
  }

  .s7 .div-text h3 {
    font-size: 1.5rem;
  }
  .s7 .div-text p {
    font-size: 1rem;
  }
  .s7 .tab-content .row {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .homeBanner.s1,
  .section {
    padding: 2rem 0;
  }
  .div-CTA {
    flex-direction: column;
  }

  .div-main-cta {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.85rem 1rem;
  }

  img.diamond {
    display: none;
  }

  section.diamond {
    padding-top: 2rem;
    margin: 0;
  }

  .s1 h1 {
    font-size: 1.8rem;
  }

  .s1 .statsRow {
    display: grid;
    grid-template-columns: auto auto;
    margin: 0;
  }

  .s1 .statsBox h2 {
    font-size: 2rem;
  }

  .s1 .statsRow p {
    font-size: 0.875rem;
  }

  .s1 .Form-box {
    margin: 0 auto 2rem;
  }

  .head h2,
  .head h2 span {
    font-size: 1.5rem;
  }

  .head {
    margin: 0 0 2rem;
  }

  .s4 .div-count span {
    font-size: 5rem;
  }

  .features-sb > h3 {
    font-size: 1.25rem;
  }

  .features-sb thead tr th:nth-child(1) {
    min-width: 180px;
  }

  .features-sb thead tr th:nth-child(2),
  .features-sb thead tr th:nth-child(3),
  .features-sb thead tr th:nth-child(4) {
    min-width: 300px;
  }

  .features-sb tbody tr td i {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  section.section.s6 {
    padding-top: 0;
  }

  .s6 .head h2 {
    font-size: 1.5rem;
  }

  .s7 .head p {
    font-size: 1rem;
  }

  .s8 .head p {
    max-width: 100%;
    font-size: 1rem;
  }

  .s8 .s-box h3 {
    font-size: 1.25rem;
  }
  .s8 .div-text h3 {
    font-size: 1.5rem;
  }

  .faq-box-wrap .faq-box > span {
    display: none;
  }
}
