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

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

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

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

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

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

i {
  transition: unset;
}

:focus {
  outline: 0px !important;
}

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

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

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

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

/* BOOTSTRAP CSS START  */

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

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

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

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

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

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

/* BOOTSTRAP CSS END  */

/* GLOBAL CSS START HERE  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .head-50 {
    width: 50%;
  }

  .head-60 {
    width: 60%;
  }

  .head-70 {
    width: 70%;
  }

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

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

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

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

.head:before {
  position: absolute;
  background-color: #c0c0c0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: unset;
}

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

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

.head h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  display: inline-block;
  padding: 0.2rem 1rem;
}

.head p {
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
}

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

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

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

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

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

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

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

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

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

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

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

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

a.main-cta i {
    width: 35px;
    height: 35px;
    background: #ffffff;
    color: #f16f1d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

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

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

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

section.diamond {
  padding-top: 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;
}

/* GLOBAL CSS END HERE  */

/* SLICK SLIDER STYLE CSS START */

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

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

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

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

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

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

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

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

/* SLICK SLIDER STYLE CSS END */

/* SECTION ONE CSS START HERE */

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

section.homeBanner.section.s1.v2 {
    background: white;
     padding: 40px 0 ;
}

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

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

@media (min-width: 992px) {
  .s1 .topRow .col-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 500px;
  }
}

@media (min-width: 1200px) {
  .s1 .topRow .col-right {
    min-height: 530px;
  }
}

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

.s1 .topRow h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 46px;
  padding-bottom: 15px;
}



.s1 .topRow p.sub-txt {
  font-weight: 500;
  color: var(--dark-blue);
}

.s1 .topRow h1 span {
    color: #0E2E67;
    background: #FFEA00;
    padding: 0px 3px;
}

.s1 .topRow h1 b {
    color: #ED0004;
    font-style: italic;
}

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

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

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

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

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

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

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

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

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

.coverImg {
  display: none;
}

@media screen and (min-width: 992px) {
  .coverImg {
    display: block;
    position: ;
    top: 1rem;
    margin-right: 0rem;
  }
}

.s1 .bottomRow {
  position: relative;
  text-align: center;
  margin: 1rem 0 0;
}

.s1 .bottomRow .statsRow {
display: flex;
    align-items: center;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto !important;
}

.s1 .bottomRow .statsBox h2 {
 font-family: Poppins;
font-weight: 800;
font-size: 40px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color:#0E2E67;

}

.s1 .bottomRow .statsBox p {
font-family: Poppins;
font-weight: 400;
font-size: 16px;
line-height: 20px;
letter-spacing: 0%;
text-align: center;
color:#505050;

}

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

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

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

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

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

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

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

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

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

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

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

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

.s1 .Form-box .form-control::placeholder {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #9daac1;
}
.s1 .button-box button {
    background: #0E2E67;
    color: var(--white);
    padding: 12px 50px;
    border-radius: 5px;
    display: inline-block;
    box-shadow: 0px 0px 10px #0e2e6747;
}

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

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

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

.s1 .topRow ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    background: #F2701E;
    color: white;
    border-radius: 100%;
    padding: 3.5px;
    margin-right: 6px;
}

