@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --background-gray: #ffff;
  --heading-color: #1A202C;
  --sub-headingColor: #2D3748;
  --sub-textColor: #718096;
  --primary-color: #93C5FD;
  --text-color: #0d0d0e;
  --btn-bgcolor: #0d0d0e;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 998;
  display: none;
}

body.menu-open .menu-overlay {
  display: block;
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  p {
    font-size: 1.25rem;
  }
}

.text-small {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .text-small {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .text-small {
    font-size: 1.125rem;
  }
}

.text-large {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .text-large {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-large {
    font-size: 1.75rem;
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: gray;
}
@media (min-width: 768px) {
  html {
    font-size: 112.5%;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 125%;
  }
}

section {
  padding: 3rem 10%;
}

.navbar {
  box-shadow: 0px 40px 4px 0px rgba(0, 0, 0, 0);
  background: transparent;
}
.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease-in-out;
}
.navbar.menu-open {
  background: rgba(255, 255, 255, 0.8) !important;
  transition: background 0.3s ease-in-out;
}
.navbar .navbar-brand {
  color: var(--btn-bgcolor);
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 425px) {
  .navbar .navbar-toggler .navbar-toggler-icon {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 768px) {
  .navbar .navbar-collapse {
    background-color: rgba(250, 250, 250, 0.9);
    z-index: 999;
  }
}
.navbar .navbar-collapse .contact-btn {
  text-decoration: none;
  width: 150px;
  height: 55px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border-radius: 5px;
}
.navbar .navbar-collapse .contact-btn:hover {
  transition: all 0.2s ease-in;
  background-color: var(--primary-color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .navbar .navbar-collapse .contact-btn {
    display: none;
  }
}
.navbar .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}
.navbar .navbar-nav .nav-item {
  text-align: center;
  margin: 5px 0px;
}
.navbar .navbar-nav .nav-item:hover {
  transition: all 0.2s ease-in;
  background-color: var(--primary-color);
  color: #fff;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--heading-color);
  margin: 0 5px;
  font-weight: 500;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  transition: all 0.2s ease-in;
  background-color: var(--primary-color);
  color: #fff;
}

.hero {
  background: linear-gradient(-2deg, #DBEAFE 20%, #93C5FD 40%, #F8FAFC 80%, #FFFFFF 100%);
}
.hero .box {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap-reverse;
}
@media screen and (max-width: 768px) {
  .hero .box {
    justify-content: center;
  }
}
.hero .box .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero .box .content .package-hero {
    flex-direction: column;
  }
}
.hero .box .content .package-hero .b1 {
  padding: 10px;
  background-color: #0d0d0e;
  width: 300px;
  height: 250px;
}
.hero .box .content .package-hero .b1 h6 {
  color: white;
}
.hero .box .content .package-hero .b1 p {
  color: white;
}
.hero .box .content h1 {
  color: var(--heading-color);
  padding-bottom: 8px;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .hero .box .content h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero .box .content h1 {
    font-size: 2rem;
  }
}
.hero .box .content h1 span {
  color: var(--primary-color);
  font-weight: 800;
}
.hero .box .content p {
  color: var(--sub-headingColor);
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .hero .box .content p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .hero .box .content p {
    font-size: 1rem;
  }
}
.hero .box .content .hero-btn {
  margin-top: 30px;
  width: 200px;
  padding: 15px 30px;
  border-radius: 10px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  background-color: var(--btn-bgcolor);
  text-decoration: none;
  cursor: pointer;
}
.hero .box .content .hero-btn:hover {
  transition: all 0.2s ease-in;
  background-color: var(--sub-textColor);
  color: #fff;
}
.hero .box .hero-img img {
  width: 400px;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .hero .box .hero-img img {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .hero .box .hero-img img {
    width: 250px;
    height: 250px;
  }
}

.service {
  height: auto;
  background-color: #fbfcfc;
}
.service .content h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--heading-color);
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .service .content h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .service .content h1 {
    font-size: 1.5rem;
  }
}
.service .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.service .content p {
  color: var(--sub-textColor);
}
.service .content .row {
  margin-bottom: 20px;
}
@media screen and (max-width: 425px) {
  .service .content .row {
    gap: 10px;
  }
}
.service .content .row .card {
  height: auto;
  border: 0;
  outline: none;
  box-shadow: 12px 10px 10px lightgray;
  padding: 10px;
  cursor: pointer;
}
.service .content .row .card:hover {
  border: 1px solid var(--primary-color);
  transition: all 0.2s ease-in;
}
.service .content .row .card img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.service .content .row .card .card-body h3 {
  text-align: center;
  color: var(--sub-headingColor);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .service .content .row .card .card-body h3 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .service .content .row .card .card-body h3 {
    font-size: 1.125rem;
  }
}
.service .content .row .card .card-body p {
  display: none;
  text-align: center;
  color: var(--sub-textColor);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .service .content .row .card .card-body p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .service .content .row .card .card-body p {
    font-size: 1rem;
  }
}

.leading-companies .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 425px) {
  .leading-companies .content {
    flex-wrap: wrap-reverse;
  }
}
.leading-companies .content .text h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
}
.leading-companies .content .text h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin-bottom: 10px;
  /* Adjust the spacing between the line and h1 */
}
.leading-companies .content .text h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .leading-companies .content .text h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .leading-companies .content .text h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.leading-companies .content .text p {
  font-size: 1.5rem;
  color: var(--sub-textColor);
}
@media screen and (max-width: 768px) {
  .leading-companies .content .text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .leading-companies .content .text p {
    font-size: 1.2rem;
    text-align: center;
  }
}
.leading-companies .content .text a {
  text-decoration: none;
  color: inherit;
  padding: 10px;
}
.leading-companies .content .text a:hover {
  background-color: var(--btn-bgcolor);
  transition: all 1s ease-in;
}
@media screen and (max-width: 1024px) {
  .leading-companies .content .image img {
    width: 350px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .leading-companies .content .image img {
    width: 250px;
    height: 200px;
  }
}
@media screen and (max-width: 425px) {
  .leading-companies .content .image {
    margin: 0 auto;
  }
}

.purpose {
  margin-top: 50px;
  padding: 20px;
}
.purpose h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
  font-size: 1.2rem;
  /* span {
       color: #ad0fdd;
       font-weight: bold;
   }

   @media screen and (max-width:768px) {
       font-size: 2rem;
   }

   @media screen and (max-width:425px) {
       font-size: 1.5rem;
       text-align: center;
   }*/
}
@media (min-width: 768px) {
  .purpose h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .purpose h1 {
    font-size: 1.5rem;
  }
}
.purpose h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.purpose p {
  color: var(--sub-headingColor);
  font-size: 0.875rem;
  /*  @media screen and (max-width:768px) {
        font-size: 1rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.2rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .purpose p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .purpose p {
    font-size: 1rem;
  }
}

.clients-logo {
  overflow-x: hidden;
  height: auto;
  margin-top: 20px;
}
.clients-logo .content h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
}
.clients-logo .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin-bottom: 10px;
  /* Adjust the spacing between the line and h1 */
}
.clients-logo .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .clients-logo .content h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .clients-logo .content h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.clients-logo .content .swiper-container {
  position: relative;
  width: 90%;
  height: 150px;
}
.clients-logo .content .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #eee;
}
.clients-logo .content .swiper-container .swiper-button-prev {
  position: absolute;
  top: -40px;
  left: 800px;
  color: var(--primary-color);
  width: 10px;
  height: 10px;
}
.clients-logo .content .swiper-container .swiper-button-prev::after {
  content: "";
}
@media screen and (max-width: 1024px) {
  .clients-logo .content .swiper-container .swiper-button-prev {
    left: 600px;
  }
}
@media screen and (max-width: 768px) {
  .clients-logo .content .swiper-container .swiper-button-prev {
    left: 500px;
  }
}
@media screen and (max-width: 425px) {
  .clients-logo .content .swiper-container .swiper-button-prev {
    top: 80px;
    left: 10px;
  }
}
.clients-logo .content .swiper-container .swiper-button-next {
  position: absolute;
  top: -40px;
  right: -50px;
  color: var(--primary-color);
  width: 10px;
  height: 10px;
}
.clients-logo .content .swiper-container .swiper-button-next::after {
  content: "";
}
@media screen and (max-width: 425px) {
  .clients-logo .content .swiper-container .swiper-button-next {
    top: 80px;
    right: 10px;
  }
}

