/* General styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* border: 2px solid red; */
  }
  
  body {
    margin: 0;
    padding: 0;
  }
  
  img {
    display: block;
    max-width: 100%;
  }

/* ======================== Header ======================== */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    margin-top: 70px;
  }

  .sidenav p {
    color:#ccc;
    padding: 0vw 0vw 0vw 5vw;
  }
  
  .sidenav ul {
    font-size: 4vw;  
  }
  
  .sidenav li {
    display: inline-block;
    font-size: 1vw;
    margin-left: 8vw;
    height: 8vw;
  }  
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 4vw;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 10px -5px gray;
    height: 5vw;
  }
  
  .navbar a, .navbar p {
    font-size: 1.2vw;
    color: black;
    font-weight: bold;
    text-decoration: none;
  }
  
  .menubar {
    display: none;
  }

  .navbarsinfoLogo img {
    height: 3.5vw;
    width: 8vw;
  }
  
  /* Basic styling for the navigation */
  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown menu styling */
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #000;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    z-index: 1;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #ccc; /* Light border for definition */
  }
  
  .dropdown-menu li {
    display: block;
    padding: 0;
  }
  
  .dropdown-menu li a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
  }
  .dropdown-menu li p {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
  }
  
  .dropdown-menu li a:hover {
    background-color: #333;
  }
  
  .dropdown-section {
    padding: 10px 20px;
    border-bottom: 1px solid #575757;
  }
  
  .dropdown-section:last-child {
    border-bottom: none;
  }
  
  .dropdown-heading1 {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-size: 16px;
    background-color: #575757;
  }
  
  .dropdown-section ul {
    margin: 0;
    padding-left: 0;
  }
  
  .dropdown-section ul li {
    padding: 4px 0;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }

.infinite-dropdown {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd4d5 #333;
}

.infinite-dropdown::-webkit-scrollbar {
    width: 6px;
}

.infinite-dropdown::-webkit-scrollbar-track {
    background: #333;
}

.infinite-dropdown::-webkit-scrollbar-thumb {
    background-color: #E81C24;
    border-radius: 3px;
}

/* This is the key fix — without it, dropdown-section overrides overflow */
.infinite-dropdown .dropdown-section {
    display: block;
}

.infinite-dropdown .dropdown-section {
    display: block;
    border-bottom: none;
    padding: 6px 0px;
}

.infinite-dropdown .dropdown-section:first-child {
    padding: 0;
    margin: 0;
}

.infinite-dropdown .dropdown-heading1 {
    margin: 0;
    padding: 10px 20px;
}
  
  /* Styling for the "Products" link */
  .dropdown-toggle {
    color: #000; /* Text color */
    padding: 10px 5px; /*Padding for alignment*/
    text-decoration: none;
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
  }
  
  .Dropdowncaret {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .Dropdowncaret:hover {
    background-color: #ddd; /*Background color on hover*/
  }
  
  /* Extra Styling for other elements */
  
  .InfiniteSolutions img {
    height: 1.5vw;
    width: 3vw;
  }
  
  .NavbarBookADemo button {
    font-weight: bold;
    font-size: 0.9vw;
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 0.5vw;
    width: 9vw;
    border-radius: 25px;
    cursor: pointer;
  }
  
  .InfiniteSolutions {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: white;
    border-radius: 1vw;
    padding: 0vw 0.5vw;
  }
  
  .InfiniteSolutions a {
    color: white;
    padding: 0.5vw 0vw;
  }
  
  .NavbarBookADemo button {
      font-weight: bold;
      font-size: 0.9vw;
      background-color: black;
      color: white;
      border: 2px solid white;
      padding: 0.5vw;
      width: 9vw;
      border-radius: 25px;
      cursor: pointer;
  }
  
  .NavbarBookADemo button:hover {
    background-color: white;
    color: black;
    border: 0.15vw solid black;
  }
  
  /* ======================== Shraddha Academy Top ====================== */

  .AcademyTopSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 18vw;
    background-color: #E81C24;
    margin: 5vw 0vw 0vw 0vw;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 3vw;
  }

  .LearnAtYourPace {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.2vw;
  }

  .LearnImageTop img {
    height: 5vw;
    width: 5vw;
  }

  .ShraddhaAcademyText h2 {
    font-size: 2.5vw;
    letter-spacing: 0.1vw;
  }

  .ShraddhaAcademyText p {
    font-size: 1.5vw;
    margin: 0vw 0vw 0vw 0vw;
    padding: 0vw;
  }

  .ShraddhaAcademyText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .AcademyTopIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 8vw;
  }

  .StudentsTrainedTop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.5vw;
  }

  .StudentsTrainedImg img {
    height: 4.5vw;
    width: 4.5vw;
    margin: 0vw 0vw 0vw 0vw;
  }

  .StudentsTrainedText h2 {
    font-size: 2vw;
    margin: 0vw 1.2vw 0vw 0vw;
  }

  .StudentsTrainedText p {
    font-size: 1.2vw;
  }

  .LegacyInBusinessTop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.5vw;
  }

  .LegacyInBusinessTop img {
    height: 4vw;
    width: 4vw;
    margin: 0vw 0vw 0vw 0vw;
  }

  .LegacyInBusinessTop h2 {
    font-size: 2vw;
    margin: 0vw 3vw 0vw 0vw;
  }

  .LegacyInBusinessTop p {
    font-size: 1.2vw;
  }

  .JobPlacement {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1vw;
  }

  .JobPlacement img {
    height: 4vw;
    width: 4vw;
    margin: 0vw 0vw 0vw 0vw;
  }

  .JobPlacement h2 {
    font-size: 2vw;
    margin: 0vw 3vw 0vw 0vw;
  }

  .JobPlacement p {
    font-size: 1.2vw;
  }


  .StudentsTrainedText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .LegacyInBusinessText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .JobPlacementText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* ====================== Certified Courses ====================== */

  .CertifiedCourses {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vw;
    margin: 3vw 0vw 0vw 0vw;
  }

  .CertifiedCourses h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.8vw;
  }

  .CardsBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .Card {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: row;
    height: 18vw;
    width: 42.8vw;
    margin: 0vw 2vw 4vw 2vw;
    /* gap: 3vw; */
  }

  .CardImage img {
    height: 16vw;
    width: 25vw;
    border-radius: 1vw 0vw 0vw 1vw;
    box-shadow: rgba(0, 0, 0, 0) 5px 5px 12px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }

  #TallyProfessional h1 {
    font-size: 2.35vw;
  }

  .CardText {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    /* border: 2px solid red; */
    height: 15.9vw;
    width: 30vw;
    box-shadow: rgba(0, 0, 0, 0.16) 5px 5px 12px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 0vw 0.15vw 0vw 2vw;
    border-radius: 0vw 1vw 1vw 0vw;
    }

    .CardText h1 {
      font-size: 2.5vw;
      margin: 0vw 0vw 0.5vw 0vw;
    }

    .CardText p {
      font-size: 1.2vw;
      font-weight: 500;
      margin: 0vw;
    }

    .CardText button {
      margin: 1vw 0vw 0vw 0vw;
      background-color: black;
      color: white;
      width: 8vw;
      height: 2.5vw;
      font-size: 1vw;
      font-weight: 700;
      border-radius: 2vw;
      cursor: pointer;
    }

    .CardText button:hover {
      background-color: white;
      color: black;
      transition: 0.2s;
    }

    /* ==================== Business Dev Course ===================== */

    .BusinessDevCourse {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
      margin: 4vw 0vw 0vw 0vw;
      /* gap: 3vw; */
    }

    .BusinessDevImg img {
      height: 20vw;
      width: 25vw;
      border-radius: 1.5vw 0vw 0vw 1.5vw;
      box-shadow: rgba(0, 0, 0, 0) 5px 5px 12px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }

    .BusinessDevText {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
      height: 20vw;
      width: 35vw;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      border-radius: 0vw 1.5vw 1.5vw 0vw;
      box-shadow: rgba(0, 0, 0, 0.16) 5px 5px 12px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
      padding: 0vw 0vw 0vw 3vw;
    }

    .BusinessDevTopStickers {
      display: flex;
      justify-content:space-between;
      align-items: center;
      flex-direction: row;
      width: 100%;
      margin: 1vw 0vw 0vw 0vw;
    }

    .BusinessDevNew {
      height: 3vw;
      width: 5vw;
    }

    .GuideToBusinessGrowth {
      height: 4vw;
      width: 15vw;
    }

    .BusinessDevTextBottom {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      width: 100%;
    }

    .BusinessDevTextBottom h1{
      font-size: 2vw;
      height: 2.5vw;
      font-weight: 700;
      margin: 0vw;
    }

    .BusinessDevTextBottom h6{
      font-size: 1.1vw;
      font-weight: 500;
      margin: 0.5vw 0vw 0vw 0vw;
    }

    .BusinessDevTextBottom button {
      margin: 1.2vw 0vw 0vw 0vw;
      background-color: #000;
      color: white;
      padding: 0.5vw 1vw 0.5vw 1vw;
      font-size: 1.1vw;
      font-weight: 700;
      border-radius: 2vw;
      cursor: pointer;
    }

    .BusinessDevTextBottom button:hover {
      background-color: white;
      color: black;
      transition: 0.25s;
    }

    /* ===================== Pop Up ===================== */

/* Pop-up Card Style */
.popup-card {
  display: none;
  padding: 0vw 0vw 0vw 4vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;
}

/* Pop-up Content */
.popup-content {
  background-color: #fff;
  padding: 0vw 2vw 2vw 2vw;
  width: 70%;
  /* max-width: 900px; */
  border-radius: 2vw;
  position: relative;
  font-family: Arial, sans-serif;
  height: 50vw;
  margin: Auto;
}

.close {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.close:hover {
  background-color: lightgray;
  transition: 0.5s;
}

.page-content {
  margin-top: 20px;
  text-align: center;
}

.close:hover {
  color: #000;
}

.card-title {
  font-size: 2.2vw;
  font-weight: bold;
  margin:0.6vw 0vw 0.3vw 0vw;
  text-align: center;
}

.CardDuration {
  font-size: 1.2vw;
  font-weight: bold;
  margin-bottom: 1vw;
  text-align: center;
}

.card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1vw 0vw 0vw 0vw;
  gap: 2vw;
}

.card-left, .card-right {
  width: 50%;
  /* height: 31vw; */
}

.card-right {
  border-left: 0.2vw solid red;
  padding-left: 2vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.card-right p {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-right ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0vw 0vw 0vw 2vw;
}

.card-left p, .card-left ul, .card-right p {
  font-size: 1vw;
  line-height: 1.6;
  color: #333;
}

.card-right ul {
  font-size: 1vw;
  line-height: 1.6;
  color: #333;
}

.CardMiddle {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}

.CardMiddle p {
  font-size: 2vw;
}

.CardMiddle li {
  font-size: 1.5vw;
}

.card-left ul {
  list-style-type: disc;
  padding-left: 2vw;
}

.enquiryBtn {
  width: 100%;
}

.enquiryBtn a {
  text-decoration: none;
}

.enquiryBtn button {
  margin: 0.5vw 0vw 0vw 0vw;
  padding: 0.7vw 1vw;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.8vw;
  cursor: pointer;
  display: block;
  width: fit-content;
  font-weight: 700;
}

.enquire-btn:hover {
  background-color: #333;
}

/* ==================== Book a free consultation ==================== */

.BookAFreeConsultation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  background-color:#E81C24;
  height: 5vw;
  margin: 9vw 0vw 0vw 0vw;
}

.BookAFreeConsultation h6 {
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2vw;
  padding: 0vw 0vw 0.5vw 0vw;
}

.BookAFreeConsultation button {
  background-color: white;
  color: #000;
  padding: 0.7vw 1.5vw 0.7vw 1.5vw;
  border-radius: 2vw;
  font-size: 1vw;
  font-weight: 600;
  border: 2px solid white;
  cursor: pointer;
}

.BookAFreeConsultation button:hover {
  background-color: antiquewhite;
  border: 2px solid antiquewhite;
  transition: 0.3s;
}

  /* ============================= Footer ============================ */

  footer {
    background-color: black;
    color: white;
    padding: 5vw 0vw;
  }
  
  .footermain {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .FooterLeft {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 40%;
    padding: 0vw 5vw 0vw 0vw;
}

  .FooterLeft img {
    height: 7vw;
    width: 15vw;
  }

  .FooterLeft h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6vw;
    font-weight: 500;
    margin: 1.5vw 0vw 0vw 0vw;
  }
  
  .FooterRight {
    height: 25vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }

  .SocialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2vw;
    margin: 3vw 0vw 0vw 0vw;
  }

  .SocialMedia img {
    height: 3vw;
    width: 3vw;
  }

  .footer-column li{
    text-decoration: none;
    list-style: none;
    margin: 0vw 0vw 0.5vw 0vw;
  }
  
  .footer-column {
    margin: 0vw 3vw 0vw 0vw;
  }
  
  .footer-column a {
    text-decoration: none;
    color: white;
    font-size: 1.2vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .footer-column h3 {
    font-size: 2vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  /* ======================== Media Queries ======================== */

  @media screen and (min-width: 1250px) {
    
  }

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

    .Dropdowncaret, .NavbarAcademy, .NavbarContactUs {
      display: none;
  }

    .menubar {
      display: inline-block;
    }

    .sidenav {
      margin-top: 8vw;
    }

    .navbar {
        justify-content: space-around;
        height: 12vw;
        width: 100vw;
    }

    .navbarsinfoLogo img {
      width: 15vw;
      height: 5vw;
    }

    .navbar a {
      font-size: 2.5vw;
    }

    .InfiniteSolutions img {
      width: 5vw;
      height: 3vw;
    }

    .NavbarPhoneNo {
      padding-bottom: 1vw;
    }

    .NavbarPhoneNo a {
      font-size: 2.2vw;
    }

    .NavbarBookADemo button {
      height: 6.5vw;
      width: 20vw;
      font-size: 2vw;
      margin: 0vw 1vw 0vw 0vw;
    }

    /*  */

    .AcademyTopSection {
      margin: 13vw 0vw 0vw 0vw;
      height: 30vw;
      gap: 5vw;
    }

    .AcademyTopIcons {
      gap: 2vw;
    }

    .LearnImageTop img {
      height: 8vw;
      width: 10vw;
    }

    .ShraddhaAcademyText h2 {
      font-size: 4.5vw;
    }

    .ShraddhaAcademyText p {
      font-size: 3vw;
    }

    .StudentsTrainedImg img {
      height: 8vw;
      width: 8vw;
    }

    .LegacyInBusinessTop img {
      height: 8vw;
      width: 8vw;
    }

    .StudentsTrainedText h2 {
      font-size: 3vw;
      font-weight: 600;
    }

    .StudentsTrainedText p {
      font-size: 2.2vw;
      font-weight: 700;
    }

    .LegacyInBusinessTop h2 {
      text-align: left;
      font-size: 3vw;
      font-weight: 600;
    }

    .LegacyInBusinessTop p {
      font-size: 2.2vw;
      font-weight: 700;
    }

    .JobPlacement h2 {
      font-size: 3vw;
      font-weight: 600;
    }

    .JobPlacement p {
      font-size: 2.2vw;
      font-weight: 700;
    }

    .JobPlacement img {
      height: 8vw;
      width: 8vw;
    }

    .StudentsTrainedTop {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: row;  
    }

    .LegacyInBusinessText {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;  
    }

    .JobPlacement {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: row;  
    }

    .JobPlacementText {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;  
    }

    /*  */

    .close {
      position: absolute;
      top: 0vw;
      right: 2vw;
      color: #aaa;    
      font-size: 8vw;
    }

    .card-title {
      font-size: 5vw;
    }

    .CardDuration {
      font-size: 3vw;
    }

    .card-left p {
      font-size: 3vw;
    }

    .card-left li {
      font-size: 2vw;
      margin: 0vw;
      padding: 0vw;
      font-weight: 600;
    }

    .card-right p {
      font-size: 3vw;
    }

    .card-right li {
      font-size: 2vw;
      margin: 0vw;
      padding: 0vw;
      font-weight: 600;
    }

    .enquiryBtn button {
      font-size: 2.3vw;
      border-radius: 1vw;
      margin: 2vw 0vw 0vw 0vw;
    }

    .CardMiddle {
      justify-content: flex-start;
      align-items: flex-start;
      margin: 5vw 0vw 0vw 0vw;
    }

    .CardMiddle p {
      font-size: 4vw;
    }

    .CardMiddle li {
      font-size: 4vw;
    }


    /*  */

    .CertifiedCourses {
      margin: 3vw 0vw 15vw 0vw;
    }

    .CertifiedCourses h1 {
      font-size: 6vw;
    }

    /*  */

    .Card {
      width: 90vw;
      margin: 0vw 0vw 28vw 0vw;
    }

    .CardsBox {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
      padding: 0vw 25vw;
    }

    .CardText {
      height: 35.9vw;
      width: 105vw;
      border-radius: 0vw 2vw 2vw 0vw;
      /* padding: 0vw 0vw 0vw 0vw; */
    }

    .CardText h1 {
      font-size: 5vw;
      margin: 0vw 0vw 2vw 0vw;
    }

    #TallyProfessional h1 {
      font-size: 5vw;
    }

    .CardText p {
      font-size: 2.9vw;
      /* letter-spacing: 0.1vw; */
      padding: 0vw 1vw 0vw 0vw;
    }

    .CardText button {
      margin: 3vw 0vw 0vw 0vw;
      width: 20vw;
      height: 6.5vw;
      font-size: 2.5vw;
      font-weight: 700;
      border-radius: 2vw;
      padding: 1vw;
  }

    .CardImage img {
      height: 35.9vw;
      width: 70vw;
      border-radius: 2vw 0vw 0vw 2vw;
    }

    .BusinessDevImg img {
      height: 40vw;
      width: 35vw;
    }

    .BusinessDevText {
      height: 39.5vw;
      width: 58vw;
    }

    .BusinessDevNew {
      height: 7vw;
      width: 10vw;
    }

    .GuideToBusinessGrowth {
      height: 6vw;
      width: 20vw;
    }

    .BusinessDevTextBottom h1 {
      font-size: 3.5vw;
      margin: 1.5vw 0vw 0vw 0vw;
    }

    .BusinessDevTextBottom h6 {
      font-size: 2.5vw;
      margin: 2vw 2vw 0vw 0vw;
    }

    .BusinessDevTextBottom button {
      margin: 1.2vw 0vw 0vw 0vw;
      background-color: #000;
      color: white;
      padding: 1.2vw 2vw 1.2vw 2vw;
      font-size: 2.5vw;
      font-weight: 700;
      border-radius: 4vw;
      cursor: pointer;
  }

  /*  */

  .popup-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    padding: 5vw;
    width: 95%;
    max-width: 900px;
    border-radius: 10px;
    position: relative;
    font-family: Arial, sans-serif;
    margin: 8vw 0vw 0vw 0vw;
    height: 160vw;
  }


/* ========================= Book Free Consultation ========================== */

    .BookAFreeConsultation {
      padding: 4vw 10vw 20vw 10vw;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .BookAFreeConsultation h6 {
      font-size: 4vw;
      margin: 0vw;
      padding: 0vw;
      text-align: center;
    }

    .BookAFreeConsultation button {
      height: 8vw;
      width: 25vw;
      font-size: 2.5vw;
      color: black;
      border-radius: 5vw;
      margin: 0vw;
      padding: 0vw;
    }

    .footermain {
      width: 100%;
    }
    .FooterLeft {
      width: 35%;
    }
    .FooterRight {
      width: 65%;
    }
    .SocialMedia img {
      height: 4vw;
      width: 4vw;
    }
    .footer-column ul {
      height: 4vw;
    }
    .footer-column a {
        font-size: 2vw;
    }
    .footer-column h3 {
        font-size: 3vw;
        margin: 0vw;
        padding: 0vw;
    }
    .footer-column li {
        margin: 0vw 0vw 0vw 0vw;
        padding: 0vw;
        height: 4vw;
    }
  
  }