.s1 .topRow ul li{font-family: "Inter", sans-serif;font-weight: 500;font-size: 15px;line-height: 22px;letter-spacing: 0px;color:#34456D;background: #FFFFFF;border-radius: 20px;margin-bottom: 8px;padding: 3px 10px;display: inline-block;}


/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */
section.section.s2.diamond {
    margin-top: 0;
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

.s3 {
  background: #f4f7ff;
  padding:60px 0 120px;
   overflow: initial;
}

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */
section.section.s4 {
    background: #FDE8D9;
        overflow: initial;
}

.platform {
    margin-top: -160px;
    z-index: 999;
    position: relative;
}
.why-box {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
        border: 1px solid #D0DDEE;
        height: 100%;
}

.why-box h3 {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0e2e67;
    line-height: 1;
    margin: 1rem 0 1rem;
}

.why-box p {
    font-size: 0.875rem;
    color: #7b7b7b;
    line-height: 20px;
}
/* SECTION FOUR CSS END HERE */

section.section.cta h2 {
    position: relative;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    color: var(--dark-blue);
    font-family: "Raleway", sans-serif;
    margin-bottom: 30px;
}

section.section.cta p {
    text-align: center;
    font-size: 18px;
    color: var(--dark-blue);
    line-height: 20px;
}


.cta ul {
    display: flex;
    grid-gap: 20px;
    justify-content: center;
    color: #34456D;
    margin-top: 30px !important;
}


.cta ul li {
    position: relative;
    padding-left: 25px;
}

.cta ul li:before {
    content: url(/img/citation-building/check.svg);
    position: absolute;
    left: 0;
}


.citation-section{
   background-image: linear-gradient(to bottom, #0E2E67, #1C5CCD);
    padding:80px 20px;
}

.citation-section h2{
    color:#fff;
    text-align:center;
    font-size:52px;
}

.citation-wrapper{
    background:#f5f5f5;
    border-radius:35px;
    overflow:hidden;
    margin:auto;
    padding:0px;
}

.tabs{
    display:flex;
    border-bottom:1px solid #ddd;
}

.tab{
    flex:1;
    text-align:center;
    padding:25px 0px;
    cursor:pointer;
    position:relative;
}

.tab img{
    width:34px;
    height:34px;
    display:block;
    margin:0 auto 10px;
}

.tab.active img {
    filter: drop-shadow(0px 1000px 0 #f97316);
    transform: translateY(-1000px);
}

.tab span{
    font-size:14px;
    display:block;
    color:#444;
}

.tab.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#0d47c9;
}

.tab-content{
    min-height:450px;
}

.content{
    display:none;
}

.content.active{
    display:block;
}

.orange-title{
    display:inline-block;
    background:#f97316;
    color:#fff;
    font-size:40px;
    font-weight:700;
    padding:18px 50px 18px 30px;
    border-radius:0 50px 50px 0;
    margin-top:25px;
}

.text{
    max-width:700px;
    padding:40px 30px;
    color:#555;
    line-height:2;
}

@media(max-width:768px){

    .tabs{
        overflow-x:auto;
    }

    .tab{
        min-width:180px;
    }

    .citation-section h2{
        font-size:34px;
    }

    .orange-title{
        font-size:24px;
    }
}

.features-sb {
    border: 1px solid #e9e9e9;
    border-radius: 30px;
    box-shadow: 4px 15px 20px 9px #0000002b;
}

/* DIY Column */
.comparison-table td:nth-child(2){
    width:37%;
    background:#f5f5f5;
    color:#4d4d4d;
}

/* Search Berg Column */
.comparison-table td:nth-child(3){
    width:37%;
    background:#eef5fb;
    color:#4d4d4d;
}


.checklist {
    background: #1C6EFF;
    color: white;
}
.checklist h2 {
    position: relative;
    font-size: 3.15rem;
    font-weight: 800;
    line-height: 1;
}
.checklist h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0;
}

.checklist h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
}

.checklist ul li {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}


.checklist h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0;
}

.checklist h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.checklist ul li {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 30px;
}

.checklist ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    background: white;
    color: #F2701E;
    border-radius: 100%;
    padding: 3.5px;
    margin-right: 6px;
    position: absolute;
    left: 0;
    border-radius: 4px;
    top: 2px;
    line-height: 1;
}

.check-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    margin-top: 30px;
    width: 88%;
}

.check-card h3 {
    background: #F2701E;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    border-radius: 20px 20px 0 0;
}

.check-card p {
    font-size: 18px;
    color: black;
    padding: 20px;
}


 div#accordian {
  max-width: 1000px;
  margin: auto;
}
div#accordian .accordion__item {
  background: var(--dark-blue);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  cursor: pointer;
}
 div#accordian .accordion__item:not(:last-child) {
  margin: 0 0 1rem;
}
 div#accordian .accordion__item .accordion__item__header h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255 255 255 / 70%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 div#accordian .accordion__item__content {
  margin: 1rem 0 0;
}
div#accordian .accordion__item .accordion__item__content p {
  color: var(--white);
}
 div#accordian .accordion__item .accordion__item__content p:last-child {
  margin: 0;
}
div#accordian .accordion__item.active .accordion__item__header i::before {
    content: "\f068";
    background: #0E2E67;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.accordion__item.active {
    background: #F2F2F2 !important;
}

.accordion__item.active * {
    color: #21243A !important;
}


div#accordian .accordion__item .accordion__item__header  i.fa.fa-plus {
    background: #f2f2f247;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
 div#accordian .accordion__item.active .accordion__item__header h4 {
  color: var(--white);
}
 div#accordian .accordion__item.active {
  border-radius: 1rem;
}


.Form-box {
    width: 370px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 0 20px;
    border-top: 5px solid #4385f4;
    margin: 0 auto;
    display: block;
    position: relative;
    padding-bottom: 20px
}