.customer-reviews {
  overflow-x: hidden;
  height: auto;
  margin-top: 10px;
}
.customer-reviews .content h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.customer-reviews .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.customer-reviews .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .customer-reviews .content h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .customer-reviews .content h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.customer-reviews .content .swiper-container {
  position: relative;
  width: 90%;
  height: 250px;
}
.customer-reviews .content .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #fafafa;
}
.customer-reviews .content .swiper-container .swiper-button-prev {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.customer-reviews .content .swiper-container .swiper-button-prev::after {
  content: "";
}
.customer-reviews .content .swiper-container .swiper-button-next {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.customer-reviews .content .swiper-container .swiper-button-next::after {
  content: "";
}

.case-study {
  height: auto;
  background-color: #e9ecef;
}
.case-study .content .text h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.case-study .content .text h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.case-study .content .text h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .case-study .content .text h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .case-study .content .text h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.case-study .content .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.case-study .content .cards .box {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 0;
  outline: none;
  box-shadow: 12px 10px 10px lightgray;
  padding: 10px;
  cursor: pointer;
}
.case-study .content .cards .box:hover {
  border: 1px solid var(--primary-color);
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 425px) {
  .case-study .content .cards .box {
    flex-wrap: wrap-reverse;
  }
}
.case-study .content .cards .box .box-content {
  flex: 1;
}
.case-study .content .cards .box .box-content h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case-study .content .cards .box .box-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.case-study .content .cards .box .box-content p {
  text-align: center;
  color: var(--sub-textColor);
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .case-study .content .cards .box .box-content p {
    font-size: 1rem;
  }
}
.case-study .content .cards .box .box-content a {
  text-decoration: none;
  color: inherit;
  margin: 0 auto;
  padding: 10px;
}
.case-study .content .cards .box .box-content a:hover {
  background-color: var(--btn-bgcolor);
  transition: all 1s ease-in;
}
.case-study .content .cards .box .box-img {
  flex: 1;
}
.case-study .content .cards .box .box-img img {
  height: 250px;
}
@media screen and (max-width: 425px) {
  .case-study .content .cards .box .box-img img {
    height: 200px;
  }
}
@media screen and (max-width: 320px) {
  .case-study .content .cards .box .box-img img {
    height: 150px;
  }
}
.case-study .content .more-case {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-study .content .more-case a {
  text-decoration: none;
  color: inherit;
  font-size: 1.2rem;
  padding: 10px;
}
.case-study .content .more-case a:hover {
  background-color: var(--btn-bgcolor);
  transition: all 1s ease-in;
}

.about-us .content .text h1 {
  color: var(--heading-color);
  padding-bottom: 10px;
  text-align: center;
  font-size: 1.2rem;
  /*  @media screen and (max-width:768px) {
        font-size: 2rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
.about-us .content .text h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.about-us .content .text h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media (min-width: 768px) {
  .about-us .content .text h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-us .content .text h1 {
    font-size: 1.5rem;
  }
}
.about-us .content .cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.about-us .content .cards .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 425px) {
  .about-us .content .cards .box {
    flex-direction: column-reverse;
    border: 0;
    outline: none;
    box-shadow: 12px 10px 10px lightgray;
    padding: 20px;
  }
}
.about-us .content .cards .box .box-text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about-us .content .cards .box .box-text h3 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.about-us .content .cards .box .box-text p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about-us .content .cards .box .box-text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .about-us .content .cards .box .box-text p {
    text-align: center;
  }
}
.about-us .content .cards .box .box-text .ceo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 425px) {
  .about-us .content .cards .box .box-text .ceo {
    justify-content: center;
  }
}
.about-us .content .cards .box .box-image {
  flex: 1;
}
.about-us .content .cards .box .box-image img {
  width: 450px;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  .about-us .content .cards .box .box-image img {
    width: 350px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .about-us .content .cards .box .box-image img {
    width: 300px;
    height: 250px;
  }
}
@media screen and (max-width: 425px) {
  .about-us .content .cards .box .box-image img {
    width: 250px;
    height: 200px;
  }
}

.approach {
  height: auto;
  background-color: #fbfcfc;
}
.approach .content h1 {
  color: var(--heading-color);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /*  @media screen and (max-width:768px) {
        font-size: 2rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .approach .content h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .approach .content h1 {
    font-size: 1.5rem;
  }
}
.approach .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.approach .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.approach .content .cards {
  margin-top: 30px;
}
.approach .content .cards .box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 12px 10px 10px lightgray;
  padding: 20px;
  gap: 20px;
  background-color: #fafafa;
}
.approach .content .cards .box .box-text h3 {
  text-align: center;
  font-size: 0.875rem;
  /*  @media screen and (max-width:768px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .approach .content .cards .box .box-text h3 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .approach .content .cards .box .box-text h3 {
    font-size: 1.125rem;
  }
}
.approach .content .cards .box .box-text p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  font-size: 0.875rem;
  /* @media screen and (max-width:768px) {
       font-size: 1rem;
   }

   @media screen and (max-width:425px) {
       text-align: center;
   }*/
}
@media (min-width: 768px) {
  .approach .content .cards .box .box-text p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .approach .content .cards .box .box-text p {
    font-size: 0.8rem;
  }
}

.tech-stack .content h1 {
  color: var(--heading-color);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /*   @media screen and (max-width:768px) {
         font-size: 2rem;
     }

     @media screen and (max-width:425px) {
         font-size: 1.5rem;
         text-align: center;
     }*/
}
@media (min-width: 768px) {
  .tech-stack .content h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tech-stack .content h1 {
    font-size: 1.5rem;
  }
}
.tech-stack .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.tech-stack .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.tech-stack .content .stacks {
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tech-stack .content .stacks nav {
  margin: 20px auto;
}
.tech-stack .content .stacks nav a {
  color: inherit;
  font-size: 0.875rem;
  margin-right: 40px;
  /*     @media screen and (max-width:768px) {
           font-size: 1rem;
           margin-right: 0px;
       }*/
}
@media (min-width: 768px) {
  .tech-stack .content .stacks nav a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .tech-stack .content .stacks nav a {
    font-size: 1.125rem;
  }
}

.developement-work .content h1 {
  color: var(--heading-color);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .developement-work .content h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .developement-work .content h1 {
    font-size: 1.5rem;
  }
}
.developement-work .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.developement-work .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.developement-work .content .cards {
  margin-top: 30px;
}
.developement-work .content .cards .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 425px) {
  .developement-work .content .cards .box {
    flex-direction: column;
  }
}
.developement-work .content .cards .box .box1 {
  width: 250px;
  height: auto;
  border: 0;
  outline: none;
  box-shadow: 1px 1px 10px lightgray;
  padding: 10px;
}
.developement-work .content .cards .box .box1 h3 {
  text-align: center;
  color: var(--sub-headingColor);
  font-size: 0.875rem;
  /* @media screen and (max-width:768px) {
       font-size: 1.2rem;
   }*/
}
@media (min-width: 768px) {
  .developement-work .content .cards .box .box1 h3 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .developement-work .content .cards .box .box1 h3 {
    font-size: 1rem;
  }
}
.developement-work .content .cards .box .box1 p {
  text-align: center;
  color: var(--sub-textColor);
  font-size: 0.875rem;
  /* @media screen and (max-width:768px) {
       font-size: 1rem;
   }*/
}
@media (min-width: 768px) {
  .developement-work .content .cards .box .box1 p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .developement-work .content .cards .box .box1 p {
    font-size: 0.8rem;
  }
}
.developement-work .content .cards .line {
  position: relative;
  margin: 50px 0;
  width: 100%;
  height: 3px;
  background-color: black;
}
@media screen and (max-width: 425px) {
  .developement-work .content .cards .line {
    display: none;
  }
}
.developement-work .content .cards .line .l1 {
  position: absolute;
  top: -47px;
  left: 80px;
  width: 3px;
  height: 50px;
  background-color: black;
}
.developement-work .content .cards .line .l2 {
  position: absolute;
  left: 130px;
  width: 3px;
  height: 62px;
  background-color: black;
}
.developement-work .content .cards .line .l3 {
  position: absolute;
  left: 500px;
  width: 3px;
  height: 55px;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  .developement-work .content .cards .line .l3 {
    left: 330px;
  }
}
@media screen and (max-width: 768px) {
  .developement-work .content .cards .line .l3 {
    left: 290px;
  }
}
.developement-work .content .cards .line .l4 {
  position: absolute;
  top: -59px;
  left: 600px;
  width: 3px;
  height: 62px;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  .developement-work .content .cards .line .l4 {
    left: 400px;
  }
}
@media screen and (max-width: 768px) {
  .developement-work .content .cards .line .l4 {
    left: 340px;
  }
}
.developement-work .content .cards .line .l5 {
  position: absolute;
  top: -59px;
  left: 940px;
  width: 3px;
  height: 62px;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  .developement-work .content .cards .line .l5 {
    left: 500px;
  }
}
.developement-work .content .cards .line .l6 {
  position: absolute;
  left: 1040px;
  width: 3px;
  height: 70px;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  .developement-work .content .cards .line .l6 {
    left: 650px;
  }
}
@media screen and (max-width: 768px) {
  .developement-work .content .cards .line .l6 {
    left: 540px;
  }
}

.blogs {
  overflow-x: hidden;
  height: auto;
  margin-top: 10px;
}
.blogs .content h1 {
  color: var(--heading-color);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /*  @media screen and (max-width:768px) {
        font-size: 2rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .blogs .content h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .blogs .content h1 {
    font-size: 1.5rem;
  }
}
.blogs .content h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.blogs .content h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.blogs .content .swiper-container {
  position: relative;
  width: 90%;
  height: 250px;
}
.blogs .content .swiper-container .swiper-wrapper .swiper-slide {
  width: 250px !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #fafafa;
}
.blogs .content .swiper-container .swiper-wrapper .swiper-slide .card {
  cursor: pointer;
}
.blogs .content .swiper-container .swiper-wrapper .swiper-slide .card .card-body .card-text {
  text-align: center;
  color: var(--sub-textColor);
  font-size: 0.8rem;
  /* @media screen and (max-width:768px) {
       font-size: 1rem;
   }*/
}
@media (min-width: 768px) {
  .blogs .content .swiper-container .swiper-wrapper .swiper-slide .card .card-body .card-text {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .blogs .content .swiper-container .swiper-wrapper .swiper-slide .card .card-body .card-text {
    font-size: 0.8rem;
  }
}
.blogs .content .swiper-container .swiper-button-prev {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.blogs .content .swiper-container .swiper-button-prev::after {
  content: "";
}
.blogs .content .swiper-container .swiper-button-next {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.blogs .content .swiper-container .swiper-button-next::after {
  content: "";
}

.display-box .content {
  width: 100%;
  height: 250px;
  background-color: #fbfcfc;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 425px) {
  .display-box .content {
    flex-direction: column;
  }
}
.display-box .content .text h1 {
  color: var(--sub-headingColor);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /*  @media screen and (max-width:768px) {
        font-size: 2rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .display-box .content .text h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .display-box .content .text h1 {
    font-size: 1.5rem;
  }
}
.display-box .content .text h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.display-box .content .text h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.display-box .content .button {
  position: relative;
}
.display-box .content .button a {
  position: absolute;
  top: 80px;
  right: 9px;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px;
  color: #fff;
  background: orange;
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .display-box .content .button a {
    top: 70px;
    right: -8px;
  }
}

.contact h1 {
  color: var(--sub-headingColor);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /*  @media screen and (max-width:768px) {
        font-size: 2rem;
    }

    @media screen and (max-width:425px) {
        font-size: 1.5rem;
        text-align: center;
    }*/
}
@media (min-width: 768px) {
  .contact h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact h1 {
    font-size: 1.5rem;
  }
}
.contact h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.contact h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.contact p {
  color: var(--sub-textColor);
  font-size: 0.8rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .contact p {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .contact p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 425px) {
  .contact p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .contact p {
    font-size: 1.2rem;
  }
}
.contact form {
  background-color: #fbfcfc;
  padding: 5px;
}
.contact form label {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .contact form label {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .contact form label {
    font-size: 0.8rem;
  }
}
.contact form input {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .contact form input {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .contact form input {
    font-size: 0.8rem;
  }
}
.contact form textarea {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .contact form textarea {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .contact form textarea {
    font-size: 0.8rem;
  }
}

.faq {
  margin-top: 20px;
}
.faq h1 {
  color: var(--sub-headingColor);
  font-size: 1.2rem;
  padding-bottom: 10px;
  text-align: center;
  /* @media screen and (max-width:768px) {
       font-size: 2rem;
   }

   @media screen and (max-width:425px) {
       font-size: 1.5rem;
       text-align: center;
   }*/
}
@media (min-width: 768px) {
  .faq h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq h1 {
    font-size: 1.5rem;
  }
}
.faq h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.faq h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
.faq .accordion .card .card-header h5 {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .faq .accordion .card .card-header h5 {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .faq .accordion .card .card-header h5 {
    font-size: 0.8rem;
  }
}

footer {
  width: 100%;
  height: auto;
  background-color: #fbfcfc;
}
footer .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .content .copy-right p {
  color: var(--sub-textColor);
  font-size: 0.8rem;
  /* @media screen and (max-width:768px) {
       font-size: 1rem;
   }*/
}
@media (min-width: 768px) {
  footer .content .copy-right p {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  footer .content .copy-right p {
    font-size: 0.8rem;
  }
}
footer .content .box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 425px) {
  footer .content .box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .content .box .box1 {
  flex: 2;
}
@media screen and (max-width: 425px) {
  footer .content .box .box1 .logo img {
    margin: 0 auto;
    display: flex;
  }
}
footer .content .box .box1 .logo h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  font-size: 1rem;
  /* @media screen and (max-width:768px) {
       font-size: 2rem;
   }

   @media screen and (max-width:425px) {
       font-size: 1.5rem;
       text-align: center;
   }*/
}
@media (min-width: 768px) {
  footer .content .box .box1 .logo h1 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box1 .logo h1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  footer .content .box .box1 .logo h1 {
    text-align: center;
  }
}
footer .content .box .box1 .logo h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
footer .content .box .box1 .logo p {
  color: var(--sub-textColor);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  footer .content .box .box1 .logo p {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box1 .logo p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 425px) {
  footer .content .box .box1 .logo p {
    text-align: center;
  }
}
footer .content .box .box2 {
  flex: 1;
}
footer .content .box .box2 h6 {
  color: var(--sub-textColor);
  font-size: 1rem;
}
@media (min-width: 768px) {
  footer .content .box .box2 h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box2 h6 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  footer .content .box .box2 h6 {
    text-align: center;
  }
}
footer .content .box .box2 a {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px;
  color: var(--sub-textColor);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  footer .content .box .box2 a {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box2 a {
    font-size: 0.8rem;
  }
}
footer .content .box .box3 {
  flex: 1;
}
footer .content .box .box3 h6 {
  color: var(--sub-textColor);
  font-size: 1rem;
}
@media (min-width: 768px) {
  footer .content .box .box3 h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box3 h6 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  footer .content .box .box3 h6 {
    text-align: center;
  }
}
footer .content .box .box3 p {
  color: var(--sub-textColor);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  footer .content .box .box3 p {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  footer .content .box .box3 p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 425px) {
  footer .content .box .box3 p {
    text-align: center;
  }
}
footer .content .box .box3 .icons {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 425px) {
  footer .content .box .box3 .icons {
    justify-content: center;
  }
}

.services {
  margin-top: 100px;
}
.services h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
  font-size: 1.2rem;
}
.services h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.services h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media (min-width: 768px) {
  .services h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services h1 {
    font-size: 1.5rem;
  }
}
.services .content h2 {
  text-align: center;
  color: var(--sub-headingColor);
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .services .content h2 {
    font-size: 0.8rem;
  }
}
.services .content p {
  text-align: center;
  color: var(--sub-textColor);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .services .content p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .services .content p {
    font-size: 0.8rem;
  }
}
.services .content .box {
  margin-top: 20px;
  padding: 10px;
  background-color: #fafafa;
}
.services .content .box .row .card {
  border: 0;
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.services .content .box .row .card img {
  margin: 10px auto;
  width: 200px;
  height: 150px;
}
.services .content .box .row .card .card-body .card-title {
  font-size: 1rem;
  text-align: center;
  color: var(--sub-headingColor);
}
@media screen and (max-width: 425px) {
  .services .content .box .row .card .card-body .card-title {
    font-size: 1.5rem;
  }
}
.services .content .box .row .card .card-body .card-text {
  text-align: start;
  line-height: 1.5;
  font-size: 0.875rem;
  color: var(--sub-textColor);
}
@media (min-width: 768px) {
  .services .content .box .row .card .card-body .card-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .services .content .box .row .card .card-body .card-text {
    font-size: 0.8rem;
  }
}
.services .content .box .row .card .card-body a {
  display: block;
  margin: 10px auto;
  font-size: 0.8rem;
  width: auto;
  padding: 5px 13px;
  color: #fff;
  background-color: #93C5FD;
  text-decoration: none;
  text-align: center;
}
.services .content .box .row .card .list-group .list-group-item {
  font-size: 0.8rem;
  text-align: start;
  color: var(--sub-textColor);
}

.leadCompanies {
  margin-top: 20px;
}
.leadCompanies h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.leadCompanies h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.leadCompanies h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .leadCompanies h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .leadCompanies h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.leadCompanies .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.leadCompanies .content .box h2 {
  text-align: center;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .leadCompanies .content .box h2 {
    font-size: 1.2rem;
  }
}
.leadCompanies .content .box p {
  text-align: center;
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .leadCompanies .content .box p {
    font-size: 1.2rem;
  }
}

.hireDevelopers {
  margin-top: 40px;
}
.hireDevelopers h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireDevelopers h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireDevelopers h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireDevelopers h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireDevelopers h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireDevelopers .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.hireDevelopers .content .box h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  line-height: 1.5;
  word-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .content .box h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireDevelopers .content .box h2 {
    text-align: center;
  }
}
.hireDevelopers .content .box p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .content .box p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireDevelopers .content .box p {
    text-align: center;
  }
}
.hireDevelopers .benefits {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hireDevelopers .benefits h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireDevelopers .benefits h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireDevelopers .benefits h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .benefits h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireDevelopers .benefits h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireDevelopers .benefits .box {
  margin-top: 40px;
}
.hireDevelopers .benefits .box .row .box1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hireDevelopers .benefits .box .row .box1 .image img {
  width: 150px;
  height: 150px;
}
.hireDevelopers .benefits .box .row .box1 .content h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .benefits .box .row .box1 .content h2 {
    font-size: 1.2rem;
  }
}
.hireDevelopers .benefits .box .row .box1 .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .benefits .box .row .box1 .content p {
    font-size: 1.2rem;
  }
}
.hireDevelopers .benefits .hireDev {
  margin-top: 50px;
  background-color: #fafafa;
  padding: 20px;
}
.hireDevelopers .benefits .hireDev .row .box .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .benefits .hireDev .row .box .content h2 {
    font-size: 1.2rem;
  }
}
.hireDevelopers .benefits .hireDev .row .box .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireDevelopers .benefits .hireDev .row .box .content p {
    font-size: 1.2rem;
  }
}
.hireDevelopers .benefits .hireDev .row .box .content .contact-btn {
  text-decoration: none;
  width: auto;
  height: 35px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .hireDevelopers .benefits .hireDev .row .image img {
    width: 100%;
  }
}

.hireReact {
  margin-top: 40px;
}
.hireReact h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireReact h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireReact h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireReact h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireReact h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireReact .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.hireReact .content .box h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  line-height: 1.5;
  word-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .hireReact .content .box h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireReact .content .box h2 {
    text-align: center;
  }
}
.hireReact .content .box p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireReact .content .box p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireReact .content .box p {
    text-align: center;
  }
}
.hireReact .benefits {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hireReact .benefits h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireReact .benefits h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireReact .benefits h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireReact .benefits h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireReact .benefits h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireReact .benefits .box {
  margin-top: 40px;
}
.hireReact .benefits .box .row .box1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hireReact .benefits .box .row .box1 .image img {
  width: 150px;
  height: 150px;
}
.hireReact .benefits .box .row .box1 .content h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireReact .benefits .box .row .box1 .content h2 {
    font-size: 1.2rem;
  }
}
.hireReact .benefits .box .row .box1 .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireReact .benefits .box .row .box1 .content p {
    font-size: 1.2rem;
  }
}
.hireReact .benefits .hireDev {
  margin-top: 50px;
  background-color: #fafafa;
  padding: 20px;
}
.hireReact .benefits .hireDev .row .box .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hireReact .benefits .hireDev .row .box .content h2 {
    font-size: 1.2rem;
  }
}
.hireReact .benefits .hireDev .row .box .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireReact .benefits .hireDev .row .box .content p {
    font-size: 1.2rem;
  }
}
.hireReact .benefits .hireDev .row .box .content .contact-btn {
  text-decoration: none;
  width: auto;
  height: 35px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .hireReact .benefits .hireDev .row .image img {
    width: 100%;
  }
}

.hirefrontend {
  margin-top: 40px;
}
.hirefrontend h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hirefrontend h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hirefrontend h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hirefrontend h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hirefrontend h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hirefrontend .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.hirefrontend .content .box h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  line-height: 1.5;
  word-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .hirefrontend .content .box h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hirefrontend .content .box h2 {
    text-align: center;
  }
}
.hirefrontend .content .box p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hirefrontend .content .box p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hirefrontend .content .box p {
    text-align: center;
  }
}
.hirefrontend .benefits {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hirefrontend .benefits h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hirefrontend .benefits h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hirefrontend .benefits h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hirefrontend .benefits h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hirefrontend .benefits h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hirefrontend .benefits .box {
  margin-top: 40px;
}
.hirefrontend .benefits .box .row .box1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hirefrontend .benefits .box .row .box1 .image img {
  width: 150px;
  height: 150px;
}
.hirefrontend .benefits .box .row .box1 .content h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hirefrontend .benefits .box .row .box1 .content h2 {
    font-size: 1.2rem;
  }
}
.hirefrontend .benefits .box .row .box1 .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hirefrontend .benefits .box .row .box1 .content p {
    font-size: 1.2rem;
  }
}
.hirefrontend .benefits .hireDev {
  margin-top: 50px;
  background-color: #fafafa;
  padding: 20px;
}
.hirefrontend .benefits .hireDev .row .box .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hirefrontend .benefits .hireDev .row .box .content h2 {
    font-size: 1.2rem;
  }
}
.hirefrontend .benefits .hireDev .row .box .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hirefrontend .benefits .hireDev .row .box .content p {
    font-size: 1.2rem;
  }
}
.hirefrontend .benefits .hireDev .row .box .content .contact-btn {
  text-decoration: none;
  width: auto;
  height: 35px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .hirefrontend .benefits .hireDev .row .image img {
    width: 100%;
  }
}

