:root {
  --gray: #474747;
  --black: #000;
  --white: #fff;
  --light-blue: #486fa4;
  --dark-blue: #0e2e67;
  --orange: #f16f1d;
  --sky-blue: #009ce5;
}

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

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

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

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

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

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

.head {
  position: relative;
  padding-bottom: 10px;
  margin: 0 auto 50px;
}

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

.head h2 {
  padding-bottom: 10px;
  color: var(--dark-blue);
}

.head h2,
.head h2 span {
  font-size: 30px;
  font-weight: 800;
}

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

.head h4 {
  font-size: 22px;
  color: #00a2fd;
  font-weight: 600;
  padding-bottom: 10px;
}

.head p {
  color: #333333;
  font-size: 16px;
}

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

a.main-cta {
  font-family: "Inter", sans-serif;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

a.main-cta.btn--orange {
  border: 2px solid #e76817;
  box-shadow: 8px 8px 30px #f47a1e8a;
  background: linear-gradient(#f99250, #f2701d),
    linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange i {
  border-radius: 5px;
  margin: 0 10px;
  display: flex;
  justify-self: center;
  padding: 10px;
  align-items: center;
  border: 2px solid #f2701d;
  background: linear-gradient(#f2701d, #f99250),
    linear-gradient(#f99250, #f2701d);
}

a.main-cta.btn--blue {
  border: 2px solid #01122f;
  background: linear-gradient(#09275c, #0e2e67),
    linear-gradient(#0e2e67d6, #0e2e6763);
  box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--blue i {
  border-radius: 5px;
  margin: 0 10px;
  display: flex;
  justify-self: center;
  padding: 10px;
  align-items: center;
  border: 2px solid #09275c;
  background: linear-gradient(#09275c, #01122f),
    linear-gradient(#01122f, #01122f);
}

a.main-cta.btn--orange:hover {
  border-color: #01122f;
  box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--orange:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  height: 0;
  z-index: -1;
  background: linear-gradient(#09275c, #0e2e67),
    linear-gradient(#0e2e67d6, #0e2e6763);
}

a.main-cta.btn--orange:hover:before {
  height: 100%;
}

a.main-cta.btn--blue:hover {
  border-color: #e76817;
  box-shadow: 8px 8px 30px #f47a1e8a !important;
}

a.main-cta.btn--blue:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  height: 0;
  z-index: -1;
  background: linear-gradient(#f2701d, #f99250),
    linear-gradient(#f99250, #f2701d);
}

a.main-cta.btn--blue:hover:before {
  height: 100%;
}

a.main-cta.btn--blue:hover i {
  border: 2px solid #e76817;
  box-shadow: 8px 8px 30px #f47a1e8a;
  background: linear-gradient(#f99250, #f2701d),
    linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange:hover i {
  background: linear-gradient(#09275c, #01122f),
    linear-gradient(#01122f, #01122f);
  border: 2px solid #01122f;
  box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--white {
  border: 2px solid transparent;
  color: var(--dark-blue);
  background: linear-gradient(#fff, #ccc), linear-gradient(#fff, #0e2e6763);
  box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--white i {
  border-radius: 5px;
  margin: 0 10px;
  display: flex;
  justify-self: center;
  padding: 10px;
  align-items: center;
  border: 2px solid #fff;
  color: var(--dark-blue);
  font-weight: 700;
  box-shadow: 0 0 20px #0e2e678a !important;
  background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}

a.main-cta.btn--white:hover {
  border-color: #e76817;
  box-shadow: 15px 15px 40px #0e2e678a !important;
  color: var(--white);
}

a.main-cta.btn--white:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  transition: all 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%;
}

a.main-cta.btn--white:hover i {
  border: 2px solid #e76817;
  color: var(--white);
  background: linear-gradient(#f99250, #f2701d),
    linear-gradient(#f2701d, #f99250);
}

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

/* 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: 50px 0;
  overflow: hidden;
}

.homeBanner.s1 .colLeft {
  position: relative;
  z-index: 99;
}

.homeBanner.s1 .coverTextWrap {
  position: relative;
}

.homeBanner.s1 .coverTextWrap > h1 {
  /* font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;
    text-shadow: 4px 0 0 rgb(0 0 0 / 30%); */
  position: relative;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 800;
  color: var(--light-blue);
  line-height: 44px;
  text-transform: uppercase;
}

.homeBanner.s1 .coverTextWrap .sub-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
  margin: 0;
  padding-bottom: 5px;
}

.homeBanner.s1 .coverTextWrap > hr {
  background: #9aaccc;
  opacity: 0.5;
  height: 2px;
  margin: 0;
}

.homeBanner.s1 img.tooth {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.homeBanner.s1 .coverTextWrap h5 {
  color: #375892;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  padding: 20px 0 0;
}

.homeBanner.s1 img.stats {
  margin: 30px 0;
}

.homeBanner.s1 .coverBtn {
  display: flex;
  grid-column-gap: 1.5rem;
}

.homeBanner.s1 .coverBtn > a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid transparent;
}

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

.homeBanner.s1 a.btnBlue.requestQuote:hover {
  background: #e9ecf6;
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  box-shadow: unset;
}

.homeBanner.s1 a.btnOrange.freeConsultation {
  background: #e9ecf6;
  border-color: var(--orange);
  color: var(--orange);
  min-width: 210px;
  text-align: center;
}

.homeBanner.s1 a.btnOrange.freeConsultation:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 20px rgb(241 111 29 / 40%);
}

.homeBanner.s1 span#hover-no {
  display: none;
}

.homeBanner.s1 a.btnOrange.freeConsultation:hover #talk {
  display: none;
}

.homeBanner.s1 a.btnOrange.freeConsultation:hover #hover-no {
  display: block;
}

.homeBanner.s1 img.bannerImg {
  position: absolute;
  top: 2rem;
  bottom: 0;
  right: 0;
}

.homeBanner.s1 img.wave {
  position: absolute;
  bottom: 0;
}

/* NEW BANNER CSS START  */

.homeBanner.s-1 {
  position: relative;
  background-image: url("/img/global/coverBanner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 40px 0;
}

@media screen and (min-width: 1199px) {
  .homeBanner.s-1 .topRow .col-left {
    padding-right: 5rem;
  }
}

.homeBanner.s-1 .topRow p.sub-heading {
  color: #526d9d;
  letter-spacing: 2px;
  font-weight: bold;
  font-style: italic;
  margin: 0 0 10px;
}

.homeBanner.s-1 .topRow h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 50px;
  padding-bottom: 25px;
}

.homeBanner.s-1 .topRow h1 span {
  color: var(--orange);
}

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

.homeBanner.s-1 .coverBtns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0 0;
}

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

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

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

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

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

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

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

.homeBanner.s-1 .bottomRow {
  text-align: center;
}

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

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

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

@media screen and (min-width: 1199px) {
  .homeBanner.s-1 .bannerImg {
    position: absolute;
    top: 0;
    max-width: 50%;
  }
}

@media only screen and (min-width: 1199px) and (max-width: 1800px) {
  .homeBanner.s-1 .bannerImg {
    right: 5%;
  }
}

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

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

.homeBanner.s-1 .Form-box {
  background: var(--white);
  border-radius: 10px;
  position: relative;
  padding: 30px 20px;

  margin: 0 0 20px auto;
  box-shadow: 10px 0 15px rgb(14 46 103 / 20%);
}

@media screen and (min-width: 1199px) {
  .homeBanner.s-1 .Form-box {
    max-width: 65%;
  }
}

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

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

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

.homeBanner.s-1 .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.s-1 .Form-box {
    width: 100%;
    padding: 20px;
    height: auto;
  }

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

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

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

.homeBanner.s-1 .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.s-1 .button-box a i {
  font-size: 14px;
  padding-left: 5px;
}

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

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

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

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

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

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

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

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

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

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

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

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

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

.channelSlider .slick-list {
  padding-bottom: 20px;
}

/* PARTNERS WITHOUT SLIDER START  */

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

.homeBanner.s-1 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;
}

.homeBanner.s-1 ul.partners img:hover {
  filter: grayscale(0);
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE  */

section.testimonials .head h2,
section.testimonials .head p {
  color: #fff8ed;
}

.client-carousel .item {
  margin: 0 5px;
}

.img-box img {
  width: 100%;
}

.client-card .client-content {
  padding: 20px;
  background: #001043;
  border-radius: 0 0 20px 20px;
  min-height: 445px;
}

.client-card .logo-box {
  margin-top: -75px;
  display: flex;
  grid-gap: 15px;
}

.client-card .logo-star {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.client-card .logo-star i {
  color: #fec03e;
  font-size: 20px;
  margin: 0 5px;
}

.client-card h3 {
  color: var(--white);
  font-weight: 800;
  margin: 20px 0 5px;
  font-size: 22px;
}

.client-card .logo-img img {
  border: 2px solid #ddd;
  border-radius: 100%;
}

.client-content hr {
  border: none;
  border-top: 2px solid var(--light-blue);
}

.client-card .designation {
  font-family: "Raleway", sans-serif;
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0;
}

.client-card p {
  font-family: "Inter", sans-serif;
  color: var(--white);
}

.client-carousel .slick-arrow {
  background: var(--white);
  color: var(--dark-blue);
}

.client-carousel .slick-arrow:hover {
  background: var(--orange);
  color: var(--white);
}

.cs-slider .slick-arrow {
  background: var(--dark-blue);
  color: var(--white);
}

.slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  z-index: 99;
  cursor: pointer;
}

.slick-arrow:hover {
  opacity: 1;
}

i.fa.fa-angle-left.prev--arrow.slick-arrow {
  left: -40px;
}

i.fa.fa-angle-right.next--arrow.slick-arrow {
  right: -40px;
}

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

.client-carousel .slick-list {
  padding-bottom: 20px;
}

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

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

.client-carousel .slick-dots li button:before {
  display: none;
}

.client-carousel ul.slick-dots li.slick-active {
  opacity: 1;
}

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

section.SBreviews {
  overflow: hidden;
}

.SBreviews--wrapper {
  max-width: 65%;
  margin: 0 auto;
}

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

.SBreviews--wrapper h4 {
  background: var(--dark-blue);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 0 0 25px 25px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* SECTION THREE CSS END HERE  */

/* SECTION FIVE CSS START HERE  */

section.hireExperts {
  padding-bottom: 130px;
}

section.hireExperts .heading {
  position: relative;
  padding-bottom: 10px;
  margin: 0 auto 30px;
}

section.hireExperts .heading h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--dark-blue);
  display: inline-block;
}

section.hireExperts .heading h2,
section.hireExperts .heading h2 span {
  font-size: 40px;
  font-weight: 800;
}

section.hireExperts .heading h2 span {
  color: var(--orange);
}

section.hireExperts .heading h2::before {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 200px;
  height: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

section.hireExperts .heading h4 {
  color: var(--light-blue);
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 10px;
}

section.hireExperts .heading p.sub-text {
  color: var(--dark-blue);
  font-weight: 500;
}

section.hireExperts .heading p.sub-text span {
  font-weight: bold;
}

section.hireExperts .row {
  align-items: center;
  justify-content: center;
}

section.hireExperts .col-left {
  background-color: var(--white);
  box-shadow: 5px 10px 15px 10px #e6eeff;
  border-radius: 20px;
  padding: 50px 30px;
  z-index: 1;
  position: relative;
}

section.hireExperts .col-left h2 {
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
  padding-bottom: 5px;
}

section.hireExperts .col-left p {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-blue);
  position: relative;
  padding-bottom: 15px;
}

section.hireExperts .col-left p:before {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 80px;
  height: 6px;
  bottom: 0;
}

section.hireExperts .col-left ul {
  padding: 10px 0;
}

section.hireExperts .col-left ul li {
  font-family: "Poppins";
  font-weight: 500;
  color: var(--dark-blue);
  line-height: 20px;
  display: flex;
  align-items: center;
}

section.hireExperts .col-left ul li:not(:last-child) {
  margin-bottom: 15px;
}

section.hireExperts .col-left ul li img {
  margin-right: 14px;
}

section.hireExperts .col-right img {
  z-index: 9;
  position: relative;
  max-width: 580px;
  margin-left: -90px;
}

.quality-row {
  position: relative;
  text-align: center;
  background: #eef4fd;
  padding: 100px 90px 50px 90px;
  border-radius: 20px;
  margin-top: -40px;
}

.quality-row .head {
  margin-bottom: 30px;
}

.quality-row .head h2 {
  text-transform: unset;
  font-family: "Inter", sans-serif;
  font-size: 30px;
}

.quality-row p {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-blue);
  line-height: 32px;
}

.quality-row p a {
  color: var(--orange);
}

.quality-row p a:hover {
  color: var(--light-blue);
}

.quality-row:after {
  position: absolute;
  content: "";
  border: 40px solid #eef4fd;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  right: -130px;
  bottom: -130px;
  z-index: -1;
}

.quality-row img.arrow {
  position: absolute;
  top: 0;
  left: -180px;
}

.quality-row img.gray-dots {
  position: absolute;
  bottom: -50px;
  left: -80px;
  z-index: -1;
}

.quality-row .section--cta {
  margin-top: 50px;
}

.quality-row .section--cta a.main-cta {
  font-size: 16px;
}

/* SECTION FIVE CSS END HERE  */

/* SECTION SIX CSS START HERE  */

section.diamond {
  padding-top: 150px;
  overflow: visible;
  border-top: 1px solid #b9b9b9;
}

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

section.dentistService {
  background: #fff9ed;
}

section.dentistService .head {
  margin-bottom: 20px;
}

section.dentistService p.sub-text {
  margin-bottom: 50px;
  padding: 0 6rem;
  text-align: center;
}

.servicesFlex {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2rem;
}

.servicesFlex > .serviceBox {
  flex: 1 1 31%;
  background: #fff6e5;
  border-radius: 20px;
  border: 1px solid #f5dfb4;
  padding: 20px;
  -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;
}

@media screen and (max-width: 767px) {
  .servicesFlex > .serviceBox {
    flex: 100%;
  }
}

.serviceBox .serviceIcon.serviceName {
  display: flex;
  align-items: center;
  grid-column-gap: 1.5rem;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgb(201 204 214 / 50%);
}

.serviceBox .serviceIcon.serviceName h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: var(--dark-blue);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.servicesFlex > .serviceBox > p {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-blue);
  font-weight: 500;
}

.servicesFlex > .serviceBox > p > a {
  color: var(--orange);
}

.servicesFlex > .serviceBox > p > a:hover {
  color: var(--light-blue);
}

.servicesFlex > .serviceBox:hover {
  background: var(--white);
  box-shadow: 10px 0 30px rgb(213 92 16 / 15%);
  border-color: transparent;
}

/* SECTION SIX CSS END HERE  */

/* SECTION CASE STUDIES CSS START HERE  */

.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 START */
.caseStudy-item img {
  margin: auto;
}

.caseStudy-item .caseStudy-name {
  text-align: center;
}

.caseStudy-item .caseStudy-name h2 {
  font-size: 26px;
  max-width: 80%;
  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;
}

.caseStudy-item.slide-shape:before,
.caseStudy-item.slide-shape:after {
  position: absolute;
  content: "";
  background: var(--orange);
  width: 450px;
  height: 550px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.caseStudy-item.slide-shape:before {
  left: -32%;
}

.caseStudy-item.slide-shape:after {
  right: -32%;
}

/* SLIDER 1 SLIDE 1 START  */

.caseStudy-item {
  border: 1px solid #c1c6d1;
  border-radius: 1.5rem;
  position: relative;
  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 7rem;
}

.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: #00165e;
  font-size: 40px;
  font-weight: 800;
  max-width: 90%;
  margin: 3rem auto;
}

/* SLIDER 1 SLIDE 1 START  */

/* SLIDER 1 SLIDE 2 START  */

.caseStudy-item.slide-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.caseStudy-item.slide-2 ul li {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 1.5rem;
}

.caseStudy-item.slide-2 ul {
  max-width: 80%;
  margin: 0 auto;
}

.caseStudy-item.slide-2 ul li.question span {
  background: var(--black);
}

.caseStudy-item.slide-2 ul li > span {
  font-weight: bold;
  color: var(--white);
  padding: 5px 1rem;
  margin: 0 0 0.5rem;
  display: inline-block;
}

.caseStudy-item.slide-2 ul li.answer > span {
  background: #1e9cf0;
}

.caseStudy-item.slide-2 ul li:first-child {
  margin: 0 0 5%;
}

.caseStudy-item.slide-2 ul li p span {
  color: var(--orange);
  font-weight: bold;
}

.caseStudy-item.slide-2 ul li p {
  margin: 0;
  font-weight: 600;
}

.caseStudy-item.slide-2 ul li small {
  color: #959595;
  font-size: 1rem;
}

/* SLIDER 1 SLIDE 2 END  */

/* SLIDER 1 SLIDE 3 START  */

.caseStudy-item.slide-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 3%;
}

.caseStudy-item.slide-3 .div-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem;
}

.caseStudy-item.slide-3 .div-text h3 {
  font-family: "Inter", sans-serif;
  background: #ea8522;
  color: var(--white);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0.2rem 2rem;
}

.caseStudy-item.slide-3 .div-text ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
}

.caseStudy-item.slide-3 .div-text ul li {
  font-family: "Inter", sans-serif;
  font-size: 2.375rem;
  font-weight: bold;
  color: #1e9cf0;
  line-height: 1;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #ccc;
}

.caseStudy-item.slide-3 .div-text ul li p {
  margin: 0;
  font-size: 0.938rem;
  line-height: 1;
}

.caseStudy-item.slide-3 .div-text {
  max-width: 95%;
  margin: 0 auto;
}

.caseStudy-item.slide-3 .div-text ul li:not(:last-child) {
  border-right: 1px solid #ccc;
}

.caseStudy-item.slide-3 .brand-assets {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
}

.caseStudy-item.slide-3 .brand-assets p {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 0;
}

.caseStudy-item.slide-3 .brand-assets p span {
  background: #1e9cf0;
  color: var(--white);
  font-size: 2.375rem;
  padding: 5px 10px;
  border-radius: 5px;
}

/* SLIDER 1 SLIDE 3 END  */

/* SLIDER 1 SLIDE 4 START  */

.caseStudy-item.slide-4 {
  padding: 0 0 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.caseStudy-item.slide-4 .div-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1rem;
  display: inline-block;
}

.caseStudy-item.slide-4 .div-text h3 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.375rem;
  padding-left: 7%;
  line-height: 2rem;
}
.caseStudy-item.slide-4 .div-text h3 span {
  background: var(--orange);
  color: var(--white);
  display: inline-block;
  padding: 4px;
}
.caseStudy-item.slide-4 .div-text h4 {
  font-size: 8rem;
  color: #1e9cf0;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  line-height: 1;
  padding-left: 5%;
}

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

.caseStudy-item.slide-4.slide-shape:after {
  background: #1e9cf0;
}
.caseStudy-item.slide-4 .div-img img {
  margin: unset;
  position: relative;
  z-index: 99;
}

.caseStudy-item.slide-4 .div-img .row .col-lg-6:nth-child(1) img {
  float: right;
}
/* SLIDER 1 SLIDE 4 END  */

/* SLIDER 1 SLIDE 5 START  */

.caseStudy-item.slide-5.slide-shape:before,
.caseStudy-item.slide-5.slide-shape:after {
  background: #1e9cf0;
}

.caseStudy-item.slide-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.caseStudy-item.slide-5 h2 {
  font-size: 3.125rem;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #333;
  max-width: 80%;
  text-align: center;
}

.caseStudy-item.slide-5 .btnDiv {
  margin: 2rem 0 0;
}

.caseStudy-item.slide-5 .btnDiv a {
  display: block;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.caseStudy-item.slide-5 .btnDiv a.book-consultation {
  background: var(--orange);
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 500;
  padding: 1rem 0rem;
  border-radius: 0.5rem;
  text-shadow: 3px 3px rgb(0 0 0 / 10%);
  box-shadow: 6px 6px 20px rgb(241 111 29 / 40%);
}

.caseStudy-item.slide-5 .btnDiv a.book-consultation:hover {
  background: var(--dark-blue);
  box-shadow: unset;
}

.caseStudy-item.slide-5 .btnDiv a.phone-call {
  font-size: 3rem;
  color: #333;
  font-weight: bold;
}

.caseStudy-item.slide-5 .btnDiv a.phone-call:hover {
  color: var(--orange);
}

/* SLIDER 1 SLIDE 5 END  */

.slick-arrow-wrap {
  gap: 20%;
}

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

.slick-arrow-wrap .slick-arrow {
  background: var(--dark-blue);
}

.slick-arrow-wrap .slick-arrow.slick-disabled {
  background: #c1c6d1;
}

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

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

.caseStudy-Slider-1 ul.slick-dots li {
  background: #c1c6d1;
  border-radius: 50px;
  width: 18px;
  height: 18px;
}

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

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

.slick-arrow-wrap,
.caseStudy-Slider-1 ul.slick-dots {
  bottom: -8%;
}

@media screen and (max-width: 1199px) {
  .caseStudy-item.slide-1 {
    padding: 0;
  }

  .caseStudy-item.slide-shape:before {
    left: -45%;
  }

  .caseStudy-item.slide-shape:after {
    right: -45%;
  }

  .caseStudy-item.slide-3 .div-text ul {
    display: flex;
    flex-wrap: wrap;
  }

  .caseStudy-item.slide-3 .div-text ul li {
    flex: 1 1 30%;
  }

  .caseStudy-item.slide-3 .brand-assets p span {
    display: inline-block;
    line-height: 1;
    margin: 1rem 0 0;
  }

  .caseStudy-item.slide-3 .div-text ul li:nth-child(3) {
    border-right: 0;
  }

  .caseStudy-item.slide-4 .div-text h4 {
    font-size: 7rem;
  }

  .slick-arrow-wrap {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .caseStudy-item.slide-shape:before,
  .caseStudy-item.slide-shape:after {
    display: none;
  }

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

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

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

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

  .caseStudy-item.slide-5 h2 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .caseStudy-item.slide-1 h2 {
    font-size: 24px;
    margin: 2rem auto;
  }

  .caseStudy-item.slide-1 p {
    font-size: 1rem;
  }

  .caseStudy-item .caseStudy-name h2 {
    font-size: 1rem;
  }

  .caseStudy-item.slide-3 .div-text p {
    font-size: 14px;
  }

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

  .caseStudy-item.slide-3 .div-text ul li {
    flex: 1 1 50%;
    border-right: 0 !important;
    padding: 1rem;
  }

  .caseStudy-item.slide-3 .brand-assets p span {
    display: block;
  }

  .caseStudy-item.slide-4 .div-text h3 {
    font-size: 1rem;
    padding: 0;
    margin: 1rem 0;
    line-height: 1;
  }

  .caseStudy-item.slide-4 .div-text h4 {
    padding: 0;
    font-size: 4rem;
    margin: 0 0 1rem;
  }

  .caseStudy-item.slide-4 {
    padding: 1rem;
  }

  .caseStudy-item.slide-4 .div-text p {
    border-top: 0;
  }

  .caseStudy-item.slide-5 h2 {
    font-size: 1.6rem;
  }

  .caseStudy-item.slide-5 .btnDiv a.book-consultation {
    font-size: 1rem;
    display: inline-block;
    padding: 1rem;
  }

  .caseStudy-item.slide-5 .btnDiv {
    text-align: center;
  }

  .caseStudy-item.slide-5 .btnDiv a.phone-call {
    font-size: 1.5rem;
  }
}

/* SECTION CASE STUDIES CSS END HERE  */

/* SECTION SEVEN CSS START HERE  */

section.dentistService2 {
  background: #eff7ff;
}

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

.serviceTabContent {
  display: none;
}

.serviceTabContent.active {
  display: block;
}

section.dentistService2 .colRight {
  padding-left: 100px;
}

.serviceTabContent h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 5px solid #1373df;
  display: inline-block;
}

.serviceTabContent > p {
  color: var(--dark-blue);
  line-height: 26px;
}

a.getStarted {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 26px 50px;
  text-align: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgb(241 111 29 / 40%);
  display: inline-block;
  margin-top: 40px;
}

a.getStarted:hover {
  background: var(--dark-blue);
  box-shadow: 0 10px 30px rgb(14 46 103 / 40%);
}

.serviceTab {
  cursor: pointer;
}

.serviceTab.active .st1 {
  fill: #1373df;
}

.serviceTab.active .st2 {
  fill: var(--white);
}

/* SECTION SEVEN CSS END HERE  */

/* SECTION EIGHT CSS START HERE  */

section.getStarted:before {
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  border: 10px solid var(--white);
  opacity: 0.5;
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

section.getStarted .heading {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

section.getStarted .heading h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 10px;
}

section.getStarted .heading::before {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 80px;
  height: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

section.getStarted .heading h2 span {
  color: var(--orange);
}

section.getStarted .heading h2 strong {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

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

section.getStarted .colLeft {
  position: relative;
  background: #00165e;
  padding: 40px 40px;
  border-radius: 20px;
}

section.getStarted .colLeft img.tu-left-arrow {
  position: absolute;
  right: -30px;
  bottom: 0;
  transform: rotate(-90deg);
}

section.getStarted .colLeft h4 {
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 45px;
  text-align: center;
}

section.getStarted .colLeft h4 span {
  color: var(--orange);
  font-size: 50px;
}

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

section.getStarted .contact-box h4 {
  color: var(--white);
  font-size: 40px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}

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

section.getStarted .contact-box a:hover {
  color: var(--white);
}

/* SECTION EIGHT CSS END HERE  */

/* SECTION NINE CSS START HERE  */

.videoSection {
  background: #fff8ed;
}

.videoSection:before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  border: 20px solid var(--orange);
  border-radius: 50%;
  bottom: -70px;
  right: -70px;
}

.videoSection .head {
  margin-bottom: 20px;
}

.videoSection .head:before {
  right: unset;
}

.videoSection p {
  position: relative;
  font-size: 16px;
  color: var(--dark-blue);
  line-height: 24px;
}

.videoSection p a,
.videoSection p > span {
  color: var(--orange);
  text-decoration: underline !important;
  font-weight: 500;
}

.videoSection .colRight {
  text-align: right;
}

a.video-fancy {
  position: relative;
}

.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: #fff;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}

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

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

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

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

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

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

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

.pulse-box {
  position: relative;
}

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

  50% {
    opacity: 0.2;
  }

  70% {
    opacity: 0.4;
  }

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

/* SECTION NINE CSS END HERE  */

/* SECTION TEN - FAQS CSS START HERE  */

section.designFAQS .head {
  margin-bottom: 20px;
}

section.designFAQS .head h2,
section.designFAQS .head h2 span {
  font-size: 52px;
}

section.designFAQS .head:before {
  display: none;
}

section.designFAQS .info-details {
  background: #e5edfa;
  border-radius: 10px;
  line-height: 1.6;
  padding: 20px;
}

section.designFAQS .info-details h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-blue);
  text-decoration: none;
  margin: 20px 0;
}

ul#accordian {
  overflow-y: auto;
  max-height: 600px;
  padding: 0 20px 20px !important;
}

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

ul#accordian::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

ul#accordian::-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
  );
}

ul#accordian li p {
  display: none;
  color: #6a6a6a;
}

ul#accordian li {
  border-bottom: 1px solid #c6d2e6;
  padding: 25px 30px;
  cursor: pointer;
}

ul#accordian h4 {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul#accordian h4 i {
  color: var(--orange);
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

ul#accordian li.active {
  box-shadow: 0px 0px 20px 5px #e6eeff;
  border-radius: 30px;
  border: 0;
  margin-top: 20px;
}

ul#accordian li.active h4 {
  padding-bottom: 20px;
}

ul#accordian li p a {
  color: var(--orange);
}