.Form-box h2 {
    margin: 0;
    font-size: 34px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 0 30px;
    font-weight: 800;
    color: #0e2e67
}

.Form-box h2 span {
    color: #f47a1e;
    font-weight: 800
}

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

.Form-box .form-group i {
    position: absolute;
    font-size: 18px;
    color: #f47a1e;
    left: 10px;
    height: 25px;
    width: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 25px
}

.Form-box .form-control {
    height: 40px;
    padding-left: 40px;
    background-color: #f3f3f3;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #f6f4f4;
    box-shadow: none
}

.Form-box:before {
    content: "";
    position: absolute;
    background-color: #f2701d;
    height: 10px;
    width: 370px;
    top: -15px;
    left: 0;
    border-radius: 8px 8px 0 0
}

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

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

    .Form-box:before {
        width: 100%
    }

    .mini-contact-area:before {
        display: none
    }
}

#gmb-floatrq-form {
    top: 235px;
    width: 270px;
    display: none
}

#floating_request_btn {
    position: fixed;
    left: 0;
    top: 41%;
    z-index: 99999;
}

#gmb-floatrq-form {
    background-size: cover;
    padding: 0;
    width: 300px;
    float: left;
    position: fixed;
    left: 0;
    top: 20%;
    z-index: 99999;
    border: solid 1px #f2701d;
    border-left: 0
}

#gmb-floatrq-form .button-box a {
    padding: 10px 15px;
    margin: 10px auto
}

.close-div {
    position: absolute;
    right: 5px;
    top: 5px
}

.close-rqf {
    padding: 2px 5px;
    font-size: 20px;
    color: #fff;
    background: #f47a1e;
    cursor: pointer
}

.button-box a {
    font-size: 14px;
    color: #fff;
    background-color: #f47a1e;
    padding: 15px 25px;
    font-weight: 500;
    width: max-content;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    border-radius: 4px
}

#gmb-floatrq-form .Form-box {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    padding-bottom: 20px;
    position: relative
}

#gmb-floatrq-form .Form-box:before {
    width: 100%
}

#gmb-floatrq-form .Form-box h2 {
    font-size: 25px;
    padding: 10px 0
}

#gmb-floatrq-form .button-box a {
    padding: 10px 15px;
    margin: 10px auto
}

#gmb-floatrq-form .c-cont-box h4 {
    font-size: 13px
}

#gmb-floatrq-form .c-cont-box a {
    font-size: 14px
}


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

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

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

.c-cont-box a {
    font-size: 16px;
    margin: 0;
    color: #0e2e67;
    font-weight: 800
}

.c-icon-box i {
    font-size: 24px;
    color: #f47a1e;
    margin-right: 15px
}

/* SECTION FIVE CSS START HERE */

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

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

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

.s5 .div-text .head {
  display: inline-flex;
}

.s5 .div-text .head:before {
  opacity: 0.3;
}

.s5 .div-CTA {
  margin: 3rem 0 0;
  justify-content: flex-start;
}

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

@media (min-width: 992px) and (max-width: 1199px) {
  .s5 .div-image img {
    position: absolute;
    max-width: 600px;
    bottom: 0;
  }
}

@media (min-width: 1200px) {
  .s5 .div-image img {
    position: absolute;
    bottom: 0;
    width: auto;
  }
}

/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */

.s6 .head:before {
  width: 40%;
}

.s6 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