.hireBackend {
  margin-top: 40px;
}
.hireBackend h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireBackend h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireBackend h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireBackend h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireBackend h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireBackend .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.hireBackend .content .box h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  line-height: 1.5;
  word-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .hireBackend .content .box h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireBackend .content .box h2 {
    text-align: center;
  }
}
.hireBackend .content .box p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireBackend .content .box p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireBackend .content .box p {
    text-align: center;
  }
}
.hireBackend .benefits {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hireBackend .benefits h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.hireBackend .benefits h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.hireBackend .benefits h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hireBackend .benefits h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .hireBackend .benefits h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hireBackend .benefits .box {
  margin-top: 40px;
}
.hireBackend .benefits .box .row .box1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hireBackend .benefits .box .row .box1 .image img {
  width: 150px;
  height: 150px;
}
.hireBackend .benefits .box .row .box1 .content h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireBackend .benefits .box .row .box1 .content h2 {
    font-size: 1.2rem;
  }
}
.hireBackend .benefits .box .row .box1 .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hireBackend .benefits .box .row .box1 .content p {
    font-size: 1.2rem;
  }
}
.hireBackend .benefits .hireDev {
  margin-top: 50px;
  background-color: #fafafa;
  padding: 20px;
}
.hireBackend .benefits .hireDev .row .box .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hireBackend .benefits .hireDev .row .box .content h2 {
    font-size: 1.2rem;
  }
}
.hireBackend .benefits .hireDev .row .box .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hireBackend .benefits .hireDev .row .box .content p {
    font-size: 1.2rem;
  }
}
.hireBackend .benefits .hireDev .row .box .content .contact-btn {
  text-decoration: none;
  width: auto;
  height: 35px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .hireBackend .benefits .hireDev .row .image img {
    width: 100%;
  }
}

