@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
  text-decoration: none;
}

.nav-container {
  width: 100%;
  height: 12vh;
  background-color: rgb(236, 244, 249);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
}
.nav-image {
  height: 50px;
}

.nav-image img {
  height: 100%;
  width: 100%;
}
.nav-list ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  /* justify-content: space-between; */
  /* margin-right: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; */
}
li .nav-item {
  justify-content: space-between;
}
.nav-list ul li {
  justify-content: space-between;
}
.nav-list .nav-item {
  opacity: 0.9;
}
.nav-list .nav-item:hover {
  opacity: 1;
}
.nav-list .nav-link {
  text-decoration: none;
  font-size: large;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  color: #242d7c;
  position: relative;
  /* margin-bottom: 0.5rem; */
}
.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #242d7c;
  background-color: #ff8700;
  height: 0%;
  width: 100%;
  bottom: -10px;
  border-radius: 2px;
}

.nav-item:hover .nav-link::before {
  height: 2px;
}

.button-nav {
  height: 48px;
  width: 160px;
  background-color: rgb(71, 71, 175);
  border-radius: 0.5rem;
  font-size: large;
  font-weight: 700;
  color: whitesmoke;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgb(71, 71, 175);
  transition: all 0.2s ease;
}
.button-nav:hover {
  color: #242d7c;
  /* background-color: rgb(245, 243, 241); */
  background-color: #ECF4F9;
}
nav #icon {
  color: #242da4;
  font-size: 30px;
  line-height: 80px;
  display: none;
}
@media (max-width: 1148px) {
  .nav-list ul {
    /* margin-right: 20px; */
    display: none;
  }
  nav #icon {
    display: inline-block;
  }

  .nav-item .nav-link {
    /* font-size: 17px; */
  }
  .button-nav {
    display: none;
  }
}
@media (max-width: 500px) {
  .nav-image img{
   height: 40px;
   width: 180px;
  
  }
}
.nav-list .nav-item .dropdown li {
  display: block;
  margin-top: 10px;
  padding: 5px 25px;
}
.nav-list .nav-item .dropdown {
  width: auto;
  background-color: #ECF4F9;
  position: absolute;
  z-index: 999;
  display: none;
}
.dropdown li a {
  text-decoration: none;

  /* transition:0.5;  */
}
.dropdown li a:hover {
  background: orange;
  /* transform: translateX(5px); */
}
.nav-list .nav-item:hover .dropdown {
  display: block;
}

.aboutus-banner {
  width: 100%;
  /* height: 100%; */
}
.aboutus-banner img {
  width: 100%;
  object-fit: cover;
}

.mission-container {
  height: auto;
  width: 100%;
  display: flex;
  /* background: linear-gradient(220.55deg, #C5EDF5 0%, #4A879A 100%); */
  /* background: linear-gradient(220.55deg, #FFF6EB 0%, #DFD1C5 100%); */
}
.mission-img {
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  /* margin-top: 1rem; */
}


.vision-container {
  height: auto;
  width: 100%;
  display: flex;
  /* background: linear-gradient(220.55deg, #DDE4FF 0%, #8DA2EE 100%); */
}
.vision-img {
  width: 100%;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-top: 1rem;
}