ul#accordian li.active i::before {
  content: "\f068";
}

/* SECTION TEN - FAQS CSS END HERE  */

/* SECTION ELEVEN CSS START HERE  */

section.ny-contact {
  background: #fafafa;
}

.bottom-form {
  background: #e0f0ff;
  padding: 40px 50px;
  border-radius: 15px;
  margin: 15px 0;
  position: relative;
}

#discussLead hr {
  margin: 0;
  border: none;
  border-top: 10px solid var(--orange);
  position: absolute;
  width: 60%;
  top: 0;
  left: 20%;
  opacity: 1;
}

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

.bottom-form h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
}

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

.bottom-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

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

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

.bottom-form .form-control {
  font-family: "Poppins", sans-serif;
  height: 55px;
  padding-left: 40px;
  background-color: var(--white);
  font-size: 14px;
  color: var(--dark-blue);
  border: 1px solid #f6f4f4;
  box-shadow: none;
  border-radius: 10px;
}

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

.bottom-form .form-group.textarea textarea {
  height: 200px;
  resize: none;
}

.mini-contact-area {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  margin-top: 20px;
}

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

.c-cont-box h4,
.c-cont-box a {
  font-family: "Poppins", sans-serif;
}

.c-cont-box h4 {
  font-size: 14px;
  margin: 0;
  color: #999;
  font-weight: 600;
}

