:root {
  --black: #000;
  --light-black: #333333;
  --white: #fff;
  --light-blue: #486fa4;
  --dark-blue: #0e2e67;
  --sky-blue: #0c7cde;
  --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%;
}

p {
  font-family: "Inter", sans-serif;
  line-height: 26px;
}

.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: 5rem 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;
}

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

.head h2:before {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 170px;
  height: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

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

.head h2 {
  position: relative;
  color: var(--dark-blue);
  line-height: 1;
  font-weight: 800;
}

@media screen and (min-width: 1199px) {
  .head h2 {
    font-size: 2.5rem;
  }
}

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

/* .head h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #0e2e67;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 10px;
    z-index: 9;
}
.head h6 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    padding: 0.2rem 1rem;
} */
.head p {
  color: var(--dark-blue);
  font-weight: 500;
}

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

a.main-cta {
  font-family: "Inter", sans-serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  padding: 1rem 2.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;
}

a.main-cta.btn-blue {
  background: var(--dark-blue);
  box-shadow: 2px 2px 20px rgb(14 46 103 / 40%);
}

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

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

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

a.main-cta.btn-white {
  background: var(--white);
  color: var(--dark-blue);
}

a.main-cta.btn-white:hover {
  background: var(--orange);
  color: var(--white);
}

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

a.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;
}

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

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

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

section.diamond {
  /* padding-top: 4.75rem; */
  padding-top: 8.375rem;
  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;
}

/* GLOBAL CSS END HERE  */
/* SECTION ONE CSS START HERE */
.homeBanner.s1 {
  background-image: url("../img/global/coverBanner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4rem 0 1rem;
}

.s1 .topRow h1 {
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  padding-bottom: 1.4rem;
}

@media (min-width: 1200px) {
  .s1 .topRow h1 {
    font-size: 60px;
  }
}

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

.s1 .topRow p.sub-text {
  color: var(--dark-blue);
}

.s1 .coverBtns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 2rem;
  margin: 2rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid #b9cadf;
}

.s1 .coverBtns a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.s1 .coverBtns a.talk-chat {
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 10px 20px #f47a1e8a;
}

.s1 .coverBtns a.talk-chat:hover {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.s1 .coverBtns a.talk-phone {
  position: relative;
  color: var(--dark-blue);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  grid-gap: 15px;
  text-underline-offset: 2px;
  padding-left: 60px;
}

.s1 .coverBtns a.talk-phone:before {
  position: absolute;
  content: "\f095";
  font-family: "FontAwesome";
  left: 0px;
  width: 40px;
  height: 40px;
  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;
}

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

.s1 .coverBtns a.talk-phone:hover:before {
  background: var(--orange);
}

.s1 .topRow .col-left {
  position: relative;
}

@media (min-width: 1200px) {
  .s1 .topRow .col-left {
    padding-right: 5rem;
  }

  .s1 .topRow {
    align-items: center;
  }

  .s1 .topRow .col-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 550px;
  }
}

.s1 img.bannerImage,
.s1 .priceBadge {
  display: none;
}

@media (min-width: 1200px) {
  .s1 img.bannerImage {
    display: block;
    position: absolute;
    top: 1rem;
    display: block;
  }

  .s1 .priceBadge {
    position: absolute;
    top: -100px;
    right: 0;
    display: block;
  }
}

.s1 .Form-box {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  position: relative;
  padding: 30px 20px;
  box-shadow: 10px 0 15px rgb(14 46 103 / 20%);
}

@media screen and (min-width: 1366px) {
  .s1 .Form-box {
    max-width: 65%;
  }
}

.s1 .Form-box:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 30%;
  height: 5px;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
}

.s1 .Form-box .form-group {
  position: relative;
  margin-bottom: 15px;
}

.s1 .Form-box .form-group i {
  position: absolute;
  font-size: 14px;
  color: #f47a1e;
  left: 15px;
  top: 18px;
}

.s1 .Form-box .form-control {
  padding: 10px 10px 10px 40px;
  background-color: #f3f7fa;
  font-size: 14px;
  color: #a9a9a9;
  border: 1px solid #ccc;
  box-shadow: none;
  border-radius: 50px;
}

.s1 .Form-box .form-control:focus {
  border-color: var(--orange);
}

@media (max-width: 767px) {
  .s1 .Form-box {
    width: 100%;
    padding: 20px;
    height: auto;
  }

  .s1 .Form-box h2 {
    font-size: 24px;
    padding-top: 0;
    padding-bottom: 15px;
  }
}

