/*@font-face {
  font-family: Lato-Black;
  src: url("../font/Lato-Black.ttf");
}
@font-face {
  font-family: Lato-Bold;
  src: url("../font/Lato-Bold.ttf");
}
@font-face {

  src: url("../font/Lato-Regular.ttf");
}
@font-face {
  font-family: Lato-Light;
  src: url("../font/Lato-Light.ttf");
}
@font-face {
  font-family: Lato-Thin;
  src: url("../font/Lato-Thin.ttf");
}*/
* {
  margin: 0;
  padding: 0;
}

.section-padding {
  padding: 3rem 0;
}

.header-section .container,
.banner-section .container {
  max-width: 1500px !important;
}
/* Header Navigation */

/* Hide menu toggle by default on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger icon styling */
.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.hamburger {
  top: 10px;
}
.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Toggle effect */
.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}
/* Header Base Styles */
.header {
  position: relative;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  background-color: white;
  margin: 0 auto;
  padding: 20px 0;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
/* Logo styles */
.logo-wrap {
  width: 20%;
  display: flex;
  justify-content: left;
  margin-left: 2rem;
  align-items: center;
}
.logo {
  width: 100%;
  height: auto;
  max-width: 55%;
  object-fit: cover;
}

/* Navigation styles */
.navigation {
  width: 90%;
}
.header-content .nav {
  justify-content: right !important;
}
.nav-list {
  display: flex;
  justify-content: right;
  list-style: none;
  gap: 0px;
  margin: 0 50px 0 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: #121212;
  font-size: 16px;
  letter-spacing: 0.36px;
  line-height: 21.6px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #666666;
}

/* Active navigation item separator */
.nav-separator {
  position: absolute;
  width: 121px;
  height: 1px;
  top: 23px;
  left: 0;
  background-image: url("/line.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #121212;
  position: absolute;
  right: 16px;
  top: 25px;
  z-index: 1001;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
  .header-section .container {
    padding: 0 !important;
  }
  .header {
    height: auto;
    background-color: white;
  }

  .header-content {
    height: auto;
    padding: 10px 16px;
    justify-content: unset;
  }

  .logo {
    position: static;
    margin: 10px 0;
    display: block;
  }

  .navigation {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .hamburger {
    display: block;
    right: 13%;
    top: 44%;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }

  .nav-separator {
    display: none;
  }
}

/* Banner */
.banner-section-mobile {
  display: none !important;
}
.banner-wrapper {
  margin-left: 0.8rem;
}
.banner-section {
  display: block;
  background-image: url("../images/soical-growth/banner-bg.png");
  background-size: cover;
  padding: 5rem 0rem;
  /* margin-top: 5rem; */
}
.banner-wrapper span {
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
}
.banner-wrapper h1 {
  font-size: 2.5rem;

  color: #ffffff;
  text-transform: capitalize;
  margin: 2rem 0;
}
.banner-wrapper p {
  font-size: 1rem;

  color: #ffffff;
  margin: 2rem 0;
  width: 100%;
  max-width: 39%;
}

/* Banner Mobile */

.banner-section-mobile .col {
  padding: 0 !important;
}
.banner-img-wrap img {
  height: auto;
  width: 100%;
  position: relative;
}
.banner-wrapper-mobile {
  position: absolute;
  top: 17%;
  left: 10%;
}
.banner-wrapper-mobile span {
  font-size: 1rem;

  color: #ffffff;
  text-transform: uppercase;
}
.banner-wrapper-mobile h1 {
  font-size: 2rem;

  color: #ffffff;
  text-transform: capitalize;
  margin: 1rem 0;
}
.banner-wrapper-mobile p {
  font-size: 1rem;

  color: #ffffff;
  margin: 2rem 0;
  width: 100%;
  max-width: 90%;
  text-align: left;
}

/* offer-desktop-section */

.offer-heading {
  font-size: 3rem;

  text-align: center;
  margin-bottom: 2rem;
}

.main-container-offer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 1.5rem;
}
.service-card-line-1,
.service-card-line-2 {
  display: flex;
  justify-content: space-evenly;
}

.main-title {
  position: absolute;
  top: 80px;
  left: 559px;
  font-weight: 500;
  color: #090909;
  font-size: 46px;
  text-align: center;
  letter-spacing: 0.92px;
  line-height: 55.2px;
  white-space: nowrap;
}

.service-card {
  position: relative;
  width: 31%;
  height: auto;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card.dark-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #121212;
  opacity: 0.3;
  z-index: 1;
}

.card-content {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.service-title {

  font-weight: 400;
  color: white;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.44px;
  line-height: 26.4px;
  width: 100%;
  max-width: 63%;
  margin: 0 auto 2rem auto;
}

.service-description {

  font-weight: 400;
  color: white;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.32px;
  line-height: 22px;
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}

/* offer-mobile-section */

.offer-mobile-section {
  display: none;
}

/*---------------aster section --------------------- */
.aster-section-one,
.aster-section-three {
  background-color: #f5f5f5;
}
.aster-data h2 {
  font-size: 3rem;

  text-align: center;
  margin-bottom: 2rem;
}
.aster-data h3 {
  font-size: 2rem;

  text-align: center;
  margin-bottom: 2rem;
}
.aster-p1 {
  max-width: 43%;
  margin: 0 auto 1rem auto;
}
.aster-data p {
  font-size: 1rem;

  text-align: center;
  margin-bottom: 1rem;
}
.aster-section-two {
  background-image: url("../images/soical-growth/sleep-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.aster-data-two {
  margin: 1rem 0;
}
.aster-data-two p {
  font-size: 1rem;

  text-align: center;
  max-width: 60%;
  margin: 0 auto 1rem auto;
  color: #fff;
}
.aster-headings {
  margin: 4rem 0;
}
.aster-headings h4 {
  font-size: 1.75rem;

  text-align: center;
  margin: 1rem 0 1rem 0;
  color: #fff;
}
.aster-data-three p {
  font-size: 1rem;

  text-align: center;
  max-width: 61%;
  margin: 0 auto 1rem auto;
}

/* ---------------------case study section -------------------- */

.case-study-section {
  padding: 5rem 0 !important;
}
#caseStudy .owl-carousel {
  display: flex !important;
}
#caseStudy .owl-dots {
  position: absolute;
  bottom: -6%;
  left: 0;
  right: 0;
}
#caseStudy .owl-nav {
  display: none !important;
}
.case-image img {
  width: 100%;
  height: auto;
}
.item-1-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}
.case-headings h2 {
  font-size: 3rem;

  text-align: center;
}
.case-headings h3 {
  font-size: 2rem;

  text-align: center;
  margin-bottom: 2rem;
}
.case-image {
  width: 40%;
}
.case-content {
  width: 60%;
  max-width: 50%;
  margin: 0 auto;
}
.case-content h4 {
  font-size: 1.5rem;
font-weight: bold;
  margin-bottom: 1rem;
}
.case-content p {
  font-size: 1rem;

  margin-bottom: 1rem;
}
.percent-span {
  font-size: 4rem;
font-weight: lighter;
  margin-bottom: 1rem;
}
.percent-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}
.percent-1 {
  width: 33%;
  position: relative;
}
.percent-1::after {
  position: absolute;
  content: "";
  background-color: #bbbbbb;
  left: 80%;
  top: 15%;
  width: 1px;
  height: 120px;
}
.percent-1:last-child::after {
  display: none !important;
}
.percent-span-red {
  font-size: 4rem;
font-weight: lighter;
  margin-bottom: 1rem;
  color: #e30004;
}
.engment {
  font-size: 1.25rem !important;
font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  max-width: 40%;
}
.engment-red {
  font-size: 1.25rem !important;
font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  max-width: 100%;
  color: #e30004;
}
.know-btn {
  width: 25%;
  padding: 10px 10px;
  border: 1px solid;
  background: none;
  border-radius: 50px;
  margin-top: 1rem;
}
.know-btn a {
  font-size: 1rem;

  color: #000;
  text-decoration: none;
}
.creative-wrap {
  position: relative;
}
.creat-content {
  position: absolute;
  top: 30%;
  left: 23%;
}
.creat-content h3 {
  font-size: 2.5rem;

  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 70%;
}
.creat-content span {
  font-size: 1.5rem;

  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 70%;
  display: block;
}
.sg h3,
.sg span {
  max-width: 100% !important;
}
.sg {
  position: absolute;
  top: 35%;
  left: 30%;
}