.c-cont-box a {
  font-size: 16px;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 800;
}

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

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

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

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

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

.ny-contact form .btn-primary {
  padding: 15px 60px;
  font-size: 18px;
  color: var(--white);
  border-radius: 10px;
  background-color: var(--dark-blue);
  display: block;
  box-shadow: 5px 5px 15px #999;
  text-decoration: none;
  margin: auto;
  display: inline;
  margin: auto;
  letter-spacing: 0;
}

.ny-contact form .btn-primary:hover {
  background: var(--orange);
}

.contact-box-q h4 {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 0;
}

.contact-box-q h4:last-child {
  font-size: 50px;
}

.contact-box-q h4 {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 0;
}

.call-custom-cta a {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 14px 40px;
}

.call-custom-cta a:not(:last-child) {
  margin-bottom: 25px;
}

.call-custom-cta {
  text-align: center;
}

.stats-row .stats-box {
  position: relative;
  box-shadow: 0 0 5px 5px #efefef;
  border: 1px solid #d4ddee;
  background-image: url("/img/contractors-seo/starter-pkg-back.webp");
  border-radius: 10px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-row .stats-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 5px;
}

.stats-row .stats-box h3 span {
  color: var(--orange);
  font-size: 25px;
}

.stats-row .stats-box p {
  font-size: 14px;
  line-height: 20px;
  font-family: "Poppins";
  text-align: center;
  font-weight: bold;
  color: #3e5b8d;
  margin-bottom: 0px;
}

