:root {
  --primary: #0e58d1;
  --secondary: #3f37c9;
  --accent: #4cc9f0;
  --light: #f8f9fa;
  --dark: #212529;
  --orange: #ff6b35;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
}

ul {
  padding: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Aleo", serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.header_main_wrap .navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.header_main_wrap .navbar.scrolled {
  background: #fff !important;
}

.header_main_wrap .navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary);
}

.header_main_wrap .header_inner_wrap .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-family: "Aleo", serif;
  font-weight: 500;
}

.header_main_wrap .header_inner_wrap {
  background: #fff;
  border-radius: 40px;
  padding: 5px 40px;
}

.header_main_wrap .navbar.scrolled .header_inner_wrap {
  background: linear-gradient(0deg, #eaeaea 100%, #ffffff 0%)
}

.bar_menu {
  padding: 0 0 0 30px;
  font-size: 21px;
}

.btn_global_wrap {
  margin-top: 6px;
}

.btn_global span .fa {
  font-size: 24px;
  vertical-align: middle;
  padding-left: 8px;
}

header .logo_img img {
  height: 46px;
  width: auto;
}

.hero {
  background: #fff url('../assets/images/banner-bg.png') center center;
  background-size: cover;
  /* color: #0; */
  /* padding: 160px 0 80px; */
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .img_group img {
  max-height: 25px
}

.we_offer_wrapp.blog_wrpaper .img_group_wrap img {
  max-height: 50px;
}

.hero .hero_img_wrap img {
  max-height: 600px;
  transform: scale(1.1)
}

.hero_img_wrap {
  position: relative;
}

@keyframes up-down {
  0% {
    transform: translateY(-20px);
    /* Start at the top */
  }

  50% {
    transform: translateY(10px);
    /* Move to the bottom */
  }

  100% {
    transform: translateY(-20px);
    /* Return to the top */
  }
}

.caption_wrap {
  position: absolute;
  top: 78px;
  left: -66px;
  width: 240px;
  background: #000;
  color: #fff;
  border-radius: 24px;
  padding: 15px 11px;
  animation: up-down 4s linear infinite;
}

.hero .caption_wrap h3 {
  font-family: Aleo;
  font-weight: 900;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
  margin: 0;
}

.hero .caption_wrap p {
  font-size: 8px;
  line-height: 11px;
  margin: 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  /* margin-bottom: 20px; */
  line-height: 1.2;
}

.hero h1 span {
  display: block;
  font-size: 3.5rem;
}

.tag_line {
  color: var(--primary);
  font-family: "Aleo";
  font-weight: 600;
  font-size: 16px;
  line-height: 52px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.inner_content {
  position: relative;
}

.inner_content h2 {
  color: var(--primary);
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.inner_content .tag_line {
  position: absolute;
  top: -5px;
  right: 74px;
  line-height: normal;
  text-align: right;
  font-size: 12px;
}

.desc ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.desc ul li {
  list-style: inside;
}

.inner_content .tag_line::before {
  content: "";
  position: absolute;
  left: 102%;
  top: 10px;
  width: 20px;
  height: 40px;
  background-image: url('../assets/images/arrow2.png');
  background-repeat: no-repeat;
  z-index: 999;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero .tag_line {
  margin-bottom: 0;
}

.btn_global {
  font-family: "Aleo", serif;
  background: #0e58d1;
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
}

.btn_global:hover {
  background: #000;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 15px 20px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: #000;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* .btn_wrapp .btn-primary{} */
.btn_wrapp .btn-primary:last-child {
  background: #fff;
  color: #000;
  margin-left: 10px;
}

.bottom_wrapp {
  display: flex;
  gap: 1rem;
}

.hero .active_user p {
  font-size: 10px;
  margin: 0;
  position: relative;
  margin-left: 10px;
  color: var(--primary);
}

.hero .active_user p::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4eb309;
}

.img_group {
  margin-left: 5px;
}

.img_group img:not(:first-child) {
  margin: 0 -5px;
}

.client_wrapp {
  background: var(--primary);
  padding: 30px 0;
}

.tag_line_heading {
  position: relative;
  font-family: "Aleo";
  font-size: 12px;
  line-height: 52px;
  color: #fff;
}

.tag_line_heading::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 25px;
  width: 20px;
  height: 40px;
  background-image: url('../assets/images/arrow3.png');
  background-repeat: no-repeat;
  z-index: 999;
  /* filter: contrast(100); */
}

.bg_color {
  color: var(--primary);
}

.client_wrapp .left_wrap h3 {
  font-weight: 900;
  font-size: 30px;
  line-height: 50px;
  color: #fff;
}

.we_offer_wrapp {
  padding: 60px 0;
}

.we_offer_wrapp .tag_line_heading {
  color: #000;
}

.we_offer_wrapp .tag_line_heading::before {
  background-image: url('../assets/images/arrow.png');
}

.heading_wrap h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
}

.heading_wrap h3 strong {
  text-decoration: line-through;
}

.section {
  padding: 100px 0;
}

.we_offer_wrapp .right_wrap {
  display: flex;
  align-items: end;
  height: 100%;
}

.body_wrap {
  margin-top: 35px;
}

.body_wrap .card_wrap {
  background: var(--primary);
  padding: 40px 40px 70px;
  border-radius: 15px;
  color: white;
}


.body_wrap .card_wrap h3 {
  font-size: 35px;
  line-height: 38px;
  color: #fff;
  width: 48%;
  margin: 0 0 18px;
}

.body_wrap .card_wrap p {
  color: #fff;
}

.body_wrap .right_side .card_wrap {
  background: #fff;
  padding: 20px 40px 0;
  border: 2px solid #0e58d1;
  margin-bottom: 16px;
  color: black;
}

.body_wrap .right_side .card_wrap h3,
.body_wrap .right_side .card_wrap p {
  color: #000;
}

.body_wrap .right_side .card_wrap h3 {
  width: 100%;
}

.body_wrap .right_side .card_wrap .info_wrap {
  margin: 45px 0 0;
}

.body_wrap .right_side .card_wrap2 {
  background: var(--primary);
  color: white;
}

.body_wrap .right_side .card_wrap2 h3,
.body_wrap .right_side .card_wrap2 p {
  color: #fff;
}

.bottom_wrap {
  margin-top: 15px;
}

.bottom_wrap .card2 {
  background: #fff;
  border: 2px solid #0e58d1;
  padding: 0 0 30px;
  overflow: hidden;
  color: black;
}

.bottom_wrap .card_wrap {
  padding: 0 0 30px;
  overflow: hidden;
}

.bottom_wrap .card_wrap img,
.bottom_wrap .card2 img {
  width: 100%;
}

.bottom_wrap .card_wrap h3,
.bottom_wrap .card_wrap p,
.bottom_wrap .card_wrap .desc {
  /* color: #000; */
  padding: 0 30px;
  width: 100%;
}

.bottom_wrap .card_wrap h3 {
  margin-top: 30px;
}

.bottom_wrap .card2 h3,
.bottom_wrap .card2 p {
  color: #000;
  padding: 0 30px;
}

.bottom_wrap .card2 h3 {
  width: 48%;
  margin-top: 30px;
}

.btnWrap {
  margin: 30px 0 0;
}

/* .card_wrap ul li{
list-style: inside !important;
} */

.fill_form_wrap {
  background: #000 url('../assets/images/form_bg.png') no-repeat right center;
  background-size: contain;
  padding: 70px 0;
}

.fill_form_wrap {
  color: #fff;
}

.fill_form_wrap .heading_wrap p:last-child {
  margin: 30px 0;
}

.form_wrapp .form_field_wrap {
  margin: 0 0 1.5rem;
}

.fill_form_wrap .form_wrapp .form_field_wrap {
  margin-bottom: 1rem
}

.connect_form_wrap.news_letter_wrap .form_wrapp .form_field_wrap p br {
  display: none
}

.form_wrapp .form_field_wrap input[type="text"],
.form_wrapp .form_field_wrap input[type="tel"],
.form_wrapp .form_field_wrap input[type="email"],
.form_wrapp .form_field_wrap select {
  width: 100%;
  height: 42px;
  padding: 10px 10px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.fill_form_wrap .btn_submit_Wrap input.wpcf7-submit {
  font-family: "Aleo", serif;
  background: #0e58d1;
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
}

.fill_form_wrap .btn_submit_Wrap input.wpcf7-submit:hover {
  background: var(--primary);
  opacity: 0.7;
}

.form_wrapp .form_field_wrap textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  height: 120px
}

.checkbox_wrap {
  gap: 1rem;
}

.btn_submit_Wrap {
  margin: 30px 0 0 20px;
}

.btn_submit_Wrap .btn_global:hover {
  background: var(--primary);
  opacity: 0.7;
}

/* .experience_wrapp {
  padding: 60px 0;
} */

.experience_wrapp .img_wrapp {
  position: relative;
  border: 1px solid #000;
  border-left: none;
  padding: 40px 0;
}

.experience_wrapp .img_wrapp p {
  margin: 0 0 -20px 40px;
}

.experience_wrapp .img_wrapp .year_exp {
  position: absolute;
  top: 115px;
  right: -42px;
  z-index: 99;
  transform: rotate(-90deg);
  width: 206px;
}

.year_exp h3 {
  font-size: 30px;
  font-weight: 900;
  text-align: right;
}

.experience_wrapp .group_img {
  margin: 30px 0 0;
  justify-content: space-around;
}

.experience_wrapp .group_img .d-flex {
  margin: 30px 0 0;
  justify-content: space-around;
}

.experience_wrapp .group_img img {
  filter: grayscale(1);
}

.experience_wrapp .group_img img:hover {
  filter: unset;
}

.experience_wrapp .about_content {
  position: relative;
  padding: 40px 30px;
}

.experience_wrapp .about_content,
.experience_wrapp .img_wrapp {
  min-height: 488px;
}

.experience_wrapp .about_content::before {
  content: "";
  position: absolute;
  top: -19.5px;
  left: -25px;
  width: 100%;
  border-top: 1px solid #000;
}

.experience_wrapp .about_content::after {
  content: "";
  position: absolute;
  bottom: -19.5px;
  left: -25px;
  width: 100%;
  border-top: 1px solid #000;
}

.content_img {
  position: relative;
}

.content_img::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 21px;
  width: 93%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
}

.case_study_wrap {
  background: #000;
  color: #fff;
  padding: 48px 0;
}

.case_study_wrap .body_wrapp .case_study_card .img_wrapp img {
  object-fit: cover
}

.case_study_wrap .body_wrapp {
  position: relative
}

.case_study_wrap .body_wrapp:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100px;
  content: "";
  background: #000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
  z-index: 99
}

.case_study_wrap .body_wrapp:after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
  content: "";
  background: #000;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
  z-index: 99
}

