* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Fonarto';
  src: url('../font/fonarto.regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.fonarto_font {
  font-family: 'Fonarto', sans-serif;
}

/* Navbar */
nav {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.main_navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav_contact_body {
  background-color: #27368E;
  overflow: hidden;
}

.nav_contact {
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  /* justify-content: end; */
  animation: slideText 20s linear infinite;
}

@keyframes slideText {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.nav_contact_body:hover .nav_contact {
  animation-play-state: paused;
}

.nav_contact a {
  text-decoration: none;
  color: white;
}

@media (min-width: 320px) and (max-width: 767px) {
  .nav_contact {
    font-size: 0.7rem;
    gap: 0.1rem;
  }
}

.nav_search {
  border-bottom: 1px solid black;
  width: 12rem;
  margin-top: 0.5rem;
}

.nav_search input {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.nav_search button {
  border: 0;
  background-color: white;
}

.nav_search input:focus {
  outline: none;
}

.search_suggestions_box {
  position: absolute;
  top: 3rem;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 20rem;
  overflow-y: auto;
  width: 100%;
  left: 0;
  z-index: 10;
  display: none;
}

.search_suggestion_item {
  padding: 8px;
  cursor: pointer;
}

.search_suggestion_item:hover {
  background-color: #f0f0f0;
}

.nav_social_media {
  text-align: right;
}

.nav_social_media a {
  text-decoration: none;
  font-size: 1.2rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .nav_social_media {
    display: none;
  }
}

.language_translate {
  display: flex;
  gap: .7rem;
}

.language_translate button {
  border: 0;
  width: 1.9rem;
}

@media (max-width: 550px) {
  .language_translate {
    display: none;
  }
}

.nav_links {
  background-color: #ffffff;
  color: white;
}

.nav_links li {
  padding: 0.5rem;
}

.nav_menu_links {
  position: relative;
  color: rgb(0, 0, 0);
  font-family: 'Fonarto', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.nav_sub_links {
  position: absolute;
  display: none;
  background-color: #ffffff;
  color: #000;
  padding: 0.5rem;
  padding-left: 1rem;
  left: 0;
  z-index: 100;
  width: 13rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.nav_sub_links a {
  text-decoration: none;
  color: black;
}

.nav_menu_links:hover .nav_sub_links {
  display: block;
}

.toggle {
  display: none;
}

.desktop_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.desktop_menu li {
  margin: 0 10px;
}

.mobile_menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #0190f0;
  padding: 1rem;
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
  /* Enable vertical scrolling */
}

.mobile_menu a {
  text-decoration: none;
  color: white;
}

.mobile_menu::-webkit-scrollbar {
  width: 5px;
}

.mobile_menu::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}

.mobile_menu::-webkit-scrollbar-track {
  background: #0190f0;
}

.mobile_menu.active {
  left: 0;
}

.mobile_menu .close_btn {
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.mobile_menu li {
  margin: 10px 0;
  text-align: left;
  list-style: none;
}

.sub_menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
}

.sub_menu li {
  margin: 5px 0;
}

.sub_menu a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
}

@media (max-width: 1000px) {
  .desktop_menu {
    display: none;
  }

  .toggle {
    display: block;
  }

  .mobile_menu {
    display: flex;
  }

  .nav_details {
    display: none;
  }
}

/* Navbar End */

/* Book Request */
.book_request {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999999998;
}

.book_request a {
  background: #0190f0;
  padding: 5px 5px;
  color: #fff;
  font-size: 17px;
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-radius: 5px 5px 0 0;
  float: right;
  position: relative;
  right: -73px;
  width: 180px;
  text-align: center;
  text-decoration: none;
}

.query_form button {
  border: 0;
  padding: 0.3rem 1rem;
  background-color: #0190f0;
  color: white;
  border-radius: 1rem;
  transition: all 0.3s;
}

.query_form input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(162, 162, 162);
  padding: 0.3rem;
  margin: 0.5rem 0;
  background-color: #f6f8f8;
}

.query_form input,
textarea:focus {
  outline: none;
}

.query_form button:hover {
  transform: scale(1.1);
}

.whatsapp_btn {
  background-color: #7ecd02;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  bottom: 1.6rem;
  left: 2rem;
  font-size: 2.5rem;
  color: white;
  z-index: 999999998;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.back_to_top {
  background-color: #7ecd02;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  position: fixed;
  z-index: 9999999998;
  right: 1rem;
  bottom: 1rem;
}

.back_to_top button {
  border: 0;
  background-color: transparent;
  color: white;
}

/* home product */
.home_service_body {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  /* justify-content: center; */
}

.home_service_body a {
  text-decoration: none;
}

.home_service_body::-webkit-scrollbar {
  display: none;
  /* Hides the scrollbar */
}

.home_service_card {
  flex: 0 0 auto;
  width: 8rem;
  padding: 20px;
  height: 9rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  text-align: center;
}

.home_service_card img {
  width: 3rem;
  /* Ensures the image fits within the card */
  height: auto;
  /* Maintains aspect ratio */
  border-radius: 8px;
  /* Optional: rounded corners for the image */
  margin-bottom: 10px;
  /* Space between image and text */
}

.home_service_card p {
  font-size: 1.1rem;
  color: white;
  line-height: 1rem;
}

.home_service_card:hover {
  transform: scale(1.05);
  /* Slight scale effect on hover */
}

/* Responsive styling */
@media (max-width: 1024px) {
  .home_service_body {
    margin-left: 1rem;
  }

  .home_service_card {
    width: 6rem;
    height: 7rem;
  }

  .home_service_card img {
    width: 1.6rem;
  }

  .home_service_card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .home_service_body {
    gap: 0.7rem;
    justify-content: flex-start;
  }

  .home_service_card {
    width: 7rem;
    height: 7rem;
  }

  .home_service_card img {
    width: 2rem;
  }
}

@media (max-width: 480px) {
  .home_service_body {
    gap: 0.7rem;
    /* Further reduce gap for very small screens */
  }

  .home_service_card {
    width: 6rem;
    height: 7rem;
  }

  .home_service_card p {
    font-size: 0.8rem;
  }
}

/* home product */

/* Home banner */
.home_banner {
  position: relative;
  /* width: 100%; */
  background-image: url('../image_src/banner-3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 27rem;
  width: 100%;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media (min-width: 320px) and (max-width: 767px) {
  .home_banner {
    height: 10rem;
  }
}

.banner-content {
  position: absolute;
  top: 35%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.home_banner P {
  color: #064d50;
  font-size: 1.5rem;
  text-shadow: 1px 1px 5px #e0dede;
}

.home_banner h4 {
  color: #ffffff;
  font-size: 2rem;
  text-wrap: wrap;
  padding: 0 5rem;
  text-shadow: 1px 1px 5px #000000;
}

@media (min-width: 320px) and (max-width: 767px) {
  .home_banner P {
    font-size: 0.8rem;
  }

  .home_banner h4 {
    font-size: 0.8rem;
    padding: 0 2rem;
  }
}

/* Home Welcome */
.home_welcome {
  background-image: url('../image_src/welcome-bg.jpg');
  padding-top: 2.5rem;
}

.home_welcome_heading {
  font-size: 1.5rem;
}

.home_welcome_message {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.home_welcome button {
  border: 0;
  color: white;
  padding: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  background-color: #0190f0;
}

.home_welcome button:hover {
  background-color: #7ecd02;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .home_welcome_heading {
    font-size: 1.7rem;
    flex-direction: column;
    text-align: center;
  }

  .home_welcome_message {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .col-md-8,
  .col-md-4 {
    padding: 0;
  }

  .get-business .text {
    font-size: 1rem;
  }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 768px) {
  .home_welcome_heading {
    font-size: 1.3rem;
  }

  .home_welcome_message {
    font-size: 0.95rem;
  }
}

/* Home Welcome End */

.get-business {
  padding: 35px 20px;
  background: url('../image_src/get-business2.png') repeat;
  height: fit-content;
  width: 20rem;
  margin: 1rem;
}

.zoom-preview {
  position: fixed;
  top: 0;
  right: 0;
  width: 40rem;
  height: 40rem;
  border: 2px solid #ddd;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10;
}

.zoomed-img {
  position: absolute;
  width: 600px;
  height: auto;
  transition: transform 0.1s ease;
}

.zoom_product_all {
  background: url('../image_src/get-business.jpg') repeat;
  padding: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoom_product_all button {
  border: 0;
  background-color: #0190f0;
  color: white;
  padding: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.zoom_product_all button:hover {
  background-color: #7ecd02;
}

.image-zoom-container {
  flex: 0 0 auto;
  width: 11rem;
  height: 11rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.image-zoom-container img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .image-zoom-container {
    width: 9rem;
    height: 9rem;
  }
}

@media (max-width: 768px) {
  .image-zoom-container {
    width: 7rem;
    height: 7rem;
  }
}

/* Zoomed product End */

/* Home our Service */
.home_our_service {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  text-align: center;
}

.home_our_service_body button {
  border: 0;
  background-color: #fff;
  color: #0190f0;
  padding: 0.5rem;
  border-radius: 1rem;
}

.home_ourservice_card {
  border: solid 1px #e9e9e9;
  position: relative;
  padding: 0.9rem;
  width: 13rem;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home_ourservice_card span {
  font-size: .9rem;
}

.home_ourservice_card img {
  width: 3rem;
  margin-bottom: 1rem;
}

.home_our_service a {
  text-decoration: none;
  color: #000;
  font-family: 'Fonarto', sans-serif;
  font-size: 1.3rem;
}

.home_ourservice_card::before {
  content: '';
  bottom: -1px;
  right: -1px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
}

.home_ourservice_card::after {
  content: '';
  top: -1px;
  left: -1px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
}

@media (max-width: 768px) {
  .home_ourservice_card {
    width: 9rem;
    height: 5rem;
  }

  .home_ourservice_card span {
    font-size: .8rem;
  }

  .home_ourservice_card img {
    width: 1.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 425px) {
  .home_our_service {
    margin-top: 2rem;
  }
}

/* Home our Service End */

/* Complete Range */
.complete_range {
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.complete_range a {
  text-decoration: none;
  color: #000;
  padding-left: 1rem;
}

/* Complete Range End */

/* Why Us */
.why_us_left {
  background-image: url('../image_src/utility_mapping2.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.home_whyus_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 10rem;
  background-color: #2aa4f5;
  text-align: center;
}

.home_whyus_card_body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

@media (max-width: 1024px) {
  .home_whyus_card {
    width: 15rem;
    height: 8rem;
  }

  @media (max-width: 768px) {
    .home_whyus_card {
      width: 11rem;
      height: 8rem;
      font-size: 0.8rem;
    }

    .home_whyus_card img {
      width: 2rem;
    }
  }

  @media (max-width: 768px) {
    .home_whyus_card {
      width: 9rem;
      height: 8rem;
    }

    .home_whyus_card_body {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }
}

/* Why Us End */

/* Global Presence */
.we-are-dedicated {
  background-image: url('../image_src/utility_mapping2.jpeg');
  height: 20rem;
  width: 100%;
}

.accordion-button {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  background-color: #0190f0 !important;
}


/* Global Presence End */

/* Footer */
.main_footer {
  background-color: #353535;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.main_footer a {
  text-decoration: none;
  color: white;
}

.footer_contact_cards {
  background-color: #27368E;
  width: 22rem;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.footer_contact_cards:hover {
  transform: scale(1.05);
}

.footer_icon {
  width: 50px;
  height: 50px;
}

.footer_links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer_links a {
  font-size: 0.9rem;
}

.footer_links i {
  color: white;
  background-color: #27368E;
  padding: 0.5rem;
  border-radius: 50%;
  height: fit-content;
}

.footer_certificate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer_certificate img {
  width: 7rem;
  border: 0.5rem solid #fff;
}

@media (max-width: 768px) {
  .footer_contact_cards {
    width: 18rem;
    padding: 0.75rem;
  }

  .footer_icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .footer_contact_cards {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer_icon {
    margin-top: 0.5rem;
  }
}

.footer_copywrite {
  background-color: #111;
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.footer_copywrite a {
  color: #fff;
  text-decoration: none;
}

/* Product page */
.product_page_left {
  display: flex;
  flex-direction: column;
  height: fit-content;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: sticky;
  top: 2rem;
}

.product_page_left p {
  width: 100%;
  height: 3rem;
  margin: 0 !important;
  padding-left: 0.7rem !important;
  display: flex;
  align-items: center;
  border: 1px solid rgb(243, 237, 237);
  color: black;
}

.product_page_left p:hover {
  background-color: #0190f0;
  color: white;
}

.product_page_left a {
  text-decoration: none;
  width: 100%;
}

.product_page_main_body {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
}

.product_page_items {
  border: solid 1px #ebebeb;
  background: #f6f6f6;
  padding: 8px;
  text-align: center;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}

.product_page_items a {
  text-decoration: none;
  color: black;
}

@media (min-width: 424px) and (max-width: 768px) {
  .product_page_items {
    width: 33%;
  }
}

@media (min-width: 200px) and (max-width: 425px) {
  .product_page_main_body {
    margin-top: 1rem;
  }

  .product_page_items {
    width: 50%;
  }
}

/* Product page End */

/* Product Detail Page */
.product_detail_right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.product_detail_right button {
  border: 2px solid #7ecd02;
  width: 90%;
  padding: 1rem;
  background-color: #7ecd02;
  color: white;
  transition: all .3s;
}

.product_detail_right button:hover {
  background-color: #ffffff;
  color: #0190f0;
}

.product_page_body {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
}

.product_page_body a {
  text-decoration: none;
  color: black;
}

.product_page_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1rem;
  width: 15rem;
}

.product_page_list:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product_page_list img {
  width: 100%;
}

.product_page_list p {
  margin: 0;
  text-align: center;
}

.product_page_list button {
  border: 1px solid #0190f0;
  background-color: white;
  color: #0190f0;
  padding: 0.3rem 1.5rem;
  border-radius: 1rem;
  margin-top: 0.5rem;
  font-family: 'Fonarto', sans-serif;
  transition: all 0.2s;
}

.product_page_list button:hover {
  background-color: #0190f0;
  color: white;
}

.imggg img {
  border: 1px solid black;
  width: 10rem;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .product_page_list {
    width: 12.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product_page_list {
    width: 11rem;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .product_page_list {
    width: 10rem;
  }
}

@media (min-width: 100px) and (max-width: 320px) {
  .product_page_list {
    width: 8rem;
  }
}

/* Gallery Page End */

/* Blog page_body */
.blog_page_banner {
  position: relative;
  background-image: url('../image_src/banner-1.jpg');
  height: 15rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog_page_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.334);
  /* Adjust the alpha value for lighter or darker effect */
  z-index: 1;
}

.blog_page_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  padding: 0.5em;
}

.blog_article_card {
  display: flex;
  flex-direction: column;
  height: 300px;
  position: relative;
  background-size: cover;
  border-radius: 7px;
  overflow: hidden;
  padding: 1em;
  cursor: pointer;
  transform: rotateX(0deg) rotateY(0deg);
  transition: all 0.2s linear;
  will-change: transform;
  background-image: url('../image_src/product.jpg');
}

.blog_artical_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%,
      rgba(0, 0, 0, 0.423) 20%,
      rgba(0, 0, 0, 0.48) 50%);
  left: 0;
  top: 0;
  z-index: 1;
}

.blog_article_card h1 {
  font-size: 1.5em;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-20px);
  color: #fff;
}

.blog_article_card span.cat {
  letter-spacing: 2px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .blog_page_wrap {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    padding: 1em;
  }

  .blog_article_card h1 {
    transform: translateY(0px);
  }

  .blog_article_card:hover h1 {
    transform: translateY(-20px);
  }

  .blog_article_card span.cat {
    color: transparent;
  }

  .blog_article_card span.cat::before,
  .blog_article_card span.cat::after {
    content: attr(data-hover);
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0%;
    transition: max-width 300ms ease-out;
  }

  .blog_article_card span.cat::before {
    color: yellow;
    transition-delay: 100ms;
  }

  .blog_article_card span.cat::after {
    color: white;
  }

  .blog_article_card:hover span.cat:after,
  .blog_article_card:hover span.cat:before {
    max-width: 100%;
  }

  .blog_article_card:hover span.cat:after {
    transition-delay: 300ms;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .blog_page_banner {
    height: 10rem;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .blog_article_card {
    height: 10rem;
  }
}

.blog_page_body {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  justify-content: center;
}

.blog_page_list {
  width: 30%;
  padding: 1rem;
  height: fit-content;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.blog_page_list button {
  border: 0;
  background-color: white;
  font-family: 'Fonarto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.blog_page_list button:hover {
  gap: 1rem;
}

.blog_card_name {
  font-size: 1.1rem;
  color: #0190f0;
  line-height: 1.4rem;
  margin-bottom: .5rem;
}

.blog_card_text {
  height: 10rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.blog_card_text p {
  font-size: 0.9rem;
  text-align: justify;
}

@media (min-width: 320px) and (max-width: 767px) {
  .blog_page_list {
    width: 45%;
  }

  .blog_page_list h6 {
    font-size: 0.5rem;
  }

  .blog_card_text {
    height: 7rem;
  }

  .blog_card_name {
    font-size: 0.7rem;
  }

  .blog_card_text p {
    font-size: 0.5rem;
    line-height: 0.9rem;
  }

  .blog_page_list button {
    font-size: 0.6rem;
  }
}

/* Blog page_body End */

/* PCD Franchise Page */
.pcd_section1 img {
  border-radius: 1rem;
}

.pcd_section1 button {
  border: 0;
  padding: 0.8rem;
  width: 20rem;
  background-color: #0190f0;
  border-radius: 0.5rem;
  color: white;
}

.pcd_section1 h2 {
  font-size: 3rem;
  font-weight: bold;
}

.pcd_talk {
  background-color: #eaf7ff;
  text-align: center;
  border-radius: 1rem;
  width: 50%;
  padding: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.pcd_talk button {
  border: 0;
  padding: 0.8rem;
  width: 100%;
  background-color: #0190f0;
  border-radius: 0.5rem;
  color: white;
}

.pcd_section2 {
  margin-top: 4rem;
}

.pcd_section2 h2 {
  text-align: center;
}

.pcd_counter_body {
  display: flex;
  justify-content: center;
  gap: 10rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.pcd_counter_inner {
  border-left: 4px solid #0190f0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  width: fit-content;
  justify-content: center;
}

.pcd_counter_inner h3,
p {
  padding: 0 !important;
  margin: 0 !important;
}

@media (min-width: 200px) and (max-width: 768px) {
  .pcd_section2 h2 {
    text-align: left;
  }

  .pcd_counter_body {
    flex-direction: column;
    gap: 2rem;
  }
}

.pcd_section3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pcd_section3 img {
  border-radius: 1rem;
}

.pcd_section4 img {
  border-radius: 1rem;
}

.pcd_section5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pcd_section5_card {
  width: 21rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pcd_section5_card span {
  color: #555555;
  font-size: 0.9rem;
}

.pcd_section5_card_inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pcd_section5_card_inner p {
  font-weight: bold;
}

.pcd_section5_card_inner i {
  color: #0190f0;
  font-size: 1.7rem;
  padding: 0.3rem;
}

.pcd_section6 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.9rem;
  margin-bottom: 2rem;
}

.pcd_section6 i {
  color: #0190f0;
  font-size: 1.7rem;
}

.pcd_section7 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pcd_section7 h2 {
  text-align: center;
  font-weight: bold;
}

.pcd_section7 i {
  color: #0190f0;
  font-size: 2.5rem;
}

.pcd_section7_body {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 6rem;
  margin-top: 3rem;
}

.pcd_section7_body p {
  font-weight: bold;
}

.pcd_section7_body span {
  font-size: .9rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pcd_section5_card {
    width: 18rem;
    gap: 1rem;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .pcd_section1 h2 {
    font-size: 1.5rem;
  }

  .pcd_talk {
    width: 90%;
    padding: 2rem 1rem;
  }

  .pcd_talk button {
    padding: 0.6rem;
  }

  .pcd_section7_body {
    gap: 2rem;
  }

  .pcd_section7_body i {
    font-size: 1.7rem;
  }
}

.google_review {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.google_review_card {
  width: 18rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 1rem;
  border-radius: .5rem;
}

.google_review i {
  color: orange;
}

.google_review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.google_review_header img {
  width: 2.5rem;
}

.google_review_message {
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: 10rem;
}

.google_review_footer {
  font-weight: bold;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.google_review_footer img {
  width: 3rem;
}

/* PCD Franchise Page End */