:root {
  --black: #000;
  --light-black: #333333;
  --white: #fff;
  --light-blue: #0e6bc2;
  --dark-blue: #0e2e67;
  --sky-blue: #0c7cde;
  --orange: #f16f1d;
  --brown: #522b25;
  --gray: #adaba2;
  --light-gray: #f6f6f6;
  --green: #7a8c22;
  --rhythm: #89779d;
  --fluorescent-blue: #29f1fd;
  --transition: all 0.3s ease-in-out;
}

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

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

.section p {
  font-family: "Inter", sans-serif;
  line-height: 24px;
  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;
}

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

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 2rem;
  padding: 0 0 1.5rem;
}

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

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

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

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

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

.head:before,
.head-center:before {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 80px;
  height: 5px;
  bottom: 0;
  left: 0;
  right: 0;
}

.head:before {
  margin: unset;
}

.head-center:before {
  margin: auto;
}

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

.head h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--light-blue);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 2rem;
}

.head h6 {
  font-size: 18px;
  font-weight: 600;
  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: #121826;
  font-size: 16px;
  font-weight: 500;
}

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

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

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.8rem;
  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-green {
  background: #32ba7c;
  box-shadow: 2px 2px 20px rgb(50 186 124 / 40%);
}

a.main-cta.btn-green:hover {
  background: var(--white);
  box-shadow: unset;
  color: #32ba7c;
  border-color: #32ba7c;
}
a.main-cta.btn-transparent.btn-border-blue {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}
section.diamond {
  padding-top: 8.75rem;
  margin-top: 3.75rem;
  overflow: visible;
  border-top: 1px solid #b9b9b9;
}
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.style-i 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;
}
img.diamond {
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 9;
}
.wave {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}

.link {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}
.link:hover {
  border-color: var(--dark-blue);
}
/* GLOBAL CSS END HERE  */

/* SLICK SLIDER STYLE CSS START */

ul.slick-dots {
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -10% !important;
  z-index: 9;
}

ul.slick-dots li {
  background: #ebebeb;
  border-radius: 50px;
  width: 12px;
  height: 12px;
}

ul.slick-dots li.slick-active {
  background: var(--orange);
  width: 40px;
}

ul.slick-dots button {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 99;
  background: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50px;
  color: #3c3c3c;
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid #3c3c3c;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(0px, -50%);
  transition: all 0.3s ease-in-out;
}

.slick-arrow:hover {
  background: #3c3c3c;
  color: var(--white);
}

.slick-arrow.slick-disabled {
  color: #c4c4c4;
  border-color: #c4c4c4;
}

/* SLICK SLIDER STYLE CSS END */

/* SECTION ONE CSS START  */

.s1 .row {
  align-items: flex-end;
}

.s1 {
  background-image: url("../img/global/coverBanner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.s1 .heading {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 5px;
  color: var(--orange);
}

.s1 .sub-heading,
.s1 .sub-heading span {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--dark-blue);
  padding-bottom: 20px;
}
@media (min-width: 1199px) {
  .s1 .sub-heading {
    max-width: 70%;
  }
}
.s1 .sub-heading span {
  color: #00aeef;
  font-family: Poppins, sans-serif;
}

.s1 .col-left hr {
  max-width: 85%;
}

.s1 ul.servieList {
  margin: 25px 0 !important;
}

.s1 ul.servieList li {
  color: var(--dark-blue);
  font-weight: 400;
  line-height: 30px;
}

.s1 ul.servieList li i {
  color: var(--orange);
  padding-right: 5px;
}
.s1 ul.servieList li:not(:last-child) {
  margin: 0 0 0.5rem;
}
.cover--btn {
  z-index: 9;
  margin: 40px 0 0;
  display: flex;
  grid-column-gap: 20px;
}

.cover--btn .btn-div {
  text-align: center;
}

.cover--btn .main-btn {
  padding: 14px 40px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 500;
  border: 3px solid var(--dark-blue);
  min-width: 220px;
}

.cover--btn a.btn--blue {
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

.cover--btn a.btn-transparent {
  color: var(--dark-blue);
  font-weight: 600;
}

.cover--btn a.btn--blue:hover {
  background: 0 0;
  color: var(--dark-blue);
  box-shadow: unset;
}

.cover--btn a.btn-transparent:hover {
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

.cover--btn p {
  color: #838383;
  font-size: 12px;
  padding-top: 5px;
  line-height: 16px;
}

.cover--btn a.btn--blue:hover #hover-no {
  display: block;
}

.s1 img.Badge {
  top: -70px;
  right: 0;
  z-index: 99;
  max-width: 25%;
  position: absolute;
}

@media (min-width: 992px) {
  .s1 img.bannerImage {
    top: 5%;
    position: absolute;
  }
}

.s1 .Form-box {
  max-width: 75%;
  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,
.s1 .col-left {
  position: relative;
}

.cover--btn #hover-no {
  display: none;
}

.cover--btn a.btn--blue:hover #talk {
  display: none;
}
/* SECTION ONE CSS END  */

/* SECTION TWO CSS START  */

.snapshot-box {
  position: relative;
  border: 1px solid #d3e0f2;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.snapshot-box:hover {
  box-shadow: 0 0 20px #d3e0f2;
}
.snapshot-box .snapshot-thumbnail {
  height: 155px;
}