.image-mission img {
  width: 100%;
  border-radius: 0.8%;
}
.image-vision img 
{
  width: 100%;
  border-radius: 0.8%;
}
.mission-content h5 {
  font-size: larger;
  padding: 1rem;
  color: rgb(103, 103, 207);
  margin-left: 1rem;
}
.mission-content p {
  font-size: 1rem;
  padding: 1rem;
  margin-left: 1rem;

}
.vision-content h5 {
  font-size: larger;
  padding: 1rem;
  color: rgb(103, 103, 207);
  margin-left: 1rem;
}
.vision-content p {
  font-size: 1rem;
  padding: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 992px) {
  .mission-container {
    flex-direction: column;
    align-items: center;
  }
  .vision-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    /* width: 90%; */
  }
  .mission-content h5 {
    margin-left: 2.5rem;
  }
  .mission-content p {
    margin-left: 2.5rem;
  }
}
.member-list-container {
  display: flex;
  justify-content: space-around;
  /* height: auto; */
  margin-bottom: 2rem;
}
.our-members h2 {
  text-align: center;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  padding: 2rem;
  /* padding-top: 30px; */
}
.card {
  width: 350px;
  height: 600px;
  background: #f5f5f5;
  padding: 3rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/*Image*/
.card-avatar {
  --size: 100px;
  background: linear-gradient(to top, #f1e1c1 0%, #fcbc97 100%);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease;
  margin-bottom: 1rem;
}
.card-avatar img {
  height: auto;
  width: 100%;
}

/*Card footer*/
.card-social {
  transform: translateY(200%);
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.card-social__item {
  list-style: none;
}
.card-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.card-subtitle {
  color: #859ba8;
  font-size: 1em;
}
.about-team-members p {
  /* opacity: 1; */
  padding-top: 20px;
  font-size: 1rem;
  font-weight: 530;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/*Hover*/
.card:hover {
  box-shadow: 0 8px 50px #23232333;
}

.card:hover .card-info {
  transform: translateY(-5%);
}

.card:hover .card-social {
  transform: translateY(100%);
  opacity: 1;
}

.card-avatar:hover {
  transform: scale(1.1);
}
.card:hover .about-team-members p {
  transform: translateY(-5%);
}
@media screen and (max-width: 1024px) {
  .member-list-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.body {
  padding: 70px;
  line-height: 1.7rem;
  margin-bottom: 0.2rem;
  /* background-image: url(img12\silhouette-business-people-discussion-meeting-cityscape-team-concept.jpg); */
  background-size: cover;
  background-position: center;

}
.faq h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color:#fff;
  margin-left: 0.5rem;
  padding: 20px;
}
.accordian {
  background-color:gainsboro;
  padding: 4px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  box-shadow: 1px 1px 5px rgb(219, 193, 219);
}
.questation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.h4question{
  font-family: "Manrope", sans-serif;
  color:black;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 0;
}
.icon {
  margin-right: 16px;
  transition: 0.2s;
}
.icon.active {
  transform: rotate(-180deg);
}
.answer {
  color:currentColor ;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
  font-weight: 500;
  padding: 7px;
}
.answer.active {
  max-height: 300px;
}

footer {
  background-color: #0e3386;
  color: #ced2df;
  background-image: url("footer-bg-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* width: 100%; */
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2rem;
  column-gap: 2.5rem;
  justify-content: space-between;
  padding-top: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* margin-left: 3rem;
    margin-top: 8rem; */
}
.contact > div {
  display: flex;
  gap: 1rem;
}
.contact .address {
  margin-top: -3px;
  line-height: 1.5rem;
}
.footer-section h3 {
  color: #e9e9f1;
  /* margin-left: 2.2rem; */
  /* margin-top: 4rem; */
  padding-bottom: 0.7rem;
  font-size: larger;
  position: relative;
  margin-bottom: 2rem;
}
.footer-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #e9e9f1;
  height: 2px;
  box-sizing: border-box;
  width: 60px;
}

.footer-section ul li {
  padding-bottom: 1rem;
}
.footer-section ul li a {
  color: #ced2df;
  transition: all 0.4s ease;
}
.footer-section ul li a:hover {
  color: #ffffff;
}

footer hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border-bottom: none;
}

.footer-bottom {
  /* height: 4rem; */
  padding: 0 3rem 2rem 3rem;
  /* background-color:#0E3386; */
  color: #ced2df;
  font-size: small;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .social-media {
  display: flex;
  justify-content: start;
  gap: 1.5rem;
  font-size: large;
}
.footer-bottom .social-media a {
  color: #ced2df;
  transition: all 0.4s ease;
}
.footer-bottom .social-media a:hover {
  color: #ffffff;
}

/* @media screen and (max-width:980px) {
    .footer-content{
        flex-direction: column; 
        justify-content: center;
    }
     .footer-section ul{
        flex-direction: column; 
    
     } 
      
} */
@media screen and (max-width: 768px) {
  .footer-bottom {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .footer-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 732px) {
  .body{
    height: auto;

  }
  .accordian{
    height: auto;

  }
  .answer.active {
    max-height: 600px;
    /* line-break: auto; */
    letter-spacing: normal;
    text-align: left;

  }
  
  .answer p{
    height: auto;
  }
}
