.body_bg {
  background-color: black;
  align-items: center;
  height: 100vh;

  width: 100vw;
}
.about_us_container {
  padding: 6rem;
  padding-bottom: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content {
  max-width: 81.25rem;
}
.section {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.heading {
  font-family: Inter;
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(183deg, #ffe99d 21.79%, #ffbc0f 81.11%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 0.125rem solid;
  border-image-slice: 1;
  border-width: 0.125rem;
  border-image-source: linear-gradient(
    rgba(255, 233, 157, 0.4),
    rgba(255, 188, 15, 0.4)
  );
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-bottom: 2rem;
}
.first_section .description {
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-align: left;
  color: rgba(254, 254, 254, 1);
}

.second_section .heading {
  padding-bottom: 1.375rem;
}

.second_section .user_info {
  display: flex;
  gap: 3.75rem;
  justify-content: space-between;
  flex-direction: row;
}

.second_section .user_info .description {
  font-family: Inter;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.688rem;
  text-align: left;
  color: white;
  width: 50%;
}

.user_info .description p {
  margin-bottom: 1.25rem;
}
.user_info:nth-child(odd) {
  flex-direction: row-reverse;
}

.user_info .user_img {
  max-width: 34.188rem;
  width: 50%;
  max-height: 38rem;
  height: 38rem;
  position: relative;
}
.user_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.user_img .desc {
  font-family: Poppins;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.625rem;
  color: rgba(254, 254, 254, 1);
  text-align: center;
  position: absolute;
  bottom: 3%;
  width: 100%;
}

.user_img .desc .name span {
  font-weight: 700;
  background: linear-gradient(#ffe99d 21.79%, #ffbc0f 81.11%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.user_img .desc .designation {
  font-size: 1rem;
  line-height: 1.5rem;
}


/* ==================== footer =============================== */

.footerBar {
  width: 100vw;
  background-color: transparent;
  color: white;
  padding: 1rem;
  z-index: 9999;
}

.footerBar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footerBar ul li a {
  color: #000000;
  font-size: 0.9rem;
}


@media only screen and (max-width: 992px) {
  .about_us_container {
    padding: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .about_us_container {
    padding: 3rem;
    padding-top: 7rem;
  }
  .heading {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
  .first_section .description {
    font-size: 1rem;
  }
  .second_section .heading {
    padding: 1rem;
  }
  .second_section .user_info {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
  .second_section .user_info .description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.313rem;
    width: 100%;
    padding-top: 8%;
  }

  .user_info .user_img {
    max-width: 100%;
    width: 100%;
  }
  .user_img .desc {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2.25rem;
    bottom: -10%;
  }
  .user_img .desc .designation {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media only screen and (max-width: 576px) {
  .second_section {
    gap: 1.5rem;
  }
  .second_section .user_info .description {
    padding-top: 10%;
  }
  .user_info .user_img
  {
    height: 24rem;
  }
}

@media screen and (width < 500px) {
  .footerBar ul li a {
    font-size: 0.8rem;
  }
}