.s1 textarea#Details1 {
  border-radius: 20px;
  height: 80px;
  resize: none;
}

.s1 .Form-box .form-control::placeholder {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #9daac1;
}

.s1 .button-box button {
  background: var(--orange);
  color: var(--white);
  padding: 12px 50px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0px 0px 10px #f47a1e8a;
}

.s1 .button-box button i {
  font-size: 14px;
  padding-left: 5px;
}

.s1 .button-box {
  text-align: center;
  margin-top: 24px;
}

.s1 .button-box button:hover {
  background: var(--dark-blue);
  box-shadow: unset;
}

button {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: transparent;
}

.banner-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.s1 .bottomRow {
  text-align: center;
  margin: 1.5rem 0 0;
}

.s1 .bottomRow .statsRow {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.s1 .bottomRow .statsBox h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--dark-blue);
}

.s1 .bottomRow .statsBox p {
  font-weight: 500;
  color: var(--dark-blue);
}

.s1 ul.partners {
  position: relative;
  z-index: 9;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto !important;
}

.s1 ul.partners img {
  filter: grayscale(1);
  -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;
}

.s1 ul.partners img:hover {
  filter: grayscale(0);
}

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

@media (min-width: 1200px) {
  .s2 .div-text {
    padding-right: 60px;
  }
}

.s2 .seo-screen-fancy {
  position: relative;
  display: block;
}

.s2 .seo-screen-fancy img {
  width: 100%;
}

.playme {
  position: absolute;
  display: flex;
  justify-content: center;
  pointer-events: none;
  top: 150px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.pulse-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

svg.pulse-svg {
  overflow: visible;
}

svg.pulse-svg .first-circle,
svg.pulse-svg .second-circle,
svg.pulse-svg .third-circle {
  fill: #fff;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}

svg.pulse-svg .second-circle {
  animation-delay: 1s;
}

svg.pulse-svg .third-circle {
  animation-delay: 2s;
}

.pulse-css {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: relative;
}

.pulse-css:before,
.pulse-css:after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}

.pulse-css:after {
  animation-delay: 2s;
}

circle.circle.play-icon {
  position: relative;
}

.pulse-box:before {
  position: absolute;
  content: "";
  font-size: 20px;
  left: 0;
  right: 0;
  background-image: url("../img/seo-lawyers/play.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 20px;
}

.pulse-box {
  position: relative;
}

@keyframes pulse-me {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    opacity: 0.2;
  }

  70% {
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* SECTION TWO CSS END HERE */

/* SECTION CTA CSS START HERE */

.section-CTA {
  background: var(--orange);
  padding: 3rem 0;
}

.section-CTA .row {
  align-items: center;
}

.section-CTA .div-text h2 {
  font-size: 2.5rem;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

@media (min-width: 1200px) {
  .section-CTA .div-text h2:before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 180px;
    height: 1px;
    bottom: 0;
    right: -200px;
    top: 0;
    margin: auto;
  }

  .section-CTA .div-text h2:after {
    position: absolute;
    content: "";
    background: var(--white);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.6;
    right: -215px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .section-CTA .div-CTA a.main-cta {
    font-size: 1.25rem;
  }
}

.section-CTA .div-CTA a.main-cta.btn-white {
  border-color: var(--white);
}

/* SECTION CTA CSS END HERE */

/* SECTION THREE CSS START HERE */

.s3 .tab-content {
  display: none;
}

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

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

@media (min-width: 1200px) {
  .s3 .head {
    max-width: 90%;
  }
}

.s3 .head * {
  color: var(--white);
}

.s3 .head h2:before {
  display: none;
}

.s3 .head h2 {
  margin: 0;
  padding: 0;
}

.s3 .head h3 {
  background: var(--white);
  color: var(--dark-blue);
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.4rem 2rem;
  margin: 1rem 0 2rem;
  letter-spacing: 2px;
}

.s3 .head p {
  font-weight: 400;
}

.tabs-wrap {
  margin: 0 0 3rem;
}

.tabs-wrap .tab-nav-head {
  margin: 0 0 4rem;
}

.tabs-wrap .tab-nav-head {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
  flex-wrap: wrap;
}

.tabs-wrap .tab-nav-head .tab-nav {
  background: #234a8e;
  color: rgba(255 255 255 / 30%);
  padding: 1rem 0;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border: 0;
  border-radius: 0.3rem;
  flex: 1;
}

.tabs-wrap .tab-nav-head .tab-nav.active {
  background: var(--orange);
  color: var(--white);
}

.s3 .tab-content {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
}

.s3 .tab-content .div-img img {
  width: 100%;
}

.s3 .tab-content .row {
  align-items: center;
}

@media (min-width: 1200px) {
  .s3 .tab-content .div-text {
    padding-right: 4rem;
    padding-left: 2rem;
  }
}

.s3 .tab-content .div-text h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark-blue);
  font-family: "Inter", sans-serif;
  margin: 0 0 2rem;
}

.s3 .tab-content .div-text p {
  color: #151515;
}

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */

.s4 .reviews-logos-row {
  background: #e0f0ff;
  padding: 2rem 0;
}

.s4 .reviews-logos-row .row {
  align-items: center;
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */
.s5 {
  padding-top: 0;
}

.s5 h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 0.5rem;
}

.s5 h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.row.culprits-row {
  margin-bottom: 5rem;
}

/* @media (min-width: 1200px) {
  .row.culprits-row .col-lg-4 {
    padding: 0 1.5rem;
  }
} */
.s5 .culprits-box {
  position: relative;
  background: #ffeded;
  min-height: 260px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
}

.s5 .culprits-box span {
  background: #d02e2e;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  outline: 6px solid #f6d5d5;
  left: -10px;
  top: 30px;
}

.s5 .culprits-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1rem;
}

.s5 .culprits-box p {
  color: var(--dark-blue);
  margin: 0;
}

.s5 .solution-box {
  position: relative;
  background: #edf6ff;
  /* min-height: 320px; */
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  padding: 2rem 3rem;
}

.s5 .solution-box span {
  background: #2e77d0;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  outline: 6px solid #d5e4f6;
  left: -10px;
  top: 30px;
}

.s5 .solution-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1rem;
}

