#hero-about .hero-heading {
  max-width: 540px;
}

/* ./////////////////// */
#hero-about .img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

#hero-about .pic {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

#hero-about .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Individual sizes and offsets to create the curve */
#hero-about .pic:nth-child(1) {
  width: 100px;
  height: 100px;
  margin-bottom: 50px;
}
#hero-about .pic:nth-child(2) {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
#hero-about .pic:nth-child(3) {
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
}
#hero-about .pic:nth-child(4) {
  width: 280px;
  height: 180px;
  margin-bottom: 0;
}
#hero-about .pic:nth-child(5) {
  width: 180px;
  height: 180px;
  margin-bottom: 40px;
}
#hero-about .pic:nth-child(6) {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
#hero-about .pic:nth-child(7) {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1023px) {
  #hero-about .hero-heading {
    font-size: 42px;
  }
  #hero-about .img-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  #hero-about .pic {
    margin-bottom: 10px !important;
	height: 100px !important;
	width: 100px !important;  
  }
}

@media only screen and (max-width: 767px) {
  #hero-about .hero-heading {
    font-size: 32px;
  }
/*   #hero-about .pic:nth-child(n + 5) {
    display: none;
  } */
}

/*////////// FOUNDED ABOUT SECTION //////////*/
#founded-about {
  display: none;
}

#founded-about .content {
  align-items: center;
}

#founded-about .left-side {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#founded-about .left-side figure {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s ease;
}

#founded-about .left-side figure:nth-of-type(1) {
  z-index: 2;
  transform: rotate(-6deg) translateX(-70px);
  padding: 18px 16px 80px 16px;
  width: 380px;
  height: 430px;
}

#founded-about .left-side figure:nth-of-type(2) {
  z-index: 1;
  transform: rotate(8deg) translateX(180px) translateY(-30px);
  padding: 10px 9px 47px 9px;
  width: 230px;
  height: 250px;
}

#founded-about .left-side figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

#founded-about .left-side img[src*='big-star']:nth-of-type(1) {
  position: absolute;
  top: 15%;
  right: 10%;
  z-index: 3;
}

#founded-about .left-side img[src*='big-star']:nth-of-type(2) {
  position: absolute;
  bottom: 25%;
  left: 0%;
  z-index: 3;
}

#founded-about .left-side img[src*='big-star']:nth-of-type(3) {
  position: absolute;
  bottom: 15%;
  left: 80%;
  z-index: 3;
}

#founded-about .right-side h3 {
  font-size: 24px;
  color: var(--clr-gray);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

#founded-about .right-side p {
  line-height: 1.6;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
  #founded-about .left-side {
    height: 450px;
    margin-bottom: 40px;
    order: 1;
  }
  #founded-about .left-side figure {
    width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  #founded-about .left-side {
    height: 350px;
  }
  #founded-about .left-side figure {
    width: 220px;
    padding-bottom: 40px;
  }
  #founded-about .right-side h3 {
    font-size: 26px;
  }
}

/*////////// ACCESSIBILITY ABOUT SECTION //////////*/
#what-we-do .content {
}

#what-we-do .description-wrapper {
  margin: 0 auto 50px;
  max-width: 924px;
}

#what-we-do .description-wrapper p {
  margin-bottom: 20px;
  line-height: 1.6;
}

#what-we-do .gallery-list {
  display: grid;
  grid-template-columns: 1.9fr 1.1fr 1.9fr 1.1fr;
  gap: 20px;
  padding: 0;
  margin-top: 40px;
}

#what-we-do .gallery-list li {
  height: 200px;
  border-radius: var(--radius-24);
  overflow: hidden;
}

#what-we-do .gallery-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#what-we-do .gallery-list li:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 1023px) {
  #what-we-do .gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 639px) {
  #what-we-do .gallery-list {
    grid-template-columns: 1fr;
  }

  #what-we-do .gallery-list li {
    height: 250px;
  }

  #what-we-do .section-title {
    font-size: 32px;
  }
}

/*////////// MISSION ABOUT SECTION //////////*/
#mission-about {
}

