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

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

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

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

li {
  list-style: none;
}

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

i {
  transition: unset;
}

:focus {
  outline: 0px !important;
}

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

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

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

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

/* BOOTSTRAP CSS START  */

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

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

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

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

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

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

/* BOOTSTRAP CSS END  */

/* GLOBAL CSS START HERE  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

section.diamond {
  padding-top: 8.75rem;
  margin-top: 3.75rem;
  overflow: visible;
  border-top: 1px solid #b9b9b9;
}

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

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

  .mobile {
    display: none;
  }
}

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

  .mobile {
    display: block;
  }
}

/* GLOBAL CSS END HERE  */

/* SECTION ONE CSS START HERE */

.homeBanner.s1 {
  position: relative;
  background-image: url(../img/global/coverBanner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4rem 0 1rem;
}

.s1 h1 {
  color: var(--light-blue);
  font-weight: 800;
  margin: 0 0 1.2rem;
}

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

.s1 p {
  font-size: 1.125rem;
  color: var(--dark-blue);
  font-weight: 500;
  line-height: 26px;
  /* margin: 0; */
}

.s1 p span {
  background: var(--orange);
  color: var(--white);
  display: inline-block;
  padding: 0 5px;
}

.s1 .coverBtns {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 1.5rem 0;
}

.s1 .coverBtns a {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  border: 2px solid var(--dark-blue);
}

.s1 .coverBtns a.talk-chat {
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 4px 4px 20px rgb(0 22 94 / 40%);
}

.s1 .coverBtns a.talk-chat:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 4px 4px 20px rgb(241 111 29 / 40%);
}

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

.s1 .coverBtns a.talk-phone:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 4px 4px 20px rgb(241 111 29 / 40%);
}

/* .s1 .partners>ul {
    display: flex;
    display: -webkit-flex;
    grid-gap: .6rem;
}

@media screen and (max-width: 767px) {
    .partners>ul {
        gap: 0.5rem;
    }
}

.s1 .partners img {
    transition: all .3s ease-in-out;
}

.s1 .partners img:hover {
    transform: scale(1.1);
} */

.s1 .bottomRow {
  text-align: center;
}

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

.s1 .bottomRow .statsBox h2 {
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: revert;
  color: var(--dark-blue);
}

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

.s1 .bottomRow ul.partners {
  display: flex;
  grid-gap: 20px;
  width: 90%;
  margin: 0 auto !important;
  justify-content: center;
  align-items: center;
}

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

.homeBanner .Form-box h2 {
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark-blue);
  padding-bottom: 20px;
}

.homeBanner .Form-box h2 span {
  color: var(--orange);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.homeBanner .form-group .form-control:focus,
.homeBanner .form-group .form-control:visited {
  border-color: var(--orange);
}

.bannerImg {
  position: absolute;
  width: 55%;
  margin: auto;
  top: 3rem;
}

@media screen and (min-width: 1600px) {
  .bannerImg {
    width: 45%;
  }
}

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

.s2 .div-text {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .s2 h2 {
    font-size: 2.4rem;
  }

  .s2 h3 {
    font-size: 3.75rem;
  }

  .s2 h4 {
    font-size: 1.75rem;
  }
}

.s2 h2,
.s2 h3 {
  color: var(--dark-blue);
  font-weight: 800;
  line-height: 1;
}

.s2 h2 span,
.s2 h3 span {
  color: var(--orange);
}

.s2 hr {
  max-width: 35%;
  background: var(--orange);
  opacity: 1;
  min-height: 0.5rem;
}

.s2 h4 {
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0 0 1.5rem;
}

.s2 h5 {
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0 0 0.5rem;
}

.s2 p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 24px;
}

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

.s2 .arrow-one {
  position: absolute;
  right: -60px;
  z-index: 9;
}

.s2 .arrow-two {
  position: absolute;
  transform: rotate(136deg);
  left: 60%;
}

.s2 a.main-cta {
  margin: 1rem 0 0;
}

