* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}

.navbarMobile {
  display: none;
}

.desktopNavbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 4rem 10px 4rem;
  align-items: center;
  font-weight: 500;
}

.Logo img {
  height: 65px;
  width: 65px;
}

.navElements {
  display: flex;
  column-gap: 6rem;
  align-items: center;
  font-size: 20px;
}

.navElements ul {
  list-style: none;
  display: flex;
  column-gap: 5rem;
  margin-bottom: 0;
}

.navElements ul li a {
  text-decoration: none;
  color: #000033;
  font-size: 20px;
  font-weight: 400;
}

.navElements a {
  text-decoration: none;
}

.navElements ul li:nth-child(2) a i {
  padding-left: 15px;
  color: #525252;
}

.dropdown .dropdown-menu {
  display: none
}

.dropdown .dropdownButton {
  border: none;
  background-color: transparent;
  color: #000033 !important;
  outline: none !important;
  box-shadow: none !important;
  font-weight: 400;
  font-size: 20px;
  padding: 0;
}

.navButton {
  padding: 8px 1.2rem;
  display: flex;
  column-gap: 15px;
  align-items: center;
  background-color: #6378e9;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.navButton:hover{
  text-decoration: none;
  color: white;
}

.navLink::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #6378e9;
  transition: width .4s ease-in;
}

.navElements li.activeMenuItem {
  border-bottom: 3px solid #6378e9;
  font-weight: 600 !important;
}

.navElements li.activeMenuItem .navLink {
  font-weight: 600 !important;
}

.navElements li.activeMenuItem .navLink::after {
  content: none;
}

.navLink {
  content: '';
  transition: none;
}

.navLink:hover {
  font-weight: 600;
}

.navLink:hover::after {
  width: 100%;
}

.welcomeSectionMobile {
  display: none;
}

.welcomeSection {
  display: flex;
  background-image: url("../images/bannerbackground.svg");
  height: 88vh;
  background-repeat: no-repeat;
  background-size: 128%;
  align-items: center;
  padding: 5rem 8rem;
}

.welcomeSection .welcomeInfo {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.welcomeInfo .welcomeText {
  font-size: 64px;
  width: 50%;
  color: white;
}

.welcomeInfo .introPara {
  color: white;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  width: 80%;
}

.welcomeInfo .startButton {
  width: 200px;
  padding: 10px;
  background-color: transparent;
  color: white;
  font-size: 22px;
  border: 1px solid;
  border-radius: 10px;
  cursor: pointer;
}

.startButton:hover {
  background-color: white;
  color: #6378e9;
  transition: .3s all linear;
}

.featureSection {
  margin-top: 4rem;
  margin-inline: 5rem;
  display: flex;
  column-gap: 5rem;
  align-items: center;
}

.featureLeftSection {
  width: 40%;
  position: relative;
}

swiper-slide .carouselCardContainer {
  display: flex;
  justify-content: center;
}

.featureLeftSection swiper {
  height: 480px !important;
}

.swiper-pagination-bullets {
  display: none;
}

.featureCardData {
  margin-top: 1rem;
  text-align: center;
}

.featureCardData h3 {
  font-weight: 600;
  color: #262626;
}

.featureCardData p {
  margin-top: 1rem;
  line-height: 26px;
  color: #272d3ecc;
}

.featureLeftSection .analyticSection {
  background-color: #6378e9;
  color: white;
  display: flex;
  padding: 10px;
  margin-top: 3rem;
  justify-content: space-between;
  border-radius: 25px;
}

.analyticSection .rowData {
  text-align: center;
  padding: 1rem;
  flex: auto;
}

.analyticSection .rowData h2 {
  font-size: 28px;
  font-weight: 700;
}

.analyticSection .rowData p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
}

.analyticSection .rowData:nth-child(2) {
  text-align: center;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 1rem;
}

.featureRightSection {
  padding-inline: 4rem;
  display: flex;
  flex-direction: column;
}

.featureRightSection .headingTitle {
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #6378e9;
  font-size: 20px;
}

.headingTitle h4 {
  font-size: 22px;
  color: #6378e9;
  position: relative;
  margin-left: 3rem;
}

.headingTitle h4::before {
  content: " ";
  display: block;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: -45px;
  background: #6378e9
}

.featureRightContainer {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.featureRightContainer .featureHeading {
  font-size: 34px;
  font-weight: 500;
  line-height: 48px;
}

.featureRightContainer.featureCardContainer {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.featureCard {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.featureCard .featureData {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}

.featureData i {
  background-color: #6378e9;
  color: white;
  width: fit-content;
  font-size: 15px;
  padding: 5px 5px;
  border-radius: 15px;
  margin-inline: auto;
}

.featureData p {
  color: #696984;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.featureData span {
  color: #6378e9;
  font-weight: 500;
  margin-right: 8px;
}

.serviceProvidedSection {
  margin-top: 5rem;
  margin-inline: 4rem;
}

.serviceProvidedSection .headingTitle {
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #6378e9;
  font-size: 20px;
}

.serviceProvidedSection .cardContainer {
  margin-top: 10px;
}

.cardContainer p {
  font-size: 35px;
  font-weight: 500;
}

.cardContainer .cardSection {
  display: flex;
  column-gap: 2rem;
  margin-top: 3rem;
}

.cardSection .card {
  justify-content: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  box-shadow: 0px 8.82px 52.94px 0px #262d7614;
  text-align: center;
  padding: 1rem;
  height: 400px;
}

.card i {
  background: #6378e9;
  color: white;
  width: fit-content;
  font-size: 60px;
  padding: 25px 25px;
  border-radius: 55px;
  margin-inline: auto;
}

.card .bulbContainer {
  background-color: #6378e9;
  margin-inline: auto;
  border-radius: 0px;
  padding: 2rem;
  border-radius: 75px;
  width: 108px;
  height: 110px;
}

.card h3 {
  color: #2b2b2b;
  font-size: 26px;
  font-weight: 500;
}

.card p {
  color: #696984;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.lastServiceProvidedSection {
  margin: 5rem 4rem 4rem 4rem;
}

.lastServiceProvidedSection .headingTitle {
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #6378e9;
  font-size: 20px;
}

.lastServiceProvidedSection .cardContainer {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-bottom: 5rem;
}

.cardContainer .sectionIntro {
  font-size: 20px;
  color: #272d3ecc;
}

.lastServiceProvidedSection .servicesVerticalCardSection {
  margin-top: 1rem;
  display: flex;
  column-gap: 5rem;
  justify-content: space-evenly;
}

.servicesVerticalCardSection img {
  height: 375px;
}

.servicesVerticalCardSection .verticalCardSection {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin-top: 2rem;
}

.verticalCardSection .verticalCard {
  display: flex;
  column-gap: 1rem;
}

.verticalCard i {
  background-color: #6378e9;
  color: white;
  height: fit-content;
  font-size: 22px;
  padding: 20px;
  border-radius: 5px;
}

.verticalCard .cardContent {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.cardContent .cardTitle {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cardContent .cardData {
  font-size: 18px;
  color: #393939;
  font-weight: 400;
}

.footer {
  background-color: #6378e9;
  color: white;
  padding: 4rem;
}

.footer .footerContainer {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding-block: 3rem;
}

.footerContainer .copyRightSection {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.footerMainContent {
  display: flex;
  column-gap: 5rem;
}

.footerContainer .mainContentSection {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.mainContentSection h3 {
  margin: 0;
  font-size: 25px;
}

.mainContentSection .mainContent {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.mainContent p {
  margin: 0;
  font-size: 15px;
}

.footerContainer .footerLastSection {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}

.footerLastSection .findUsSection {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.findUsSection .findUsStatement {
  margin: 0;
  font-size: 25px;
}

.findUsSection .socialMediaIcons {
  display: flex;
  column-gap: 2rem;
}

.socialMediaIcons a {
  font-size: 15px;
  color: white;
  font-weight: 100;
}

.footerLastSection .newsLetterSection {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.newsLetterSection h3 {
  margin: 0;
  font-size: 25px;
}

.newsLetterSection .getUpdateBox {
  display: flex;
  column-gap: 1rem;
}

.emailSection {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background-color: white;
  column-gap: 10px;
}

.emailSection i {
  font-size: 15px;
  color: #94a3b8;
}

.emailSection input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
}

.getUpdateBox button {
  padding: 10px 15px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 4px;
  display: flex;
  column-gap: 1rem;
  align-items: center;
}

.bottomFooter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bottomFooter p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.bottomFooter p a {
  color: #ffffff;
}

.footerElements {
  margin-top: 2rem;
}

.footerElements ul {
  list-style: none;
  display: flex;
  column-gap: 3rem;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.footerElements ul li a {
  text-decoration: none;
  color: white;
}

.footerMobile {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 520px) {
  .desktopNavbar {
    display: none;
  }

  .navbarMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .navbarMobile .dropdown .dropdownButton {
    font-size: 15px;
  }

  .navbarMobile .hamburgerNav {
    position: fixed;
    background-color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    right: -200px;
    z-index: 1;
    height: 100vh;
    top: 0;
    transition: .3s all linear;
    box-shadow: 0px 4px 40px 0px #00000033;
  }

  .hamburgerNav.show {
    right: -1px;
  }

  .hamburgerNav button {
    background-color: transparent;
    border: none;
  }

  .hamburgerNav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }

  .hamburgerNav ul a {
    text-decoration: none;
    color: #000033;
  }

  .hamburgerNav .closeMark {
    text-align: end;
  }

  .closeMark i {
    font-size: 25px;
    color: #6378e9;
    margin-right: 5px;
  }

  ul li a .loginButton {
    padding: 8px 12px;
    display: flex;
    column-gap: 12px;
    align-items: center;
    background-color: #6378e9;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
  }

  .loginButton i {
    font-size: 15px;
    color: white;
  }

  .navbarMobile .hamburger {
    font-size: 30px;
    color: #6378e9;
    position: relative;
  }

  .welcomeSection {
    display: none;
  }

  .welcomeSectionMobile {
    display: flex;
    flex-direction: column;
    background-image: url(../images/bannerbackground.svg);
    background-repeat: no-repeat;
    align-items: center;
    background-size: 600%;
    padding: 2rem;
    text-align: center;
    row-gap: 2rem;
  }

  .welcomeSectionMobile .welcomeImg {
    height: 250px;
  }

  .welcomeSectionMobile .welcomeInfo {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }

  .welcomeInfo .welcomeText {
    font-size: 21px;
    width: 100%;
    color: white;
  }

  .welcomeInfo .introPara {
    font-size: 18px;
    line-height: 28px;
    width: 100%;
  }

  .welcomeInfo .startButton {
    width: 150px;
    padding: 10px;
    color: white;
    font-size: 15px;
  }

  .featureSection {
    margin: 3rem 2rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }

  .featureLeftSection {
    width: 100%;
  }

  swiper-slide .carouselCardContainer {
    height: 165px;
    margin-inline: 3.2rem;
  }

  swiper-container swiper-button-next svg {
    height: 25px;
  }

  .featureLeftSection .analyticSection {
    padding: 10px 0px;
    margin-top: 2rem;
    border-radius: 15px;
    align-items: center;
  }

  .analyticSection .rowData h2 {
    font-size: 15px;
    font-weight: 500;
  }

  .analyticSection .rowData p {
    font-size: 15px;
    font-weight: 500;
  }

  .analyticSection .rowData {
    padding: 0px;
  }

  .analyticSection .rowData:nth-child(2) {
    padding-inline: 0px;
  }

  .analyticSection .rowData:nth-child(3) {
    width: 40px;
    padding: 2px;
  }

  .headingTitle h4::before {
    width: 15px;
    left: -30px;
  }

  .featureRightSection {
    padding-inline: 0px;
  }

  .headingTitle h4 {
    font-size: 15px;
    margin-left: 2rem;
  }

  .featureRightContainer .featureHeading {
    font-size: 16px;
    line-height: 22px;
  }

  .featureCard {
    row-gap: 2rem;
  }

  .featureData p {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    font-size: 14px;
    line-height: 20px;
  }

  .featureData span {
    font-size: 15px;
  }

  .featureCard .featureData {
    column-gap: 1rem;
    align-items: baseline;
  }

  .featureData i {
    font-size: 8px;
  }

  .serviceProvidedSection {
    margin: 2rem;
  }

  .cardContainer p {
    font-size: 14px;
    line-height: 22px;
  }

  .cardContainer .cardSection {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 1rem;
  }

  .cardSection .card {
    row-gap: 1rem;
    height: 245px;
  }

  .card i {
    font-size: 32px;
    padding: 20px 20px;
  }

  .card h3 {
    font-size: 15px;
  }

  .card .bulbContainer {
    padding: 23px 0px;
    border-radius: 40px;
    width: 70px;
    height: 72px;
  }

  .bulbContainer img {
    height: 30px;
  }

  .lastServiceProvidedSection {
    margin: 2rem;
  }

  .lastServiceProvidedSection .cardContainer {
    row-gap: 1rem;
    margin-bottom: 0px;
  }

  .cardContainer .sectionIntro {
    font-size: 14px;
  }

  .lastServiceProvidedSection .servicesVerticalCardSection {
    margin-top: 2rem;
    flex-direction: column;
    row-gap: 1rem;
  }

  .servicesVerticalCardSection img {
    height: 225px;
  }

  .cardContent .cardTitle {
    font-size: 15px;
  }

  .cardContent .cardData {
    font-size: 14px;
    line-height: 20px;
  }

  .servicesVerticalCardSection .verticalCardSection {
    row-gap: 2rem;
  }

  .verticalCard i {
    font-size: 15px;
    padding: 10px;
  }

  .footer {
    display: none;
  }

  .footerMobile {
    display: block;
  }

  .footerMainContent .mainContentSection {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }

  .footerMobile .footerMobileContainer {
    background-color: #6378e9;
    color: white;
    padding: 2rem;
    flex-direction: column;
    display: flex;
    row-gap: 2rem;
  }

  .footerMobileContainer .followLogoSection {
    display: flex;
    justify-content: space-between;
  }

  .followLogoSection .copyRightSection {
    width: min-content;
  }

  .followLogoSection .copyRightSection img {
    width: 130px;
  }

  .findUsSection {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }

  .findUsSection .findUsStatement {
    font-size: 15px;
  }

  .findUsSection .socialMediaIcons {
    display: flex;
    column-gap: 1rem;
  }

  .footerMainContent {
    margin-block: 2rem;
    column-gap: 0rem;
    justify-content: space-between;
  }

  .footerMainContent .mainContentSection h3 {
    font-size: 18px;
  }

  .footerMobile .newsLetterSection h3 {
    font-size: 18px;
  }

  .mainContent p {
    font-size: 13px;
  }

  .newsLetterSection h3 {
    margin-bottom: 10px;
  }

  .emailSection {
    column-gap: 4px;
    padding: 6px;
  }

  .getUpdateBox button {
    font-size: 12px;
    white-space: nowrap;
    column-gap: 10px;
    padding: 6px
  }

  .footerMobile .footerElements {
    background-color: #6378e9;
    color: white;
    padding-block: 2rem;
    margin-top: 0;
    border-block: 1px solid white;
  }

  .footerElements ul li a {
    font-size: 15px;
  }

  .bottomFooterMobile p{
    margin-top: 1rem;
  }
  .bottomFooterMobile p a {
    color: #ffffff;
  }

  .footerElements ul {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: auto auto;
    grid-gap: 5px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1100px) {

  .navElements {
    column-gap: 3rem;
    font-size: 15px;
  }

  .navElements ul {
    column-gap: 4rem;
  }

  .navElements ul li a {
    font-size: 16px;
}

.dropdown .dropdownButton {
  font-size: 16px;
}

  .navButton {
    font-size: 15px;
  }

  .welcomeSection {
    background-size: 170%;
    height: fit-content;
    padding: 2rem 4rem;
  }

  .welcomeInfo .welcomeText {
    font-size: 45px;
    width: 60%;
  }

  .welcomeInfo .introPara {
    font-size: 20px;
    line-height: 30px;
  }

  .welcomeInfo .startButton {
    font-size: 18px;
  }

  .featureLeftSection .analyticSection {
    padding: 5px;
  }

  .analyticSection .rowData h2 {
    font-size: 22px;
    font-weight: 600;
  }

  .analyticSection .rowData p {
    font-size: 12px;
    font-weight: 500;
  }

  .featureRightSection {
    padding: 3rem 2rem;
  }

  .featureRightSection .headingTitle {
    font-size: 15px;
  }

  .headingTitle h4 {
    font-size: 21px;
  }

  .featureRightContainer {
    margin-top: 15px;
  }

  .featureRightContainer .featureHeading {
    font-size: 22px;
    line-height: 30px;
  }

  .featureCard {
    row-gap: 1rem;
    margin-top: 8px;
  }

  swiper-slide img {
    height: 230px;
    width: 225px;
  }

  .featureData p {
    line-height: 25px;
    font-size: 15px;
  }

  .cardContainer p {
    font-size: 22px;
  }

  .card i {
    padding: 2rem;
    border-radius: 70px;
  }

  .card .bulbContainer {
    padding: 2.3rem 2rem;
    border-radius: 65px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 18px;
  }

  .lastServiceProvidedSection .cardContainer {
    margin-bottom: 2rem;
    row-gap: 1rem;
  }


  .lastServiceProvidedSection .servicesVerticalCardSection {
    align-items: center;
  }

  .servicesVerticalCardSection img {
    height: 350px;
  }

  .copyRightSection p {
    font-size: 11px;
  }

  .copyRightSection .grantLoungeLogo {
    height: 28px;
  }

  .copyRightSection .logoImg {
    height: 65px;
  }

  .footerMainContent {
    column-gap: 14px;
  }

  .mainContentSection h3 {
    font-size: 20px;
  }

  .findUsSection .findUsStatement {
    font-size: 20px;
  }

  .mainContentSection .mainContent {
    width: max-content;
  }

  .mainContent p {
    font-size: 14px;
  }

  .footer .footerContainer {
    column-gap: 1rem;
  }

  .footerLastSection h3 {
    font-size: 20px;
  }

  .newsLetterSection .getUpdateBox {
    column-gap: 10px;
  }

  .getUpdateBox .emailSection {
    padding: 10px 10px;
  }

  .getUpdateBox button {
    padding: 5px 10px;
    column-gap: 10px;
  }

  .bottomFooter p {
    font-size: 12px;
  }

  .footerElements ul {
    font-size: 15px;
    column-gap: 2rem;
  }

}

@media screen and (min-width: 1101px) and (max-width: 1200px) {

  .navElements {
    font-size: 18px;
  }

  .navButton {
    font-size: 15px;
  }

  .welcomeSection {
    background-size: 160%;
    height: fit-content;
  }

  .welcomeInfo .welcomeText {
    font-size: 44px;
    width: 60%;
  }

  .welcomeInfo .introPara {
    font-size: 20px;
    line-height: 30px;
  }

  .welcomeInfo .startButton {
    font-size: 20px;
  }

  .featureLeftSection .analyticSection {
    padding: 5px;
    margin-top: 2rem;
  }

  .analyticSection .rowData h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .analyticSection .rowData p {
    font-size: 12px;
    font-weight: 500;
  }

  .featureRightSection {
    padding: 3rem 2rem;
  }

  .featureRightSection .headingTitle {
    font-size: 15px;
  }

  .featureRightContainer {
    margin-top: 15px;
  }

  .featureRightContainer .featureHeading {
    font-size: 28px;
    line-height: 30px;
  }

  .featureCard {
    row-gap: 1rem;
  }

  swiper-slide img {
    height: 300px;
    width: 225px;
  }

  .featureData p {
    line-height: 28px;
  }

  .cardContainer p {
    font-size: 28px;
  }

  .card i {
    padding: 25px 25px;
    border-radius: 55px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 18px;
  }

  .copyRightSection p {
    font-size: 12px;
  }

  .footerMainContent {
    column-gap: 20px;
  }

  .mainContentSection h3 {
    font-size: 18px;
  }

  .mainContent p {
    font-size: 14px;
  }

  .footer .footerContainer {
    column-gap: 2rem;
  }

  .footerLastSection h3 {
    font-size: 18px;
  }

  .getUpdateBox button {
    padding: 5px 10px;
    column-gap: 10px;
  }

  .footerElements ul {
    font-size: 16px;
    column-gap: 2rem;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .navElements {
    font-size: 18px;
  }

  .navButton {
    font-size: 15px;
  }

  .welcomeSection {
    background-size: 142%;
    height: fit-content;
  }

  .welcomeInfo .welcomeText {
    font-size: 46px;
  }

  .welcomeInfo .introPara {
    font-size: 20px;
    line-height: 30px;
  }

  .featureLeftSection .analyticSection {
    padding: 5px;
  }

  .analyticSection .rowData h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .analyticSection .rowData p {
    font-size: 12px;
    font-weight: 500;
  }

  .featureRightSection {
    padding: 3rem 2rem;
  }

  .featureRightSection .headingTitle {
    font-size: 15px;
  }

  .featureRightContainer {
    margin-top: 15px;
    row-gap: 10px;
  }

  .featureRightContainer .featureHeading {
    font-size: 28px;
  }

  .featureCard {
    row-gap: 1.5rem;
    margin-top: 10px;
  }

  swiper-slide img {
    height: 300px;
    width: 260px;
  }

  .featureData p {
    line-height: 28px;
  }

  .cardContainer p {
    font-size: 28px;
  }

  .card i {
    padding: 25px 25px;
    border-radius: 55px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 18px;
  }

  .copyRightSection p {
    font-size: 12px;
  }

  .footerMainContent {
    column-gap: 2rem;
  }

  .mainContentSection h3 {
    font-size: 18px;
  }

  .mainContent p {
    font-size: 14px;
  }

  .footerLastSection h3 {
    font-size: 18px;
  }

  .footerElements ul {
    font-size: 18px;
  }
}