.stats-row .stats-box hr {
  border-top: 10px solid var(--orange);
  width: 80%;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.partners-logo-row {
  align-items: center;
  justify-content: center;
  grid-row-gap: 10px;
  text-align: center;
}

.partners-logo-row img {
  width: auto !important;
  margin: 0 auto;
}

.partners-logo-row 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;
}

.partners-logo-row .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;
}

.partners-logo-row .slick-dots li button:before {
  display: none;
}

.partners-logo-row ul.slick-dots li.slick-active {
  opacity: 1;
  background-color: var(--orange);
}

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

.partners-logo-row .slick-initialized .slick-slide img {
  margin: 0 auto;
}

/* SECTION ELEVEN CSS END HERE  */

/* SECTION TWELVE CSS START HERE  */

.s12 .head::before {
  right: unset;
}

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

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

.s12 .section--cta {
  margin: 3rem 0 0;
}

/* SECTION TWELVE CSS END HERE  */

/* SECTION THIRTEEN CSS START HERE  */

.section.s13 {
  padding-bottom: 7rem;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.s13 .head * {
  color: #fff8ed;
}

.tabs-wrap {
  background: #0a214a;
  padding: 2rem 4rem;
  border-radius: 1rem;
}
.tabs-wrap .row {
  align-items: center;
}

.tabs-wrap ul.tabs-list .tab-nav {
  font-size: 1.125rem;
  color: rgba(255 255 255 / 40%);
  padding: 1rem 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255 255 255 / 40%);
  max-width: 80%;
  display: flex;
  gap: 1rem;
  line-height: 1.2;
  align-items: center;
}
.tabs-wrap ul.tabs-list .tab-nav > span {
  font-family: "Antonio", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.tabs-wrap ul.tabs-list .tab-nav.active {
  color: var(--white);
}
.tabs-wrap .tab-content h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin: 0 0 2rem;
}