.s2 .orange-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.s2 .circle {
  width: 230px;
  height: 230px;
  background: #e8f1fa;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: -1;
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

.s3 {
  background-image: url(../img/local-seo-services/did-you-know.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

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

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

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */

.s4 {
  padding-top: 6rem;
}

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

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

.s4 .left-arrow {
  left: -15%;
}

.s4 .right-arrow {
  right: -15%;
  transform: scaleX(-1);
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */

.s5 p {
  font-size: 0.875rem;
  line-height: 24px;
  font-weight: 500;
}

.s5 .head {
  margin-bottom: 4rem;
}

@media screen and (min-width: 1366px) {
  .s5 .local-seo-screen {
    position: absolute;
    top: 10%;
    bottom: 0;
    margin: auto;
  }
}

/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */

.s6 {
  background: #f3f7ff;
}

.s6 .head {
  margin-bottom: 6rem;
}

.s6 .head span {
  display: block;
}

.solution-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-row-gap: 5rem;
  grid-column-gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.solution-row .solution-box {
  flex: 0 0 17%;
}

.solution-box {
  position: relative;
  background: var(--white);
  border: 1px solid #eaeaeb;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 20px rgb(0 91 255 / 14%);
  padding: 0 1.5rem;
  min-height: 200px;
}

.solution-box .solution-icon {
  background: var(--white);
  width: 90px;
  height: 90px;
  border: 1px solid #eaeaeb;
  border-radius: 50%;
  box-shadow: 4px 4px 25px rgb(0 91 255 / 14%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3rem auto 1rem;
}

.solution-box p {
  font-size: 0.875rem;
  color: var(--dark-blue);
  font-weight: 500;
  text-align: center;
  line-height: 20px;
}

.solution-row .solution-box:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 6px;
  background: var(--orange);
  border-radius: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

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

.s7:before {
  position: absolute;
  content: "";
  background: rgb(255 255 255 / 10%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -15%;
  left: -10%;
}

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

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

.s7 .div-text h2,
.s7 .div-text h3,
.s7 .div-text h4 {
  font-weight: 800;
}

.s7 .div-text h2 span,
.s7 .div-text h3 span {
  color: var(--orange);
}

.s7 .div-text hr {
  background: var(--orange);
  opacity: 1;
  height: 8px;
  margin-bottom: 2rem;
}

.s7 .div-cta .arrow-one {
  position: absolute;
  right: -50px;
  top: -30px;
  transform: rotate(130deg);
}

.s7 .div-cta {
  position: relative;
  margin: 2rem 0 0;
}

.s7 .div-cta a.main-cta {
  width: 80%;
}

.s7 .div-cta a.main-cta:hover {
  border-color: var(--white);
}

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

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

  /* .s7 .div-text h3 {
        font-size: 3.125rem;
    } */

  .s7 .div-text h4 {
    font-size: 1.875rem;
  }

  .s7 .div-img {
    text-align: right;
  }
}

/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */

.s8 .service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #d4ddee;
  border-radius: 1rem;
  min-height: 280px;
  box-shadow: 15px 15px 30px rgb(0 91 255 / 15%);
  padding: 1.5rem;
  overflow: hidden;
}

.s8 .service-card .service-icon.service-name {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
}

.s8 .service-card .service-name h2 {
  position: relative;
  padding-left: 1rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--dark-blue);
  font-weight: bold;
  min-height: 72px;
}

.s8 .service-card .service-name h2:before {
  position: absolute;
  content: "";
  background: #d4ddee;
  width: 1px;
  height: 70px;
  left: 0;
}

.s8 .service-card p {
  font-weight: 500;
  color: var(--dark-blue);
  margin: 0;
  line-height: 20px;
}

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

.s8 .service-card:before {
  counter-increment: section;
  content: "0" counter(section) " ";
  position: absolute;
  top: 0;
  left: 0;
  background: #747474;
  color: var(--white);
  padding: 0.1rem 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SECTION EIGHT CSS END HERE */

/* SECTION NINE CSS START HERE */

.s9 .packageBox {
  background: var(--white);
}

.s9 .packageName {
  background: var(--dark-blue);
  text-align: center;
  padding: 1.5rem 0;
  border-radius: 1rem 1rem 0 0;
}

.s9 .packageName h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}

.s9 .pacakgeContentWrapper {
  border: 1px solid #6a6a6a;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}

.s9 .packagePrice {
  text-align: center;
  padding: 1.5rem 0;
}

.s9 .packagePrice h3 sup {
  color: #6a6a6a;
}

.s9 .packagePrice h3 {
  font-family: "Inter", sans-serif;
  color: var(--orange);
  font-weight: 800;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .s9 .packagePrice h3 {
    font-size: 3.75rem;
  }

  .s9 .packagePrice h3 sup {
    font-size: 1.5rem;
    top: -1.5rem;
  }

  .s9 .packagePrice h3 small {
    font-size: 1.25rem;
  }
}

.s9 .packagePrice h3 small {
  color: #6a6a6a;
}

.s9 .packageContent {
  height: 310px;
  overflow-y: auto;
}

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

.s9 .packageContent::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.s9 .packageContent::-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
  );
}

.s9 .packageContent table {
  width: 100%;
}

.s9 .packageContent table tr {
  font-weight: 500;
  color: var(--dark-blue);
}

.s9 .packageContent table tr:nth-child(odd) {
  background: #ecf3ff;
}

.s9 .packageContent table tr td {
  padding: 10px;
  font-size: 0.875rem;
}

.s9 .packageContent table tr td i {
  color: #07962c;
}

.s9 .packageContent table tr td:last-child {
  text-align: center;
  border-left: 1px solid #ccd4e2;
}

.s9 .packageOrder {
  text-align: center;
  background: #f3f4f7;
  padding: 2rem 0;
}

.s9 .packageOrder .order-now {
  background-color: var(--orange);
  box-shadow: 5px 5px 20px rgb(241 111 29 / 50%);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 1rem 0;
  margin: 0 2rem;
  display: block;
  transition: all 0.3s;
}

.s9 .packageOrder .order-now:hover {
  background-color: var(--dark-blue);
  box-shadow: 5px 5px 20px rgb(0 22 94 / 50%);
}

.s9 .packageContact {
  background: #e5e6e9;
  padding: 15px 10px;
  text-align: center;
}

.s9 .packageContact ul li {
  display: inline-block;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .s9 .packageContact ul li:first-child {
    padding-right: 10px;
    margin-right: 5px;
    border-right: 2px solid #b5b2b2;
  }
}

.s9 .packageContact ul li a {
  color: var(--dark-blue);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.s9 .packageContact ul li a:hover {
  color: var(--orange);
}

.s9 .packageContact ul li i {
  color: var(--orange);
  font-weight: bold;
  font-size: 0.875rem;
}

.s9 .package-tabContent {
  display: none;
}

.s9 .package-tabContent.active {
  display: block;
}

.s9 .package-tabContent .row {
  grid-row-gap: 3rem;
}

.s9 .packages-tab-head {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1rem;
  justify-content: center;
  margin: 0 0 2.5rem;
}

.s9 .packages-tab-head .package-tab {
  background: #e5e5e5;
  margin: 0;
  color: #3a3a3a;
  padding: 12px 50px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.s9 .packages-tab-head .package-tab.active {
  background: var(--dark-blue);
  color: var(--white);
}

.s9 .packages .head h2 {
  font-size: 36px;
}

.s9 .packages-tabs-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  padding: 4px;
  border-radius: 50px;
}

.s9 .packages-tabs-head .pkg-tab p {
  margin: 0;
  font-size: 14px;
  color: #5685d9;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  padding: 16px 52px;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 4s ease-in-out;
  -moz-transition: all 4s ease-in-out;
  -o-transition: all 4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.s9 .packages-tabs-head .pkg-tab.active p {
  background: #5685d9;
  color: var(--white);
}

.s9 .packages-tab-head .package-tab > p {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
}

.s9 .packages-tab-head .package-tab > span {
  font-size: 0.875rem;
}

.s9 .packages-tab-head .package-tab.active > * {
  color: var(--white);
}

/* SECTION NINE CSS END HERE */

/* SECTION TEN CSS START HERE */

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

.s10 .head h2 {
  color: var(--white);
}

.tab-content {
  display: block;
  height: 0;
  overflow: hidden;
}

.tab-content.active {
  height: auto;
  padding: 0 0 1rem;
}

.s10 ul.tabs-nav-list {
  display: flex;
  justify-content: center;
  margin: 0 0 3rem !important;
  gap: 2rem;
}

.s10 ul.tabs-nav-list .tab-nav {
  background: #f7f9f9;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  cursor: pointer;
  opacity: 0.5;
}

.s10 ul.tabs-nav-list .tab-nav.active {
  box-shadow: 0 0 20px rgb(14 46 103 / 20%);
  background: var(--white);
  opacity: 1;
}

.s10 ul.tabs-nav-list .tab-nav span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
}

.s10 ul.tabs-nav-list .tab-nav img {
  filter: grayscale(1);
}

.s10 ul.tabs-nav-list .tab-nav.active img {
  filter: none;
}

.s10 .caseStudy-item img {
  margin: auto;
}

/* SLIDE CONTENT STYLE START */

/* SLIDE 1 START */

.caseStudy-item {
  position: relative;
  background: var(--white);
  border: 1px solid #c1c6d1;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px hwb(218deg 5% 60% / 25%);
  margin: 0 1.5rem 3rem;
  min-height: 430px;
  overflow: hidden;
}

.caseStudy-item.slide-1 {
  text-align: center;
  padding: 0 3rem 0;
}

.caseStudy-item.slide-1 .caseStudy-name {
  margin: 0;
}

.caseStudy-item.slide-1 p {
  font-size: 24px;
  color: #535353;
  font-weight: 500;
  margin: 1rem 0 0;
}

.caseStudy-item.slide-1 h2 {
  color: var(--dark-blue);
  font-weight: 800;
  margin: 3rem auto;
}

@media screen and (min-width: 1200px) {
  .caseStudy-item.slide-1 h2 {
    font-size: 1.875rem;
    max-width: 80%;
  }
}

/* SLIDE 1 END  */
/* SLIDE 2 START  */

.caseStudy-item .caseStudy-name {
  text-align: center;
  margin: 0 0 1rem;
}

.caseStudy-item .caseStudy-name h2 {
  font-weight: bold;
  text-transform: uppercase;
  background: var(--dark-blue);
  color: var(--white);
  display: inline-block;
  padding: 1% 2%;
  border-radius: 0 0 1rem 1rem;
}

@media screen and (min-width: 1200px) {
  .caseStudy-item .caseStudy-name h2 {
    font-size: 2.125rem;
  }
}

table.GeneratedTable {
  width: 100%;
}

table.GeneratedTable > thead {
  background: #3c3c3c;
}

table.GeneratedTable > thead th {
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 0;
}

table.GeneratedTable > tbody > tr > td {
  padding: 7.5px 0;
  color: #3c3c3c;
}

table.GeneratedTable > thead tr th:not(:first-child) {
  text-align: center;
}

table.GeneratedTable > thead > tr > th:first-child,
table.GeneratedTable > tbody > tr > td:first-child {
  padding-left: 5%;
}

table.GeneratedTable > tbody > tr:nth-child(odd) {
  background: #f4fbff;
}

table.GeneratedTable > thead > tr > th:not(:first-child),
table.GeneratedTable > tbody > tr > td:not(:first-child) {
  text-align: center;
  border-left: 1px solid #c7c7c7;
  font-weight: 500;
}

/* SLIDE 2 END  */

/* SLIDE 3 START  */

.caseStudy-item.slide-3 {
  padding: 2rem;
}

.caseStudy-item.slide-3 .row {
  align-items: center;
}

.caseStudy-item.slide-3 .div-text p {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0;
  line-height: 1;
}

.caseStudy-item.slide-3 .div-text p span {
  color: var(--orange);
}

.caseStudy-item.slide-3 .div-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 10.5rem;
  font-weight: 800;
  color: var(--orange);
}

.caseStudy-item.slide-3 .div-text h4 {
  font-family: "Inter", sans-serif;
  font-size: 3.125rem;
  font-weight: 800;
  color: var(--dark-blue);
}

/* SLIDE 3 END  */

/* SLIDE 4 START  */

.caseStudy-item.slide-4 {
  padding: 0 8%;
}

.caseStudy-item.slide-4 .row {
  margin: 12% 0 0;
}

.caseStudy-item.slide-4:before,
.caseStudy-item.slide-4:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 450px;
  height: 600px;
  border-radius: 50%;
  top: -20%;
}

.caseStudy-item.slide-4:before {
  left: -35%;
}

.caseStudy-item.slide-4:after {
  right: -35%;
}

.caseStudy-item.slide-4 .col-lg-3 h3 {
  font-size: 4.375rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: var(--sky-blue);
  line-height: 1;
}

.caseStudy-item.slide-4 .col-lg-3 {
  text-align: center;
}

.caseStudy-item.slide-4 .col-lg-3 p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  line-height: 1;
}