.snapshot-box .snapshot-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.snapshot-box .snapshot-traffic {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #484848;
  background-image: url(../img/link-building-service/snapshot-increase.html);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.snapshot-box .snapshot-traffic p {
  margin: 0;
}

.snapshot-box .snapshot-traffic span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item {
  border-top: 1px solid #d3e0f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.snapshot-box .snapshot-conversions .snapshot-conversion-item > div {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
}
.snapshot-box .snapshot-conversions .snapshot-conversion-item p {
  margin: 0;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item .one span {
  font-size: 14px;
  font-weight: 500;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item .one img {
  margin-right: 0.2rem;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item .two p {
  background: #f1f4fb;
  font-size: 0.625rem;
  padding: 0.2rem 0.6rem;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #d3e0f2;
  border-radius: 50px;
  color: #0060df;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item .three small {
  font-weight: 500;
  color: #757575;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.snapshot-box .snapshot-conversions .snapshot-conversion-item .three span {
  font-size: 1.15rem;
  font-weight: 600;
}

/* SECTION TWO CSS END  */

/* SECTION THREE CSS START  */

.section.s3 {
  padding-bottom: 0 !important;
}

.s3 .row {
  align-items: center;
}
.s3 .div-video {
  margin-top: 3rem;
}
a.video-fancy {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  display: block;
  box-shadow: 15px 15px 40px rgb(255 255 255 / 30%);
}

a.video-fancy img {
  width: 100%;
}

.playme {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  top: 0px;
  bottom: 0;
  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: var(--white);
  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;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 12px solid transparent;
  border-left: 20px solid var(--white);
  border-bottom: 12px solid transparent;
}

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

.s3 .heading > span {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--dark-blue);
}

.s3 .heading > h2 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--dark-blue);
  line-height: 1;
}

.s3 .heading > h2 > span {
  color: var(--dark-blue);
}

.s3 .col-left {
  border-right: 1px solid #ccc;
}

.s3 .col-right {
  padding-left: 2rem;
}

/* SECTION THREE CSS END  */

/* SECTION FOUR CSS START  */

.s4 .arrow {
  position: absolute;
  top: -50%;
}

.s4 .left-arrow {
  left: -100px;
}

.s4 .right-arrow {
  transform: scaleX(-1);
  right: -100px;
}
.s4 .main-cta {
  width: 100%;
}
.section.s4.repeat-s4 {
  margin: 2rem 0;
  padding-bottom: 0;
}
/* SECTION FOUR CSS END  */

/* SECTION FIVE CSS START  */

.s5 {
  background: #f5f5f5;
}

.s5.diamond {
  margin-top: 0;
  padding-bottom: 0;
}
.s5 .head {
  max-width: 100%;
}
.gg-box-row .gg-box {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 330px;
  box-shadow: 0 0 60px rgb(0 0 0 / 10%);
  transition: 0.3s ease-in-out;
}

.s5:after,
.s5:before {
  border-radius: 0 200px 200px 0;
  position: absolute;
  content: "";
  width: 200px;
  height: 400px;
  background-color: var(--orange);
}

.gg-box-row .gg-box > h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 3rem;
}

.gg-box-row .gg-box > p {
  color: var(--dark-blue);
  font-size: 0.875rem;
  line-height: 20px;
  font-weight: 500;
}

.gg-box-row .gg-box > .gg-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.gg-box-row .gg-box:hover {
  margin-top: -10px;
}

.chain-group-people {
  width: 100%;
  margin: 3rem 0 0;
}

.s5:before {
  opacity: 0.3;
  top: 40%;
  left: 0;
}

.s5:after {
  width: 140px;
  height: 280px;
  bottom: 1%;
}
.s5::after {
  transform: scaleX(-1);
  right: 0;
}
@media (max-width: 1199px) {
  .s5:after,
  .s5:before {
    display: none;
  }
}

/* SECTION FIVE CSS END  */

/* SECTION SIX CSS START  */
.s6 {
  background: #fafafa;
}
.lb-services-wrap .row {
  display: none;
}
.lb-services-wrap .div-text > span {
  font-size: 20rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  line-height: 1;
  background: -webkit-linear-gradient(0deg, #000, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 10%;
  position: absolute;
  left: -50px;
  top: -50px;
}

.lb-services-wrap .div-text {
  padding-left: 2rem;
  position: relative;
}

.lb-services-wrap .div-text > h3,
.lb-services-wrap .div-text > h3 > a {
  font-size: 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--black);
}

.lb-services-wrap .div-text > p {
  color: #333333;
}
.lb-services-wrap .row {
  align-items: center;
}

.lb-services-wrap .row:not(:last-child) {
  margin-bottom: 5rem;
}

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

.s6 .div-CTA a.more-services {
  display: inline-block;
  border: 2px solid var(--black);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: var(--black);
  font-weight: 500;
}

.s6 .div-CTA a.more-services i {
  margin-left: 0.5rem;
}

.s6 .div-CTA a.more-services:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* SECTION SIX CSS END  */

/* SECTION SEVEN CSS START  */

.s7 .row.row-two {
  grid-row-gap: 5rem;
}