.tabs-wrap .tab-content p {
  color: var(--white);
  max-width: 600px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.tabs-wrap a.main-cta {
  margin: 3rem 0 0;
  width: fit-content;
}

/* SECTION THIRTEEN CSS END HERE  */

/* SECTION FOURTEEN CSS START HERE  */

.gmb-tool-slider > p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.gmb-tool-slider {
  text-align: center;
}

div#gmb-slider {
  position: relative;
  background: #f5f5f5;
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  border-radius: 1rem;
}
div#gmb-slider:before {
  position: absolute;
  content: "";
  background: #7686e7;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  border-radius: 0 0 1rem 1rem;
}
div#gmb-slider .gmb-slider-item h3 {
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1rem;
}

div#gmb-slider .slick-arrow {
  background: var(--dark-blue);
  color: var(--white);
}

div#gmb-slider .slick-arrow:hover {
  background: var(--orange);
  color: var(--white);
}

div#gmb-slider .prev--arrow.slick-arrow {
  left: -80px;
}

div#gmb-slider .next--arrow.slick-arrow {
  right: -80px;
}

.gmb-slider-item img {
  margin: 2rem auto 0;
  box-shadow: 0 0 20px rgba(0 0 0 / 60%);
}
div#gmb-slider .gmb-slider-item {
  padding-bottom: 1.5rem;
}
/* SECTION FOURTEEN CSS END HERE  */