/* SLIDE 4 END  */

/* SLIDER 3 SLIDE 3 START  */

.caseStudy-Slider-3 .caseStudy-item.slide-3 {
  padding: 2rem;
}

.caseStudy-Slider-3 .caseStudy-item.slide-3 .row {
  align-items: center;
}

.caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text p {
  font-size: 2.375rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0;
}

.caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text h3 {
  font-size: 11.125rem;
  font-weight: 800;
  color: var(--orange);
  font-family: "Inter", sans-serif;
}

.caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text p span {
  color: var(--sky-blue);
  font-weight: 800;
}

/*  SLIDER 3 SLIDE 3 END  */

.slick-slider {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.slick-list.draggable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* SLIDE CONTENT STYLE END */

.s10 .slick-arrow-wrap {
  gap: 15rem;
}

.s10 .slick-arrow-wrap .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-blue);
  cursor: pointer;
}

.s10 .slick-arrow-wrap .slick-arrow {
  background: var(--white);
}

.s10 .slick-arrow-wrap .slick-arrow.slick-disabled {
  background: var(--white);
  opacity: 0.5;
}

.s10 .slick-arrow-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s10 ul.slick-dots li {
  background: var(--white);
  border-radius: 50px;
  width: 18px;
  height: 18px;
}