.s7 .expertise-box {
  position: relative;
  background: var(--white);
  border: 1px solid #d8dadd;
  min-height: 200px;
  padding: 4rem 2rem 2rem;
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.s7 .expertise-box:hover {
  box-shadow: 20px 0 30px rgb(0 22 94 / 8%);
}

.s7 .expertise-box > h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1rem;
  position: relative;
}

.s7 .expertise-box > h3:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.s7 .expertise-box > p {
  color: #494949;
}

.s7 .expertise-box .s-badge {
  position: absolute;
  top: -31px;
  left: -10px;
}

.s7 .row-one {
  margin-bottom: 6rem;
  align-items: center;
}
.s7 .row-one .div-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1.2rem;
}

.s7 .row-one .div-text p {
  color: var(--dark-blue);
}
.section-CTAs {
  margin: 3rem 0 0;
}

.section-CTAs .main-cta {
  width: 100%;
  text-align: center;
}

/* SECTION SEVEN CSS END  */

/* SECTION EIGHT CSS START  */

.s8 {
  background: #fff0e5;
}

.s8:before {
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  border: 10px solid #e5e5e5;
  opacity: 0.5;
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.s8 .col-left {
  position: relative;
  background: var(--orange);
  padding: 40px;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .s8 .col-left .arrow-call {
    position: absolute;
    right: -20%;
    bottom: -10%;
    display: block;
  }
}

.s8 .col-left h3 {
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  text-shadow: 3px 3px #c25a17;
}

.s8 .col-left h3 span {
  font-size: 50px;
  display: block;
  line-height: 1;
}

.s8 .contact-box {
  padding-left: 50px;
}

.s8 .contact-box h4 {
  color: var(--dark-blue);
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-weight: 800;
}

.s8 .contact-box a {
  font-family: Poppins, sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* SECTION EIGHT CSS END  */

/* SECTION NINE CSS START  */

.s9 .head:before {
  right: 0;
  margin: auto;
}
.s9 .head {
  margin-bottom: 4rem;
}
.s9 .benefits-link-building .benefit-box img {
  margin: 0 0 1rem;
}

.s9 .benefits-link-building {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 2rem;
  grid-column-gap: 2rem;
}

.s9 .benefits-link-building .benefit-box {
  flex: 1 1 100%;
}

@media screen and (min-width: 768px) {
  .s9 .benefits-link-building .benefit-box {
    flex: 1 1 16%;
  }
}

.s9 .benefit-box p {
  color: var(--dark-blue);
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.s9 .benefits-link-building .benefit-box:not(:last-child) {
  border-right: 1px dashed #b7b7b7;
}

.s9 .benefits-link-building .benefit-box.hide-border {
  border-right: 0;
}

.s9 .benefits-link-building.mb {
  margin: 0 0 3rem;
}

/* SECTION NINE CSS END  */

/* SECTION TEN CSS START  */

.s10 .head > * {
  color: var(--white);
}
.process-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 1rem;
}

.process-wrapper .process-item {
  background: var(--white);
  border-radius: 1rem;
  text-align: center;
}

@media screen and (min-width: 767px) {
  .process-wrapper .process-item {
    flex: 0 0 46%;
  }
}

@media screen and (min-width: 1199px) {
  .process-wrapper .process-item {
    flex: 1 0 18%;
  }
}

.process-wrapper .process-item .step {
  font-family: Inter, sans-serif;
  background: var(--orange);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0 0 10px 10px;
  text-shadow: 2px 2px rgb(0 0 0 / 20%);
}

.process-wrapper .process-item .process-item-icon {
  margin: 1.5rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(33 102 226 / 30%);
  display: table;
  transition: var(--transition);
  -webkit-transition: var(--transition);
}

.process-wrapper .process-item:hover .process-item-icon {
  transform: rotateY(360deg);
}

.process-wrapper .process-item .process-item-content {
  padding: 0 1rem;
}

.process-item-icon img {
  box-shadow: 0 0 20px rgb(33 102 226 / 30%);
}

.process-wrapper .process-item .process-item-content h3 {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.process-wrapper .process-item .process-item-content hr {
  width: 40%;
  margin: 10px auto 1rem;
  height: 4px;
  background: var(--orange);
  opacity: 1;
}

.process-wrapper .process-item .process-item-content p {
  font-weight: 500;
  color: var(--dark-blue);
  line-height: 1.4;
  font-size: 0.875rem;
}

/* SECTION TEN CSS END  */

/* SECTION ELEVEN CSS START  */

.s11 p.pkg-heading {
  display: inline-block;
  background: #dce3ee;
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 30px;
}

.s11 .featured-packages,
.s11 .firstPackageOffer .priceTag {
  text-align: center;
}
.s11 .featured-packages .packagesTier {
  margin-top: 100px;
}

.s11 .featured-packages .packageBox {
  min-height: 688px;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 20px 14px;
  -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;
}

.s11 .featured-packages .packageBox img.pkgTier {
  margin-top: -90px;
}

.s11 .featured-packages h2.packageName {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 0 15px;
  position: relative;
  margin-bottom: 15px;
}

.s11 .featured-packages h2.packageName:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 150px;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.s11 .featured-packages .packageBox p {
  font-size: 14px;
  color: var(--white);
  line-height: 20px;
  margin: 0;
}

.s11 .featured-packages .packageOrder.packagePrice {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 28px 0 30px;
  flex-direction: column;
  grid-row-gap: 15px;
}

.s11 .featured-packages .packagePrice h5 > sup {
  color: var(--orange);
  font-weight: 700;
  right: -5px;
}

.s11 .featured-packages .packagePrice h5 {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  color: var(--white);
  font-weight: 800;
}

.s11 .featured-packages .packageOrder.packagePrice h5 small {
  color: var(--white);
  font-size: 15px;
  margin-left: -5px;
  font-weight: 400;
  opacity: 0.5;
}

.s11 .featured-packages .packageOrder a.order-now {
  position: relative;
  display: block;
  background: linear-gradient(transparent, transparent),
    linear-gradient(#00000061, transparent);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}

.s11 .featured-packages .packageOrder a.order-now:before {
  position: absolute;
  content: "";
  background: var(--white);
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  right: 0;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
.s11 .featured-packages .packageOrder a.order-now:hover::before {
  height: 100%;
}

.s11 .featured-packages .packageBox ul li {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

.s11 .featured-packages .packageBox h2,
.s11 .featured-packages .packageBox h5,
.s11 .featured-packages .packageBox li,
.s11 .featured-packages .packageBox p,
.s11 .featured-packages .packageBox small {
  -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;
}

.s11 .featured-packages .grayPackage .packagePrice h5,
.s11 .featured-packages .grayPackage .packagePrice h5 small,
.s11 .featured-packages .grayPackage .packagePrice h5 sup,
.s11 .featured-packages .grayPackage h2.packageName,
.s11 .featured-packages .grayPackage p,
.s11 .featured-packages .grayPackage ul li,
.s11 .featured-packages .packageOrder a.order-now:hover {
  color: #333 !important;
}

.s11 .featured-packages .grayPackage {
  background: #dde2ea;
}

.s11 .featured-packages .greenPackage {
  background: #285f4d;
}

.s11 .featured-packages .packageBox.bluePackage {
  background: #163d77;
}

.s11 .featured-packages .packageBox.purplePackage {
  background: #8b1ff1;
}

.s11 .featured-packages .grayPackage .packageOrder a.order-now {
  background: var(--black);
  box-shadow: unset;
  border-color: var(--black);
}

.s11 .featured-packages .grayPackage .packageOrder a.order-now:hover {
  border-color: var(--white);
}

.s11 .scalable-custom-package {
  margin: 70px 0;
  text-align: center;
}

.s11 .packages-head {
  margin-top: 30px;
  justify-content: center;
}

.s11 .packages-head .pkg-tab {
  position: relative;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 20px 26px;
  text-align: left;
  cursor: pointer;
}

.s11 .calcWrapper,
.s11 .custom-calculator {
  border-radius: 20px;
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 10%);
}

.s11 .packages-head .pkg-tab .pkgName {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
}

.s11 .packages-head .pkg-tab .pkgDescription {
  font-size: 15px;
  color: var(--dark-blue);
  line-height: 22px;
}

.s11 .packages-head span.pkgPricing {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-blue);
}

.s11 .packages-head span.pkgPricing small {
  font-size: 14px;
  color: var(--dark-blue);
  opacity: 0.8;
  font-weight: 400;
}

.s11 .packages-head .fa-check-circle,
.s11 .packages-head .fa-circle {
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
}

.s11 .packages-head .pkg-tab i.fa-circle {
  display: block;
  color: #adadad;
}

.s11 .packages-head .pkg-tab.active .fa-check-circle {
  background: var(--white);
  color: var(--orange);
  display: block;
}

.s11 .packages-head .pkg-tab.active {
  background: #fff8ed;
  border-color: var(--orange);
}

.s11 .calc-btn:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.s11 .packages-head .pkg-tab.active .fa-circle {
  display: none;
}
.s11 .pkg-tabContent {
  margin-top: 50px;
  display: none;
}

.s11 .pkg-tabContent.active {
  display: block;
}
.s11 .calcWrapper {
  padding: 40px 0 0;
}

.s11 .custom-calculator {
  padding: 40px 0;
}

.s11 .rangeSlider,
input[type="range"] {
  width: 100%;
  border-radius: 5px;
  -webkit-appearance: none;
}

.s11 .calc-btn {
  padding: 20px 30px;
}

.s11 .calc-item {
  font-weight: 700 !important;
  color: var(--dark-blue);
  font-size: 16px;
  text-align: left;
}

.s11 .calc-desc {
  text-align: left;
  color: var(--dark-blue);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

input[type="range"] {
  margin-right: 15px;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #ff0200;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #ff0200;
}

input[type="range"]::-ms-thumb:hover {
  background: #ff0200;
}

.s11 .d-price {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 0 14px;
  float: right;
}

.s11 .range-min-max {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
  color: var(--dark-blue);
  font-weight: 600;
}

.s11 .rangeSlider {
  height: 5px;
  background: #d3d3d3;
  outline: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  position: relative;
}

.s11 .rangeSlider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04aa6d;
  cursor: pointer;
}

.s11 .order-summary {
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 10%);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.s11 .summary-head {
  background: var(--dark-blue);
  color: var(--white);
  padding: 15px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 4px;
  text-align: left;
}

.s11 .summary-body {
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid #ddd;
}

.s11 .summary-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.s11 .summary-body ul li {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  border: none;
  margin-bottom: 10px;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.summary-body ul li span {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 0.875rem;
}

.s11 .summary-footer {
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-blue);
  padding: 15px;
  font-weight: 800;
  border: 1px solid #ddd;
  font-family: sans-serif;
}

.s11 .summary-body ul {
  padding: 0;
}

.s11 .summary-footer li {
  font-weight: 800 !important;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  width: 100%;
}

.s11 .cart-box .main-cta {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  border-radius: 0;
  border: 0 !important;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: #ccc;
}

input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: #ccc;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: #ccc;
}

.s11 .firstPackageOffer .innerWrapper {
  background-image: url(../img/link-building-service/main-package-back.webp) !important;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 30px 50px;
}

.s11 .firstPackageOffer .col-left h2 {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--orange);
  text-shadow: 0 2px 3px var(--black);
  line-height: 1.1;
}

.s11 .firstPackageOffer .col-left p {
  color: var(--white);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}

.s11 .firstPackageOffer .col-left small {
  color: var(--white);
  opacity: 0.5;
  font-size: 12px;
  display: inline-block;
  padding-bottom: 20px;
}

.s11 .firstPackageOffer .col-left h3 {
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-size: 20px;
  padding-bottom: 10px;
}

.s11 .firstPackageOffer ul.IncludedUl li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 5px;
}
.s11 .firstPackageOffer ul.IncludedUl li i {
  color: var(--orange);
}
.s11 .firstPackageOffer .priceTag del {
  font-size: 60px;
  font-weight: 600;
  color: #f4f4f4;
  line-height: 1;
  opacity: 0.8;
}

.s11 .firstPackageOffer .priceTag h3 {
  font-size: 104px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  letter-spacing: -5px;
  line-height: 1;
  text-shadow: 0 2px 3px var(--black);
  padding-bottom: 10px;
}

.s11 .d-price,
.s11 .firstPackageOffer .priceTag del,
.s11 .firstPackageOffer .priceTag h3,
.s11 .range-min-max {
  font-family: "Poppins", sans-serif;
}

a.main-cta.btn-white {
  position: relative;
  background: linear-gradient(#fff, #ccc), linear-gradient(#fff, #0e2e6763);
  color: var(--dark-blue);
  display: block;
  text-align: center;
  font-weight: 600;
  box-shadow: 2px 2px 20px rgb(14 46 103 / 40%);
  z-index: 9;
}
a.main-cta.btn-white:hover {
  color: var(--white);
}
a.main-cta.btn-white::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  height: 0;
  z-index: -1;
  background: linear-gradient(#f2701d, #f99250),
    linear-gradient(#f99250, #f2701d);
}
a.main-cta.btn-white:hover:before {
  height: 100%;
}

/* SECTION ELEVEN CSS END  */

/* SECTION TWELVE CSS STAR  */

.s12 .div-CTA {
  margin: 3rem 0 0;
}

/* SECTION TWELVE CSS END  */

/* SECTION THIRTEEN CSS STAR  */

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

/* SECTION THIRTEEN CSS END  */

/* SECTION FOURTEEN CSS START  */

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

.s14 .box {
  border: 1px solid #e1e9f7;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  transition: var(--transition);
}

.s14 .box h3,
.s14 .box h3 > a {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-blue);
  margin: 1rem 0;
}

.s14 .box p {
  font-size: 0.875rem;
  color: #4d4d4d;
  line-height: 20px;
}
.s14 .box:hover {
  box-shadow: 30px 0 40px #f4f6fa;
}
.s14 .div-CTA {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
  margin: 3rem 0 0;
}

/* SECTION FOURTEEN CSS END  */

/* SECTION FIVETEEN CSS START  */

.s15 .arrow {
  position: absolute;
  top: -40%;
}

.s15 .left-arrow {
  left: 0px;
}

.s15 .right-arrow {
  transform: scaleX(-1);
  right: 0px;
}

.s15 .main-cta {
  width: 100%;
}

/* SECTION FIVETEEN CSS END  */

/* SECTION SIXTEEN CSS START  */

.s16 .div-CTA {
  margin: 3rem 0 0;
}
/* .s16 .div-img img {
  position: absolute;
  bottom: 0;
} */
.s16 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1rem;
}
.s16 ul {
  margin: 1rem 0 !important;
}
.s16 ul li:not(:last-child) {
  margin: 0 0 0.5rem;
}

.s16 ul li strong {
  color: var(--dark-blue);
}

/* SECTION SIXTEEN CSS END  */

/* SECTION SEVENTEEN CSS START  */

.section.s17 {
  margin-top: 0;
}

.spam-policies-wrap {
  background: #f3f4f7;
  padding: 2rem 2rem 0;
  border-radius: 1rem;
  position: relative;
  margin: 0 2rem;
}

.spam-policies-wrap .spam-policies-links {
  text-align: center;
  margin: 0 auto 3rem;
  position: relative;
  width: fit-content;
}

.spam-policies-wrap .spam-policies-links > div:not(:last-child) {
  margin: 0 0 0.5rem;
}

.spam-policies-wrap .spam-policies-links a {
  color: #2751f0;
  border-bottom: 1px solid #2751f0;
}

.spam-policies-wrap .spam-policies-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.spam-shape {
  position: absolute;
  top: 10px;
}

.spam-shape.spam-shape-1 {
  right: -100px;
}

.spam-shape.spam-shape-2 {
  left: -100px;
  transform: scaleX(-1);
}

.spam-policies-wrap:before {
  position: absolute;
  content: "";
  background: #2751f0;
  width: 110%;
  height: 70%;
  z-index: -1;
  left: -5%;
  bottom: -5%;
  border-radius: 0 0 2rem 2rem;
}

/* SECTION SEVENTEEN CSS END  */

/* SECTION EIGHTEEN CSS START  */

.s18 .head {
  margin: 0 0 2rem;
  max-width: 100%;
}
@media screen and (min-width: 1199px) and (max-width: 1600px) {
  .s18 .div-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto;
  }
}
/* SECTION EIGHTEEN CSS END  */

/* SECTION NINETEEN CSS START  */

.s19 .arrow {
  position: absolute;
  top: -50%;
}

.s19 .left-arrow {
  left: -100px;
}

.s19 .right-arrow {
  transform: scaleX(-1);
  right: -100px;
}

.s19 .main-cta {
  width: 100%;
}

/* SECTION NINETEEN CSS END  */

/* SECTION TWENTY CSS START  */

.s20 .row-wrap .row {
  align-items: center;
}
.s20 .row-wrap > div:not(:last-child) {
  margin-bottom: 5rem;
}
.s20 h3 {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 1rem;
}
.s20 p {
  font-size: 0.875rem;
  line-height: 22px;
  color: #333;
}
.s20 img {
  box-shadow: 4px 4px 10px #ccc;
  border-radius: 1rem;
}
.s20 .ready p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-blue);
}
/* SECTION TWENTY CSS END  */

