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

body {
  /* color: #333; */
  background: white;
  font-family: "Inter", sans-serif;
  width: 1440px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #f5f7fa;
  padding: 32px;
  position: sticky;
  top: -6px;
  left: 18px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -3px;
  margin-left: 104px;
  margin-top: -4px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1c8c48;
  position: relative;
  /* left: -53px; */
  right: 50px;
  top: 0px;
}
.logo img {
  width: 154px;
  height: 24px;
}

/* Navbar links */
nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  width: 100%;
  height: auto;
}
.nav-menu {
  margin-left: 34px;
  margin-bottom: 3px;
}

nav ul li a {
  text-decoration: none;
  color: #18191f;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #1c8c48;
}

/* Buttons in navbar */
.nav-btns a {
  text-decoration: none;
  padding: 8px 16px;
  /* border-radius: 5px; */
  font-weight: 500;
  margin-left: 10px;
}

.login {
  color: #4caf4f;
  border-radius: 6px;
}

.signup {
  background: #4caf4f;
  color: #fff;
  border-radius: 6px;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}
/* My hero section */
.hero-section{
  background-color: #F5F7FA;
}
.hero-container {
  display: flex;
  width: 1440px;
  padding: 96px 144px;
}
.hero-text-container {
  width: 657px;
}
.hero-text-container h1 {
  font-size: 64px;
  line-height: 76px;
  font-weight: 600;
  margin-top: 63px;
}
.hero-text-container span {
  color: #4caf4f;
}
.hero-text-container p {
  margin-top: 17px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
}
.hero-text-container button {
  width: 128px;
  height: 52px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  background-color: #4caf4f;
  gap: 10px;
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
}
.hero-img {
  width: 391px;
}
.hero-img img {
  width: 391px;
  margin-left: 103px;
}

/* Clients Section */
.clients {
  background: #fff;
  text-align: center;
  width: 1440px;
  padding: 50px 20px;
}

.clients h2 {
  font-size: 2.3rem;
  margin-top: -15px;
  font-weight: 600;
  color: #4d4d4d;
}

.clients p {
  color: #717171;
  margin-top: 7px;
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 137px;
  margin-top: 7px;
}

.client-logos img {
  width: 48px;
  height: auto;
  opacity: 0.8;
}

/* Community Section */
.community {
  background: #f9f9f9;
  width: 1440px;
  text-align: center;
  padding: 16px 20px;
}

.community h2 {
  font-size: 36px;
  font-weight: 600;
  /* margin-bottom: 10px; */
  line-height: 44px;
  color: #4d4d4d;
  width: 543px;
  /* height: 88px; */
  text-align: center;
  margin: auto;
}
.community p {
  color: #666;
  margin: 8px 0px 16px 0px;
}

.cards {
  display: flex;
  /* width: 1440px; */
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 126px;
  margin-top: 28px;
  padding: 1px 5px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 29px 32px;
  width: 299px;
}
.card2 {
  background: #ffffff;
  border-radius: 10px;
  padding: 17px 32px;
  width: 299px;
}
.cards img {
  width: 4.1rem;
}
.card2 h3 {
  margin-bottom: 10px;
  color: #4d4d4d;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  width: 267px;
  padding-right: 29px;
  padding-top: 10px;
}
.card2 p {
  color: #666;
  font-size: 0.95rem;
}

.card h3 {
  margin-bottom: 10px;
  color: #4d4d4d;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  width: 267px;
  padding-right: 29px;
  padding-top: 10px;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  /* .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    width: 271%;
    background-color: white;
  } */

  /* footer */
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .cta-container h2 {
    font-size: 30px;
  }
}
/* General feature section styling */
.feature {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  width: 1440px;
}
.container .feature-container {
  margin-top: -15px;
  margin-left: 123px;
}
.feature-image {
  width: 442px;
  padding: -27px;
  margin: -25px 27px;
}

.feature-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 1387px;
  max-width: 1200px;
  margin: 0 auto;
  margin-left: 119px;
  margin-top: -12px;
}