.s10 ul.slick-dots li.slick-active {
  background: var(--sky-blue);
  width: 70px;
}

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

.s10 .slick-arrow-wrap,
.s10 ul.slick-dots {
  bottom: -8%;
}

.s10 ul.slick-dots {
  left: 0;
  right: 0;
  margin: 0 auto !important;
  width: max-content;
}

/* SECTION TEN CSS END HERE */

/* SECTION ELEVEN CSS START HERE */

.s11 .col-center {
  background: var(--dark-blue);
  width: 1%;
  padding: 0;
}

.s11 .row {
  justify-content: space-between;
}

.s11 h2 {
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}

.s11 h2 span {
  line-height: 1;
}

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

  .s11 h2 span {
    display: block;
    font-size: 5rem;
  }
}

.s11 h3 {
  color: var(--dark-blue);
  font-weight: 800;
}

.s11 p {
  color: #6a6a6a;
  font-weight: 500;
}

.s11 .scroll-snap {
  display: flex;
  overflow: auto;
  padding: 5% 0 3% 10%;
}

.s11 .scroll-snap img {
  box-shadow: 0 0 30px rgb(0 91 255 / 15%);
  margin-right: 2rem;
}

.s11 .scroll-snap::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #e8ebf0;
}

.s11 .scroll-snap::-webkit-scrollbar {
  height: 0.4rem;
  background-color: #e8ebf0;
}

.s11 .scroll-snap::-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
  );
}

.scroll-snap-icon {
  position: relative;
  display: flex;
  margin: 1rem auto 0;
  animation: 1s animation2 infinite;
}

@keyframes animation2 {
  0% {
    left: 0;
  }

  50% {
    left: 50px;
  }

  100% {
    left: 0;
  }
}

/* SECTION ELEVEN CSS END HERE */

/* SECTION TWELVE CSS START HERE */

.s12 {
  background: #f6f9ff;
  padding: 80px 0;
}

.s12 p {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark-blue);
  z-index: 9;
}

.s12 h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  font-weight: 800;
}

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

.s12 .free-quote-cta {
  position: relative;
  text-align: center;
  margin: 3rem 0 0;
}

.s12 .free-quote-cta p {
  font-weight: 800;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .s12 .free-quote-cta p {
    font-size: 3.125rem;
  }
}

.s12 .free-quote-cta .phone-call {
  font-size: 4.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  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;
}

.s12 .free-quote-cta .phone-call:hover {
  color: rgba(0, 0, 0, 0);
}

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

  50% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}