/* SECTION TWENTY ONE - PARTNERS AREA CSS START HERE  */

.s21 {
  background: #f3f8fe;
  padding-bottom: 5rem;
}
.s21 ul.partners {
  display: flex;
  list-style: none;
  padding: 0 !important;
  justify-content: space-around;
  align-items: center;
}

.s21 ul.partners li img {
  max-width: 100%;
  padding: 5px;
}

/* SECTION TWENTY ONE - PARTNERS AREA CSS END HERE  */

/* SECTION TWENTY TWO CSS START HERE  */

.s22 {
  background: #fafafa;
  margin-top: 0 !important;
}
.s22 .row {
  grid-row-gap: 2rem;
}
.s22 .head {
  max-width: 100%;
}
.s22 .blog-card {
  position: relative;
  background: var(--white);
  padding: 0.6rem;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 626px;
  box-shadow: 0 0 40px rgb(204 204 204 / 40%);
}
.s22 .blog-card:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0.6rem;
  background: var(--orange);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.s22 .blog-card .blog-thumb {
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0 1rem;
}
.s22 .blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s22 .blog-card ul.blog-meta {
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem !important;
  padding: 0 0 1rem;
  display: none;
}
.s22 .blog-card ul.blog-meta li {
  font-size: 0.75rem;
  color: #717d92;
}
.s22 .blog-card .blog-title {
  min-height: 50px;
  margin: 0 0 1rem;
}
.s22 .blog-card .blog-title a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.5rem;
  display: inline-block;
  margin: 0;
}
.s22 .blog-category {
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  display: none;
}
.s22 .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;
}
.s22 .blog-card p {
  color: var(--dark-blue);
  min-height: 120px;
}
.s22 .blog-card .blog-read-more {
  text-align: center;
  margin: 1rem 0 0;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}