.s6 .head > p {
  font-size: 1.25rem;
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

.s7 {
  background: #fbf5f0;
}

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

.s7 .div-CTA {
  justify-content: flex-start;
  margin: 3rem 0 0;
}

/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */


.oragstrap.strap {
    background: var(--Color-2, #F2701E);

}
.bluestrap.strap {
    background: #1C6EFF;
}
.strap {
    margin-top: 200px;
    margin-bottom: 200px;
}
.strap img {margin-top: -125px;margin-bottom: -125px;}

.strap h3 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 56px;
    letter-spacing: 0%;
    color: white;
}


.s8 .head:before {
  width: 50%;
}

.s8 .head:after {
  left: 0;
  margin: auto;
}

.s8 .row-one p {
  color: var(--dark-blue);
}

.s8 .arrow {
  position: absolute;
  top: 1rem;
}

.s8 .arrow.arrow-2 {
  transform: scaleX(-1);
}

strong.quotehead {
    font-family: Poppins;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-align: center;
    display: block;
    position: relative;
    color: #0E2E67;
    width: 75%;
    margin: auto;
	margin-bottom: 40px;
}

.s8 .arrow-1 {
    left: -24px;
    top: 0;
}


.s8 .arrow-2 {
    right: -24px;
    top: 0;
}

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

.features-sb table {
  border: 1px solid #dcdcdc;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

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

.features-sb td {
  position: relative;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  padding: 1rem;
}

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

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

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

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

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

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

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

/* SECTION EIGHT CSS END HERE */

/* SECTION NINE CSS START HERE */

.s9 {
  background: #fafafa;
}

.s9 .head:before {
  width: 50%;
}

.s9 .head:after {
  left: 0;
  margin: auto;
}

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

.s9 .row.package-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-row-gap: 15px;
}

@media (max-width: 991px) {
  .s9 .row.package-row .col-lg-3 {
    flex: 1 1 25%;
  }
}

.pricing-pkg {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  border: 2px solid var(--orange);
  box-shadow: 0 0 10px 5px #e6eeff;
  height: 100%;
}

.pricing-pkg > hr {
  width: 50%;
  height: 5px;
  background: var(--orange);
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  border: 0;
}

.pricing-head {
  position: relative;
  padding: 25px;
  text-align: center;
}

.pricing-pkg .pricing-head h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--dark-blue);
  line-height: 1;
  margin: 0 0 10px;
}

.pricing-pkg .pricing-head h3 span {
  color: var(--orange);
  display: block;
}

.pricing-pkg .pricing-head small {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 12px;
}

.pricing-price {
  background-color: #e9ecf6;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-pkg .pricing-price h4 {
  font-family: "Poppins", sans-serif;
  color: var(--dark-blue);
  font-size: 64px;
  font-weight: bold;
}

.pricing-pkg .pricing-price h4 span {
  font-size: 40px;
  color: var(--orange);
}

.pricing-pkg .pricing-price h4 small {
  font-size: 1.125rem;
  color: var(--orange);
}

.packages-row-wrap .row-one .pricing-head h3 {
  font-size: 36px;
}

.pricing-content {
  padding: 16px;
  height: 200px;
  overflow-y: auto;
}

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

.pricing-content::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

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

.pricing-content ul {
  padding-left: 0 !important;
}

.pricing-content ul li {
  margin-bottom: 5px;
  color: var(--dark-blue);
  font-weight: 600;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.pricing-content ul li i {
  color: var(--orange);
  font-size: 18px;
  margin-right: 5px;
  margin-top: 4px;
}

.pricing-footer {
  position: relative;
  text-align: center;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}

.pricing-footer:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #e6eeff;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.pricing-footer .order-btn {
  background-color: var(--dark-blue);
  box-shadow: 0 0px 10px 0px rgb(0 22 94 / 40%);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 16px 50px;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.3s;
  text-decoration: unset !important;
}

.pricing-footer .order-btn:hover {
  background-color: var(--orange);
  color: var(--white);
}

.pricing-footer a.terms-condition {
  color: var(--orange);
  text-decoration: underline !important;
  font-weight: 600;
  font-size: 12px;
}

.pkg-popup {
  background: #e9ecf6;
  padding: 2rem 4rem;
  border-radius: 1rem;
  max-width: 50%;
  max-height: 70%;
  overflow: auto;
  height: fit-content;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
}

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

.pkg-popup::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

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

span.close-popup {
  font-size: 18px;
  font-weight: 900;
  background: var(--orange);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.pkg-popup > h3 {
  margin: 0 0 32px;
  padding: 0 0 16px;
  border-bottom: 2px dashed #000;
  font-size: 22px;
  font-weight: bold;
}

.pkg-popup > h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.pkg-popup > p {
  font-size: 0.875rem;
  line-height: 1.4;
}

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

.pkg-popup > strong {
  margin: 0 0 5px;
  display: block;
}

/* SECTION NINE CSS END HERE */

/* SECTION TEN CSS START HERE */

@media (min-width: 1200px) {
  .s10 .div-image > img {
    position: absolute;
    left: -5rem;
    /* top: 0; */
    bottom: 0;
    /* margin: auto; */
  }
}

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

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

.s10 .div-CTA {
  justify-content: flex-start;
  margin: 3rem 0 0;
}

/* SECTION TEN CSS END HERE */

/* SECTION ELEVEN CSS START HERE */

.s11 {
background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: white;
}

.s11 .head:before {
  width: 40%;
}

.s11 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
  margin: 4rem 0 0;
  text-align: center;
  align-items:start;
}

.process-grid .process-timeline-box {
 border: 1px solid #babec3;
    position: relative;
    border-radius: 1rem;
    padding: 2.5rem 0.5rem 1.2rem;
	    background: white;
}