.s5 .solution-box p {
  color: var(--dark-blue);
  margin: 0;
}

/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */
.s6 {
  background: #fff1e8;
}

.s6 h3 {
  font-family: "Inter", sans-serif;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 1rem;
}

@media (min-width: 1200px) {
  .s6 h2 {
    font-size: 2.5rem;
  }

  .s6 h3 {
    max-width: 40%;
    margin: 0 auto;
  }
}

.s6 h2 {
  position: relative;
  color: var(--dark-blue);
  line-height: 1;
  font-weight: 800;
  margin: 0 0 1rem;
}

.s6 p {
  color: var(--dark-blue);
  font-weight: 500;
  max-width: 50%;
  margin: 0 auto;
}

.s6 .div-CTA {
  margin: 2rem 0 0;
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */
.s7 {
  background: #f3f7ff;
}

.case-study .cs-nav {
  padding: 0 20px;
  overflow-y: auto;
  max-height: 420px;
  border-right: 10px solid #cccccc;
  text-align: center;
}

.case-study .cs-link {
  cursor: pointer;
  padding: 10px;
}

.case-study .cs-link img {
  width: auto;
  max-width: 100%;
}

.case-study .cs-nav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.case-study .cs-nav::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

.case-study .cs-nav::-webkit-scrollbar-thumb {
  background-color: #0e2e67;
  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
  );
}

.case-study .cs-content {
  padding: 0 30px;
  display: none;
}

.case-study .cs-content.active {
  display: block;
}

.case-study .cs-content h3 {
  color: #0e2e67;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 30px;
}

.case-study .cs-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.cs-content a {
  color: #f47a1e;
}

.case-study .cs-content a.get-consult {
  padding: 14px 40px;
  font-size: 16px;
  text-transform: uppercase;
  background: #f47a1e;
  color: #fff;
  display: inline-block;
  margin: 20px 0 10px 0;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s;
  text-decoration: none;
}

.case-study .cs-content a.get-consult:hover {
  text-decoration: none;
  background: #fff;
  color: #f47a1e;
}

.case-study .col-md-5 {
  border-right: 2px solid #a3afd3;
}

.cs-table-box {
  padding: 0 10px;
  display: none;
}

.cs-table-box.active {
  display: block;
}

table.case-study-table {
  background: #fff;
  color: #0e2e67;
  width: 100%;
  margin-bottom: 20px;
}