.case_study_wrap .heading_wrap p:last-child {
  margin: 30px 0;
}

.view_btn {
  display: flex;
  justify-content: end;
  align-items: end;
  height: 82%;
}

.view_btn .btn_global:hover {
  background: var(--primary);
  opacity: 0.7;
}

.case_study_card .img_wrapp {
  overflow: hidden;
}

.case_study_card .img_wrapp img {
  transition: 0.5s;
}

.case_study_card:hover img {
  transform: scale(1.1);
}

.case_study_card p {
  font-size: 11px;
  text-align: center;
  color: #fff;
  margin: 20px 0 0;
}

.testimonials_wrap .right_wrap {
  margin-top: -10px;
}

.connect_form_wrap {
  background: unset;
  padding: 0;
}

.connect_form_wrap .inner_body .heading_wrap {
  margin: 0 0 30px;
}

.connect_form_wrap .inner_body {
  background: var(--primary);
  padding: 40px 20px 40px 80px;
  position: relative;
}

.fill_form_wrap.connect_form_wrap .inner_body {
  padding-bottom: 0
}

.fill_form_wrap.connect_form_wrap .btn_submit_Wrap {
  margin: 0 0 40px 0
}

.fill_form_wrap.connect_form_wrap .img-box {
  display: flex;
  justify-content: flex-end;
}

.fill_form_wrap.connect_form_wrap .img-box img {
  position: relative;
  right: -21px;
  margin-top: -60px;
  min-height: 555px;
  width: 700px;
  object-fit: cover;
}

.connect_form_wrap.fill_form_wrap .inner_body .btn_global {
  background: #fff;
  color: var(--primary);
}

.connect_form_wrap.fill_form_wrap .inner_body .btn_global:hover {
  background: #fff;
  opacity: 0.7;
  color: var(--primary);
}

.right_img_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
}

.right_img_wrap img {
  height: 594px;
  margin-top: -51px;
  margin-right: -104px;
  object-fit: fill;
}

.blog_wrpaper .right_wrap .top_wrap {
  width: 100%;
}

.blog_wrpaper .body_wrap .info_deatils p:first-child {
  font-family: "Aleo";
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
}

.blog_wrpaper .body_wrap .info_deatils p span {
  padding-left: 30px;
}

.blog_wrpaper .body_wrap .info_deatils h3 {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  margin: 6px 0;
}

.blog_wrpaper .body_wrap .bottom_wrap {
  gap: 20px;
  font-size: 12px;
  font-family: "Aleo";
}

.blog_wrpaper .body_wrap .blog_card_list {
  margin: 40px 0 0;
}

.blog_wrpaper .body_wrap .blog_card {
  position: relative;
}

.blog_wrpaper .body_wrap .blog_card .img_wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog_wrpaper .body_wrap .blog_card p {
  font-family: "Aleo";
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  margin: 26px 0 0;
}

.blog_wrpaper .body_wrap .blog_card p span {
  padding-left: 30px;
}

.blog_wrpaper .body_wrap .blog_card h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 27px;

  margin: 6px 0;
}

.news_letter_wrap .heading_wrap h3 {
  font-size: 30px;
  line-height: 34px;
}

.news_letter_wrap .inner_body .form_field_wrap p {
  margin: 10px 0 0;
}

.news_letter_wrap .inner_body .right_img_wrap {
  right: -48px;
  bottom: 30px;
}

.news_letter_wrap .inner_body .right_img_wrap img {
  height: unset;
  margin: unset;
}

/* .blog_wrpaper .body_wrap .blog_card .img-wrap{
    overflow: hidden;
}
.blog_wrpaper .body_wrap .blog_card .img-wrap img{
    transition: 0.5s;
}
.blog_wrpaper .body_wrap .blog_card:hover .img-wrap>img{
    transform: scale(1.1);
} */

.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

/* .offic_location {
  padding: 0 80px;
} */

.footer p {
  color: #fff;
}

.footer-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 52px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}

.foote_about {
  padding: 0 30px;
}

.foote_about p {
  /* font-family: "Aleo"; */
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 20px 0 0;
}

.foote_about p span {
  display: inline-block;
  margin: 10px 0 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.offic_location p {
  font-size: 12px;
}

.footer_link ul li {
  color: #fff;
  font-size: 12px;
}

.footer_link ul li:not(:last-child) {
  margin: 0 0 1rem;
}

.footer a {
  transition: 0.5s;
}

.footer a:hover {
  color: var(--primary);
}



.copyright {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255);
}

.term_wrap {
  text-align: right;
}


.black-bg {
  background: #000 !important;
}

.what-local-seo {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
}

.what-local-seo .content-box,
.what-local-seo .img-box {
  display: flex;
  justify-content: center;
  flex-direction: column
}

.what-local-seo .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.what-local-seo .tag_line_heading::before {
  background-image: url('../assets/images/arrow.png');
}

.what-local-seo h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

.what-local-seo span {
  color: var(--primary);
}

.why-local-seo {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
}

.why-local-seo .content-left,
.why-local-seo .content-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.why-local-seo .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.why-local-seo .tag_line_heading::before {
  background-image: url('../assets/images/arrow.png');
}

.why-local-seo h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

.why-local-seo span {
  color: var(--primary);
  display: block;
}

.why-local-seo .content-right .row {
  margin: 0 -10px;
}

.why-local-seo .seo-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.why-local-seo .seo-list li {
  margin: 10px 0;
  padding: 0 10px;
  width: 50%;
  display: flex;
}

ul.seo-list li:nth-child(3) {
  width: 100%;
  min-height: 170px;
}

.why-local-seo .seo-list .content {
  background: var(--primary);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  width: 100%
}

.why-local-seo .seo-list .content .icon {
  margin-bottom: 10px;
}

.why-local-seo .content .title {
  font-family: "Aleo";
  color: #fff;
  font-size: 18px;
}



.seo-service-offer {
  padding: 60px 0 30px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #f6f6f6;
}