.s12 .free-quote-cta .arrow {
  position: absolute;
  top: -10%;
}

.s12 .arrow-one {
  left: 7%;
}

.s12 .arrow-two {
  right: 7%;
  transform: scaleX(-1);
}

.s12 .angleShape1,
.s12 .angleShape2 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.s12 .angleShape1 {
  left: 0;
}

.angleShape2 {
  right: 0;
  transform: scaleX(-1);
}

/* SECTION TWELVE CSS END HERE */

/* SECTION THIRTEEN CSS START HERE */

.s13 .head h2 span {
  display: block;
}

.s13 p {
  font-size: 0.875rem;
}

.s13 p a {
  color: var(--orange);
  border-bottom: 1px solid;
}

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

@media screen and (min-width: 1200px) {
  .google-my-business {
    position: absolute;
    top: 20%;
    bottom: 0;
    margin: auto;
  }
}

/* SECTION THIRTEEN CSS END HERE */

/* SECTION FOURTEEN CSS START HERE */

.s14 {
  background: #f6f9ff;
}

@media screen and (min-width: 992px) {
  .s14 #testimonials-slider {
    max-width: 80%;
    margin: 0 auto;
  }
}

.s14 .testimonials-wrapper .item {
  background: var(--white);
  border-radius: 1.875rem;
  padding: 0 3.75rem;
  margin: 0 1rem 2rem;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgb(0 91 255 / 15%);
}

.s14 .testimonials-wrapper .item .client-logo {
  position: relative;
  padding: 3.125rem 0;
}

.s14 .testimonials-wrapper .item .client-logo:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 50%;
  height: 200%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -50%;
}

.s14 .testimonials-wrapper .item .client-logo img {
  position: relative;
  border-radius: 10px;
}

.s14 .testiminial-content {
  padding: 1.875rem 0;
}

.s14 .testimonials-wrapper .testiminial-content p {
  color: #6a6a6a;
  line-height: 1.5rem;
  font-size: 0.875rem;
  margin: 2rem 0;
}

.s14 .testimonials-wrapper .testiminial-content h4 {
  color: #333;
  font-style: italic;
  font-weight: bold;
  font-size: 1rem;
}

.s14 .testimonials-wrapper .testiminial-content h4 span {
  opacity: 0.5;
  font-size: 0.875rem;
  display: block;
}

.s14 .testimonials-wrapper a.client-url {
  color: var(--dark-blue);
  font-weight: 500;
  text-decoration: underline !important;
  display: inline-block;
}

.s14 .testimonials-wrapper a.client-url:hover {
  color: var(--orange);
}

.SBreviews-wrapper {
  max-width: 50%;
  margin: 0 auto;
  padding: 0 0 2rem;
}

.SBreviews-wrapper p {
  background: #f6f9ff;
  color: var(--dark-blue);
  text-align: center;
  font-weight: 600;
  border-radius: 0 0 1.5rem 1.5rem;
  letter-spacing: 1px;
  padding: 1rem 0;
}

.SBreviews-wrapper .row {
  align-items: center;
}

.s14 ul.slick-dots li {
  background: #ccc;
  border-radius: 50px;
  width: 15px;
  height: 15px;
}

.s14 ul.slick-dots li.slick-active {
  background: var(--dark-blue);
}

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

.s14 .slick-arrow {
  position: absolute;
  font-size: 3rem;
  font-weight: bold;
  color: #cccc;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.s14 .slick-arrow-next.slick-arrow {
  right: -5%;
}

.s14 .slick-arrow-prev.slick-arrow {
  left: -5%;
}

.s14 .slick-arrow:hover {
  color: var(--dark-blue);
}

/* SECTION FOURTEEN CSS END HERE */

/* SECTION FIVETEEN CSS START HERE */

.s15 {
  background: #f3f7ff;
}

.s15 .service-card {
  text-align: center;
  padding: 0 1rem;
}

.s15 .service-card .service-icon {
  height: 100px;
  margin: 0 0 0.5rem;
}

.s15 .service-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0 0 0.6rem;
  min-height: 58px;
}

.s15 .service-card p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
}

.s15 .row .col-lg-3:not(:last-child) {
  border-right: 1px solid #c4d1ea;
}

.services-row .row:first-child {
  margin-bottom: 5rem;
}

/* SECTION FIVETEEN CSS END HERE */

/* SECTION SIXTEEN CSS START HERE */

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

.s16 .head h2 {
  color: var(--white);
}

.s16 ul.tabs-list {
  background: #1a3c7a;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.s16 ul.tabs-list .tab-nav {
  position: relative;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  line-height: 1;
}

.s16 .tab-icon {
  background: #0d1e3d;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.s16 ul.tabs-list .tab-nav.active,
.s16 ul.tabs-list .tab-nav.active .tab-icon {
  background: var(--orange);
}

.s16 .tab-content {
  padding-left: 2rem;
}

.s16 .tab-content h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding: 0 0 1rem;
  margin: 0 0 2rem;
  text-transform: capitalize;
}

.s16 .tab-content h3:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 60px;
  height: 5px;
  bottom: 0;
}

.s16 .tab-content p {
  color: #dae0f1;
  font-size: 0.875rem;
  line-height: 24px;
}