#mission-about .section-title {
}

#mission-about .cards-container {
  margin-bottom: 3rem;
}

#mission-about .card-item {
  border-radius: var(--radius-24);
  padding: 30px 24px;
  text-align: left;
  box-shadow: var(--shadow-1);
}

#mission-about .card-icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--bg);
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 0;
}

#mission-about .card-desc {
  line-height: 1.6;
  color: var(--clr-gray);
  margin-top: 2rem;
}

#mission-about .desc.desc-top {
  max-width: 510px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

#mission-about .desc.desc-bottom {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}

#mission-about .btn-wrap {
}

/*////////// GET INVOLVED SECTION //////////*/
/* #get-involved {
}

#get-involved .content {
  position: relative;
  background-color: var(--secondary-clr);
  min-height: 380px;
  border-radius: 12px;
  padding: 2rem;
}

#get-involved .wrapper {
  flex-direction: column;
  position: relative;
  z-index: 2;
}

#get-involved .heading {
  max-width: 777px;
  text-align: center;
  color: #ffffff;
  font-size: 51px;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 20px;
}

#get-involved .section-description {
  max-width: 610px;
  text-align: center;
  color: #ffffff;
}

#get-involved .btn-wrap {
  margin-top: 24px;
}

#get-involved .btn.btn-red {
}

#get-involved .btn.btn-black {
  background-color: #375045;
  box-shadow: 0 4px 0 #2c1814;
  margin-left: 20px;
  text-align: center;
}

#get-involved .pic-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
}

#get-involved .pic-right {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 15%;
}

@media (max-width: 767px) {
  #get-involved .heading {
    font-size: 2rem;
  }

  #get-involved .btn-wrap > * {
    width: 100%;
  }

  #get-involved .btn.btn-black {
    margin-left: 0;
    margin-top: 1rem;
  }
} */

/* /////////////// */
#get-involved .content {
  /* background: linear-gradient(90deg, #52ae32 0%, #7ccb68 100%); */
  background: var(--secondary-clr);
  border-radius: var(--radius-24);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#get-involved .wrapper {
  max-width: 611px;
  z-index: 5;
  position: relative;
}

#get-involved .heading {
  font-size: 51px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

#get-involved .section-description p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.9;
}

#get-involved .btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#get-involved .btn-dark {
  background-color: #353535;
  color: #ffffff;
  box-shadow: 0 4px 0 #202020;
}

#get-involved .btn-dark:hover {
  background-color: #000000;
}

#get-involved .pic-left {
  position: absolute;
  left: -25px;
  bottom: 0;
  width: 24%;
  z-index: 1;
}

#get-involved .pic-right {
  position: absolute;
  right: -20px;
  bottom: 0px;
  width: 24%;
  z-index: 1;
}

#get-involved .cta-star {
  position: absolute;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

#get-involved .star-1 {
  top: 20%;
  left: 18%;
  width: 30px;
}
#get-involved .star-2 {
  top: 30%;
  right: 10%;
  width: 20px;
}
#get-involved .star-3 {
  bottom: 16%;
  left: 16%;
  width: 16px;
}

#get-involved .ellipse {
  position: absolute;
  height: 290px;
  width: 290px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.7;
  filter: blur(90px);
  bottom: -3rem;
}
#get-involved .ellipse-1 {
  left: 0;
}
#get-involved .ellipse-2 {
  right: 0;
}

@media only screen and (max-width: 1199px) {
  #get-involved .pic-left,
  #get-involved .pic-right {
    width: 200px;
  }
}

@media only screen and (max-width: 991px) {
  #get-involved .content {
    padding: 80px 20px;
  }
  #get-involved .pic-left,
  #get-involved .pic-right {
    /* display: none; */
  }
  #get-involved .heading {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  #get-involved .content {
    padding: 50px 20px;
  }
  #get-involved :is(.pic-right, .pic-left) {
	position: relative;
	width: 140px;
  }
  #get-involved .decorations {
	display: flex;
    gap: 60px;
    margin-top: 2rem;
  }
}