/* -----------------footer section---------------- */

.footer {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
  padding: 3rem 5rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-left {
  width: 40%;
  margin-bottom: 30px;
}

.footer-logo {
  width: 100%;
  height: auto;
  max-width: 30%;
  margin-bottom: 20px;
}

.label {
  text-transform: uppercase;

  font-size: 12px;
  margin-bottom: 5px;
  color: #aaa;
}

.phone {
  font-size: 18px;

  font-weight: 500;
  margin-bottom: 20px;
}

.newsletter input {
  padding: 10px;
  width: 70%;
  max-width: 250px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.newsletter button {
  background: none;
  color: white;
  border: none;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.footer-right {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.footer-column {
  margin-bottom: 20px;
  width: 15%;
}

.footer-column .heading {
  text-transform: uppercase;

  font-size: 14px;
  margin-bottom: 10px;
  color: #d0d0d0;
}

.footer-column ul {
  color: #d0d0d0;
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
  font-size: 14px;

  cursor: pointer;
}

.footer-column ul li:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;

  padding-top: 20px;
  color: #888;
}

.footer-links a {
  margin-left: 20px;
  color: #888;
  text-decoration: none;

}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Styles Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-top: 10px;
  }

  .newsletter input {
    width: calc(100% - 40px);
  }
}

/* Media Query */

@media screen and (min-width: 2500px) {
  body {
    max-width: 2500px;
  }
}
@media screen and (min-width: 2000px) and (max-width: 2499px) {
  .banner-section .container{
    max-width: 2000px !important;
  }
  .header-section .container {
    max-width: 1600px !important;
  }
  .banner-wrapper span {
    font-size: 1.5rem;
  }
  .banner-wrapper span {
    font-size: 1.8rem;
  }
  .banner-wrapper h1 {
    font-size: 3rem;
  }
  .banner-wrapper p {
    font-size: 18px;
  }

  .label,
  .footer-bottom,
  .footer-column ul li,
  .footer-column .heading {
    font-size: 16px;
  }
  .footer {
    padding: 3rem 6rem;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1999px) {
  .banner-section .container, .header-section .container {
    max-width: 1600px !important;
  }
  .banner-wrapper span {
    font-size: 1.5rem;
  }
  .banner-wrapper span {
    font-size: 1.5rem;
  }
  .banner-wrapper h1 {
    font-size: 3rem;
  }
  .banner-wrapper p {
    font-size: 18px;
  }
  .banner-wrapper {
    margin-left: 1.5rem;
}
  .label,
  .footer-bottom,
  .footer-column ul li,
  .footer-column .heading {
    font-size: 16px;
  }
  .footer {
    padding: 3rem 6rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .banner-section {
    padding: 5rem 1rem;
  }
  .logo {
    max-width: 55%;
  }
  .nav-list {
    gap: 25px;
    margin-bottom: 0;
    margin-right: 50px;
  }
  .banner-section {
    padding: 5rem 1rem;
  }
  .banner-wrapper p {
    text-align: left;
  }
  #offer .card-content {
        top: 50%;
    }
    .service-title {
        max-width: 75%;
    }
.service-description {
    max-width: 85%;
}

      .card-content {
        top: 56%;
    }
   /* .service-title, .service-description {
        max-width: 80%;
    } */

.aster-data h3 {
    margin-bottom: 1rem;
}
.aster-p1 {
    max-width: 48%;
}
.aster-data h2, .case-headings h2 {
    font-size: 2.8rem;
}
.aster-data h2{
  margin-bottom: 2rem;
}
.aster-data-two p {
    max-width: 70%;
}
.aster-headings {
    margin: 2rem 0;
}
.aster-data-three p {
    max-width: 66%;
}
.case-headings h3 {
    font-size: 1.8rem;
}
.case-study-section {
    padding: 3rem 0 !important;
}
.case-content p {
    text-align: left;
}
.engment {
    max-width: 75%;
}
.know-btn {
    width: 40%;
}

}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .logo-wrap {
    width: 13%;
  }
  .navigation {
    width: 90%;
  }
  .header-content .nav {
    justify-content: unset !important;
  }
  .nav-link {
    font-size: 16px;
    padding: 0;
  }
  .nav-list {
    gap: 30px;
    margin: 0px 0px 0 0;
    padding: 0;
  }
  .logo {
    max-width: 60%;
  }
  .banner-wrapper {
    margin-top: 0.5rem;
  }

  .banner-section {
    margin-top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem 1rem;
  }
  .banner-wrapper h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }
  .banner-wrapper p {
    margin: 1rem 0;
           max-width: 50%;
        text-align: left;
  }
  .card-content {
        top: 47%;
    }
   .service-title{
        max-width: 94%;
    }
     .service-description {
        max-width: 80%;
    }
.service-card-line-1{
  margin-bottom: 1rem !important;
}
.aster-data h2, .aster-data h3 {
    margin-bottom: 1rem;
}
.aster-p1 {
    max-width: 48%;
}
.aster-data h2, .case-headings h2 {
    font-size: 2.8rem;
}
.aster-data-two p {
    max-width: 70%;
}
.aster-headings {
    margin: 2rem 0;
}
.aster-data-three p {
    max-width: 66%;
}
.case-study-section {
    padding: 3rem 0 !important;
}
.case-content p {
    text-align: left;
}
.engment {
    max-width: 75%;
}
.know-btn {
    width: 40%;
}


}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .nav-list {
    display: block !important;
  }
  .navigation {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px; /* adjust according to header height */
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .nav-item {
    margin: 10px 0;
  }

  .banner-section {
    display: block;
    background-image: url("../images/soical-growth/banner-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% 50%;
    padding: 5rem 1rem;
  }
  .banner-wrapper span {
    font-size: 1.25rem;
  }
  .banner-wrapper p {
    max-width: 66%;
    text-align: left;
  }
  .logo-wrap {
    width: 50%;
  }
  .nav-list {
    top: 30px;
    left: 0%;
  }
  .nav-link {
    text-align: center;
  }
  .card-content {
    top: 34%;
  }
  .service-title {
            font-size: 18px;
        max-width: 96%;
        margin: 0 auto 1rem auto;
  }
  .service-description {
    max-width: 82%;
        font-size: 14px;
  }

  .offer-heading {
    font-size: 2.5rem;
  }
  .aster-data h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.aster-data h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.aster-p1 {
    max-width: 47%;
    margin: 1rem auto 1rem auto;
}
.aster-headings {
    margin: 2rem 0;
}
.aster-data-three p {
    max-width: 68%;
}
.item-1-wrap {
    flex-direction: column;
}
.case-image, .case-content{
  width: 100%;
}
.case-content {
    max-width: 100%;
    margin: 1rem auto 0 auto;
}
.case-content p {
    max-width: 90%;
    text-align: left;
}
.case-study-section {
    padding: 2rem 0 3rem 0 !important;
}

  .footer-left,
  .footer-right {
    width: 100%;
  }
  .footer-section .footer {
    padding: 1rem;
  }
  .footer-right {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-column {
    width: 50%;
    padding: 0 1rem;
  }
  .footer-links {
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
  }
  .footer-links a {
    margin-left: 20px;
  }
  .footer-links a:first-child {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  .nav-list {
    display: block !important;
  }
  .navigation {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px; /* adjust according to header height */
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .nav-item {
    margin: 10px 0;
  }

  .logo-wrap {
    width: 50%;
  }
  .nav-list {
    top: 30px;
    left: 0%;
  }
  .nav-link {
    text-align: center;
  }

  .banner-section {
    display: block;
    background-image: url(../images/soical-growth/banner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% 50%;
    padding: 5rem 2rem;
  }

  .banner-wrapper span {
    font-size: 1.25rem;
  }
  .banner-wrapper p {
    max-width: 66%;
    text-align: left;
  }
  .card-content {
    top: 34%;
  }
  .service-title {
            font-size: 18px;
        max-width: 96%;
        margin: 0 auto 1rem auto;
  }
  .service-description {
    max-width: 82%;
        font-size: 14px;
  }

  .offer-heading {
    font-size: 2.5rem;
  }
  .aster-data h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.aster-data h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.aster-p1 {
    max-width: 47%;
    margin: 1rem auto 1rem auto;
}
.aster-headings {
    margin: 2rem 0;
}
.aster-data-three p {
    max-width: 68%;
}
.item-1-wrap {
    flex-direction: column;
}
.case-image, .case-content{
  width: 100%;
}
.case-content {
    max-width: 100%;
    margin: 1rem auto 0 auto;
}
.case-content p {
    max-width: 90%;
    text-align: left;
}
.case-study-section {
    padding: 2rem 0 3rem 0 !important;
}




















  .footer-left,
  .footer-right {
    width: 100%;
  }
  .footer-section .footer {
    padding: 1rem;
  }
  .footer-right {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-column {
    width: 50%;
    padding: 0 1rem;
  }
  .footer-links {
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
  }
  .footer-links a {
    margin-left: 20px;
  }
  .footer-links a:first-child {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 568px) {
  .nav-list {
    display: block !important;
  }
  .navigation {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px; /* adjust according to header height */
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .nav-item {
    margin: 10px 0;
  }

  .logo-wrap {
    width: 50%;
    margin-left: 10px;
  }
  .nav-list {
    top: 0px;
    left: 0%;
  }
  .nav-link {
    text-align: center;
  }
  .banner-section {
    display: none;
  }
  .banner-section-mobile {
    display: block !important;
  }

  .offer-desktop-section {
    display: none;
  }
  .offer-mobile-section {
    display: block;
  }

  .service-card {
    width: 100%;
  }
  .main-container-offer {
    padding: 0 1rem;
  }
  .offer-heading {
    font-size: 2.5rem;
  }
  #mobileOffer .owl-dots {
    margin-top: 3rem !important;
  }
  .card-content {
    top: 29%;
  }
  .service-title,
  .service-description {
    max-width: 85%;
  }
  .item-1-wrap {
    flex-direction: column;
    padding: 0 1rem;
  }
  .case-image,
  .case-content {
    width: 100%;
  }
  .case-content {
    text-align: left;
    max-width: 95%;
    margin: 2rem auto;
  }
  .case-content h4 {
    text-align: left !important;
  }
  .aster-data h2 {
    margin: 0 auto 1rem auto;
    font-size: 2.5rem;
  }
  .aster-data h3 {
    max-width: 50%;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
  }
  .aster-p1 {
    max-width: 80%;
    margin-bottom: 2rem !important;
  }
  .aster-data p {
    max-width: 80%;
    margin: 0 auto 1rem auto;
  }
  .aster-data-two p {
    max-width: 80%;
  }
  .aster-headings h4 {
    font-size: 1.5rem;
    max-width: 90%;
    margin: 0 auto 1rem auto;
  }
  .case-headings h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .case-study-section {
    padding: 2rem 0 !important;
  }
  .know-btn {
    width: 50%;
  }
  .case-image img {
    height: 200px;
  }
  .aster-headings {
    margin: 2rem 0;
  }
  .aster-data-three p {
    max-width: 80%;
  }
  .case-headings h2 {
    font-size: 2.5rem;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-section .footer {
    padding: 1rem;
  }
  .footer-right {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-column {
    width: 50%;
    padding: 0 1rem;
  }
  .footer-links {
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
  }
  .footer-links a {
    margin-left: 20px;
  }
  .footer-links a:first-child {
    margin-left: 0 !important;
  }
}