.fullstack {
  margin-top: 40px;
}
.fullstack h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.fullstack h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.fullstack h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fullstack h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .fullstack h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.fullstack .content .box {
  background-color: #fafafa;
  padding: 20px;
}
.fullstack .content .box h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  line-height: 1.5;
  word-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .fullstack .content .box h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .fullstack .content .box h2 {
    text-align: center;
  }
}
.fullstack .content .box p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .fullstack .content .box p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 425px) {
  .fullstack .content .box p {
    text-align: center;
  }
}
.fullstack .benefits {
  margin-top: 20px;
  margin-bottom: 20px;
}
.fullstack .benefits h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.fullstack .benefits h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.fullstack .benefits h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fullstack .benefits h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .fullstack .benefits h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.fullstack .benefits .box {
  margin-top: 40px;
}
.fullstack .benefits .box .row .box1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullstack .benefits .box .row .box1 .image img {
  width: 150px;
  height: 150px;
}
.fullstack .benefits .box .row .box1 .content h2 {
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fullstack .benefits .box .row .box1 .content h2 {
    font-size: 1.2rem;
  }
}
.fullstack .benefits .box .row .box1 .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fullstack .benefits .box .row .box1 .content p {
    font-size: 1.2rem;
  }
}
.fullstack .benefits .hireDev {
  margin-top: 50px;
  background-color: #fafafa;
  padding: 20px;
}
.fullstack .benefits .hireDev .row .box .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .fullstack .benefits .hireDev .row .box .content h2 {
    font-size: 1.2rem;
  }
}
.fullstack .benefits .hireDev .row .box .content p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .fullstack .benefits .hireDev .row .box .content p {
    font-size: 1.2rem;
  }
}
.fullstack .benefits .hireDev .row .box .content .contact-btn {
  text-decoration: none;
  width: auto;
  height: 35px;
  background-color: var(--btn-bgcolor);
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .fullstack .benefits .hireDev .row .image img {
    width: 100%;
  }
}