.s22 .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%);
}
.s22 .blog-card .blog-read-more a:hover {
  background: var(--dark-blue);
  box-shadow: 4px 4px 20px rgb(14 46 103 / 40%);
}
.s22 .blog-card .blog-details {
  padding: 0 1rem;
}

/* SECTION TWENTY TWO CSS END HERE  */

/* SECTION TWENTY THREE CSS START HERE  */

.s23 .faq-box {
  background: #f0f8ff;
  border-radius: 1rem;
  padding: 2rem 3rem;
  display: flex;
  grid-gap: 1rem;
}

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

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

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

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

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

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

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

/* SECTION TWENTY THREE CSS END HERE  */

/* SECTION TWENTY FOUR CSS START HERE  */

.s24 {
  background: #fff8ed;
}
.s24 .head {
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
}
.s24 .head p {
  color: var(--light-black);
  margin: 0;
}

.s24 h3.featured-on {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}
.s24 .content-Wrapper .logo-box {
  background: var(--white);
  padding: 25px 0;
  box-shadow: 0 0 10px 10px rgb(0 0 0 / 3%);
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  position: relative;
  z-index: 9999;
  margin: 20px 0;
}
.s24 .content-Wrapper .logo-box:before {
  position: absolute;
  content: "";
  background: var(--white);
  width: 100%;
  height: 100%;
  left: -50%;
  top: 0;
  z-index: -11;
}
.feature-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-icon-row .feat-icon h4 {
  color: #151515;
  font-weight: 600;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  padding-top: 12px;
}
.s24 .content-Wrapper a.main-cta {
  display: inline-block;
  padding: 14px 50px;
  margin-top: 50px;
}
@media screen and (min-width: 1366px) {
  .s24 img.premium-man {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    max-width: 50%;
  }
}
/* SECTION TWENTY FOUR CSS END HERE  */

.section--cta a.main-cta {
  width: 100%;
}

.ready .head::before {
  margin: auto;
}

/* MEDIA QUERY CSS START HERE  */

@media screen and (max-width: 1199px) {
  .s1 img.Badge {
    right: -50px;
  }

  .s3 .heading > h2 {
    font-size: 5rem;
  }

  .s4 .left-arrow {
    left: -70px;
  }

  .s4 .right-arrow {
    right: -70px;
  }

  .s8 .contact-box a {
    font-size: 3.8rem;
  }

  .s8 .col-left h3 {
    font-size: 1.5rem;
  }

  .s8 .col-left h3 span {
    font-size: 2.8rem;
  }

  .s11 .firstPackageOffer .col-left h2 {
    font-size: 3.5rem;
  }

  .s11 .firstPackageOffer .col-left p {
    font-size: 1.25rem;
  }
  .s11 .featured-packages .packagePrice h5 {
    font-size: 2rem;
  }

  .s11 .firstPackageOffer .priceTag del {
    font-size: 3rem;
  }

  .s11 .firstPackageOffer .priceTag h3 {
    font-size: 5rem;
  }
  .s11 .firstPackageOffer ul.IncludedUl li {
    font-size: 12px;
  }
  .s19 .left-arrow {
    left: -50px;
  }

  .s19 .right-arrow {
    right: -50px;
  }
}