.seo-service-offer .content-left,
.seo-service-offer .content-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.seo-service-offer .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.seo-service-offer .tag_line_heading::before {
  background-image: url('../assets/images/arrow.png');
}

.seo-service-offer h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

/* .seo-service-offer span {
  color: var(--primary);
} */
.seo-service-offer span {
  color: #383839;
  line-height: 28px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.seo-service-offer .service-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.seo-service-offer .service-list>li {
  display: flex;
  margin: 0 0 30px 0;
  padding: 0 15px;
  width: 33.333%;
  position: relative;
}

/* .seo-service-offer .service-list .content {
  border: 1px solid #0E58D1;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
} */

.seo-service-offer .service-list .content {
  border: 1px solid #ffffffa1;
  padding: 15px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.seo-service-offer .content .title {
  font-size: 21px;
  margin: 0 0 15px 0;
  font-family: "Aleo";
  font-weight: 700;
  min-height: 60px;
}

.content ul {
  margin: 1rem
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4c5763;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
}

.seo-service-offer .content .list-item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.seo-service-offer .content .list-item li {
  margin: 0 0 15px 0;
  padding: 0;
  width: 100%;
}

.seo-service-offer .content img {
  margin: 0 auto;
  display: block;
  object-fit: contain;
}


.local-seo-price {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #171717;
  color: #fff;
  text-align: center;
}

.local-seo-price .content-left,
.local-seo-price .content-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.local-seo-price .tag_line_heading {
  color: #fff;
  text-transform: uppercase;
}

.local-seo-price .tag_line_heading::before {
  left: auto;
  margin-left: -26px;
}

.local-seo-price h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

.local-seo-price span {
  color: var(--primary);
}

.local-seo-price .price-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style-type: none;
  margin: 30px 0 0 0;
}

.local-seo-price .price-list>li {
  padding: 0 15px;
  width: 33.333%;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

.local-seo-price .price-list .top {
  padding: 15px;
  border-radius: 15px 15px 0 0;
  background: #0E58D1;
  display: flex;
  flex-wrap: wrap;
  min-height: 205px
}

.local-seo-price .top .title {
  margin: 0 0 25px 0;
  padding: 0;
}

.local-seo-price .top .title span {
  background: #fff;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 30px;
  color: #000;
  font-size: 18px;
}

.local-seo-price .top .price {
  color: #fff;
  font-family: "Aleo";
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 15px 0;
}

.local-seo-price .top .price sub {
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  top: -3px;
}

.local-seo-price .bg {
  background: #292929;
  border-radius: 0 0 15px 15px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  min-height: 300px
}

.client_wrapp .img_wrap img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 11px;
  flex: 1;
}

.client_wrapp .img_wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-flow: wrap;
}


.local-seo-price .bg .sub-title {
  font-size: 18px;
  margin: 0 0 15px 0;
  ;
}

.local-seo-price .bg .list-item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.local-seo-price .bg .list-item li {
  margin: 0 0 15px 0;
}

.local-seo-price .btnWrap {
  width: 100%;
}

.local-seo-price .btnWrap a {
  padding: 15px 45px;
  background: #fff;
  color: var(--primary);
  border: none;
}

.local-seo-quote {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--primary);
  color: #fff;
}

.local-seo-quote .content-left,
.local-seo-quote .img-box {
  display: flex;
  justify-content: center;
  flex-direction: column
}

.local-seo-quote .tag_line_heading {
  color: #fff;
  text-transform: uppercase;
}

.local-seo-quote h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
  color: #fff;
}

.local-seo-quote span {
  color: #000;
}

.local-seo-quote .btnWrap {
  width: 100%;
}

.local-seo-quote .btnWrap a {
  background: #fff;
  color: var(--primary);
  border: none;
}



.local-seo-compare {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
  color: #000;
  text-align: center;
}

.local-seo-compare .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.local-seo-compare .tag_line_heading::before {
  left: auto;
  margin-left: -26px;
  background-image: url('../assets/images/arrow.png');
}

.local-seo-compare h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
  color: #000;
}

.local-seo-compare span {
  color: var(--primary);
}

.local-seo-compare .title {
  font-size: 18px;
  font-family: "Aleo";
  text-align: left;
  font-weight: 600;
  margin: 0;
}

.local-seo-compare .list-item {
  margin: 15px 0 0 0;
  padding: 0;
  list-style-type: none;
  text-align: left;
}

.local-seo-compare .list-item li {
  margin: 0 0 10px 0;
}

.local-seo-compare .content-right {
  border-left: 1px solid #000;
  padding-left: 45px;
  margin-top: 30px
}

.local-seo-compare .content-left {
  padding-right: 45px;
  margin-top: 30px;
}

.local-seo-faq {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
  color: #000;
}

.local-seo-faq .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.local-seo-faq .tag_line_heading::before {
  left: auto;
  margin-left: -26px;
  background-image: url('../assets/images/arrow.png');
}

.local-seo-faq h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

.local-seo-faq span {
  color: var(--primary);
}

.local-seo-faq .img-box img {
  margin: 30px 0 0 0;
}

.local-seo-faq .accordion-flush .accordion-item {
  border: 1px solid #0E58D1;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 10px 0;
}

.local-seo-faq button.accordion-button {
  background: #fff;
  border: none !important;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  box-shadow: none !important;
  position: relative;
  padding-right: 45px;
}

.local-seo-faq .accordion-button::after {
  position: absolute;
  right: 15px;
  top: 13px;
  background: #eaeaea url('../assets/images/arrow-down.png') no-repeat center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.local-seo-faq .accordion-button:not(.collapsed)::after {
  transform: none !important
}

.local-seo-faq .accordion-button[aria-expanded="true"]::after {
  background: #eaeaea url('../assets/images/arrow-up.png') no-repeat center !important;
}

.local-seo-faq .accordion-body {
  padding-top: 0;
}


.seo-hero {
  background: #0E58D1;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.seo-hero .tag_line {
  color: #fff;
  line-height: normal;
}

.seo-hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.seo-hero h1 span {
  color: #000;
}

.seo-hero .rating {
  display: flex;
  align-items: center;
  margin: 0 0 15px 0;
}

.seo-hero .rating img {
  max-height: 21px;
}

.seo-hero .rating span {
  color: #FFEA00;
  display: inline-flex;
  padding: 0 5px;
}

.seo-hero p {
  margin-bottom: 15px;
}

.seo-hero .btn-list {
  margin: 45px 0 0 0;
  padding: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 15px;
  font-family: "Aleo", serif;
}

.seo-hero .btn-list li:first-child a {
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
  align-items: center;
  gap: 10px;
}

.seo-hero .btn-list li:nth-child(2) {
  display: flex;
  gap: 10px;
  transition: .3s;
  align-items: center;
  min-width: 50%;
}

.seo-hero .btn-list li:nth-child(2) a {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 45px;
  transition: .3s;
}

.seo-hero .btn-list li:nth-child(2) a:hover {
  background: white;
  color: #000;
}


.seo-hero .btn-list li:nth-child(3) a {
  border: 2px solid #fff;
  display: flex;
  padding: 25px;
  border-radius: 45px;
}

.seo-hero .img-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.seo-hero .img-list li:last-child {
  width: 100%;
  margin: 15px 0 0 0;
}

.seo-hero .img-list li:first-child {
  width: 40%;
}

.seo-hero .img-list li:nth-child(2) {
  width: 60%;
  padding-left: 15px;
}

.seo-hero .img-list li img {
  width: 100%;
  border-radius: 15px;
}

.seo-hero .img-list li {
  display: flex;
}

.seo-hero .img-list li:first-child .content {
  background: #fff;
  color: #000;
  padding: 25px;
  border-radius: 15px;
}

.seo-hero .img-list li:first-child .content .num {
  font-size: 42px;
  font-weight: 800;
}

.seo-hero .img-list li:first-child .content p {
  margin: 0;
}



.about-hero {
  background: #171717;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.about-hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.about-hero h1 span {
  position: relative;
  background: url('../assets/images/plane-blue.png') no-repeat right 60%;
  padding: 0px 50px 0 0;
  display: inline-block;
}

.about-hero p {
  margin-bottom: 15px;
}

.about-hero .tag_line {
  color: var(--primary);
  line-height: normal;
}

.about-hero .btn-list {
  margin: 45px 0 0 0;
  padding: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 15px;
  font-family: "Aleo", serif;
}

.about-hero .btn-list li:first-child a {
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
  align-items: flex-start;
  gap: 10px;
}