/* MEDIA QUERY CSS START HERE  */

@media only screen and (max-width: 1300px) {
  .homeBanner.s1 img.bannerImg {
    position: unset;
  }

  .homeBanner.s1 .coverTextWrap h5 br {
    display: none;
  }

  .homeBanner.s-1 .topRow h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .homeBanner.s-1 .Form-box {
    max-width: 100%;
  }

  .homeBanner.s-1 .bannerImg {
    display: none;
  }

  section.hireExperts .heading h4 br {
    display: none;
  }

  section.hireExperts .col-right img {
    max-width: unset;
    margin: unset;
    width: 100%;
  }

  .quality-row {
    padding: 100px 30px 50px 30px;
  }

  section.dentistService2 .colRight {
    padding-left: calc(var(--bs-gutter-x) / 2);
  }

  section.getStarted .colLeft h4 span {
    font-size: 40px;
  }

  section.getStarted .contact-box a {
    font-size: 60px;
  }

  .head h2 br,
  .head h2 span br {
    display: none;
  }

  .bottom-form {
    padding: 40px 20px;
  }

  section.hireExperts .heading p.sub-text br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .homeBanner.s-1 .topRow p br {
    display: none;
  }

  .homeBanner.s-1 .coverBtns {
    margin: 2rem 0 0;
  }

  .homeBanner.s-1 .col-right {
    margin: 3rem 0 0;
  }

  .homeBanner.s-1 .bottomRow .statsBox h2 {
    font-size: 36px;
  }

  .homeBanner.s-1 .bottomRow ul.partners {
    width: 100%;
  }

  .homeBanner.s-1 .bottomRow .statsBox p {
    font-size: 14px;
  }

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

  section.hireExperts .heading h2,
  section.hireExperts .heading h2 span {
    font-size: 30px;
  }

  section.hireExperts .heading h4 {
    font-size: 20px;
  }

  section.dentistService p.sub-text {
    padding: 0;
  }

  .head p br {
    display: none;
  }

  section.getStarted .heading h2 {
    font-size: 30px;
  }

  section.getStarted .colLeft h4 br {
    display: none;
  }

  section.getStarted .contact-box {
    padding: 20px 0 0;
    text-align: center;
  }

  section.getStarted .colLeft img.tu-left-arrow {
    display: none;
  }

  .videoSection .colRight {
    text-align: center;
  }

  section.designFAQS .head h2,
  section.designFAQS .head h2 span {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .homeBanner.s1 .coverTextWrap > h1 {
    font-size: 20px;
    line-height: 30px;
  }

  .homeBanner.s-1 .topRow h1 {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 10px;
  }

  .homeBanner.s-1 .coverBtns .divBtn a.talk-chat {
    position: unset;
  }

  .homeBanner .coverBtns {
    justify-content: center;
  }

  .homeBanner .col-right {
    margin: 2rem 0 0;
  }

  .homeBanner.s-1 .bottomRow .statsRow {
    display: grid;
    grid-template-columns: auto auto;
  }

  .homeBanner.s-1 .bottomRow .statsBox h2 {
    font-size: 24px;
  }

  .homeBanner.s-1 .bottomRow .statsRow p {
    font-size: 13px;
  }

  .homeBanner.s-1 .bottomRow ul.partners {
    flex-wrap: wrap;
    grid-gap: 10px;
    justify-content: space-around;
  }

  .homeBanner.s-1 ul.partners li {
    flex: 0 0 calc(25% - 10px);
  }

  img.tooth {
    display: none;
  }

  .homeBanner.s1 .coverTextWrap .sub-text {
    font-size: 14px;
    margin-bottom: 0;
  }

  .homeBanner.s1 .coverTextWrap .sub-text br {
    display: none;
  }

  .homeBanner.s1 .coverTextWrap h5 {
    font-size: 18px;
    padding: 15px 0 0;
  }

  p,
  li {
    font-size: 14px;
    line-height: 20px;
  }

  .homeBanner.s1 .coverBtn {
    flex-direction: column;
    grid-row-gap: 15px;
    text-align: center;
  }

  .homeBanner.s1 .coverBtn > a {
    font-size: 14px;
    padding: 12px 20px;
  }

  .homeBanner.s1 .homeBanner.s1 {
    padding: 40px 0;
  }

  .homeBanner.s1 img.wave {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  section.partnersAarea.section.s2 {
    padding-bottom: 70px;
  }

  .head h2,
  .head h2 span {
    font-size: 20px;
  }

  .head p {
    font-size: 14px;
  }

  .SBreviews--wrapper h4 {
    font-size: 14px;
    padding: 20px 0;
  }

  .SBreviews--wrapper .row {
    grid-gap: 15px;
  }

  section.hireExperts .heading h2,
  section.hireExperts .heading h2 span {
    font-size: 20px;
  }

  section.hireExperts .heading h4 {
    font-size: 16px;
  }

  section.hireExperts .heading {
    margin-bottom: 0;
  }

  section.hireExperts .col-left {
    padding: 30px 20px;
  }

  .quality-row .head h2 {
    font-size: 20px;
  }

  .quality-row p {
    font-size: 14px;
    line-height: 20px;
  }

  .quality-row {
    padding: 50px 10px 50px;
  }

  .quality-row .section--cta a.main-cta {
    font-size: 14px;
    padding: 12px 0px;
  }

  .quality-row .section--cta .row {
    grid-gap: 20px;
  }

  section.dentistService p.sub-text {
    padding: 0 15px;
  }

  .serviceTabContent h2 {
    font-size: 20px;
  }

  .serviceTabContent {
    padding: 25px 0 0;
  }

  a.getStarted {
    font-size: 14px;
    padding: 12px 0px;
    width: 100%;
  }

  section.getStarted:before {
    display: none;
  }

  section.getStarted .heading h2 {
    font-size: 20px;
  }

  section.getStarted .colLeft {
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
  }

  section.getStarted .colLeft h4,
  section.getStarted .colLeft h4 span {
    font-size: 26px;
    line-height: 34px;
  }

  section.getStarted .colLeft {
    padding: 20px;
    border-radius: 0;
  }

  section.getStarted .contact-box h4 {
    font-size: 30px;
  }

  section.getStarted .contact-box a {
    font-size: 36px;
  }

  .videoSection p {
    font-size: 14px;
    line-height: 20px;
  }

  ul#accordian {
    overflow: unset;
    max-height: unset;
    padding: 0 !important;
  }

  ul#accordian li {
    padding: 25px 0;
    box-shadow: unset;
  }

  ul#accordian li.active {
    box-shadow: unset;
    background: none;
    border-radius: 0;
  }

  ul#accordian h4 {
    font-size: 14px;
  }

  ul#accordian h4 i {
    font-size: 16px;
  }

  section.section.ny-contact.diamond {
    padding-bottom: 70px;
  }

  .bottom-form {
    padding: 20px 15px;
  }

  .bottom-form h2 {
    font-size: 20px;
  }

  .bottom-form h2 br {
    display: none;
  }

  .mini-contact-area {
    flex-direction: column;
    text-align: center;
    grid-gap: 20px;
  }

  .partners-logo-row .slick-slide img {
    margin: 0 auto;
  }
  .s12 .div-img {
    display: none;
  }

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

  .tabs-wrap {
    padding: 2rem 1rem;
  }

  .tabs-wrap ul.tabs-list .tab-nav {
    max-width: 100%;
    font-size: 0.875rem;
  }

  .tabs-wrap ul.tabs-list .tab-nav > span {
    font-size: 1.5rem;
  }

  .tabs-wrap .tab-content {
    text-align: center;
    margin-top: 2rem;
  }

  .tabs-wrap .tab-content h3 {
    font-size: 1.25rem;
  }

  .tabs-wrap a.main-cta {
    width: 100%;
  }
  .gmb-tool-slider {
    margin: 0 0 1.5rem;
  }
  .gmb-slider-item img {
    box-shadow: unset;
  }
  #gmb-slider ul.slick-dots {
    left: 0;
    right: 0;
    margin: 0 auto !important;
    width: max-content;
  }

  #gmb-slider ul.slick-dots li {
    background: #c1c6d1;
    border-radius: 50px;
    width: 14px;
    height: 14px;
  }

  #gmb-slider ul.slick-dots li.slick-active {
    background: var(--orange);
    width: 70px;
  }

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

  .slick-arrow-wrap,
  #gmb-slider ul.slick-dots {
    bottom: -8%;
  }
}
