/*@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,
.strategy-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;
}
.breadcrumb-social{
      margin-left: 13px !important;
}

/* 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.5rem;
}
.banner-section {
  display: block;
  background-image: url("../images/growth-marketing/banner-bg-1.png?v=1.5");
  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;
}

/* ---------------------------Strategy section ----------------------------*/

.strategy-wrapper {
  display: flex;
  width: 100%;
  max-width: 90%;
  justify-content: space-evenly;
  align-items: center;
}

.strat-child-1 {
  width: 45%;
}
.strat-child-2 {
  width: 50%;
}
.strat-child-1 img {
  width: 100%;
  height: auto;
  max-width: 95%;
}
.strat-child-2 {
  margin-left: 2rem;
}
.strat-child-2 h2 {
  font-size: 3rem;
  
  margin: 1rem 0;
  width: 100%;
  max-width: 60%;
}
.strat-child-2 h3 {
  font-size: 2.25rem;
  
  margin: 1rem 0;
  width: 100%;
  max-width: 60%;
}
.strat-child-2 p {
  font-size: 1rem;
  
  width: 100%;
  max-width: 83%;
  margin: 1rem 0;
}
/* ---------------------------Insights section ----------------------------*/

.insight-section {
  background-image: url("../images/growth-marketing/seo-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.insights-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.in-child-1 {
  width: 50%;
}
.in-child-2 {
  width: 45%;
}
.in-child-2 h2 {
  font-size: 3.5rem;
  
  color: #ffffff;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 70%;
}
.in-child-2 h3 {
  font-size: 2.5rem;
  
  color: #ffffff;
  margin-bottom: 0rem;
  width: 100%;
  max-width: 60%;
}
.in-child-2 p {
  font-size: 1rem;
  
  color: #ffffff;
  /* margin-bottom: 2rem; */
  width: 100%;
  max-width: 93%;
}

/*---------------accordion section --------------------- */

.section-card {
  width: 100%;
  border: none;
  border-radius: 0;
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  min-height: 100%;
}

.accordion-image {
  display: none;
}

.accordion-image.active {
  display: block;
}

.image-container {
  width: 40%;
  height: auto;
  flex-shrink: 0;
  flex-grow: 0;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-container {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.panel {
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.panel-title {
  
  color: #121212;
  font-size: 20px;
  letter-spacing: 0.44px;
  line-height: 25px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.panel-title {
  font-weight: normal; /* default state */
}

/* When active */
.panel-title.bold {
  font-weight: bold;
}
.panel-title.normal {
  font-weight: normal;
}

.panel-description {
  
  color: #121212;
  font-size: 16px;
  letter-spacing: 0.44px;
/*  line-height: 30px;*/
  margin: 0;
  width: 100%;
  max-width: 93%;
  text-align: left;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
/* .last-ans{
  margin-bottom: 2rem;
} */
.panel-description.active {
  max-height: 500px; /* high enough for longest content */
  opacity: 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
  }
}

.expand-button {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.expand-button:hover {
  transform: scale(1.05);
}

.expand-button.expanded {
  background-color: #121212;
}

.expand-button.collapsed {
  background-color: #797979;
}

.expand-button svg {
  width: 11px;
  height: 11px;
  color: white;
  transition: transform 0.3s ease;
}

.separator {
  width: 100%;
  /* width: 670px; */
  height: 2px;
  background-color: #bbbbbb;
  border: none;
  margin-bottom: 40px;
}

.panel:last-child .separator {
  display: none;
}

/* Remove margin from last panel */
.content-container .panel:last-child {
  margin-bottom: 0;
}

/* Ensure proper spacing for panels without descriptions */
.panel-header:last-child {
  margin-bottom: 0;
}

/*---------------aster section --------------------- */

.aster-section-two {
  background-image: url("../images/growth-marketing/brands-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.aster-data-two {
  margin: 3rem 0;
}
.aster-data-two p {
  font-size: 1rem;
  
  text-align: center;
  max-width: 50%;
  margin: 2rem auto 1rem auto;
  color: #fff;
}

.aster-data-two h3 {
  font-size: 2rem;
  
  text-align: center;
  margin: 1rem auto 2rem auto;
  color: #fff;
  width: 100%;
  max-width: 70%;
  line-height: 45px;
}
.aster-data-two h2 {
  font-size: 2.75rem;
  
  text-align: center;
  margin: 1rem auto 1rem auto;
  color: #fff;
  width: 100%;
  max-width: 80%;
  line-height: 50px;
}

/* ---------------------case study section -------------------- */

.bb-sale-wrap {
  padding-bottom: 4rem;
  position: relative;
}
.bb-sale-wrap::after {
  position: absolute;
  content: "";
  background-color: #bbbbbb;
  height: 2px;
  bottom: 10%;
  width: 100%;
  max-width: 55%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.bb-sale-wrap h2 {
  font-size: 4rem;
  font-weight: 600;
  
  text-align: center;
  margin: 0 auto;
}
.bb-sale-wrap h3 {
  font-size: 2.8rem;
  
  text-align: center;
  margin: 0 auto 1rem auto;
}
.bb-sale-wrap p {
  font-size: 1.25rem;
  
  text-align: center;
  margin: 2rem auto 2rem auto;
  max-width: 60%;
}

.case-study-section {
  padding: 5rem 0 !important;
  background-color: #f5f5f5;
}
#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: 1.8rem;
  
  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;
  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;
  margin-bottom: 1rem;
  color: #e30004;
}
.engment {
  font-size: 1.25rem !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  max-width: 40%;
}
.engment-red {
  font-size: 1.25rem !important;
  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%;
}

/* -----------------aster three section---------------- */

.aster-data-three {
  margin: 3rem 0;
}
.aster-data-three h2 {
  font-size: 2rem;
  
  text-align: center;
  width: 100%;
  max-width: 70%;
  margin: 0 auto 1rem auto;
}
.aster-data-three p {
  font-size: 2rem;
  
  text-align: center;
  max-width: 76%;
  margin: 0 auto 0rem auto;
}

/* -----------------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;
  }
  .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;
  }
.banner-wrapper {
    margin-left: 0rem;
}
  .label,
  .footer-bottom,
  .footer-column ul li,
  .footer-column .heading {
    font-size: 16px;
  }
  .footer {
    padding: 3rem 6rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1999px) {
  .banner-section .container,
  .header-section .container, .strategy-section .container  {
    max-width: 2000px !important;
  }
    .banner-section{
    padding-left: 0.5rem;
  }
  .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: 1919px) {
  .banner-section .container,
  .header-section .container, .strategy-section .container  {
    max-width: 1600px !important;
  }
  .banner-section{
    padding-left: 0.5rem;
  }
  .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: 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;
  }
.strategy-wrapper {
  margin-left: 0.8rem;
}
  .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: 88%;
  }
  .case-study-section {
    padding: 3rem 0 !important;
  }
  .case-content p {
    text-align: left;
  }
  .engment {
    max-width: 75%;
  }
  .know-btn {
    width: 40%;
  }

  .in-child-2 h3 {
    font-size: 2.25rem;
  }
  .strat-child-2 h2,
  .in-child-2 h2,
  .aster-data-two h2 {
    font-size: 2.8rem;
  }
  .aster-data-two h2 {
    font-size: 2.5rem;
  }

  .bb-sale-wrap h2 {
    font-size: 3.25rem;
  }
  .aster-data-three {
    margin: 1rem 0;
  }
}
@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;
  }

  .in-child-2 h2 {
    font-size: 2rem;
  }
  .in-child-2 p {
    max-width: 88%;
  }

  .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: 85%;
  }
  .case-study-section {
    padding: 3rem 0 !important;
  }
  .case-content p {
    text-align: left;
  }
  .engment {
    max-width: 75%;
  }
  .know-btn {
    width: 40%;
  }

  .strategy-section {
    padding: 1rem 0 !important;
  }
  .strategy-wrapper {
    padding: 0 2rem;
  }
  .strat-child-2 h2 {
    max-width: 100%;
  }
  .strat-child-2 h3 {
    max-width: 80%;
  }
  .strat-child-2 p {
    max-width: 100%;
    text-align: left;
  }
  .in-child-2 h3 {
    max-width: 75%;
  }
  .aster-data-two {
    margin: 0rem 0;
  }
  .aster-data-two h3 {
    max-width: 85%;
    font-size: 1.75rem;
  }

  .aster-data-two h2 {
    font-size: 2.5rem;
    max-width: 90%;
  }
  .aster-data-three h2 {
    max-width: 80%;
  }
  .bb-sale-wrap h3 {
    font-size: 2.75rem;
  }
  .bb-sale-wrap h2 {
    font-size: 3rem;
  }
  .bb-sale-wrap p {
    font-size: 1.25rem;
    max-width: 72%;
  }
  .aster-data-three {
    margin: 1rem 0;
  }
}
@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/growth-marketing/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;
  }
  .logo-wrap {
    width: 50%;
    margin-left: 1rem;
  }
  .nav-list {
    top: 30px;
    left: 0%;
  }
  .nav-link {
    text-align: center;
  }

  .insights-wrapper {
    flex-direction: column;
  }
  .in-child-1,
  .in-child-2 {
    width: 100%;
  }
  .in-child-1 {
    text-align: center;
  }

  .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;
  }
  .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;
  }

  .strategy-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }
  .strat-child-1,
  .strat-child-2 {
    width: 100%;
  }
  .strat-child-2 h2 {
    font-size: 2.5rem;
    max-width: 85%;
    margin-top: 2rem;
  }

  .strat-child-2 h3 {
    font-size: 2rem;
    max-width: 70%;
  }
  .strat-child-2 p {
    max-width: 96%;
    text-align: left;
  }
  .in-child-2 h3 {
    max-width: 80%;
  }
  .in-child-2 h2 {
    font-size: 3rem;
  }
  .in-child-2 p {
    max-width: 90%;
  }
  .image-container {
    display: none;
  }
  .content-container {
    width: 100%;
  }
  .accordion-parent-wrap {
    padding: 0 1rem;
  }
  .panel-title {
    font-size: 18px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .panel {
    margin: 1rem 0;
  }
  .separator {
    margin-bottom: 0px;
  }
  .aster-data-two {
    margin: 0rem 0;
  }
  .aster-data-two h3 {
    max-width: 95%;
    font-size: 1.75rem;
  }
  .aster-data-two h2 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .aster-data-two p {
    max-width: 70%;
  }
  .bb-sale-wrap h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .bb-sale-wrap h2 {
    font-size: 3rem;
  }
  .bb-sale-wrap p {
    max-width: 90%;
  }

  .aster-data-three {
    margin: 0rem 0;
  }
  .aster-data-three h2 {
    max-width: 80%;
  }
  .aster-data-three p {
    max-width: 85%;
  }
}
@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%;
    margin-left: 1rem;
  }
  .nav-list {
    top: 30px;
    left: 0%;
  }
  .nav-link {
    text-align: center;
  }

  .banner-section {
    display: block;
/*    background-image: url(../images/growth-marketing/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;
  }

  .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;
  }
  .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;
  }

  .insights-wrapper {
    flex-direction: column;
  }
  .in-child-1,
  .in-child-2 {
    width: 100%;
  }
  .in-child-1 {
    text-align: center;
  }

  .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;
  }

  .strategy-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }
  .strat-child-1,
  .strat-child-2 {
    width: 100%;
  }
  .strat-child-2 h2 {
    font-size: 2.5rem;
    max-width: 85%;
    margin-top: 2rem;
  }

  .strat-child-2 h3 {
    font-size: 2rem;
    max-width: 70%;
  }
  .strat-child-2 p {
    max-width: 96%;
    text-align: left;
  }
  .in-child-2 h3 {
    max-width: 80%;
  }
  .in-child-2 h2 {
    font-size: 3rem;
  }
  .in-child-2 p {
    max-width: 90%;
  }
  .image-container {
    display: none;
  }
  .content-container {
    width: 100%;
  }
  .accordion-parent-wrap {
    padding: 0 1rem;
  }
  .panel-title {
    font-size: 18px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .panel {
    margin: 1rem 0;
  }
  .separator {
    margin-bottom: 0px;
  }
  .aster-data-two {
    margin: 0rem 0;
  }
  .aster-data-two h3 {
    max-width: 95%;
    font-size: 1.75rem;
  }
  .aster-data-two h2 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .aster-data-two p {
    max-width: 70%;
  }
  .bb-sale-wrap h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .bb-sale-wrap h2 {
    font-size: 3rem;
  }
  .bb-sale-wrap p {
    max-width: 90%;
  }

  .aster-data-three {
    margin: 0rem 0;
  }
  .aster-data-three h2 {
    max-width: 80%;
  }
  .aster-data-three p {
    max-width: 85%;
  }
}
@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;
  }

  .insights-wrapper {
    flex-direction: column;
    padding: 0 0.5rem;
  }
  .in-child-1,
  .in-child-2 {
    width: 100%;
  }
  .in-child-2 p {
    max-width: 96%;
    text-align: left;
  }
  .in-child-2 h2 {
    font-size: 2rem;
    max-width: 100%;
    margin: 1rem auto;
  }

  .strategy-wrapper {
    flex-direction: column;
            padding-left: 1.5rem;
  }
  .strat-child-1,
  .strat-child-2 {
    width: 100%;

  }
  .strat-child-2
 {
    margin-left: 0rem;
}
  .strat-child-2 h2 {
    font-size: 2.5rem;
    max-width: 85%;
  }

  .strat-child-2 h3 {
    font-size: 2rem;
    max-width: 90%;
  }
  .strat-child-2 p {
    max-width: 96%;
    text-align: left;
  }

  .in-child-2 h3 {
    font-size: 2.25rem;
    
    color: #ffffff;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .image-container {
    display: none;
  }
  .content-container {
    width: 100%;
  }
  .accordion-parent-wrap {
    padding: 0 1rem;
  }
  .panel-title {
    font-size: 18px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .panel {
    margin: 1rem 0;
  }
  .separator {
    margin-bottom: 0px;
  }
  .aster-data-two h3 {
    font-size: 1.5rem;
    max-width: 100%;
  }

  .aster-data-two h2 {
    font-size: 2rem;
    max-width: 100%;
  }

  .aster-data-two {
    margin: 0rem 0;
  }
  .bb-sale-wrap h3 {
    font-size: 2rem;
  }
  .bb-sale-wrap h2 {
    font-size: 2.5rem;
    max-width: 90%;
    margin: 1rem auto;
  }
  .bb-sale-wrap p {
    max-width: 85%;
  }

  .bb-sale-wrap::after {
    bottom: 3%;
    max-width: 80%;
  }

  .bb-sale-wrap {
    padding-bottom: 1rem;
  }

  .aster-data-three {
    margin: 0rem 0;
  }
  .aster-data-three h2 {
    max-width: 85%;
    margin: 0 auto 2rem auto;
  }

  .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: 76%;
    font-size: 1.25rem;
  }
  .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;
  }
}