table.case-study-table tr {
  border-bottom: 1px solid #e0e0e0 !important;
}

table.case-study-table th:first-child {
  font-size: 16px !important;
}

table.case-study-table th:first-child {
  border-right: 1px solid #0e2e67;
}

table.case-study-table tbody tr,
table.case-study-table tbody tr td,
table.case-study-table th {
  border-color: #e0e0e0 !important;
}

table.case-study-table th {
  font-weight: 700;
}

table.case-study-table td,
table.case-study-table td a,
table.case-study-table th {
  color: #0e2e67 !important;
  font-weight: 500;
}

table.case-study-table th {
  padding: 8px 20px;
}

table.case-study-table tbody td:first-child {
  border-right: 1px solid #0e2e67;
}

table.case-study-table tbody tr,
table.case-study-table tbody tr td,
table.case-study-table th {
  border-color: #e0e0e0 !important;
}

table.case-study-table tr td,
table.case-study-table tr td a {
  font-size: 13px !important;
}

table.case-study-table tbody td,
table.case-study-table tbody td a {
  font-weight: 600 !important;
}

table.case-study-table tbody td {
  padding: 8px 20px;
}

table.case-study-table td,
table.case-study-table td a,
table.case-study-table th {
  color: #0e2e67 !important;
}

table.case-study-table tbody td:nth-child(2) {
  color: #f47a1e !important;
}

table.case-study-table th {
  font-weight: 700;
}

/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */
.s8 .head {
  max-width: 100%;
}

.s8 .row {
  grid-row-gap: 2rem;
}

.s8 .blog-card {
  box-shadow: 0px 0px 40px rgb(204 204 204 / 40%);
  position: relative;
  padding: 0.6rem;
  border-radius: 1rem;
  overflow: hidden;
}

.s8 .blog-card:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0.6rem;
  background: var(--orange);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.s8 .blog-card .blog-thumb {
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0 1rem;
}

.s8 .blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s8 .blog-card .blog-details {
  padding: 0 1rem;
}

.s8 .blog-card ul.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem !important;
  padding: 0 0 1rem;
  border-bottom: 1px solid #ddd;
}

.s8 .blog-card ul.blog-meta li {
  font-size: 0.75rem;
  color: #717d92;
}

.s8 .blog-card .blog-title a {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--dark-blue);
  line-height: 1.5rem;
  display: inline-block;
  margin: 0 0 1rem;
  /* min-height: 72px; */
}

.s8 .blog-category a {
  background: #ebebeb;
  color: var(--dark-blue);
  font-size: 0.75rem;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 50px;
  font-weight: 500;
}

.s8 .blog-category {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.s8 .blog-card p {
  color: var(--dark-blue);
  font-weight: 500;
  line-height: 24px;
  /* min-height: 120px; */
}

.s8 .blog-card .blog-read-more {
  text-align: center;
  margin: 1rem 0 0;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}

.s8 .blog-card .blog-read-more a {
  background: var(--orange);
  color: var(--white);
  display: inline-flex;
  padding: 0.8rem 3rem;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 4px 4px 20px rgb(241 111 29 / 40%);
}

.s8 .blog-card .blog-read-more a:hover {
  background: var(--dark-blue);
  box-shadow: 4px 4px 20px rgb(14 46 103 / 40%);
}

/* SECTION EIGHT CSS END HERE */

/* SECTION SEPRATOR CSS START HERE */

.div-seprator {
  margin-top: -15rem;
  display: none;
}

@media (min-width: 1200px) {
  .div-seprator {
    display: block;
  }
}

.div-seprator img {
  width: 100%;
}

/* SECTION SEPRATOR CSS END HERE */

/* SECTION NINE CSS START HERE */
.s9 {
  padding-top: 0;
}

.features-sb {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
}

.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 {
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  padding: 1rem;
}

.features-sb thead th {
  font-size: 1.25rem;
  color: #151515;
}

.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: 50px;
  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;
}

.s9 .toll-number {
  font-size: 6rem;
  color: var(--orange);
  font-weight: 800;
  line-height: 1;
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
  background: linear-gradient(
    to right,
    var(--dark-blue),
    var(--orange),
    var(--dark-blue)
  );
  background-size: 200% 200%;
  animation: rainbow 2s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  transition: color 0.4s ease-in-out;
}

.s9 .toll-number:hover {
  color: rgba(0, 0, 0, 0);
}

@keyframes rainbow {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}

.s9 {
  padding-top: 0;
}

.s9-CTA {
  position: relative;
  text-align: center;
  padding: 5rem 0;
}

@media (min-width: 1200px) {
  .s9-CTA .div-text {
    max-width: 70%;
    margin: 0 auto 2rem;
  }
}

.s9-CTA p {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--dark-blue);
  line-height: 30px;
}

.s9-CTA .CTA p {
  font-weight: 700;
}

.s9-CTA .traignle {
  display: none;
}

@media (min-width: 1200px) {
  .s9-CTA .traignle {
    position: absolute;
    top: 0;
    height: 100%;
    display: block;
  }

  .s9-CTA .traignle-1 {
    left: 0;
  }

  .s9-CTA .traignle-2 {
    right: 0;
    transform: scaleX(-1);
  }
}

/* SECTION NINE CSS END HERE */

/* SECTION TEN CSS START HERE */

.s10 {
  background: #fef5f0;
}

.s10 .div-text h2 {
  position: relative;
  color: var(--dark-blue);
  line-height: 1;
  font-weight: 800;
  margin: 0 0 2rem;
}

.s10 .div-text h2 span {
  color: var(--orange);
}

.s10 .div-text p {
  color: var(--dark-blue);
}

.s10 .div-text h3 {
  font-size: 22px;
  color: var(--dark-blue);
  font-weight: 700;
}

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

@media (min-width: 1200px) {
  .s10 .div-text h2 {
    font-size: 2.5rem;
  }

  .s10 .div-text {
    padding-right: 3rem;
  }
}

/* SECTION TEN CSS END HERE */

/* SECTION ELEVEN CSS START HERE */
.s11 .faq-box {
  background: #f0f8ff;
  border-radius: 1rem;
  padding: 2rem 3rem;
  display: flex;
  grid-gap: 1rem;
}

.s11 .faq-box .faq-details {
  flex: 1;
}

.s11 .faq-box .faq-details h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0 0 1rem;
}

.s11 .faq-box .faq-details p {
  color: #333333;
}

.s11 .faq-box .faq-details p a {
  color: #0048ff;
}

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

.s11 .faq-CTA {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.s11 .faq-CTA p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.faq-CTA .div-CTA {
  flex-direction: column;
  width: 70%;
  margin: 1rem 0 0;
}

.faq-CTA .div-CTA .main-cta {
  width: 100%;
  flex: 1;
  display: flex;
}

/* SECTION ELEVEN CSS END HERE */

/* SECTION TWELVE CSS START HERE */

.s12 {
  padding-bottom: 0;
}

.s12 .head {
  margin-bottom: 100px;
}

.s12 .div-text p {
  color: #333333;
  font-size: 1.125rem;
  line-height: 30px;
}

.s12 .row {
  align-items: center;
}

.s12 .row .div-text p:last-child {
  margin: 0;
}

.s12 .row.row-one {
  margin-bottom: 50px;
}

.s12 .div-CTA {
  margin: 80px 0;
}

.partners li img {
  max-width: 100%;
  padding: 5px;
  text-align: center;
  margin: 0 auto;
}

.partners .slick-arrow {
  background: var(--dark-blue);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 99;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.partners .prev--arrow.slick-arrow {
  left: -60px;
}

.partners .next--arrow.slick-arrow {
  right: -60px;
}

.partners .slick-arrow:hover {
  background: var(--orange);
}

.slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: no-drop;
}

.partners ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners ul.slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-blue);
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.partners .slick-dots li button {
  margin: 0 auto;
  background: var(--white);
  border-radius: 50%;
  width: 0;
  height: 0;
  padding: 0;
  transition: 0.3s ease-in-out;
}

/* SECTION TWELVE CSS END HERE */

/* SECTION THIRTEEN CSS START HERE */
.CTA-shape img {
  width: 100%;
}

.s13 {
  background: #ebf3ff;
}

.s13 .div-text h2 {
  position: relative;
  color: var(--dark-blue);
  line-height: 1;
  font-weight: 800;
  margin: 0 0 2rem;
}

@media (min-width: 1200px) {
  .s13 .div-text h2 {
    font-size: 2.5rem;
  }

  .s13 .div-text {
    max-width: 60%;
    margin: 0 auto 2rem;
  }
}

.s13 .div-text p {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-blue);
}

/* SECTION THIRTEEN CSS END HERE */

/* SECTION SIXTEEN CSS START HERE */

div#discussLead {
  background: #3d62a3;
  padding: 20px;
  border-radius: 15px;
  position: relative;
}

div#discussLead span.dot {
  display: block;
  margin-left: 20px;
}

div#discussLead span.dot i {
  color: var(--white);
  opacity: 0.7;
}

div#discussLead span.dot i {
  margin-right: 10px;
}

div#discussLead .bottom-form.contact {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 150px;
  margin-top: 10px;
  box-shadow: 0px 0px 8px #222;
}

div#discussLead .bottom-form.contact h2 {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

div#discussLead .bottom-form.contact h2 span {
  color: var(--orange);
}

div#discussLead .bottom-form.contact h2:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 100px;
  height: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

div#discussLead .form-group .form-control {
  position: relative;
  color: #3d62a3;
  border: 2px solid #9eb0d1;
  background: #fafcfe;
  border-radius: 7px;
  padding: 14px 40px;
  box-shadow: unset;
  outline: unset;
}

div#discussLead .form-group {
  position: relative;
  margin-bottom: 35px;
}

div#discussLead .form-group i {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  color: #acb9d3;
}

div#discussLead .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
}

div#discussLead .form-control::placeholder {
  color: #3d62a3;
  opacity: 0.5;
}

div#discussLead textarea {
  height: 130px;
  resize: none;
}

div#discussLead .form-group.textarea {
  margin-bottom: 10px;
}

div#discussLead .form-group.textarea i {
  bottom: unset;
  top: 20px;
}

div#discussLead p.form-sub-text {
  color: #737373;
  font-size: 14px;
}

div#discussLead .btn-box {
  margin-top: 35px;
}

div#discussLead .btn-box a {
  display: inline-block;
  background: #16366e;
  color: var(--white);
  padding: 18px 96px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 500;
}

div#discussLead .btn-box a:hover {
  background: var(--orange);
}

div#discussLead .form-group .form-control:focus,
div#discussLead .form-group .form-control:visited {
  border-color: #3d62a3;
}

div#discussLead textarea#Details:focus::placeholder {
  color: #3d62a3;
  opacity: 1;
}

input::-webkit-input-placeholder {
  color: #3d62a3;
  opacity: 1;
}

input:focus::-webkit-input-placeholder {
  color: #3d62a3;
  opacity: 1;
}

/* Firefox < 19 */

div#discussLead input:-moz-placeholder {
  color: #3d62a3;
  opacity: 1;
}

div#discussLead input:focus:-moz-placeholder {
  color: #3d62a3;
  opacity: 1;
}

/* Firefox > 19 */

div#discussLead input::-moz-placeholder {
  color: #3d62a3;
  opacity: 1;
}

div#discussLead input:focus::-moz-placeholder {
  color: #3d62a3;
  opacity: 1;
}

/* Internet Explorer 10 */

div#discussLead input:-ms-input-placeholder {
  color: #3d62a3;
  opacity: 1;
}

div#discussLead input:focus:-ms-input-placeholder {
  color: #3d62a3;
  opacity: 1;
}

div#discussLead .mini-contact-area {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

div#discussLead .mini-contact-box {
  display: flex;
  align-items: center;
}

div#discussLead .c-cont-box h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  color: #3d62a3;
  font-weight: 600;
}

div#discussLead .c-cont-box a {
  font-size: 1rem;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 700;
}

div#discussLead .c-cont-box a:hover {
  color: var(--orange);
}

div#discussLead .c-icon-box i {
  font-size: 24px;
  color: var(--orange);
  margin-right: 15px;
}

div#discussLead .mini-contact-box:first-child {
  margin-bottom: 10px;
}

/* SECTION SIXTEEN CSS END HERE */

/* SECTION TEN CSS START HERE */

.s14 .tab-content {
  display: none;
}

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

.s14 .tab-content .packages-row {
  grid-row-gap: 2rem;
}

.s14 ul.tabs-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.s14 ul.tabs-list .tab-nav {
  position: relative;
  flex: 1 1 22.333%;
  text-align: center;
  background: #e6eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.s14 ul.tabs-list .tab-nav h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #747474;
}

.s14 ul.tabs-list .tab-nav p {
  margin: 0;
  color: #747474;
  letter-spacing: 2px;
}

.s14 ul.tabs-list .tab-nav.active {
  background: var(--dark-blue);
}

.s14 ul.tabs-list .tab-nav.active div > * {
  color: var(--white);
}

.s14 ul.tabs-list .tab-nav.active img {
  filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(255deg)
    brightness(300%) contrast(100%);
  -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;
}

.s14 ul.tabs-list .tab-nav img.recommended {
  filter: unset;
  position: absolute;
  left: -1rem;
  top: -1rem;
}

.s14 .tabs-body {
  margin: 2rem 0 0;
}

.s14 .package-Box {
  border: 1px solid #efefef;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.s14 .package-Box:hover {
  box-shadow: 0 0 30px rgb(204 204 204 / 40%);
}

.s14 .pkg-name {
  position: relative;
  padding: 2rem 0;
  text-align: center;
  background-image: url("../img/seo-services/package-stars.webp");
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
}

.pkg-name:before {
  position: absolute;
  content: "";
  background: var(--orange);
  height: 7px;
  width: 50%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.pkg-name p {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0;
  line-height: 1.2;
}

.package-price {
  background: #f2f5f9;
  text-align: center;
  padding: 1.5rem 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.package-price span sup {
  color: var(--orange);
  top: -0.5em;
  font-size: 45px;
}

.package-price span {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 4.375rem;
  line-height: 1;
  color: var(--dark-blue);
  font-weight: 800;
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.package-price small {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #bfbfbf;
  margin-left: 30%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.s14 .package-Box:hover .package-price {
  background: var(--dark-blue);
}

.s14 .package-Box:hover span {
  color: var(--white);
}

.s14 .package-Box:hover small {
  color: #6178a1;
}

.package-body {
  padding: 1rem 1rem 0;
}

.package-body > p {
  text-align: center;
  color: #717d92;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5rem;
}

.package-body hr {
  background: #e6e9ee;
  opacity: 1;
}

.pkg-list h4 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0 0 0.4rem;
}

.pkg-list ul {
  margin: 0 0 1rem !important;
}

.pkg-list ul li {
  position: relative;
  color: #343434;
  font-size: 0.875rem;
  padding-left: 1.5rem;
}

.pkg-list ul li:before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  color: var(--white);
  width: 15px;
  height: 15px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-weight: bold;
}

.pkg-list {
  height: 270px;
  overflow-y: auto;
}

.pkg-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #e6e9ee;
}

.pkg-list::-webkit-scrollbar {
  width: 3px;
  background-color: #e6e9ee;
}

.pkg-list::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  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
  );
}

.package-order {
  padding: 1.5rem 0 3rem;
  text-align: center;
}

.package-order a,
.package-order button {
  background: var(--dark-blue);
  color: var(--white);
  display: inline-block;
  padding: 1rem 4rem;
  border-radius: 50px;
  box-shadow: 6px 6px 15px rgb(14 46 103 / 30%);
}

.package-order a:hover,
.package-order button:hover {
  background: var(--orange);
  box-shadow: 6px 6px 15px rgb(241 111 29 / 30%);
}

/* SECTION TEN CSS END HERE */

@media (max-width: 1199px) {
  .s2 .playme {
    top: 100px;
  }

  .s5 .culprits-box,
  .s5 .solution-box {
    padding: 2rem 1rem 1rem;
    text-align: center;
  }

  .s5 .culprits-box span,
  .s5 .solution-box span {
    left: 0;
    right: 0;
    margin: auto;
    top: -20px;
  }

  .s5 .culprits-box h3,
  .s5 .solution-box h3 {
    font-size: 1.25rem;
  }

  .s5 .culprits-box p,
  .s5 .solution-box p {
    font-size: 0.875rem;
  }

  .features-sb tbody tr td i {
    margin-bottom: 60px;
  }

  .features-sb td {
    font-size: 0.875rem;
  }

  div#discussLead .bottom-form.contact {
    padding: 40px 50px;
  }
}