@media (max-width: 991px) {
  .s1 .sub-heading,
  .s1 .sub-heading span {
    max-width: 85%;
    font-size: 2rem;
  }

  .s1 img.Badge {
    right: -20px;
  }

  .s1 .col-right .bannerImage {
    display: none;
  }

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

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

  .s2 .row {
    grid-row-gap: 1rem;
  }

  .s3 .heading > h2 {
    font-size: 2.5rem;
  }

  .s3 .col-left {
    border-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }

  .s3 .col-right {
    text-align: center;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .s3 .div-video {
    margin-top: 1rem;
  }

  .s4 .arrow {
    display: none;
  }

  a.main-cta {
    padding: 1rem 0rem;
    font-size: 0.875rem;
    /* width: 100%; */
  }

  section.diamond {
    padding-top: 5rem;
  }

  .s5.diamond {
    margin-top: 3rem;
  }

  .s5 .row.gg-box-row {
    grid-row-gap: 2rem;
  }

  .gg-box-row .gg-box {
    min-height: auto;
  }

  .s6 .lb-services-wrap .row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .s6 .lb-services-wrap {
    text-align: center;
  }

  .lb-services-wrap .div-text > span {
    position: static;
    font-size: 1.5rem;
    background: var(--black);
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--white);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
  }

  .s7 .row-one {
    text-align: center;
    grid-row-gap: 2rem;
  }

  .s8 .col-left .arrow-call {
    display: none;
  }

  .s8 .col-left {
    width: fit-content;
    margin: auto;
  }

  .s8 .col-right {
    text-align: center;
  }

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

  .s9 .benefits-link-building {
    grid-gap: 0.5rem;
    text-align: center;
  }

  .s9 .benefit-box p {
    font-size: 0.75rem;
    font-weight: 600;
  }

  .s9 .benefits-link-building .benefit-box {
    border-right: 0 !important;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 1rem;
  }

  .s9 .benefits-link-building.mb {
    margin: 0;
  }

  .s11 .featured-packages .packagesTier {
    grid-row-gap: 6rem;
  }

  .s11 .row.calculatorRow {
    grid-row-gap: 2rem;
  }

  .s11 .firstPackageOffer .innerWrapper {
    text-align: center;
  }

  .s11 .firstPackageOffer .col-left h2 {
    font-size: 3rem;
  }

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

  .s12 .head:before {
    margin: auto;
  }

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

  .s12 .row a.main-cta.btn-orange {
    padding: 1rem 3rem;
  }

  .s14 a.main-cta {
    width: 100%;
  }

  .s16 .div-img img {
    position: unset;
  }

  .s16 a.main-cta {
    width: 100%;
  }

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

  .s18 .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .s18 .head:before {
    margin: auto;
  }

  .s19 .arrow {
    display: none;
  }

  .s20 .row-wrap {
    text-align: center;
  }

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

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

  .s20 .row-wrap > div:not(:last-child) {
    margin-bottom: 3rem;
  }

  .s22 .blog-card p {
    min-height: auto;
  }

  .s24 {
    text-align: center;
  }

  .s24 .head:before {
    margin: auto;
  }

  .s24 .content-Wrapper .logo-box:before {
    display: none;
  }

  .s24 .content-Wrapper .logo-box {
    padding: 1rem;
    border-radius: 1rem;
    justify-content: center;
  }

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

@media (max-width: 767px) {
  .spam-policies-wrap .spam-policies-links {
    word-break: break-word;
  }

  .spam-shape {
    display: none;
  }
  .s1 .heading {
    font-size: 0.875rem;
  }

  .s1 .sub-heading,
  .s1 .sub-heading span {
    max-width: 100%;
    font-size: 1.5rem;
    padding: 0;
  }

  .s1 ul.servieList {
    margin-top: 0 !important;
  }

  .s1 ul.servieList li:not(:last-child) {
    margin: 0;
  }

  .s1 ul.servieList li {
    font-size: 0.813rem;
    font-weight: 500;
    line-height: 2;
  }

  .s1 img.Badge {
    display: none;
  }

  .s1 {
    padding: 2rem 0 !important;
  }

  .cover--btn {
    flex-direction: column;
    margin: 0;
  }

  .cover--btn .main-btn {
    padding: 0.75rem 0;
    width: 100%;
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: 0;
  }

  .s1 .Form-box {
    max-width: 100%;
  }

  .s1 .Form-box .button-box a {
    padding: 0.75rem 0;
    width: 100%;
    font-size: 0.875rem;
  }

  .section {
    padding: 2rem 0;
  }

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

  .snapshot-box .snapshot-traffic span {
    font-size: 2rem;
  }

  .s3 .heading > h2 {
    font-size: 1.25rem;
  }

  svg.pulse-svg {
    width: 50px;
    height: 50px;
  }

  .pulse-box:before {
    font-size: 0.875rem !important;
  }
  .section--cta .row {
    grid-row-gap: 1rem;
  }

  .lb-services-wrap .div-text > h3,
  .lb-services-wrap .div-text > h3 > a {
    font-size: 1.5rem;
  }

  .s7 .row-one .div-text h2 {
    font-size: 1.25rem;
  }

  .s7 .row.row-two {
    grid-row-gap: 3rem;
  }

  .s8 .col-left {
    padding: 2rem 1rem;
    width: 90%;
  }

  .s8 .col-left h3 span {
    font-size: 2.25rem;
  }

  .s8 .contact-box h4 {
    font-size: 2rem;
  }

  .s8 .contact-box {
    padding: 0;
  }

  .s8 .contact-box a {
    font-size: 2.25rem;
  }

  .s9 .head {
    margin-bottom: 3rem;
  }

  .s11 .featured-packages .packageBox {
    min-height: auto;
  }

  .s11 p.pkg-heading {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .s11 .range-min-max {
    font-size: 0.75rem;
  }
  .section--cta .row {
    grid-row-gap: 1rem;
  }

  .lb-services-wrap .div-text > h3,
  .lb-services-wrap .div-text > h3 > a {
    font-size: 1.5rem;
  }

  .s7 .row-one .div-text h2 {
    font-size: 1.25rem;
  }

  .s7 .row.row-two {
    grid-row-gap: 3rem;
  }

  .s8 .col-left {
    padding: 2rem 1rem;
    width: 90%;
  }

  .s8 .col-left h3 span {
    font-size: 2.25rem;
  }

  .s8 .contact-box h4 {
    font-size: 2rem;
  }

  .s8 .contact-box {
    padding: 0;
  }

  .s8 .contact-box a {
    font-size: 2.25rem;
  }

  .s9 .head {
    margin-bottom: 3rem;
  }

  .s11 .featured-packages .packageBox {
    min-height: auto;
  }

  .s11 p.pkg-heading {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .s11 .range-min-max {
    font-size: 0.75rem;
  }

  .s11 .scalable-custom-package {
    margin: 4rem 0 3rem;
  }

  .s11 .firstPackageOffer .innerWrapper {
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: left;
    background: var(--dark-blue);
    background-image: unset !important;
  }

  .s11 .firstPackageOffer .col-left h2 {
    font-size: 2rem;
    margin: 0 0 0.5rem;
  }

  .s11 .firstPackageOffer .priceTag del {
    font-size: 2rem;
  }

  .s11 .firstPackageOffer .priceTag h3 {
    font-size: 4rem;
  }

  .s11 .featured-packages,
  .s11 .firstPackageOffer .priceTag {
    text-align: left;
    margin: 1rem 0;
  }
  .reviews-logos-row .row {
    grid-row-gap: 1.5rem;
  }

  .s14 .box p {
    margin: 0;
  }

  .s14 .div-CTA {
    flex-direction: column;
  }

  .s15 .arrow {
    display: none;
  }

  .section-cta .row {
    grid-row-gap: 1.5rem;
  }

  img.diamond {
    display: none;
  }

  section.diamond {
    padding-top: 2rem !important;
  }

  .s20 h3 {
    font-size: 1.25rem;
  }

  .s22 .blog-card {
    min-height: auto;
  }

  .s23 .faq-box .faq-icon {
    display: none;
  }

  .s23 .faq-box {
    padding: 2rem 1.5rem;
  }

  .feature-icon-row .feat-icon {
    flex: 1 50%;
  }

  .feature-icon-row {
    flex-wrap: wrap;
    grid-row-gap: 1.5rem;
  }

  .feature-icon-row .feat-icon h4 {
    font-size: 0.75rem;
  }
}