/* Left image */
.feature-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  padding-top: 1px;
}

/* Right text content */
.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 100%; */
  margin-left: -32px;
  margin-top: 10px;
  width: 661px;
}

.feature-text h2 {
  width: 90%;
  font-size: 36px;
  font-weight: 600;
  color: #4d4d4d;
  line-height: 44px;
  margin-bottom: 44px;
  font-family: "Inter", sans-serif;
}

.feature-text p {
  font-size: 14px;
    color: #717171;
    line-height: 20px;
    margin-bottom: 30px;
    margin-top: -28px;
    width: 601px;
    margin-left: 3px;
    font-family: "Inter", sans-serif;
}

.btn-wrapper {
  align-self: flex-end;
}

.btn {
  /* display: inline-block; */
  padding: 14px 32px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  width: 151px;
  height: 52px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b8c6b9;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
    width: 247%;
  }

  .feature-text {
    align-items: center;
  }

  .btn-wrapper {
    align-self: center;
  }
}
/* section4 */
.section-4-container {
  display: flex;
  flex-direction: row;
  width: 1440px;
  padding: 64px 144px;
  justify-content: space-between;
}
.left-text {
  width: 540px;
  margin-top: 67px;
}
.left-text h2 {
  width: 411px;
  font-size: 36px;
  line-height: 44px;
}
.left-text span {
  color: #4caf4f;
}
.left-text p {
  width: 540px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 8px;
}

.right-side-container {
  display: grid;
  width: 540px;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 31px;
  row-gap: 42px;
  margin-top: 53px;
}
.box {
  width: 255px;
  display: flex;
}
.box img {
  width: 48px;
  height: 48px;
}
.h3_p_con {
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
  gap: 0px;
  margin-top: -5px;
  margin-left: 15px;
}
.box h3 {
  width: 191px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #4d4d4d;
}
.box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717171;
}

/* stats section */
/* .achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 10%;
  gap: 40px;
}

.content h2 {
  font-size: 36px;
  color: #4d4d4d;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content h2 span {
  color: #4caf4f;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  bottom: 19px;
  column-gap: normal;
  color: #555;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 2rem;
  color: #41a056;
}

.stat-box h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
}

.stat-box p {
  margin: 0;
  color: #777;
  font-size: 0.95rem;
} */

@media (max-width: 768px) {
  /* .achievements {
    grid-template-columns: 1fr;
    text-align: center;
    width: 260%;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .stat-box {
    flex-direction: column;
  } */
}
/* calender section */
/* .calender-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 28px 10%;
  background-color: #fff;
}

.illustration-section img {
  width: 81%;
  
}

.content h2 {
  font-size: 2rem;
  color: #2e2e2e;
  font-weight: 700;
  margin-bottom: 20px;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 9px;
}

.learn-btn {
  background-color: #41a056;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  background-color: #358c47;
} */

/* Responsive */
@media (max-width: 900px) {
  /* .calender-section {
    grid-template-columns: 1fr;
    text-align: center;
    width: 214%;
    margin-left: 70px;
  }

  .illustration-section img {
    margin: 0 auto;
  } */
  .customer-section {
    width: 252%;
  }
  .cta-container {
    width: 60%;
  }
  .cta-section {
    width: 250%;
  }
  .footer {
    width: 272%;
  }
  .footer-container {
    width: 22%;
  }
}
/* calsection-5 */
.calsection-5 {
  width: 1440px;
}
.text-img-parent {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  padding: 47px 144px;
}
.calsection-5 .text {
  width: 661px;
  gap: 32px;
}
.text h2 {
  width: 601px;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  color: #4d4d4d;
  letter-spacing: 0%;
  padding-top: 66px;
}
.text p {
  width: 601px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  color: #717171;
  padding-top: 16px;
}
.text button {
  width: 153px;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  padding: 14px 32px;
  background-color: #4caf4f;
  gap: 10px;
  font-family: "Inter", sans-serif;
  margin-top: 33px;
  padding-left: 33px;
  /* margin-bottom: 102px; */
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
/* section6 */
.section-6 {
  width: 1440px;
}
.section-6-container {
  width: 1440px;
  display: flex;
  padding: 32px 144px;
  gap: 78px;
}
.section-6-img img {
  width: 326px;
}
.sec6-right-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #717171;
  padding-top: -7px;
  margin-top: -1px;
}
.sec6-right-content h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: #4caf4f;
  padding-top: 17px;
}
.sec6-right-content .child-p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #89939e;
  padding-top: 9px;
}
.section-6-logos {
  margin-top: 35px;
  display: flex;
  gap: 50px;
  align-items: center;
}
.section-6-logos img {
  width: 41px;
  height: 41px;
}
.section-6-logos a {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #4caf4f;
  margin-left: -10px;
}

/* blog section */
.blog-section {
  /* padding: 80px 20px; */
  text-align: center;
}

.blog-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Heading */
.blog-header {
  width: 1110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-bottom: 40px; */
  margin-left: 162px;
  margin: auto;
  text-align: center;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  padding-top: 40px;
  color: #4d4d4d;
}

.blog-header p {
  font-size: 16px;
  font-weight: 400;
  color: #717171;
  line-height: 24px;
  width: 634px;
  margin-left: 240px;
  margin-top: 11px;
}

/* Cards */
.blog-cards {
  width: 1440px;
  padding: 17px 56px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.blog-card {
  width: 361px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.blog-image {
  position: relative;
  width: 355px;
  height: 366px;
}
.blog-content {
  position: absolute;
  width: 306px;
  border-radius: 8px;
  padding: 27px;
  margin-top: -184px;
  margin-left: 16px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  background-color: #f8f9fb;
  padding: 24px 4px;
  width: 317px;
  text-align: center;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 24px;
  padding-left: 25px;
  line-height: 28px;
}

.readmore {
  color: #4caf4f;
  font-weight: 600;
  font-size: 20px;
  margin-top: 139px;
  /* margin-bottom: 227px; */
  padding-bottom: -51px;
  padding-top: -56px;
  /* width: 99px; */
  line-height: 28px;
  text-decoration: none;
}

.readmore:hover {
  opacity: 0.8;
}

@media (max-width: 1000px) and (min-width: 360px) {
  .blog-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .blog-card {
    width: 90%;
    max-width: 400px;
    margin-left: 285px;
  }
  /* card upper section */
  .blog-header {
    text-align: center;
    width: 190%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    margin-left: 112px;
  }
  /* clients section */
  .clients {
    text-align: center;
  }

  .clients .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140%;
    margin-left: 188px;
  }

  .client-logos {
    justify-content: center;
  }
  /* community section */
  .community {
    text-align: center;
    padding: 50px 0;
  }

  .community .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 160px;
    width: 78%;
  }

  .community .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-left: 300px;
  }

  .community .card {
    width: 90%;
    max-width: 400px;
  }

  /* Navbar layout */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 278px;
  }

  /* Hide nav links & buttons by default */
  #nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  #nav-menu.active {
    display: flex;
  }

  /* Hamburger icon styles */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    position: absolute;
    right: 20px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Hide login/signup buttons outside menu */
  .nav-btns {
    display: none;
  }

  /* Center UL items inside dropdown */
  #nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
  }

  /* Login/Signup inside hamburger dropdown */
  #nav-menu.active .nav-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #nav-menu.active .nav-btns a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
  }

  #nav-menu.active .nav-btns .login {
    color: #333;
  }

  #nav-menu.active .nav-btns .signup {
    background: #4caf50;
    color: #fff;
  }
}
/* Testimonial Section */
.testimonial {
  background: #fff;
  padding: 80px 20px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.testimonial-image img {
  width: 200px;
  border-radius: 12px;
}

.testimonial-text {
  flex: 1;
  min-width: 300px;
}

.testimonial-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-text h4 {
  color: #1c8c48;
  margin-bottom: 5px;
}

.subtitle {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn-link {
  color: #1c8c48;
  font-weight: 600;
  text-decoration: none;
}
/* footer section */

/* ================= CTA SECTION ================= */
.cta-section {
  background-color: #f5f7fa;
  text-align: center;
  width: 1440px;
  padding: 80px 20px;
}
.cta-container {
  width: 887px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.cta-container h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 76px;
  color: #263238;
  padding-top: 29px;
  margin-bottom: 11px;
}

.cta-btn {
  background-color: #4caf4f;
  color: #ffffff;
  border: none;
  padding: 14px 35px;
  border-radius: 6px;
  line-height: 24px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 25px;
  margin-right: 5px;
  font-weight: 500;
}

.cta-btn:hover {
  opacity: 0.9;
}

.footer {
  background-color: #1e2d2f;
  width: 1440px;
  /* height: 332px; */
  color: white;
  padding: 16px 18px;
  margin-top: -48px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  color: #263238;
  padding: 60px 165px;
  width: 1440px;
  width: 100%;
  max-width: 1440px;
}

/* LEFT SIDE */
.footer-left {
  width: 350px;
}

.footer-logo {
  display: flex;
  width: 191px;
  align-items: center;
  /* gap: 25px; */
  margin-top: -16px;
  margin-left: -17px;
  /* margin-right: -49px; */
  margin-bottom: 12px;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: 600;
}

.footer-left p {
  width: 350px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #d1d1d1;
  padding-top: 27px;
  margin-left: -19px;
}
.footer-p .last-p {
  width: 350px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #d1d1d1;
  padding-top: 9px;
}

.footer-icons {
  display: flex;
  gap: 13px;
  margin-top: 40px;
  /* margin-right: -58px; */
  margin-left: -14px;
}
.footer-icons .icon {
  width: 32px;
  height: 32px;
}

.footer-icons .icon img {
  width: 32px;
  height: 32px;
}
/* right container */
.right-container {
  display: flex;
  flex-direction: row;
  width: 635px;
  gap: 30px;
}
.company-section {
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support-section {
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.right-container h4 {
  color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-top: -15px;
    margin-left: 19px;
}
.company-ul-li{
  margin-top: -5px;
    margin-left: 18px;
}
.company-ul-li ul {
  list-style: none;
}
.support-ul-li{
   margin-top: -5px;
    margin-left: 18px;
}
.support-ul-li ul {
  list-style: none;
}
.company-ul-li a {
  color: #F5F7FA;
    text-decoration: none;
    font-size: 14px;
    line-height: 32px;
    margin-top: -53px;
    font-weight: 400;
}
.support-ul-li a {
 color: #F5F7FA;
    text-decoration: none;
    font-size: 14px;
    line-height: 32px;
    margin-top: -53px;
    font-weight: 400;
}
.stayup-section{
  width: 255px;
    height: 92px;
}
.stayup-section .input-box{
  width: 293px;
    height: 64px;
    /* border-radius: 65px; */
    display: flex
;
    justify-content: center;
    align-items: center;
}
.input-box input{
  width: 255px;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
    color: #D9DBE1;
    margin-top: 22px;
    border-radius: 8px;
    padding-left: 11px;
    opacity: 20%;
    /* margin-left: -22px; */
    margin-left: 17px;
    background-color: #D9DBE1;
}

/* CENTER LINKS */
/* .footer-links {
  display: flex;
  gap: 80px;
}

.link-group h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.link-group ul {
  list-style: none;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.link-group ul li a:hover {
  color: #33a852;
}

.footer-subscribe {
  flex: 1 1 250px;
}

.footer-subscribe h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  background-color: #2b3b3d;
  border-radius: 8px;
  overflow: hidden;
  padding-right: 10px;
}

.subscribe-box input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

.subscribe-box input::placeholder {
  color: #b4b8b8;
}

.send-btn {
  background: none;
  border: none;
  color: #b4b8b8;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  color: #33a852;
} */