.careers {
  margin-top: 20px;
}
.careers h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.careers h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.careers h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .careers h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .careers h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.careers .content {
  background-color: #fafafa;
  padding: 20px 0;
}
.careers .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .careers .content h2 {
    font-size: 1.2rem;
  }
}

.caseStudies {
  margin-top: 20px;
}
.caseStudies h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.caseStudies h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.caseStudies h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .caseStudies h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .caseStudies h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.caseStudies .content {
  background-color: #fafafa;
  padding: 20px 0;
}
.caseStudies .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .caseStudies .content h2 {
    font-size: 1.2rem;
  }
}

.blogsPage {
  margin-top: 20px;
}
.blogsPage h1 {
  color: var(--sub-headingColor);
  padding-bottom: 10px;
  text-align: center;
}
.blogsPage h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--btn-bgcolor);
  /* Change the color as needed */
  margin: 10px auto;
  /* Adjust the spacing between the line and h1 */
}
.blogsPage h1 span {
  color: #ad0fdd;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .blogsPage h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .blogsPage h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.blogsPage .content {
  background-color: #fafafa;
  padding: 20px 0;
}
.blogsPage .content h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .blogsPage .content h2 {
    font-size: 1.2rem;
  }
}
.blogsPage .content .card {
  padding: 20px;
  box-shadow: 12px 10px 10px lightgray;
}
.blogsPage .content .card .card-body h2 {
  line-height: 1.5;
  color: var(--sub-headingColor);
  font-size: 1.7rem;
  word-spacing: normal;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .blogsPage .content .card .card-body h2 {
    font-size: 1.2rem;
  }
}
.blogsPage .content .card .card-body p {
  color: var(--sub-textColor);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .blogsPage .content .card .card-body p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */