* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.nav-locked {
  overflow: hidden;
}

/* ---- NAV ---- */
nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 29px 20px 10px 20px;
  font-family: public sans;
  background-color: #083105;
  position: sticky;
  top: 0;
  z-index: 20;
  gap: 24px;
}

.brandWrap {
  display: flex;
  align-items: center;
}

.navToggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  justify-content: center;
  align-items: center;
}

.navToggle:hover,
.navToggle:focus-visible {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
}

.navToggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navToggle span:nth-child(1) {
  top: 16px;
}
.navToggle span:nth-child(2) {
  top: 22px;
}
.navToggle span:nth-child(3) {
  top: 28px;
}

.navToggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navToggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navToggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.logoSecondary {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navContains {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navContains button:not(:last-child) {
  font-weight: 100;
  font-size: 16px;
  background-color: transparent;
  border: none;
  letter-spacing: -0.01em;
  color: #89939e;
}

.navContains button:not(:last-child):hover {
  color: white;
  cursor: pointer;
}

.navContains button:last-child {
  font-family: "Public Sans", sans-serif;
  background-color: #c4e890;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  padding: 12px 24px;
  border: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.navContains button:last-child:hover {
  transform: scale(1.05);
  /* background-color: #7fc204;  */
}

/* nav end */

/* ------ Hero ------ */

.hero {
  background-color: #083105;
  display: flex;
  height: 680px;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  position: relative;
  /* border: solid 2px red; */
}

.heroDiv {
  width: 100%;
  max-width: 65%;
  height: 30vh;
  margin-top: 10px;
  text-align: center;
  position: relative;
  /* border: solid 2px red; */
}

.heroDivH {
  width: 100%;
  max-width: 55%;
  height: 30vh;
  margin-top: 10px;
  text-align: center;
  position: relative;
  /* border: solid 2px red; */
}

.headingLang {
  margin-top: 0px;
  text-align: center;
}

.headingLang h1 {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 3.5vw; /* Maintain original size */
  color: #ffffff; /* Change to white */
  margin-bottom: 0.5rem;
}

.headingLang p {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  color: #ffffff; /* Change to white */
  margin: 0;
  line-height: 1.4;
}

.heroDivH {
  width: 100%;
  max-width: 55%;
  height: 30vh;
  margin-top: 1rem; /* Adjusted to match second page spacing */
  text-align: center;
  position: relative;
}

.heroDivH h1 {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 3.3vw; /* Maintain original size */
  color: #ffffff; /* Change to white */
  margin-bottom: 0.5rem;
}

.heroDivH p {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  color: #ffffff; /* Change to white */
  margin: 0;
  line-height: 1.4;
}

.heroDiv img {
  width: 100%;
  position: relative;
  bottom: -1vw;
}

/* hero end */

/*------- mid section --------------- */
.midSection {
  padding-top: calc(30vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.42vw;
}

.midPara {
  width: 100%;
  max-width: 53%;
  text-align: center;
}

.midPara p {
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.25vw;
  color: #525252;
  text-align: left;
}

/* mid images */
.midImges {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 200px; */
  /* border: solid 1px red; */
}

.imgFirstDiv {
  background-image: url(../img/Decoration.svg) !important;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  background-position: -50% 26%;
  background-size: 55% 70%;
  background-repeat: no-repeat;
}

.imgFirstDiv img {
  width: 26vw;
}

.imgFirstDiv div {
  width: 34vw;
}

.imgText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imgText p {
  font-family: "Public Sans";
  font-weight: 300;
  font-size: 0.9vw;
  color: #525252;
  line-height: 1.25vw;
}

.imgText h1 {
  font-family: public sans;
  font-weight: 800;
  font-size: 2.5vw;
  line-height: 3vw;
  color: #5fa777;
}

.imgText h1 span {
  color: #13131a;
  font-weight: 400;
}

.imgSecDiv {
  background-image: url(../img/Decoration.svg) !important;
  width: 100%;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  background-position: 132% 5%;
  background-size: 40% 20%;
  background-repeat: no-repeat;
  overflow: visible;
}

.imgSecDiv img {
  width: 26vw;
}

.imgSecDiv div {
  width: 34vw;
}

.img {
  background-image: url(../img/bigDot.svg);
  background-repeat: no-repeat;
  background-position: 80% 92%;
  background-size: 10vw;
  overflow: visible;
  padding-bottom: 5.42vw;
}

/* -----------mid end -------- */

/* ----------- future ----------- */

.futureDiv {
  margin-top: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* border: solid 2px red; */
}

.futureText {
  width: 39vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  /* border: solid 2px red; */
}

.futureText p {
  font-family: "Public Sans";
  font-weight: 300;
  /* font-size: 0.83vw; */
  font-size: 14px;
  color: #525252;
}

.futureText h1 {
  font-family: public sans;
  font-weight: 800;
  font-size: 40px;
  line-height: 2.5vw;
  color: #5fa777;
}

.futureText h1 span {
  color: #13131a;
  font-weight: 400;
}

.futureWrap {
  /* border: solid 2px green; */
  width: 85vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  margin-top: 20px;
}

/* ---------- tiny box ------------ */

.box {
  width: 350px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  padding-left: 30px;
  background-color: #f3fff7;
  border: 1px solid #dcffe8;
  border-radius: 30px;
}

.boxHead {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1vw;

  width: 100%;
}

.boxHead img {
  width: 50px;
}

.boxHead h1 {
  font-family: public sans;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
}

.box p {
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 16px;
  color: #6e6e73;
}

/* ---------- tiny box end */

/* ----------- future end ----------- */

/* ----------- Progress ----------- */

.progressText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.futureText button {
  background-color: black;
  color: white;
  width: 320px;
  border-radius: 50px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.5s;
  box-sizing: border-box;
  margin-top: 8px;
}

.progressImg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/blurDot1.svg), url(../img/blurDot2.svg) !important;
  background-position: -7.33vw -70%, calc(90% + 8.33vw) center;
  background-repeat: no-repeat;
  background-size: contain;
}

.progressImg :last-child {
  width: 62vw;
}

.progressImg :first-child {
  margin-left: 450px;
}

/* ----------- Progress end ----------- */

/* ----------- curve image ----------- */

.curveImg {
  /*background-image: url(../img/Rectangle.png);*/
  margin-top: 150px;
  /* margin-bottom: 100px; */
  width: 100%;
  height: auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  /* border: solid 1px red; */
  background-position: center;
  overflow: visible;
}

.curveImg p {
  color: black;
  font-weight: 400;
  font-size: 20px;
  font-family: "Public Sans", sans-serif;
  text-align: center;
  /* border: solid 1px red; */
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 70px;
}

.curveImg div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center; /* Changed from left to center */
  align-items: center;
  gap: 1.5vw;
}
.curveImg h1 {
  font-family: public sans;
  font-weight: 800;
  font-size: 40px;
  line-height: 2.5vw;
  color: black;
  margin-bottom: 50px;
}

.partnerimg {
  width: auto; /* Adjusted to allow natural image widths */
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-right: 40px;
  margin-left: 40px;
}
/* ----------- curve image end ----------- */
/* ----------- semi footer ----------- */
.semifooter {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* margin-bottom: 200px; */
  /* border: solid 1px red; */
}

.semifooterText {
  /* border: solid 2px red; */
  width: 29vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 24px;
}

.semifooterText h1 {
  font-family: "Public Sans";
  font-weight: 500;
  font-size: 2.29vw;
  color: #13131a;
  /* margin-bottom: 20px; */
}

.semifooterText h1 span {
  color: #5fa777;
  font-weight: 800;
}

.semifooterText p {
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 16px;
  color: #6e6e73;
}

.semifooterText button {
  background-color: #5fa777;
  color: white;
  width: 165px;
  border-radius: 50px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.5s, transform 0.5s;
  margin-top: 8px;
  border: none;
}

.semifooterText button:hover {
  transform: scale(1.05);
  background-color: #4a8b61;
}

.semifooterBox {
  /* border: solid 2px yellow; */
  width: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* ----------- semi footer end ----------- */

/* ---------- footer ----------- */

.footer {
  background-color: #083105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 40px; */
  /* padding: 40px 0px; */
  margin-top: 180px;
  position: relative;
  /* margin-bottom: 100px; */
  padding-bottom: 10px;
}

.footer h1 {
  font-family: "public sans";
  color: white;
  width: 50vw;
  font-weight: 700;
  font-size: 3vw;
  position: relative;
  top: -2.8vw;
  text-align: center;
}

.footerMidText {
  width: 66.75vw;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.footerMid {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.footerMid img {
  width: 70px;
  margin-bottom: 10px;
}

.footerMidText p {
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.footerMidText :first-child {
  width: 350px;
}

.footerBot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  color: #737372;
  border-top: solid 1px #ffffff;
  border-radius: 24px;
  padding: 20px 40px;
}

.footerBot p {
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 14px;
}

.footerBot img {
  width: 28px;
}

.footerBot div {
  display: flex;
  gap: 16px;
}
.partners-logos {
  width: 52vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5vw;
}

.partners-logos img {
  width: 15%; /* Adjust as needed for logo sizes */
}

.partners-descriptions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}

.partner-desc {
  width: 30%;
  text-align: left;
}

.partner-desc h3 {
  font-family: "Public Sans", sans-serif;
  font-size: 1;
  margin-bottom: 10px;
  color: #5fa777;
}

.partner-desc p {
  font-family: "Public Sans", sans-serif;
  font-size: 1;
  line-height: 1.5;
  color: #525252;
}

.partner-desc a {
  color: #5fa777;
  text-decoration: none;
}

.partner-desc a:hover {
  text-decoration: underline;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  font-weight: 100;
  font-size: 16px;
  background-color: transparent;
  border: none;
  letter-spacing: -0.01em;
  color: #89939e;
  font-family: "Public Sans", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.dropbtn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn,
.dropbtn:focus-visible {
  color: white;
  outline: none;
}

.dropdown-open .dropbtn::after {
  transform: rotate(-135deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-open .dropdown-content,
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------
  1. **Nav**: Enhanced mobile navigation with a toggle button and improved dropdowns.
  2. **Hero**: No changes.
  3. **Mid Section**: No changes.
  4. **Future Section**: No changes.
  5. **Progress Section**: No changes.
  6. **Curve Image**: No changes.
  7. **Semi Footer & Footer**: No changes.
  8. **Responsive**: Major improvements for better mobile experience.
  ------ */

#home {
  padding-top: 10px; /* Adjust this value if the nav height differs */
}

/* Responsive overrides */
@media (max-width: 1200px) {
  nav {
    padding: 20px 32px 16px 32px;
  }
  .heroDiv,
  .heroDivH {
    max-width: 75%;
  }
  .midPara {
    max-width: 68%;
  }
  .imgFirstDiv div,
  .imgSecDiv div {
    width: 44vw;
  }
  .imgText h1 {
    font-size: 2.1vw;
    line-height: 2.6vw;
  }
  .imgText p {
    font-size: 1.05vw;
    line-height: 1.6vw;
  }
}

@media (max-width: 992px) {
  nav {
    justify-content: center;
    gap: 16px;
    padding: 18px 24px 12px;
  }
  .logo {
    gap: 12px;
  }
  .navContains {
    gap: 18px;
  }
  .heroDiv,
  .heroDivH {
    max-width: 85%;
  }
  .midSection {
    padding-top: 40px;
  }
  .imgFirstDiv,
  .imgSecDiv {
    gap: 4vw;
  }
  .imgText h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .imgText p {
    font-size: 16px;
    line-height: 1.6;
  }
  .box {
    width: 45%;
    min-width: 280px;
  }
  .futureText {
    width: 70vw;
  }
  .futureText h1 {
    font-size: 32px;
    line-height: 1.4;
  }
  .progressImg :first-child {
    margin-left: 0;
    width: 40vw;
  }
  .progressImg :last-child {
    width: 80vw;
  }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    gap: 12px;
  }

  .brandWrap {
    flex: 1;
  }

  .navToggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .logoSecondary {
    order: 3;
    margin-left: 0;
    margin-top: 12px;
  }

  .logoSecondary img {
    width: 48px;
  }

  .navContains {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background-color: #083105;
    border-radius: 18px;
    padding: 18px 16px 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  }

  .navContains.nav-open {
    display: flex;
    animation: navDrop 0.3s ease forwards;
  }

  .navContains a,
  .navContains .dropdown {
    width: 100%;
  }

  .navContains a > button {
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 28px;
    background-color: #c4e890;
    color: #06230b;
    box-shadow: 0 14px 30px rgba(150, 252, 4, 0.22);
  }

  .navContains a:last-child > button {
    text-align: center;
  }

  .navContains .dropdown > .dropbtn {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 28px;
    background-color: #c4e890;
    color: #06230b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(150, 252, 4, 0.22);
  }

  .navContains .dropdown > .dropbtn::after {
    border-right-color: #06230b;
    border-bottom-color: #06230b;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 18px;
    margin-top: 8px;
    background-color: rgba(6, 35, 11, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 10px 12px;
  }

  .dropdown-content a {
    color: #f6fff0;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .dropdown-content a:hover {
    background-color: rgba(150, 252, 4, 0.1);
  }

  .landing-page .midImges {
    padding: 0 20px;
  }

  .landing-page .imgText {
    padding: 0 10px;
  }

  .headingLang h1 {
    font-size: 32px;
  }
  .headingLang p {
    font-size: 15px;
  }
  .heroDivH h1 {
    font-size: 30px;
  }
  .heroDivH p {
    font-size: 15px;
  }
  .heroDiv {
    max-width: 90%;
  }
  .heroDiv img {
    width: 100%;
    margin-bottom: 22px;
  }
  .midPara {
    max-width: 85%;
  }
  .midPara p {
    font-size: 16px;
    line-height: 1.6;
  }
  .imgFirstDiv,
  .imgSecDiv {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-position: center;
  }
  .imgFirstDiv img,
  .imgSecDiv img,
  .img {
    width: 80vw;
  }
  .imgSecDiv div,
  .imgFirstDiv div {
    width: 100%;
  }
  .imgText {
    align-items: center;
  }
  .imgText h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .imgText p {
    font-size: 15px;
    line-height: 1.6;
  }
  .box {
    width: 90%;
    height: auto;
    padding: 24px;
    align-items: flex-start;
  }
  .boxHead {
    justify-content: flex-start;
  }
  .futureWrap {
    gap: 18px;
  }
  .futureText {
    width: 85vw;
  }
  .futureText h1 {
    font-size: 28px;
  }
  .futureText p {
    font-size: 15px;
  }
  .progressImg :last-child {
    width: 90vw;
  }
  .progressImg :first-child {
    display: none;
  }
  .semifooter {
    flex-direction: column;
    gap: 28px;
  }
  .semifooterText {
    width: 85vw;
    align-items: center;
    text-align: center;
  }
  .semifooterBox {
    width: 100%;
  }
  .curveImg {
    margin-top: 80px;
  }
  .curveImg h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  .curveImg p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .partnerimg {
    flex-wrap: wrap;
    gap: 40px;
  }
  .partner-desc {
    width: 100%;
  }
  .partners-descriptions {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer {
    margin-top: 120px;
    padding: 40px 20px;
  }
  .footer h1 {
    width: 90vw;
    font-size: 30px;
    top: -20px;
  }
  .footerMidText {
    flex-direction: column;
    gap: 18px;
  }
  .footerMidText :first-child {
    width: 100%;
  }
  .footerBot {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  .footerBot div:last-child {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .navToggle {
    width: 42px;
    height: 42px;
  }

  .navToggle span:nth-child(1) {
    top: 14px;
  }
  .navToggle span:nth-child(2) {
    top: 20px;
  }
  .navToggle span:nth-child(3) {
    top: 26px;
  }

  nav {
    padding: 12px 14px 10px;
  }

  .landing-page .midImges {
    padding: 0 16px;
  }

  .landing-page .imgText {
    padding: 0 6px;
  }

  .logo :first-child {
    width: 58px;
  }
  .logo :last-child {
    width: 48px;
  }
  .navContains {
    gap: 8px;
  }
  .navContains button:not(:last-child) {
    font-size: 13px;
  }
  .headingLang h1 {
    font-size: 26px;
  }
  .headingLang p {
    font-size: 14px;
  }
  .heroDivH h1 {
    font-size: 24px;
  }
  .heroDivH p {
    font-size: 14px;
  }
  .heroDiv img {
    margin-bottom: 18px;
  }
  .midSection {
    gap: 24px;
  }
  .imgText h1 {
    font-size: 24px;
  }
  .imgText p {
    font-size: 14px;
  }
  .box {
    width: 100%;
    border-radius: 20px;
  }
  .boxHead h1 {
    font-size: 18px;
  }
  .progressText .futureText button {
    width: 250px;
    font-size: 14px;
  }
  .footer h1 {
    font-size: 24px;
  }
  .footerMid img {
    width: 60px;
  }
  .footerMidText p {
    font-size: 14px;
    line-height: 1.5;
  }
  .footerBot p {
    font-size: 13px;
  }
  .footerBot img {
    width: 24px;
  }
}

@media (min-width: 769px) {
  .navContains {
    gap: 28px;
  }

  .navContains a > button {
    width: auto;
    padding: 0;
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    font-weight: 100;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .navContains a > button:hover,
  .navContains a > button:focus-visible {
    color: #ffffff;
    outline: none;
  }

  .navContains a:last-child > button {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    background-color: #96fc04;
    color: #06230b;
    box-shadow: none;
  }

  .navContains .dropdown {
    width: auto;
  }

  .navContains .dropdown > .dropbtn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    background-color: #c4e890;
    color: #06230b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: none;
  }

  .navContains .dropdown > .dropbtn::after {
    border-right-color: #06230b;
    border-bottom-color: #06230b;
  }

  .navContains .dropdown:hover > .dropbtn,
  .navContains .dropdown > .dropbtn:focus-visible {
    color: #06230b;
    background-color: #8ae503;
  }
}