.s16 .tab-content p a {
  color: #00baff;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 1px solid;
}

.s16 .tab-content p a:hover {
  color: var(--orange);
}

.s16 a.consultation {
  background: var(--orange);
  color: var(--white);
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  margin: 2rem 2rem 0;
  display: inline-block;
}

.s16 a.consultation:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.s7 a.consultation i {
  margin-left: 0.5rem;
}

/* SECTION SIXTEEN CSS END HERE */

/* SECTION SEVENTEEN CSS START HERE */

.s17 {
  background: #f3f7ff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.s17 .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%);
}

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

/* SECTION SEVENTEEN CSS END HERE */

/* SECTION EIGHTEEN CSS START HERE */
.s18 .accordion__item {
  background: #f5f5f5;
}

.s18 .accordion__item__header {
  width: 100%;
  padding: 1.4rem 2rem;
  border-radius: 6px;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
  cursor: pointer;
}

.s18 .accordion__item:not(:last-child) {
  margin: 0 0 1rem;
}

.s18 .accordion__item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s18 .accordion__item h4 > i {
  transition: all 0.3s ease-in-out !important;
  color: #a5abbc;
}

.s18 .accordion__item.active h4 > i {
  color: var(--orange);
  transform: rotate(180deg);
}

.s18 .accordion__item__content {
  padding: 1rem 2rem;
}

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

.s18 .accordion__item li {
  list-style-type: disclosure-closed;
  list-style-position: inside;
}

.s18 .accordion__item.active .accordion__item__header h4 {
  color: var(--dark-blue);
}

.s18 .accordion__item.active .accordion__item__header {
  border-radius: 6px 6px 0 0;
}

/* SECTION EIGHTEEN CSS END HERE */

/* SECTION NINETEEN CSS START HERE */

.s19 {
  background: #f3f7ff;
}

.s19 .ms-box {
  padding: 0 2rem;
  text-align: center;
}

.s19 .ms-box h2,
.s19 .ms-box h2 span {
  font-family: "Inter", sans-serif;
  color: var(--dark-blue);
  font-weight: 800;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin: 10px 0;
}

@media screen and (min-width: 1200px) {
  .s19 .ms-box h2,
  .s19 .ms-box h2 span {
    font-size: 3.375rem;
  }
}

.s19 .ms-box p {
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.s19 .ms-box h2 span {
  color: var(--orange);
  border: 0;
}

/* SECTION NINETEEN CSS END HERE */

/* SECTION TWENTY CSS START HERE */

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

.s20 .div-text h2 {
  font-weight: 800;
  color: var(--dark-blue);
}

@media screen and (min-width: 992px) {
  .s20 .div-text h2 {
    font-size: 1.875rem;
  }
}

.s20 .div-text hr {
  max-width: 10%;
  height: 8px;
  background: var(--orange);
  opacity: 1;
  margin: 1rem 0 2rem;
}

.s20 .row-one {
  border-bottom: 1px solid #d2d2d2;
  margin: 0 0 3rem;
  padding: 0 0 3rem;
}

.s20 .sign-up {
  margin: 2rem 0 0;
}

.s20 .sign-up a {
  position: relative;
  background: var(--orange);
  color: var(--white);
  display: inline-block;
  padding: 1rem 4rem 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 8px 8px 20px rgb(241 111 29 / 40%);
}

.s20 .sign-up a:before {
  position: absolute;
  content: "\f090 ";
  font-family: FontAwesome;
  background: var(--orange);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  right: -1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 20px rgb(255 255 255 / 50%);
}

.s20 .sign-up a:hover {
  background: var(--dark-blue);
  box-shadow: 8px 8px 20px rgb(0 22 94 / 40%);
}

/* SECTION TWENTY CSS END HERE */

/* SECTION TWENTY  ONE CSS START HERE */

.s21 {
  background: #f3f7ff;
}

.s21 h2 {
  font-weight: 800;
  color: var(--dark-blue);
}

.s21 h3 {
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

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

  .s21 h3 {
    font-size: 3.375rem;
  }
}

.s21 .section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0 0;
}

.s21 .section-cta a {
  display: block !important;
}

.s21 .section-cta a.main-cta.btn-blue {
  font-size: 1.375rem;
  padding: 1.5rem 8rem 2rem 8rem;
}

.s21 .section-cta a.main-cta.btn-orange {
  padding: 0.6rem 4rem;
  border-color: var(--white);
  margin: -1.5rem;
  font-size: 1.125rem;
}

.s21 .div-text {
  position: relative;
  display: inline-block;
}

.s21 .arrow {
  position: absolute;
  top: 5rem;
}

.s21 .arrow-one {
  left: -3rem;
}

.s21 .arrow-two {
  right: -3rem;
  transform: scaleX(-1);
}

/* SECTION TWENTY ONE CSS END HERE */

/* SECTION TWENTY TWO CSS STASTARTRET HERE */

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

.s22 ul.partners .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.s22 ul.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%;
  z-index: 99;
  cursor: pointer;
  -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;
}

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

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

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

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

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

.s22 ul.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: all 0.3s ease-in-out;
}

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

.s22 ul.partners ul.slick-dots li.slick-active {
  opacity: 1;
}