.about-hero .btn-list li:nth-child(2) {
  background: var(--primary);
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 45px;
}

.about-hero .btn-list li:nth-child(2) span {
  display: block;
  font-size: 15px;
  margin: 0 0 5px 0;
}


.unlock-growth-business {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
}

.unlock-growth-business .content-left,
.unlock-growth-business .content-right {
  display: flex;
  justify-content: center;
  flex-direction: column
}

.unlock-growth-business .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.unlock-growth-business .tag_line_heading::before {
  background-image: url('../assets/images/arrow.png');
}

.unlock-growth-business h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
}

.unlock-growth-business span {
  color: var(--primary);
}

.unlock-growth-business .list-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style-type: none;
  margin: 0;
}

.unlock-growth-business .list-items li {
  margin: 0;
  padding: 0 15px;
  display: flex;
  width: 50%;
  flex-direction: row;
  margin: 0 0 15px 0;
}

.unlock-growth-business .list-items .icon-box {
  width: 90px;
  margin: 0 10px 0 0;
}

.unlock-growth-business .content .title {
  font-size: 21px;
  font-family: "Aleo";
  font-weight: 700;
  margin: 0 0 10px 0;
}

.google-clutch-upcity {
  padding: 30px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #000;
}

.google-clutch-upcity .list-items {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  width: 100%;
}

.google-clutch-upcity .list-items li {
  width: 33.333%;
  padding: 0 15px;
  text-align: center;
  color: #FCD010;
}

.google-clutch-upcity .list-items .rating {
  margin: 10px 0 0 0;
  font-size: 18px;
}

.google-clutch-upcity .list-items .review {
  font-size: 18px;
  font-weight: 500;
}


.what-we-believe {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--primary);
  color: #fff;
}

.what-we-believe .content-box,
.what-we-believe .img-box {
  display: flex;
  justify-content: center;
  flex-direction: column
}

.what-we-believe .img-box img {
  margin: 30px 0 0 0;
}

.what-we-believe .tag_line_heading {
  color: #fff;
  text-transform: uppercase;
}

.what-we-believe h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
  color: #fff;
}

.what-we-believe .list-item {
  margin: 0;
  padding: 0 0 0 60px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  width: 100%;
}

.what-we-believe .list-item li {
  display: flex;
  margin: 0 0 10px 0;
  align-items: center;
}

.what-we-believe .list-item:last-child {
  margin: 0;
}

.what-we-believe .content {
  background: #fff;
  border-radius: 15px;
  color: #000;
  padding: 30px 45px;
  display: flex;
  flex-direction: row;
}

.what-we-believe .content .icon-box {
  width: 110px;
  min-width: 110px;
}

.what-we-believe .content .icon-box .title {
  font-size: 18px;
  font-family: "Aleo";
  font-weight: 800;
  padding: 10px 0 0 0;
}


.custom-map {
  padding: 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
  color: #000;
  text-align: center;
}

.custom-map .tag_line_heading {
  color: #000;
  text-transform: uppercase;
}

.custom-map .tag_line_heading::before {
  left: auto;
  margin-left: -26px;
  background-image: url('../assets/images/arrow.png');
}

.custom-map h3 {
  font-family: "Aleo";
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 15px 0;
  color: #000;
}

.custom-map span {
  color: var(--primary);
}

.custom-map .map-box {
  margin: 30px 0 0 0;
  padding: 0;
  width: 100%;
}


.contact-hero {
  background: #0E0E0E;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contact-hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0 0 30px 0;
  text-align: center;
}

.contact-hero h1 span {
  color: var(--primary);
  display: block;
}

.contact-hero .info-list {
  margin: 45px 0 0 0;
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  list-style-type: none;
}

.contact-hero .info-list li {
  width: 25%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #353535;
}

.contact-hero .info-list li:first-child {
  border-left: none;
}

.contact-hero .info-list .title {
  font-size: 18px;
  font-family: "Aleo";
  margin: 0 0 10px 0;
}

.contact-hero .info-list p {
  color: #b5b5b5;
}

.contact-hero .info-list p a {
  color: #b5b5b5;
  text-decoration: none;
}

.contact-hero .info-list p a:hover {
  color: var(--primary);
}

.custom-map.contact-page {
  padding-top: 0;
}

.contact-from {
  padding: 0 0 60px 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
}

.contact-from .form-container {
  margin: 0 auto;
  padding: 0;
  background: #1E1E1E;
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
}

.contact-from .form-container .content-detail {
  padding: 30px;
  width: 40%;
}

.contact-from .form-container .form-box {
  padding: 30px;
  width: 60%;
  border-left: 1px solid #353535;
}

.contact-from .form-box label {
  display: block;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px 0;
  padding: 0;
}

.contact-from .form-box input[type="checkbox"] {
  width: auto;
  margin: 0;
  position: relative;
  top: 1px;
}

.contact-from .form-box input,
.contact-from .form-box textarea,
.contact-from .form-box select {
  width: 100%;
  border: 1px solid #EAEAEA;
  color: #979797;
  background: #282828;
  padding: 10px;
  border-radius: 8px;
  margin: 0 0 25px 0;
}

.contact-from .form-box textarea {
  height: 120px;
}

.contact-from .form-box input[type=radio] {
  width: auto;
  color: #fff;
  margin-bottom: 10px;
}

.contact-from .form-box .radio {
  color: #B5B5B5;
  margin-bottom: 15px;
}

.contact-from .form-box .radio .wpcf7-list-item {
  display: block;
  width: 100%;
  margin: 0
}

.contact-from .form-box p,
.contact-from .form-box .wpcf7-acceptance {
  color: #686767;
}

.contact-from .form-box .btn-list {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}

.contact-from .form-box .btn-list li {
  display: flex;
  margin: 0;
  padding: 0;
}

.contact-from .form-box .btn-list input[type="submit"] {
  margin: 20px 0 0 0;
  border: 2px solid #0E58D1;
  padding: 15px 20px;
  color: #fff;
  display: flex;
  border-radius: 30px;
  font-family: "Aleo";
  font-weight: 600;
  background: #0E58D1;
}

.contact-from .form-box .btn-list input[type="submit"]:hover {
  background: transparent
}

.contact-from .form-box .btn-list a {
  margin: 20px 0 0 0;
  border: 2px solid #0E58D1;
  padding: 15px 20px;
  color: #fff;
  display: flex;
  border-radius: 30px;
  font-family: "Aleo";
  font-weight: 600;
}

.contact-from .form-box .btn-list a:hover {
  background: #0e58d1;
}

.contact-from .form-box .btn-list li:last-child a {
  background: #0E58D1;
}

.contact-from .form-box .btn-list li:last-child a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.contact-from .form-box .btn-list a img {
  margin-left: 10px;
  object-fit: contain;
}

.contact-from .content-detail .list-items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.contact-from .content-detail .list-items li {
  display: flex;
  width: 100%;
  margin: 0 0 15px 0;
  color: #D9D9D9;
  align-items: center;
  gap: 10px;
}

.contact-from .content-detail .list-items li .fa {
  font-size: 21px;
}

.contact-from .content-detail p {
  font-size: 18px;
  color: #fff;
  margin: 0 0 15px 0;
}

.contact-from .content-detail .book-call {
  color: #3984FF;
  font-size: 21px;
  margin: 0 0 15px 0;
}

.contact-from .content-detail .title {
  color: #949494;
}

.contact-from .content-detail .profile-pic {
  margin: 0 0 15px 0;
}

.contact-hero .time-duration {
  text-align: center;
  color: #000;
  font-family: "Aleo";
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px 0;
}

.contact-hero .time-duration span {
  padding: 10px 15px;
  background: #fff;
  display: inline-block;
  border-radius: 30px;
}