.process-timeline-box.active{
    min-height: max-content;
}



.process-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all 0.4s ease;
}

.process-timeline-box.active .process-content{
    max-height: max-content;
    opacity:1;
}


.process-toggle-btn{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-22px;
    width:46px;
    height:46px;
    border:none;
    border-radius:8px;
    background:#8c8c8c;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    transition:0.3s ease;
}

.process-timeline-box.active .process-toggle-btn{
    background:#f47a1f;
    transform:translateX(-50%) rotate(180deg);
}

.process-toggle-btn:hover{
    opacity:0.9;
}


.process-grid .process-timeline-box .process-step {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  width: 60%;
  display: block;
  margin: auto;
  padding: 0.5rem;
  line-height: 1;
  border-radius: 0.3rem;

}

.process-grid .process-timeline-box h3 {
font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #141414;
    line-height: 1;
    margin: 1rem 0 1rem;
}

.process-grid .process-timeline-box p {
  font-size: 0.875rem;
  color: #4d4d4d;
  line-height: 20px;
}

.process-seprator {
  width: 100%;
      margin-top: -80px;
}


/* SECTION ELEVEN CSS END HERE */

/* SECTION CTA CSS START HERE */

.section-cta .CTA-wrap {
  background-image: url("/img/gmb-setup/cta-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 3rem 4rem;
}
.section-cta .CTA-wrap .div-text h2 {
  position: relative;

  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.section-cta .CTA-wrap .row {
  align-items: center;
}
@media (min-width: 991px) {
  .section-cta .CTA-wrap .div-text h2 {
    font-size: 3rem;
  }
  .section-cta .CTA-wrap .col-right {
    text-align: right;
  }
}
@media (max-width: 991px) {
  section.section.section-cta {
    text-align: center;
  }

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

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

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

  .section-cta .CTA-wrap {
    padding: 2rem;
  }

  section.section.section-cta a.main-cta {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.8rem 0;
  }
}
/* SECTION CTA CSS END HERE */

/* SECTION TWELVE CSS START HERE */

.s12:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: var(--dark-blue);
  right: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .s12 .div-text {
    padding-right: 3rem;
  }
}

.s12 .div-image {
  position: relative;
  text-align: center;
}

.s12 .div-image:before {
  position: absolute;
  content: "";
  background-image: url("/img/gmb-reinstatement/shape-circle.webp");
  width: 391px;
  height: 391px;
  background-repeat: no-repeat;
  background-position: right;
  right: -50px;
}

/* SECTION TWELVE CSS END HERE */



.s13-v2{
    position: relative;
    overflow: hidden;
    background: #f6f0eb;
    padding: 100px 0;
}

/* Grid Background */
.s13-v2::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.s13-v2 .container{
    position: relative;
    z-index: 2;
}





.lineShape{
    width: 220px;
    height: 2px;
    background: #ef8c42;
    display: block;
    margin: 35px auto 0;
    position: relative;
}

.lineShape::before,
.lineShape::after{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef8c42;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lineShape::before{
    left: 0;
}

.lineShape::after{
    right: 0;
}

/* Grid */
.industryGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Box */
.industryBox{
    background: #f8f4ef;
    border: 1px solid #e7c8b0;
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    transition: 0.3s ease;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industryBox:hover{
    transform: translateY(-5px);
    box-shadow: 20px 20px 40px 0px #F26F1C33;
}

.iconWrap{
    width: 90px;
    height: 90px;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.iconWrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industryBox h3{
    font-size: 20px;
    line-height: 1.3;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.gmbprofile {
    background: #1C6EFF;
    padding-bottom: 100px;
}
.gmbprofile * {
    color: white;
}

.gmbprofile h2 {
    font-family: Raleway;
    font-weight: 800;
    font-size: 59px;
    letter-spacing: 0%;
    line-height: 1.2;
        margin: 30px 0;
}

.gmbprofile h2 span {
    background: #FFEA00;
    color: #1c6eff;
    line-height: 0.85;
    padding: 5px;
    display: inline-block;
}

.gmbprofile p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    font-family: "Inter", sans-serif;
}

p.standout {
     font-family: "Inter", sans-serif;
     font-weight: 700;
     font-style: Italic;
     font-size: 24px;
     line-height: 30px;
     letter-spacing: 0%;
     text-transform: uppercase;
     color:#FFEA00;
     width: 80%;
     margin: 43px 0;
}

.gmbguide:after {
        content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}




.gmbguide {
    background: #FFDE00;
}

.gmbguide h2 {
    font-family: Raleway;
    font-weight: 800;
    font-size: 57px;
    letter-spacing: 0%;
    line-height: 1.1;
    margin: 30px 0;
}

.gmbguide h2 span {
    background: white;
    color: #1c6eff;
    line-height: 0.85;
    padding: 5px;
    display: inline-block;
}


.gmbguide p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    font-family: "Inter", sans-serif;
}

.gmbguide .standout {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: Italic;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000;
    width: 80%;
    margin: 43px 0;
}

img.gmbguide-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
}

a.btn.btn-blue {
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    font-family: "Inter", sans-serif;
    color: #000000;
    padding: 24px 95px;
    background: var(--Link-Color, #1C6EFF);
    box-shadow: 0px 25px 40px 0px #1C6EFF66;
}
a.btn.btn-yellow {
    background: var(--Color, #FFEA00);
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    font-family: "Inter", sans-serif;
    color: #000000;
    padding: 24px 95px;
}

img.gmbprofile-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


.table-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e6e6e6;
    margin:40px auto;
}

.table-card table{
    width:100%;
    border-collapse:collapse;
    font-family:'Poppins',sans-serif;
}

.table-card thead{
    background:#153c88;
}

.table-card thead th{
    color:#fff;
    font-size:17px;
    font-weight:600;
    padding:20px;
    text-align:left;
}

.table-card tbody td{
    padding:18px 20px;
    border-bottom:1px solid #ececec;
    font-size:15px;
    color:#444;
    vertical-align:middle;
}

.table-card tbody tr:last-child td{
    border-bottom:none;
}

.table-card tbody tr:hover{
    background:#f7f9ff;
}

.table-card .highlight{
    background:#fff6ef;
}

.table-card .highlight td:first-child{
    border-left:5px solid #ff7a12;
}

.brand-cell{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#153c88;
}

.best-tag{
    background:#ff7a12;
    color:#fff;
    font-size:11px;
    font-weight:600;
    padding:5px 12px;
    border-radius:30px;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.cost{
    color:#ff7a12;
    font-size:22px;
    font-weight:700;
}

.unit{
    color:#777;
    font-size:14px;
}

.save-note{
    margin-top:5px;
    font-size:13px;
    color:#28a745;
    font-weight:500;
}

.pill{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.pill.good{
    background:#e9f9ef;
    color:#1d9b52;
}

.pill.bad{
    background:#ffecec;
    color:#d32f2f;
}

.table-card tbody tr:nth-child(even):not(.highlight){
    background:#fbfbfb;
}

/* Responsive */

@media(max-width:991px){

.table-card{
    overflow-x:auto;
}

.table-card table{
    min-width:750px;
}

}

.package-note{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.package-note h3{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#153c88;
    margin-bottom:40px;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.package-card{
    position:relative;
    background:#fff;
    border:2px solid #ececec;
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
    border-color:#ff7a12;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.package-card.active{
    border-color:#ff7a12;
    box-shadow:0 15px 35px rgba(255,122,18,.18);
}

.best-value{
    position:absolute;
    top:-12px;
    right:20px;
    background:#ff7a12;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.package-name{
    font-size:28px;
    font-weight:700;
    color:#153c88;
    margin-bottom:25px;
}

.package-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid #eee;
        flex-direction: column;
}

.package-info span{
    color:#777;
    font-size:15px;
}

.package-info strong{
    color:#333;
    font-weight:600;
}

.package-price{
    font-size:42px;
    font-weight:700;
    color:#ff7a12;
    margin:25px 0;
}

.package-price small{
    font-size:18px;
    color:#777;
}

.package-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    background:#153c88;
    color:#fff;
    padding:15px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
        width: 100%;
}

.package-btn:hover{
    background:#ff7a12;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

.package-grid{
    grid-template-columns:repeat(2,1fr);
}

.package-note{
    padding:30px;
}

}

/* Mobile */

@media(max-width:767px){




.package-grid{
    grid-template-columns:1fr;
}

.package-note h3{
    font-size:26px;
}

.package-card{
    padding:25px;
}

.package-price{
    font-size:34px;
}

}

/* Responsive */
@media (max-width: 1199px){

    .industryGrid{
        grid-template-columns: repeat(3, 1fr);
    }

    .industryBox h3{
        font-size: 24px;
    }
}

@media (max-width: 767px){

    .s13-v2{
        padding: 70px 0;
    }

    .industryGrid{
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .industryBox{
        min-height: 180px;
        padding: 30px 20px;
        border-radius: 18px;
    }

    .iconWrap{
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .industryBox h3{
        font-size: 18px;
    }

   .s13-v2 .head p{
        font-size: 16px;
    }
}

@media (max-width: 480px){

    .industryGrid{
        grid-template-columns: 1fr;
    }
}

/* SECTION THIRTEEN CSS START HERE */

.featured-blog {
    text-align: center;
    margin-bottom: 50px;
}

.s13 .head:before {
  width: 40%;
}

.s13 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* SECTION THIRTEEN CSS END HERE */

/* SECTION FOURTEEN CSS START HERE */

.CTA-shape img {
  width: 100%;
}

.CTA-shape {
  margin-top: -100px;
}

.s14 {
  background: #ebf3ff;
  padding-bottom: 6rem;
}

.s14 .head p {
  font-size: 1.25rem;
}

.s14 .head:before {
  width: 40%;
}

.s14 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

/* SECTION FOURTEEN CSS END HERE */

/* SECTION FIVETEEN CSS START HERE */

.s15 .head:before {
  width: 40%;
}

.s15 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

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

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

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

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

.s15 .faq-box .faq-details p:last-of-type {
  margin: 0;
}

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

.s15 .faq-box .faq-details ul li {
  list-style: disc;
}

.s15 .faq-box .faq-details ul {
  padding-left: 1rem !important;
  margin-bottom: 1rem !important;
}

.s15 .faq-box .faq-details ul li:not(:last-child) {
  margin: 0 0 1rem;
}

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

/* SECTION FIVETEEN CSS END HERE */

/* SECTION SIXTEEN CSS START HERE */

.s16 .head-center {
  max-width: 100%;
}

.s16 .head:before {
  width: 40%;
}

.s16 .head:after {
  left: 0;
  right: 0;
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Firefox < 19 */

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

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

/* Firefox > 19 */

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

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

/* Internet Explorer 10 */

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

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

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

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

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

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

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

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

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

.s16 ul.partners {
  margin: 3rem 0 0 !important;
}

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

/* SECTION SIXTEEN CSS END HERE */

.resultCon {
    padding-bottom: 100px;
}




section.section.lost {
    background: #0E2E67;
	padding-bottom: 200px;
}

.imgBox img {
    border-radius: 20px;
}

.topContent {
    display: flex;
    align-items: center;
    grid-gap: 50px;
}

.topContent .imgBox {
    width: 40%;
}

.contentBox {
    width: 60%;
}

.contentBox h2 {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    color: white;
}

.contentBox p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: white;
}

.contentBox h2 span {
    color: #FFEA00;
    font-weight: 600;
}

.contentBox h2 strong {
    font-weight: 700;
}

.resultBox {
       background: #FFFAF5;
    padding: 35px 50px;
    border-radius: 30px 30px 0 0;
    margin-top: -150px;
    z-index: 999;
    position: relative;
    min-height: 290px;
}

.resultBox:before {
    content: url('/img/gmb-reinstatement/side-vec.png');
;
    position: absolute;
    bottom: -4px;
    left: -94px;
}

.resultBox:after {
    content: url('/img/gmb-reinstatement/side-vec.png');
;
    position: absolute;
    bottom: -4px;
    right: -94px;
    transform:scalex(-1)
}
.bottomText h4 {
font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 46px;
}

.bottomText p {
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 23px;
}

.bottomText p span {
    color: #F2701E;
    font-style: italic;
}


.btn-white {
    background: white;
    box-shadow: 0px 25px 40px 0px #00000047;
}

.btn-white i {
    background: #21243A;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-left: 10px;
}

a.main-cta {
font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
}

.btn-white {
    color: #21243A !important;
    border: 2px solid #fff !important;
}

.btn-transparent {
    border: 2px solid #21243A !important;
    color: #21243A !important;
    margin-top: 6px;
}

.btn-blue {
    background: #21243A;
    box-shadow: 0px 25px 40px 0px #00000047;
    color: white !important;
    margin-top: 6px;
}
.white {
    color: white !important;
    border-color: white !important;
}

.btn-blue.yellow {
    background: #FFEA00;
    color: black !important;
    box-shadow: 0px 25px 40px 0px #FFEA0066;
}


.cta-div a {
    width: 100%;
	    margin: 0;
}
.resultGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 50px;
    margin-top: 40px;
}
.resultBox h3 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 5%;
    text-align: center;
    text-transform: uppercase;
}

.resultItem p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
        margin-top: 15px;
}

/* MEDIA QUERIES START HERE  */

@media (max-width: 1199px) {
  .features-sb td {
    font-size: 0.875rem;
  }

  .features-sb tbody tr td i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    opacity: 0.3;
    font-size: 4rem;
  }

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

@media (max-width: 991px) {

  .platform {
    margin-top: 0;
    z-index: 999;
    position: relative;
}
section.section.cta h2 {
    font-size: 32px;
}
.cta ul {
    flex-direction: column;
}
.cta-div {
    grid-gap: 10px;
}
.checklist h2 {
    position: relative;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.w-75.m-auto.text-center {
    width: 100% !important;
}
#floating_request_btn {
    position: fixed;
    left: 0;
    top: 10%;
    z-index: 99999;
}
  .s1 .topRow h1 {
    text-align: center;
    font-size: 2.5rem;
  }

  .s1 .topRow {
    text-align: center;
    grid-row-gap: 2rem;
  }

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

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

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

  .s2 {
    text-align: center;
  }

  .s4 .box-item {
    text-align: center;
    padding-right: 0;
    border: 0;
  }

  .s4 .row {
    grid-row-gap: 0;
  }

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

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

  .s5 .div-CTA {
    justify-content: center;
  }

  .s5 {
    padding-bottom: 0;
  }

  .s7 .div-CTA {
    justify-content: center;
  }

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

  .s10 {
    text-align: center;
  }

  .s10 .div-CTA {
    justify-content: center;
  }

  .process-grid {
    grid-template-columns: auto;
    grid-row-gap: 3rem;
  }

  .process-grid .process-timeline-box .process-step {
    width: 150px;
  }

  .process-grid .process-timeline-box {
    padding: 35px 45px;
  }

  .s12 {
    text-align: center;
  }

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

  .s12:before {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 55%;
  }

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

@media (max-width: 767px) {

  .slider-arrows{
    display: none;
  }

  .problem-con{
     margin-bottom: 50px;
  }
  .fix-con {
    margin-top: 50px;
}

.problem-slider .col-md-2 img {
    margin-top: 50px;
    transform: rotate(90deg);
}
	
	.resultGrid {
 
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;

}

.resultBox {

    padding: 30px;

}
.topContent {
    flex-direction: column;
}
.topContent .imgBox {
    width: 100%;
}
.contentBox {
    width: 100%;
}
.contentBox h2 {
    font-size: 30px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 20px;
}
.contentBox p {
    text-align: center;
}
.strap img {
    margin-top: 0;
    margin-bottom: 0;
}
.strap h3 {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
	margin-bottom: 20px;
    margin-top: 20px;
}
.strap {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 20px;
}

.resultBox:after, .resultBox:before{
	display:none;
}
  .section {
    padding: 3rem 0;
  }

  .section p,
  .section ul li {
    font-size: 0.875rem;
  }

  .s1 .topRow h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

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

  .s1 .coverBtns a {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    padding: 0.8rem 0 !important;
    border-radius: 0.4rem !important;
    flex: 1;
    text-align: center;
    justify-content: center;
    border: 0px !important;
  }

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

  .s1 .coverBtns a.talk-phone,
  .s1 .coverBtns a.talk-chat:hover {
    background: var(--dark-blue);
    color: var(--white) !important;
    text-decoration: unset !important;
    box-shadow: unset !important;
  }

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

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

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

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

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

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

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

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

  .head h2,
  .head h2 span,
  .s2 .head h2,
  .s2 .head h2 > span {
    font-size: 1.375rem;
  }

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

  .s2 .col-right:before {
    display: none;
  }

  .s2 .col-right p strong {
    font-size: 1rem;
  }

  section.section.s3 {
    padding: 1rem 0;
  }

  .s4 .box-item > span {
    font-size: 8rem;
  }

  .s4 .box-item > h3 {
    margin: -2rem 0 1rem;
  }

  .s4 .box-item > span {
    background: -webkit-linear-gradient(#eed4d5 40%, #ffff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

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

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

  .s5 {
    padding-bottom: 0;
  }

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

  .s6 .head > p {
    font-size: 0.875rem;
    line-height: 1.2;
  }

  .s6 .head > p br {
    display: none;
  }

  .s8 .arrow {
    display: none;
  }

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

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

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

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

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

  .s12:before {
    display: none;
  }

  .s12 .div-image {
    background: var(--dark-blue);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s12 {
    padding-bottom: 0;
  }

  .CTA-shape {
    margin: 0;
  }

  .s14 {
    padding-bottom: 3rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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