@media (max-width: 991px) {
  .section.s1 {
    text-align: center;
  }

  .s1 .coverBtns {
    justify-content: center;
    margin: 2rem 0;
  }

  .s1 .bottomRow .statsBox h2 {
    font-size: 46px;
  }

  .s1 .bottomRow .statsBox p {
    line-height: 1;
  }

  .s2 {
    text-align: center;
    padding-bottom: 0;
  }

  .s2 .playme {
    top: 160px;
  }

  .section-CTA {
    text-align: center;
  }

  .section-CTA .row {
    grid-row-gap: 1rem;
  }

  .tabs-wrap .tab-nav-head .tab-nav {
    flex: 30%;
  }

  .s3 .tab-content .div-text {
    padding: 2rem;
    text-align: center;
  }

  .s3 .tab-content .div-img img {
    border-radius: 1.5rem;
  }

  .s5 .head {
    margin-bottom: 50px;
  }

  .s5 .row {
    grid-row-gap: 3rem;
  }

  .s5 .culprits-box,
  .s5 .solution-box {
    min-height: 200px;
  }

  .case-study .cs-nav {
    max-height: initial;
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
  }

  .case-study .cs-content {
    padding-right: 0;
  }

  .features-sb thead th {
    text-align: center;
  }

  .features-sb tbody tr td i {
    display: none !important;
  }

  .s9 .toll-number {
    font-size: 4rem;
  }

  .s9-CTA {
    padding-bottom: 0;
  }

  .s10 {
    text-align: center;
  }

  .s10 .row {
    grid-row-gap: 2rem;
  }

  .s11 .row {
    grid-row-gap: 1.5rem;
  }

  .s11 .faq-CTA {
    min-height: auto;
    margin: 3rem 0 0;
  }

  .s12 {
    text-align: center;
  }

  .s12 .row {
    grid-row-gap: 2rem;
  }

  .s12 .row-two {
    flex-direction: column-reverse;
  }

  .s12 .div-text p {
    font-size: 1rem;
  }

  .s14 ul.tabs-list {
    flex-direction: column;
  }

  .s14 ul.tabs-list .tab-nav {
    flex: 100%;
    width: 100%;
  }
  .s14 ul.tabs-list .tab-nav img.recommended {
    left: 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section.s1 {
    padding: 2rem 0;
  }

  .s1 .coverBtns {
    grid-gap: 1rem;
  }

  .s1 .coverBtns a {
    font-size: 0.875rem !important;
    flex: 1;
    color: var(--white) !important;
    padding: 1rem 0 !important;
    border-radius: 0.4rem;
    text-align: center;
    font-size: 0.875rem;
    justify-content: center;
  }

  .s1 .coverBtns a.talk-chat {
    background: var(--orange);
  }

  .s1 .coverBtns a.talk-phone {
    background: var(--dark-blue);
  }

  .s1 .coverBtns a.talk-phone:before {
    display: none;
  }

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

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

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

  .s1 .bottomRow ul.partners {
    flex-wrap: wrap;
    grid-gap: 10px;
    justify-content: space-between;
  }

  .s1 .bottomRow ul.partners {
    width: 100%;
  }

  .s1 .bottomRow ul.partners li {
    flex: 0 0 calc(25% - 10px);
  }

  .s2 .playme {
    top: 75px;
  }

  .section-CTA .div-text h2 {
    font-size: 2rem;
  }

  .s3 .head h3 {
    font-size: 1rem;
  }

  .tabs-wrap .tab-nav-head .tab-nav {
    flex: 100%;
  }

  .reviews-logos-row .row {
    grid-row-gap: 2rem;
  }

  .div-CTA a.main-cta {
    padding: 1rem 0;
    flex: 1;
  }

  .s9-CTA p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .s9 .toll-number {
    font-size: 2.5rem;
  }

  .s11 .faq-box-wrap .faq-box .faq-icon {
    display: none;
  }

  .s11 .faq-box {
    padding: 2rem;
  }

  .s12 .head {
    margin-bottom: 50px;
  }

  .s12 .div-CTA {
    margin: 40px 0;
  }

  div#discussLead .bottom-form.contact {
    padding: 1rem;
    border-radius: 0.5rem;
  }

  div#discussLead .form-group {
    margin-bottom: 1rem;
  }

  div#discussLead .form-grid {
    grid-template-columns: auto;
  }

  div#discussLead .form-group .form-control {
    padding: 10px 40px;
  }

  div#discussLead .mini-contact-area {
    position: static;
    display: flex;
    justify-content: space-between;
  }

  div#discussLead .btn-box {
    margin: 1rem 0;
  }

  div#discussLead .btn-box a {
    padding: 14px 0;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  div#discussLead .c-cont-box h4 {
    font-size: 0.6rem;
  }

  div#discussLead .c-cont-box a {
    font-size: 0.7rem;
  }

  div#discussLead .mini-contact-box:first-child {
    margin: 0;
  }
}