/* SECTION TWENTY TWO CSS END HERE */

/* SECTION TWENTY THREE CSS START HERE */

.s23 .contact-form-1 {
  position: relative;
  background: #e0f0ff;
  padding: 1.875rem 3.125rem;
  border-radius: 0.938rem;
}

.s23 .contact-form-1 hr {
  position: absolute;
  border-top: 8px solid var(--orange);
  width: 50%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 1;
}

.s23 .contact-form-1 .secondary-text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: var(--dark-blue);
}

.s23 .contact-form-1 h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.563rem;
  margin-top: 0;
}

.s23 .contact-form-1 h2 span {
  color: var(--orange);
  font-weight: 800;
}

.s23 .contact-form-1 .form-group {
  margin-bottom: 15px;
  position: relative;
}

.s23 .contact-form-1 .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;
  font-weight: 500;
}

.s23 .contact-form-1 .form-control {
  height: 50px;
  padding-left: 40px;
  background-color: var(--white);
  font-size: 14px;
  color: #9daac1;
  border: 1px solid #ccc;
  box-shadow: none;
  border-radius: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.s23 .contact-form-1 .form-control:focus {
  border-color: var(--orange);
}

.s23 .contact-form-1 .form-group ::placeholder {
  color: #9daac1;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.s23 .contact-form-1 .form-group.angle:before {
  position: absolute;
  content: "\f107";
  font-family: "FontAwesome";
  right: 20px;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: bold;
  pointer-events: none;
  cursor: pointer;
}

.s23 .contact-form-1 .form-group.textarea i {
  margin-top: 10px;
}

.s23 .contact-form-1 .form-group.textarea textarea {
  height: 130px;
  resize: none;
}

.s23 .contact-form-1 .mini-contact-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 0 0;
}

.s23 .contact-form-1 .mini-contact-box {
  display: flex;
  align-items: center;
  text-align: left;
}

.contact-form-1 .c-cont-box h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  color: var(--dark-blue);
  opacity: 0.5;
  font-weight: bold;
}

.s23 .contact-form-1 .c-cont-box a {
  font-size: 0.938rem;
  margin: 0;
  color: var(--dark-blue);
  font-weight: bold;
}

.s23 .contact-form-1 .c-cont-box a:hover {
  color: var(--orange);
}

.s23 .contact-form-1 .c-icon-box i {
  font-size: 2rem;
  color: var(--orange);
  margin-right: 15px;
}

.contact-form-1 form .btn-box {
  text-align: center;
  padding: 20px 0;
}

.contact-form-1 form .btn-submit {
  padding: 0.938rem 4rem;
  font-size: 14px;
  color: var(--white);
  border-radius: 25px;
  background-color: var(--dark-blue);
  display: block;
  box-shadow: 6px 6px 15px rgb(14 46 103 / 30%);
  text-decoration: none;
  margin: auto;
  display: inline-block;
}

.contact-form-1 form .btn-submit:hover {
  background: var(--orange);
  box-shadow: 6px 6px 15px rgb(241 111 29 / 30%);
}

.s23 .contact-box-q img {
  width: 100%;
}

.s23 .contact-box-q h3 {
  position: relative;
  background-color: var(--white);
  color: var(--dark-blue);
  font-weight: 800;
  text-align: center;
  padding: 25px 40px;
  box-shadow: 0 0 10px -2px #ccc;
  border-radius: 25px;
  margin: 30px 0 0;
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .s23 .contact-box-q h3 {
    font-size: 2.5rem;
  }
}

.s23 .triangle-with-shadow {
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 10px -17px #ccc;
  position: absolute;
  top: 100%;
  left: calc(50% - 50px);
}

.s23 .triangle-with-shadow:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  transform: rotate(45deg);
  bottom: 75px;
  right: 25px;
  box-shadow: 5px 5px 10px -2px #ccc;
}