@media (max-width: 768px) {
  .hero {
    padding: 140px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1 span {
    font-size: 3rem;
  }

  .section {
    padding: 60px 0;
  }
}



/* ecommerce page start  */
nav.navbar.navbar-expand-lg.navbar-light.fixed-top {
  background: transparent;
}

.banner-comm {
  background: url('assets/images/banner-bg.jpg') no-repeat center center;
  background-size: cover;
  background-color: black;
  padding: 180px 0px 83px 0px;
  color: #fff;
}

.banner-sub {
  font-family: 'Aleo', serif;
  font-size: 20px;
  color: #3883FF;
  margin-bottom: 10px;
}

.banner-title {
  font-family: 'Aleo', sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1.2;
  padding-bottom: 20px;
}

.banner-subtext {
  font-family: 'poppins', serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mailBntn {
  font-size: 18px;
}

.phoneBtn {
  font-size: 20px;
}

.btn-trans {
  color: #FFFFFF99;
}

.banner-btns {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: 'Aleo', sans-serif;
}

.text-clr {
  color: #0E58D1 !important;
  font-size: 17px;
}

.banner-form {
  background: #0E58D1;
  padding: 30px;
  border-radius: 10px;
}

.input-parr {
  margin-bottom: 20px;
}

.input-parr input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 0px solid #ccc;
}

.form-heading {
  font-family: 'poppins', serif;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.custom-hr-form {
  border: 0;
  width: 139px;
  height: 1px;
  background: #FFFFFF;
  margin: 30px auto;
  opacity: 1;
}

.all-case-study {
  font-family: 'poopings', sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.signle-case-study {
  border-left: 2px solid #000000;
  padding: 0px 20px;

}

.signle-case-study span {
  color: #0E58D1;

}

.signle-case-study:first-child {
  border-left: none;
}

.success-stories .tag_line_heading {
  color: #000000;
}

.success-stories .tag_line_heading:before {
  background-image: url(../assets/images/arrow.png);
}



.comm-service-span {
  color: #0E58D1;
  font-weight: 900;
  font-family: 'Aleo', serif;
  font-size: 40px;
}

.comm-service-head {
  color: #000000;
  font-weight: 900;
  font-family: 'Aleo', serif;
  font-size: 40px;
}

.comm-service-para {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: 'poppins', serif;
}

.service-box {
  padding: 20px;
  border: 2px solid #0e58d1;
  border-radius: 20px;
  height: 100%;
}

section.ecomm-services {
  padding: 60px 0;
}

.ecomm-services .tag_line_heading {
  color: #000
}

.ecomm-services .tag_line_heading::before {
  background-image: url(../assets/images/arrow.png);
}

section.ecomm-services .col-md-4 {
  margin-bottom: 20px;
}

p.service-description {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-box a {
  display: inline-block;
  padding: 8px 13px;
  font-size: 10px;
  border: 1px solid #0E58D1;
  border-radius: 20px;
  margin-bottom: 8px;
  margin-right: 5px;
  box-shadow: 0px 2px 5px #bdb9b9;
}

.service-box img {
  margin-top: 10px;
}

.service-box a:hover {
  background-color: #0E58D1;
  color: #fff;
}





.custom-process {
  background-color: #0E58D1;
  padding: 60px 0
}

.custom-process-header {
  color: #ffffff;
  font-weight: 900;
  font-family: 'Aleo', serif;
  font-size: 40px;
  padding-bottom: 9px;
}

.custom-process-para {
  color: #ffffff;
  font-weight: 400;
  font-family: 'poppins', serif;
  font-size: 14px;
}

.custom-process-img {
  height: 516px;
  width: 517px;
  margin-top: 70px;
}

.ol-wapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Custom Process Section --- */


/* 2. Left Column Wrapper */
.left_wrap {
  /* Using Flexbox to create the grid for the list items */


  /* Initialize the counter for the numbered list */
  counter-reset: process-counter;
}

/* 3. Typography */



/* Note: To color part of the heading, wrap it in a <span> in your HTML */
/* e.g., <span class="highlight">for The 5 Step Custom Process</span> */
.custom-process-header .highlight {
  color: #4b89dc;
  /* Light blue highlight color */
}


.custom-process-para {
  color: #c0c9e1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  /* This paragraph should not be part of the flex layout */
  flex-basis: 100%;
}

/* 4. Custom Ordered List Styling */
.custom-process-ol {
  list-style: none;
  margin: 0;
  padding: 0;

  /* Each <ol> acts as a grid item. calc() creates two columns with a gap. */
  flex-basis: calc(50% - 10px);

  /* Using relative positioning to place the custom number */
  position: relative;
  padding-left: 50px;
  /* Creates space for the number */
}

/* 5. Custom Numbering using ::before pseudo-element */
.custom-process-ol::before {
  counter-increment: process-counter;
  content: "0" counter(process-counter);
  position: absolute;
  left: 0;
  top: 3px;
  color: #0e58d1;
  font-size: 13px;
  font-weight: bold;
  background-color: #ffff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* 6. List Item Content */
.custom-process-ol h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 0 0 8px 0;
}

.custom-process-ol p {
  color: #c0c9e1;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* 8. Right Column Image */
.custom-process-img img {
  max-width: 100%;
  height: auto;
}

/* 9. Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .custom-process {
    padding: 60px 0px 60px 0px;
  }

  .custom-process-header {
    font-size: 32px;
  }

  /* Stack list items into a single column on mobile */
  .custom-process-ol {
    flex-basis: 100%;
  }

  /* Center the image on mobile and add space */
  .custom-process-img {
    text-align: center;
    margin-top: 40px;
  }
}

.success-stories {
  padding: 60px 0;

}

.success-stories-para {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: 'poppins', serif;
  padding-top: 9px;
  padding-bottom: 9px;
}

.btn.btn-primary.text-start.somrbtn span {
  font-size: 24px;
  position: relative;
  color: #fff;
  position: relative;
  top: 5px;
}

.btn.btn-primary.text-start.somrbtn {
  padding-top: 9px;
}

.success-stories h3 {
  font-size: 40px;
}

.single-slider {
  margin-left: 20px;
  border: 2px solid #0E58D1;
  border-radius: 20px;
}

.single-slider img {
  border-radius: 20px;
  width: 100%;

  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.swtslider-text-warp {
  padding: 25px;
}

.swtslider-text-warp h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.all-buttons-slider a {
  display: inline-block;
  padding: 8px 13px;
  font-size: 10px;
  border: 1px solid #0E58D1;
  border-radius: 20px;
  margin-bottom: 8px;
  margin-right: 5px;
  box-shadow: 0px 2px 5px #bdb9b9;
}

.all-buttons-slider {
  margin-top: 28px;
}

.slidertowl-and-overly {
  position: relative;
}

.overlay-box {
  width: 50%;
  position: absolute;
  height: 100%;
  background: linear-gradient(to right, #ffffff47, #fff, #fff);
  right: -12px;
  top: 0px;
  z-index: 99;
}

.arrows {
  font-size: 40px;
  box-shadow: 0px 0px 5px #000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  position: absolute;
  bottom: 20%;
  z-index: 100;
  background: #fff;
}

.arrows.arrowsright.slick-arrow {
  right: 0;
}

.new-section-Fixibal {
  background: #020000;
  padding-bottom: 50px;
}

.text-flex0ble-priceing {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.priceblocks {
  background: #292929;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 635px;
}

.priceblocks-primium {
  background: #0E58D1;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 632px
}

.toplabal {
  text-align: center;
  background: #fff;
  color: #000;
  border-radius: 20px;
  width: 100px;
  font-family: 'poppins', serif;
}

.per-month {
  font-size: 18px;

}

.price {
  font-size: 50px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'aleo', serif;
}

.price-section {
  padding-top: 35px;
  padding-bottom: 20px;
}

.list-unstyled li {
  padding: 10px 0;
  font-size: 16px;
  font-family: 'poppins', serif;
}

.parag h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
  font-family: 'poppins', serif;
  font-weight: 500;
}

.arrows.arrowsleft.slick-arrow {
  left: -50px;
}

.text-clr-cng {
  color: #0E58D1 !important;
  font-size: 17px;
  text-transform: uppercase;
}

.extra-pad {
  padding-bottom: 20px;
}

.all-faq-accordins .accordion-item {
  border: 1px solid #0e58d1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0px 0px 5px #aeaeae;
}

.all-faq-accordins .accordion-button {
  background: #fff !important;
  box-shadow: none !important;
  color: #000 !important;
  font-size: 20px;
}

.all-faq-accordins .accordion-button::after {
  background: url(assets/images/accordian-arrow.png) no-repeat center center;
  background-size: auto;
  background-size: contain;
  width: 36px;
  height: 36px;
}

.Faq_section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.connect-form {
  color: #0E58D1;
}



.connect_form_wrap {
  padding-bottom: 75px;
}

.connect_form_wrap.news_letter_wrap {
  padding-bottom: 0
}

.form_field_wrap.connect-form-field input {
  border: 1px solid #0E58D1 !important;
  box-shadow: 0px 1px 5px #9d9b9b;
}

.banner-comm {
  background-image: url('assets/images/ecom-banner-img.png');
}

.banner-comm {
  background-image: url('assets/images/ecom-banner-img.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.abs-fomr-mg {
  width: 49%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.bacloks-roundoffer {
  background-color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  rotate: -20deg;
  text-align: center;
  position: absolute;
  top: -30px;
  left: -30px;
  padding-top: 10px;
}

.offterbanner-sec {
  color: #0E58D1;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 10px;
}

.ooffre-sec-pg {
  font-size: 11px;
  color: #000;
  font-weight: bold;
}

.bacloks-roundoffer {
  padding-top: 27px;
}

.ooffre-sec-pg span {
  font-size: 8px;
  font-weight: 400;
  display: block;
}

.accordion-button {
  font-family: 'aleo', serif;
  font-weight: 700;
}

.big-allow {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.big-allow-txt {
  font-family: 'aleo', serif;
  font-weight: 700;
}

.extra-pad {
  padding-bottom: 40px;
}

.new-section-Fixibal {
  background: #020000;
  padding: 60px 0;
}

/* ecommerce page end */
.home .we_offer_wrapp.blog_wrpaper {
  padding-top: 0
}

.testimonials_wrap .object-fit-cover {
  object-fit: cover;
}

.testimonials_wrap .content_div_testimonials_div {
  margin-bottom: 10px;
  background-color: #f5f5f5;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #f6f6f6;
}

.testimonials_wrap .heading_title_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.testimonials_wrap .heading_title_div h2 {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  color: #141615;
  margin-bottom: 6px !important;
}

.testimonials_wrap .rating_div span {
  color: #3b5998;
  font-size: 13px;
}

.testimonials_wrap .content_div_testimonials_div p {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 1px !important;
}

.testimonials_wrap .marquee-wrapper {
  height: 500px;
  overflow: hidden;
  position: relative;
  margin-top: 30px
}

.testimonials_wrap .marquee-wrapper:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  content: "";
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 9
}

.testimonials_wrap .marquee-wrapper:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  content: "";
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9
}

.testimonials_wrap .marquee-content {
  animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Clone the content to create infinite effect */
.marquee-content::after {
  content: attr(data-repeat);
  display: block;
}

.testimonials_wrap .marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
  /* stops on hover */
}


.local-seo-form {
  background: #000;
}


a.request-btn {
  background: #0e58d1;
  color: white;
  width: auto;
  margin: 15px auto;
  padding: 14px 19px;
  border-radius: 7px;
  transition: all .3s;
}

a.request-btn:hover {
  background-color: white;
  color: #000;
}

.price-list {
  display: none !important;
}

.page-id-714 .price-list,
.page-id-283 .price-list {
  display: flex !important;
}

.page-id-714 .request-btn,
.page-id-283 .request-btn {
  display: none !important;
}

section.local-seo-compare ul {
  text-align: left;
}

section.local-seo-compare ul li {
  margin-bottom: 1rem;
}

section.local-seo-compare ul li span {
  color: #000000;
}

.navbar-expand-lg .navbar-nav .nav-item:hover>.dropdown-menu {
  display: block;
}

.navbar-expand-lg .navbar-nav .menu-item-has-children>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.8em;
  vertical-align: middle;
}

.bg span {
  color: white !important;
}

.bg li {
  margin-top: 1rem;
}

.industries-hero {
  background: #171717;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.industries-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.industries-hero a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.industries-hero a:hover {
  background: #0e58d1;
  color: white;
  border-color: #0e58d1;
}

.industries-cards {
  padding: 80px 0;
  background: #f9f9f9;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.industry-card .card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
}



.industry-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0e58d1;
  margin: 20px 0 15px;
}

.industry-card .card-content {
  padding: 20px;
  text-align: center;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card ul li {
  font-size: 15px;
  color: #333;
  margin: 6px 0;
}

.featured-services {
  background: black;
  padding: 3rem 0;
  text-align: center;
  color: white;
}

.featured-services .btn-primary {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.featured-services .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.featured-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.featured-card img {
  width: 70px;
  margin-bottom: 20px;
}

.featured-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0f3248;
}

.featured-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.interested_sec h2 span {
  color: var(--primary);
}


/* new */

.we_offer_wrapp {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
}

.we_offer_wrapp .heading_wrap {
  margin-bottom: 20px;
}

.we_offer_wrapp .heading_wrap h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  color: #222;
}

.we_offer_wrapp .heading_wrap .bg_color {
  background: linear-gradient(90deg, #007bff, #0056d2);
  color: #fff;
  padding: 0 8px;
  border-radius: 6px;
}

.we_offer_wrapp .heading_desc p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* bullet styling */
.we_offer_wrapp ul {
  list-style: none;
  padding: 0;
}

.we_offer_wrapp ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.we_offer_wrapp ul li::before {
  content: "•";
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #007bff;
}

/* card design */
.card_wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.card_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card_wrap:hover::after {
  opacity: 1;
}

.card_wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card_wrap .img_wrap {
  height: 300px;
  overflow: hidden;
  object-fit: contain;
  padding: 22px;
}

.card_wrap .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.card_wrap:hover .img_wrap img {
  transform: scale(1.1);
}

.card_wrap .card_body {
  padding: 24px;
}

.card_wrap .card_body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.card_wrap .card_body .desc {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
}

/* Button styling */
.we_offer_wrapp .btnWrap .btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s ease;
}

.we_offer_wrapp .btnWrap .btn:hover {
  background: linear-gradient(90deg, #0056d2, #003c99);
  transform: translateY(-2px);
}

/* end */
/* Responsive */

.partner-logo {
  max-height: 60px;
  /* keeps logos uniform in height */
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* makes logo white if they are black PNGs */
}

.cta-section {
  background-color: var(--primary);
  /* Deep blue background */
}

.cta-btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.btn-warning {
  background-color: #ffc107 !important;
  border: none;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #0055a4;
}

.certificate-partner h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  color: #222;
}

.form-blog {
  background: var(--primary);
  color: white;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.left-aside-box,
.right-side-box {
  padding: 0;
}

.btn_submit_Wrap-new input {
  padding: 10px 13px;
  border-radius: 7px;
  border: none;
  background-color: white;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.btn_submit_Wrap-new input:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.recent-posts-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.recent-post-item img:hover {
  transform: scale(1.05);
}

.recent-post-item .post-info {
  flex: 1;
}

.recent-post-item .post-title {
  color: #000;
  font-size: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-post-item .post-title:hover {
  color: #007bff;
}

.recent-post-item .post-excerpt {
  color: #555;
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
}

.body_wrapp {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

/* === Carousel (use Owl Carousel or Swiper) === */
.case-study-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #444 #000;
}

.case-study-carousel::-webkit-scrollbar {
  height: 8px;
}

.case-study-carousel::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

/* === Case Study Card === */
.case_study_card {
  background: #111;
  /* border-radius: 16px; */
  overflow: hidden;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.case_study_card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15); */
}

/* === Image Area === */
.case_img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Logo Overlay === */
.case_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: fill;
}

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

/* === Content Area === */
.case_content {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.case_content h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.case_content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* === Download Button === */
.download_btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.download_btn i {
  margin-right: 8px;
}

.download_btn:hover {
  background: #fff;
  color: #000;
}

/* breadcrumbs */
.breadcrumb-sec {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.breadcrumb-sec .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb-sec .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-sec h1 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.breadcrumb-sec h1 span {
  font-weight: 400;
}

.breadcrumb-sec p {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 40px;
}

.btn-expert {
  display: inline-flex;
  align-items: center;
  background: #0e58d1;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-expert i {
  font-size: 1rem;
}

.btn-expert:hover {
  background: white;
  color: #000;
}

/*--------- Responsive ----------*/

@media(max-width:1199px) {}


@media(min-width:992px) and (max-width:1199px) {
  .hero .inner_content h2 {
    font-size: 3.5rem
  }

  .hero .btn_wrapp .btn-primary:last-child {
    margin-left: 0
  }

  .hero .btn-primary {
    padding: 15px 10px;
    font-size: 0.8rem
  }

  .caption_wrap {
    top: 50px;
    left: -90px
  }

  .client_wrapp .left_wrap h3 {
    font-size: 34px
  }

  .we_offer_wrapp .heading_wrap h3 {
    font-size: 36px
  }

  .we_offer_wrapp .body_wrap .right_side .card_wrap h3 {
    font-size: 30px
  }

  .fill_form_wrap .heading_wrap h3,
  .case_study_wrap .heading_wrap h3 {
    font-size: 30px
  }

  .experience_wrapp .group_img .d-flex img {
    max-width: 100px
  }

  .fill_form_wrap.connect_form_wrap .inner_body {
    padding: 40px 20px 0 40px;
  }

  .news_letter_wrap.fill_form_wrap .form_wrapp .form_field_wrap {
    max-width: 400px
  }

  .news_letter_wrap .inner_body .right_img_wrap {
    right: -25px
  }

  .blog_wrpaper .body_wrap .bottom_wrap {
    gap: 10px
  }

  .blog_wrpaper .body_wrap .blog_card h3 {
    font-size: 18px
  }

  .we_offer_wrapp .body_wrap .right_side .card_wrap .info_wrap {
    margin: 10px 0
  }

  .experience_wrapp .img_wrapp img {
    max-width: 250px;
    margin: 0 auto
  }

  .experience_wrapp .about_content::before {
    top: 0
  }

  .experience_wrapp .align-items-center {
    align-items: flex-start !important
  }

  .experience_wrapp .about_content::after {
    bottom: 0
  }

  .fill_form_wrap.connect_form_wrap .heading_wrap h3 {
    font-size: 24px
  }

  .fill_form_wrap.connect_form_wrap .img-box img {
    min-height: auto
  }

  .contact-hero .info-list p a {
    color: #b5b5b5;
    text-decoration: none;
    word-break: break-all;
  }

  .local-seo-price .price-list .top {
    min-height: 270px
  }

  .custom-process .custom-process-img {
    width: auto;
    height: auto;
    max-width: 41.66666667%
  }

  .success-stories .slidertowl-and-overly {
    margin-left: 45px
  }

  .new-section-Fixibal .priceblocks,
  .new-section-Fixibal .priceblocks-primium {
    min-height: 670px
  }

  .new-section-Fixibal .text-clr-cng {
    font-size: 16px
  }

  .new-section-Fixibal .price {
    font-size: 42px
  }
}


@media(min-width:768px) and (max-width:991px) {

  
  .new-section-Fixibal .price {
    font-size: 32px
  }

  .hero .inner_content h2 {
    font-size: 3.5rem
  }

  .hero .inner_content .tag_line {
    right: 45%
  }

  .fill_form_wrap.connect_form_wrap .img-box img {
    right: auto;
    min-height: auto;
    width: 100%
  }

  .hero {
    padding: 90px 0 0 0
  }

  .contact-hero .info-list li {
    width: 50%;
    margin: 5px 0
  }

  .contact-hero .info-list li:nth-child(3) {
    border-left: none
  }

  .about-hero .btn-list,
  .seo-hero .btn-list {
    margin: 30px 0
  }

  .unlock-growth-business .list-items li {
    padding-left: 0
  }

  .local-seo-price .price-list .top {
    min-height: 320px
  }

  .seo-service-offer .content .title {
    font-size: 18px
  }

  .banner-comm .banner-title {
    font-size: 42px
  }

  .banner-comm .banner-btns {
    flex-direction: column;
    align-items: flex-start
  }

  .ecomm-services .comm-service-head {
    font-size: 32px
  }
}


@media(max-width:991px) {
  .left-aside-box,
  .right-side-box {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .single-hero h1 {
    font-size: 2rem;
  }

  .single-post-card {
    padding: 20px !important;
  }

  .banner-comm textarea.form-control {
    max-height: 120px
  }

  .new-section-Fixibal .priceblocks,
  .new-section-Fixibal .priceblocks-primium {
    min-height: auto
  }

  .new-section-Fixibal .row [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .new-section-Fixibal .priceblocks {
    margin-bottom: 30px
  }

  .local-seo-price .btnWrap {
    margin-top: 15px
  }

  .local-seo-price .top .title {
    margin-bottom: 15px
  }

  .what-we-believe .list-item {
    padding-left: 0;
    margin-top: 15px !important
  }

  .we_offer_wrapp .body_wrap .card_wrap {
    padding: 15px
  }

  .we_offer_wrapp .body_wrap .right_side .card_wrap {
    padding: 15px 15px 0 15px;
    margin-bottom: 0
  }

  .we_offer_wrapp .body_wrap .right_side .card_wrap .info_wrap {
    margin-top: 0;
    padding-bottom: 15px
  }

  .we_offer_wrapp .right_side {
    margin-top: 15px
  }

  .we_offer_wrapp .bottom_wrap .col-lg-4.col-xs-12 {
    margin-top: 15px
  }

  .we_offer_wrapp .bottom_wrap {
    margin-top: 0
  }

  .we_offer_wrapp .right_side .card_wrap.card_wrap2 {
    margin-top: 15px
  }

  .we_offer_wrapp .bottom_wrap .col-lg-4.col-xs-12 .card_wrap {
    padding: 0 0 15px 0
  }

  .we_offer_wrapp .body_wrap .card_wrap {
    border-radius: 25px
  }

  .we_offer_wrapp .bottom_wrap .card2 h3 {
    margin-top: 0
  }

  .experience_wrapp .about_content,
  .experience_wrapp .img_wrapp {
    min-height: auto
  }

  .experience_wrapp .about_content::before,
  .experience_wrapp .about_content::after {
    display: none
  }

  .experience_wrapp .about_content,
  .experience_wrapp .img_wrapp {
    padding: 0;
    border: none
  }

  .experience_wrapp .mb-5 {
    margin-bottom: 15px
  }

  .fill_form_wrap.connect_form_wrap .inner_body {
    padding: 0px
  }

  .fill_form_wrap.connect_form_wrap .inner_body .form-box {
    padding: 45px
  }

  .experience_wrapp .content_img img {
    width: 100%
  }

  .experience_wrapp .content_img::before {
    left: 15px;
    bottom: -15px;
    width: 100%
  }

  .body_wrap .right_side .card_wrap:first-child .info_wrap h3 {
    margin-top: 15px
  }

  .case_study_wrap .view_btn,
  .we_offer_wrapp.blog_wrpaper .view_btn {
    justify-content: flex-start
  }

  .case_study_wrap .view_btn {
    margin-bottom: 15px
  }

  .we_offer_wrapp.testimonials_wrap .heading_wrap h3 {
    margin-bottom: 30px
  }

  .we_offer_wrapp.blog_wrpaper .view_btn {
    margin-top: 15px
  }

  .blog_wrpaper .body_wrap .bottom_wrap {
    margin-bottom: 15px
  }

  .blog_wrpaper .body_wrap .info_deatils h3 {
    font-size: 24px;
    line-height: normal
  }

  .blog_wrpaper .body_wrap .info_deatils {
    margin-top: 15px
  }

  .blog_wrpaper .body_wrap .info_deatils .bottom_wrap {
    margin-top: 15px
  }

  .fill_form_wrap.connect_form_wrap.news_letter_wrap .inner_body {
    padding: 30px
  }

  .fill_form_wrap.connect_form_wrap.news_letter_wrap .inner_body .right_img_wrap {
    position: relative;
    left: auto;
    bottom: 0;
    right: auto
  }

  .hero .hero_img_wrap img {
    transform: scale(1)
  }

  .hero .caption_wrap {
    left: 0;
    top: 100px
  }

  footer.footer {
    padding: 30px 0
  }

  footer.footer .foote_about .footer-logo img {
    max-width: 150px
  }

  footer.footer .offic_location {
    padding: 0
  }

  footer.footer .copyright {
    margin-top: 0;
    padding-top: 10px
  }

  footer.footer .copyright .term_wrap {
    text-align: left
  }

  footer.footer .copyright [class*="col-"] {
    margin-top: 10px
  }

  footer.footer .foote_about {
    padding: 0
  }

  footer.footer .mb-4,
  footer.footer .mb-5 {
    margin-bottom: 0 !important
  }

  .custom-process .row [class*="col-"] {
    width: 100%;
    max-width: 100%;
    height: auto
  }

  .success-stories .row [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .success-stories .btn.btn-primary.text-start.somrbtn {
    margin: 15px 0
  }

  .success-stories .arrows.arrowsleft.slick-arrow {
    left: 0
  }
}


@media(max-width:767px) {
  .industries-hero {
    padding: 120px 20px 60px;
  }

  .industries-hero h1 {
    font-size: 32px;
  }

  .industries-hero a {
    margin: 8px 5px;
    padding: 10px 22px;
    font-size: 14px;
  }

  .we_offer_wrapp,
  .fill_form_wrap,
  .case_study_wrap {
    padding: 30px 0
  }

  .tag_line_heading {
    left: 20px
  }

  .heading_wrap h3 {
    font-size: 30px
  }

  .body_wrap .card_wrap h3,
  .client_wrapp .left_wrap h3 {
    font-size: 30px;
    width: 100%
  }

  .fill_form_wrap.connect_form_wrap .img-box img {
    right: auto;
    min-height: auto;
    width: 100%
  }

  .we_offer_wrapp.blog_wrpaper .img_wrap img {
    width: 100% !important;
    height: auto !important
  }

  .experience_wrapp .img_wrapp .text-center img {
    max-width: 100px
  }

  .experience_wrapp .img_wrapp p {
    margin: 0 0 15px 0;
    text-align: Center
  }

  .experience_wrapp .img_wrapp .year_exp {
    position: relative;
    top: 0;
    right: auto;
    width: auto;
    transform: none
  }

  .experience_wrapp .year_exp h3 {
    text-align: Center
  }

  .hero .inner_content h2 {
    font-size: 2.5rem
  }

  .hero .inner_content .tag_line {
    right: 45%
  }

  .hero {
    padding: 90px 0 0 0
  }

  .hero .inner_content .tag_line {
    right: auto;
    position: relative;
    text-align: Center;
  }

  .hero .bottom_wrapp {
    flex-wrap: wrap
  }

  .hero .bottom_wrapp .btn_wrapp a {
    margin: 5px 0 !important;
    width: 100%
  }

  .hero .bottom_wrapp .active_user {
    width: 100%;
    text-align: Center
  }

  .hero .bottom_wrapp .d-flex {
    justify-content: Center
  }

  .hero .active_user p::before {
    left: auto;
    margin-left: -10px
  }

  .hero .caption_wrap {
    left: auto;
    position: relative;
    top: 0;
    margin: 0 auto
  }

  .hero .hero_img_wrap {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
  }

  .hero_img_wrap .caption_wrap {
    order: 1;
  }

  .hero_img_wrap img {
    order: 2;
    margin: 0;
  }

  .we_offer_wrapp .bottom_wrap .card2 h3 {
    width: 100%
  }


  .home .we_offer_wrapp.blog_wrpaper,
  .client_wrapp,
  .we_offer_wrapp,
  .fill_form_wrap,
  .experience_wrapp,
  .case_study_wrap,
  .we_offer_wrapp.testimonials_wrap,
  .unlock-growth-business,
  .what-we-believe,
  .new-section-Fixibal,
  .ecomm-services,
  .custom-process,
  .success-stories,
  .local-seo-compare,
  .local-seo-quote,
  .local-seo-price,
  .seo-service-offer,
  .why-local-seo,
  .what-local-seo {
    overflow: hidden
  }

  .contact-hero h1,
  .local-seo-faq h3,
  .custom-map h3,
  .about-hero h1,
  .unlock-growth-business h3,
  .local-seo-price h3,
  .seo-hero h1,
  .seo-service-offer h3,
  .local-seo-quote h3,
  .local-seo-compare h3,
  .what-local-seo h3,
  .why-local-seo h3,
  .ecomm-services .comm-service-head,
  .ecomm-services .comm-service-span,
  .success-stories h3 {
    font-size: 30px
  }

  .contact-hero .info-list li {
    padding: 15px 0;
    margin: 0;
    border-left: none !important;
    width: 100%
  }

  .contact-hero .info-list {
    margin-top: 15px
  }

  .contact-hero,
  .about-hero,
  .seo-hero,
  .banner-comm {
    padding: 105px 0 30px 0
  }

  .local-seo-faq,
  .unlock-growth-business,
  .experience_wrapp,
  .what-we-believe,
  .seo-service-offer,
  .local-seo-price,
  .local-seo-quote,
  .local-seo-compare,
  .why-local-seo,
  .what-local-seo,
  .custom-process {
    padding: 30px 0
  }

  .ecomm-services,
  .success-stories,
  .new-section-Fixibal {
    padding: 30px 0 !important
  }

  .local-seo-faq .img-box img {
    margin: 15px 0
  }

  .custom-map.contact-page,
  .local-seo-faq {
    overflow: hidden
  }

  .contact-from .form-container .content-detail,
  .contact-from .form-container .form-box {
    padding: 15px;
    width: 100%;
    border: none
  }

  .page-template-Contact-us .contact-from {
    padding-bottom: 30px
  }

  .about-hero .btn-list,
  .seo-hero .btn-list {
    margin: 15px 0
  }

  .what-we-believe .content {
    padding: 25px
  }

  .what-we-believe .content {
    flex-wrap: wrap
  }

  .what-we-believe .content .icon-box {
    width: 100%;
    margin: 0 0 15px 0
  }

  .what-we-believe .content .text {
    width: 100%
  }

  .unlock-growth-business .list-items li,
  .google-clutch-upcity .list-items li {
    width: 100%;
    padding: 15px 0
  }

  .unlock-growth-business .list-items li:last-child {
    margin-bottom: 0;
    padding-bottom: 15px
  }

  .fill_form_wrap.connect_form_wrap .inner_body .form-box {
    padding: 15px 30px
  }

  .seo-service-offer .service-list>li,
  .local-seo-price .price-list>li {
    width: 100%;
    margin-bottom: 15px;
    padding: 0
  }

  .seo-service-offer .service-list>li:last-child,
  .local-seo-price .price-list>li:last-child {
    margin-bottom: 0 !important
  }

  .why-local-seo .seo-list li {
    width: 100%;
    margin-bottom: 15px;
    padding: 0
  }

  .why-local-seo .seo-list {
    margin-top: 15px
  }

  .why-local-seo .seo-list li:last-child {
    margin-bottom: 0
  }

  .seo-service-offer .service-list {
    margin-bottom: 30px;
    padding: 0 15px;
    margin-top: 15px
  }

  .local-seo-price .price-list .top {
    min-height: auto
  }

  .local-seo-compare .content-right {
    margin-top: 15px;
    padding-left: 15px;
    border-left: none
  }

  .page-template-Local-seo .connect_form_wrap.news_letter_wrap {
    padding-top: 0
  }

  .seo-hero .rating {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .seo-hero .rating img {
    margin-bottom: 10px
  }

  .seo-hero .btn-list li a {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .seo-hero .btn-list li {
    width: 100%;
    justify-content: center;
  }

  .banner-comm .banner-title {
    font-size: 30px
  }

  .banner-comm .banner-btns {
    flex-direction: column;
    align-items: flex-start
  }

  .case-study .all-case-study {
    flex-wrap: wrap;
    flex-direction: column
  }

  .case-study .all-case-study .signle-case-study {
    padding: 10px 0;
    border: none
  }

  .banner-comm .bacloks-roundoffer {
    top: 15px;
    left: 50%;
    rotate: 0deg;
    transform: translate(-50%, 0%);
  }

  .banner-comm .banner-form {
    margin-top: 15px;
    padding-top: 145px;
    padding-bottom: 45px
  }

  .banner-comm .form-heading {
    margin-bottom: 10px
  }

  .banner-comm .custom-hr-form {
    margin: 0 auto 20px auto;
  }

  .ecomm-services .mt-5 {
    margin-top: 0 !important
  }

  .new-section-Fixibal .custom-process-header {
    text-align: left !important;
    font-size: 30px !important
  }

  .new-section-Fixibal .price {
    font-size: 30px
  }

  .success-stories .overlay-box {
    display: none
  }

  .success-stories .single-slider {
    margin-left: 0
  }

  .seo-hero .img-list li:nth-child(2) {
    width: 100%;
    padding-left: 0
  }

  .seo-hero .img-list li:first-child {
    width: 100%;
    margin-bottom: 15px
  }

  .experience_wrapp .group_img .d-flex img {
    width: 25%;
    padding: 5px;
  }

  .blog_wrpaper .body_wrap .blog_card_list {
    margin-top: 0
  }

  .blog_wrpaper .body_wrap .blog_card p {
    margin-top: 15px
  }

  .experience_wrapp .content_img::before {
    left: 8px;
    bottom: -8px;
    width: 100%
  }

}

p{
	opacity:1
}