.s23 .call-custom-cta {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s23 .call-custom-cta a:not(:last-child) {
  margin: 0 0 1rem;
}

.s23 .call-custom-cta a {
  border-radius: 50px;
  font-size: 0.875rem;
}

.s23 .call-custom-cta .btn-orange {
  width: 70%;
}

.s23 .call-custom-cta .btn-blue {
  width: 50%;
}

/* SECTION TWENTY THREE CSS END HERE */

/* SECTION TWENTY FOUR CSS START HERE */

.s24 .head h3 {
  font-weight: bold;
  color: var(--dark-blue);
}

@media screen and (min-width: 1200px) {
  .s24 .head h3 {
    font-size: 1.5rem;
  }
}

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

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

.s24 .left-arrow {
  left: -15%;
}

.s24 .right-arrow {
  right: -15%;
  transform: scaleX(-1);
}

/* SECTION TWENTY FOUR CSS END HERE */

/* MEDIA QUERY CSS START HERE  */

@media screen and (max-width: 1200px) {
  .s1 .coverBtns a {
    padding: 1rem 1.2rem;
    font-size: 0.875rem;
  }

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

  .s1 .bannerImg {
    display: none;
  }

  .s5 p br {
    display: none;
  }

  .solution-row .solution-box {
    flex: 0 0 28%;
    min-height: 170px;
  }

  .s8 .service-card .service-icon.service-name {
    flex-direction: column;
  }

  .s8 .service-card .service-name h2 {
    padding: 0;
    margin: 0;
  }

  .s8 .service-card .service-name h2:before {
    display: none;
  }

  .s8 .service-card {
    text-align: center;
    min-height: 358px;
  }

  .caseStudy-item.slide-3 .div-text h3 {
    font-size: 8rem;
  }

  .caseStudy-item.slide-4 .col-lg-3 h3 {
    font-size: 3rem;
  }

  .caseStudy-item.slide-4 .col-lg-3 p {
    font-size: 1rem;
  }

  .caseStudy-item.slide-4:before,
  .caseStudy-item.slide-4:after {
    display: none;
  }

  .caseStudy-item {
    min-height: auto;
  }

  .caseStudy-item.slide-4 .row {
    margin: 8% 0;
  }

  .caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text h3 {
    font-size: 8rem;
  }

  .caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text p {
    font-size: 2rem;
  }

  .s12 .free-quote-cta .arrow {
    display: none;
  }

  .s12 p {
    font-size: 1.5rem;
  }

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

  .s23 .contact-form-1 {
    padding: 1.875rem 1rem;
  }
}

@media screen and (max-width: 991px) {
  a.main-cta {
    font-size: 0.8rem;
  }

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

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

  .s5,
  .s7,
  .s13,
  .s20 {
    text-align: center;
  }

  .seo-screen-fancy {
    margin: 0 0 1rem;
    display: block;
  }

  .s7 .div-cta a.main-cta {
    width: auto;
  }

  .s7 .div-text hr {
    max-width: 20%;
    margin: 1rem auto 2rem;
  }

  .s8 .service-card {
    min-height: 330px;
  }

  .s8 .row {
    justify-content: center;
  }

  .s9 .packageContact ul li:first-child {
    padding-right: 10px;
    margin-right: 5px;
    border-right: 2px solid #b5b2b2;
  }

  .arrow,
  .s9 .packageName h2 br,
  .s11 .col-lg-1,
  .s12 .angleShape1,
  .s12 .angleShape2,
  .head h2 br {
    display: none;
  }

  .caseStudy-item.slide-3 .div-text h3,
  .caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text h3 {
    font-size: 5rem;
  }

  .caseStudy-item.slide-3 .div-text h4 {
    font-size: 2rem;
  }

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

  .s15 .row .col-lg-3:not(:last-child) {
    border: navajowhite;
  }

  .s15 .row .col-lg-3:nth-child(odd) {
    border-right: 1px solid #c4d1ea;
  }

  .services-row .row:first-child {
    margin-bottom: 2rem;
  }

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

  .s20 .div-text hr {
    margin: 1rem auto 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 2rem 0 !important;
  }

  .s1 .coverBtns a {
    padding: 0.6rem 0;
    width: 100%;
    text-align: center;
  }

  .s1 .coverBtns {
    gap: 0.5rem;
  }

  img.diamond {
    display: none;
  }

  section.diamond {
    margin: 0;
  }

  .s3 .col {
    flex: 0 0 50%;
  }

  .s3 .row {
    justify-content: center;
  }

  .s5 .head {
    margin-bottom: 2rem;
  }

  .solution-row .solution-box {
    flex: 1 1 100%;
    min-height: auto;
  }

  .s6 .head span {
    display: inline-block;
  }

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

  .s10 ul.tabs-nav-list .tab-nav {
    flex-direction: column;
  }

  .caseStudy-item {
    margin: 0 1rem;
  }

  .caseStudy-item.slide-3 .div-text h3,
  .caseStudy-Slider-3 .caseStudy-item.slide-3 .div-text h3 {
    font-size: 3rem;
  }

  .caseStudy-item.slide-3 .div-text h4 {
    font-size: 1.5rem;
  }

  .s9 .packagePrice h3 {
    font-size: 3rem;
  }

  .s9 .packagePrice h3 sup,
  .s9 .packagePrice h3 small {
    font-size: 1.5rem;
  }

  .s9 .packagePrice h3 sup {
    top: -1.5rem;
  }

  .s12 .free-quote-cta .phone-call {
    font-size: 2rem;
  }

  .s14 .testimonials-wrapper .item .client-logo:before {
    display: none;
  }

  .s14 .testimonials-wrapper .item .client-logo {
    padding: 1rem 0;
    text-align: center;
  }

  .s14 .testimonials-wrapper .item {
    padding: 0 1rem;
  }

  .s14 .testimonials-wrapper .item .client-logo img {
    width: 100%;
  }

  .s14 .testiminial-content {
    padding: 0 0 2rem;
  }

  .s15 .row .col-lg-3:nth-child(odd) {
    border: 0;
  }

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

  .s19 .ms-box {
    padding: 0;
  }

  .s20 .sign-up a {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .s20 .sign-up a:before {
    display: none;
  }

  .s21 .section-cta a.main-cta.btn-blue {
    font-size: 0.875rem;
    padding: 1.5rem 0 2rem;
    width: 100%;
  }

  section.section.s21 {
    padding-bottom: 4rem !important;
  }

  .s23 .call-custom-cta .btn-orange {
    width: 100%;
  }

  .s23 .call-custom-cta .btn-blue {
    width: 100%;
  }
}
