@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
/* global Variable */
:root {
  --main: #ef2006;
  --black: #000;
  --white: #fff;
  --font_family: "Montserrat";
  --color-bg: #1f2641;
  --color-bg1: #2e3267;
  --color-bg2: #424890;
  --color-primary: #6c63ff;
  --color-success: #00bf8e;
  --color-warning: #f7c94b;
  --color-danger: #f75842;
  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 400ms ease;
}
body{
  overflow-x: hidden;

}
/* about US page starts */
/* .para{
    border: 2px solid red;
    /* margin-bottom: 2rem; 
} */
.wrapper2 {
  font-family: "Poppins";
  letter-spacing: 0.375em;
  max-width: 20rem;
  font-size: 2em;
  font-weight: 300;
  border-bottom: 0.0625em solid goldenrod;
  margin: 0.75rem 0 0 3rem;
}
/* about US page ends */
/* welcome message */
.wrapper {
  padding: 0 2rem;
  max-width: 70.5rem;
  margin: 0 auto;
  background: var(--color-primary) !important;
  margin-top: -4rem;
}
article {
  margin: 1rem 0;
  padding: auto;
  /* box-shadow: 0 0 1rem; */
  box-shadow: 0.625em 0.625em 0.625em -0.625em rgba(0, 0, 0, 0.4),
    inset 0.625em 0.625em 0.625em -0.625em rgba(0, 0, 0, 0.8);
}
.profile-pic {
  max-width: 21.875em;
  max-height: 21.875em;
  float: left;
  border-radius: 50%;
  margin: 0em 1.0925em 0em 0.625em;
  shape-outside: circle();
  box-shadow: 0.125em 0.3125em darkcyan;
}
.profile-title {
  text-align: center;
  text-shadow: 0em 0.25em black, 0 0 1.25em #800080, 0 0 0.4375em blue;
  color: #ffffff;
  font-size: 1.57rem;
}
.wrapper p {
  text-align: justify;
  color: var(--black);
  font-size: 1.27rem;
}
/* .img-position{
    position: relative;
    margin-right: 1em;
    height: 475px;
    max-width: 22.9em;
    shape-outside: circle();
    float: left;
} */
.desc {
  text-align: center;
  color: whitesmoke;
  border-radius: 1em;
  background: purple;
  padding: 0.8em;
  font-style: italic;
}
/* welcome ends  */
/* wrapper counter starts */
.wrapper-counter {
  /* border: 1px solid var(--white); */
  /*  position: absolute; */
  width: 80vw;
  /* transform: translate(-50%, -50%);
  top: 50%;
  left: 50%; */
  display: flex;
  margin: 1rem auto;
  justify-content: space-around;
  gap: 10px;
}
.wrapper-counter-title {
  color: var(--white);
  text-align: center;
  margin-top: 4rem;
}
.container-wrapper {
  width: 38vmin;
  height: 33vmin;
  border: 1px solid orange;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  position: relative;
  font-size: 1em;
  border-radius: 0.5em;
  background-color: #21242b;
  border-bottom: 10px solid #18f98f;
}
.container-wrapper:hover {
  box-shadow: 10px 10px 10px -10px rgba(136, 18, 190, 0.7),
    inset 10px 10px 10px -10px rgba(12, 170, 64, 0.9);
}
.wrapper-counter .container-wrapper i {
  color: var(--color-primary);
  font-size: 2.5em;
  text-align: center;
}
span.num {
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
span.text {
  color: #e0e0e0;
  font-size: 1em;
  text-align: center;
  padding: 0.7em 0;
  font-family: 400;
  line-height: 0;
}
 @media screen and (max-width: 1024px) {
  .wrapper-counter {
    width: 85vm;
  }
  .container-wrapper {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-counter {
    width: 90vw;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .container-wrapper {
    height: 30vmin;
    width: calc(50% - 40px);
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper-counter {
    gap: 15px;
  }
  .container-wrapper {
    height: 25vmin;
    width: 100%;
    font-size: 8px;
  }
} 

/* wrapper counter ends */
/* motto, vision, mission */

.faqs {
  background: var(--color-bg1) !important;
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.faqs_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: fit-content;
  background: var(--color-primary) !important;
  cursor: pointer;
}
.faq h4 {
  font-size: 1rem;
  line-height: 2.2;
}
.faq_icon {
  align-self: flex-start;
  font-size: 1.2rem;
}
.faq p {
  margin-top: 0.8rem;
  display: none;
}
.faq .labels {
  margin-top: 0.8rem;
  display: none;
}
.faq.open p {
  display: block;
}
.faq.open .labels {
  display: block;
}
/* labels and i */
.labels {
  /* background: seagreen; */
  margin: auto;
  width: 25rem;
  /* height: 120px; */
  /* padding: 5px; */
}
.labels ul li {
  list-style: none;
}
.labels span {
  font-size: 17px;
  color: whitesmoke;
}

.labels .fas {
  color: pink;
  margin: 5px 3px;
}
.labels .uil {
  color: pink;
  margin: 5px 3px;
}
.labels label i {
  z-index: -1; /*to push it backwards*/
  left: 400px; /*push it this number of pixel from the left*/
  font-size: 13px;
  margin: 5px 0;
  cursor: pointer;
  position: fixed; /*this arranges like the rest in the bar*/
}

/* meet our team starts */
.team {
  background: var(--color-bg1);
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
  width: 100%;
}
.team h2 {
  text-align: center;
}
.team_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.team_member {
  background: var(--color-bg2);
  padding: 1.5rem;
  border: 0.0625em solid transparent;
  transition: 400ms;
  position: relative;
}
.team_member:hover {
  background: transparent;
  border-color: var(--color-primary);
}
.team_member-image img {
  filter: saturate(0);
  width: 13.75em;
  height: 12.5em;
}
.team_member:hover img {
  filter: saturate(1);
}
.team_member-info * {
  text-align: center;
  margin-top: 1.4rem;
}
.team_member-info p {
  color: var(--color-light);
}
.team_member-socials {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  right: -100%;
  display: flex;
  flex-direction: column;
  background: var(--color-primary);
  border-radius: 0.6rem 0 0 0.6rem;
  box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
}
.team_member:hover .team_member-socials {
  right: 0;
  display: flex;
}
.team_member-socials a {
  text-decoration: none;
  padding: 0.6rem;
}
.team_member-socials a i {
  color: whitesmoke;
}
/* Media queries for team section */
@media screen and (max-width: 1024px) {
  .team_container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4em;
  }
  .team_member {
    padding: 1rem;
  }
}
@media screen and (max-width: 720px) {
  .team_container {
    grid-template-columns: 1fr 1fr;
    gap: 0.23m;
  }
  .team_member {
    padding: 0;
  }
  .team_member p {
    margin-bottom: 1.5rem;
  }
  .team_member-image img {
    filter: saturate(0);
    width: 13.75em;
    height: 12.5em;
  }
  .team {
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
    width: 100%;
  }
  .faqs_container{
    grid-template-columns:1fr;
    }
    .faq{
    padding:1.5rem
    }
}
@media screen and (max-width: 600px) {
  .team_container {
    grid-template-columns: 1fr 1fr;
    gap: 0.233m;
  }
  .team_member {
    padding: 0;
  }
  .team_member p {
    margin-bottom: 1.5rem;
  }
  .team_member-image img {
    filter: saturate(0);
    width: 13.75em;
    height: 12.5em;
  }
  .team {
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
    width: 100%;
  }
} 
@media screen and (max-width: 480px) {
  .team_container {
    grid-template-columns: 1fr;
    /* gap: 0.23rem; */
  }
  .team_member {
    padding: 0;
  }
  .team_member p {
    margin-bottom: 1.5rem;
  }
  .team_member-image img {
    filter: saturate(0);
    width: 13.75em;
    height: 12.5em;
  }
}
/* meet our team ends */

/* media queries */


/* Media queries for responsiveness */
@media (max-width: 575px) {
  /* Styles for extra small screens (e.g., mobile phones) */
  .wrapper2 {
    font-size: 20px;
  }

  .profile-title {
    font-size: 18px;
  }

  .img-position,
  .floated {
    flex: 1 1 100%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  /* Styles for small screens (e.g., small smartphones) */
  .wrapper2 {
    font-size: 22px;
  }

  .profile-title {
    font-size: 20px;
  }

  .img-position,
  .floated {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Styles for medium screens (e.g., tablets) */
  .wrapper2 {
    font-size: 24px;
  }

  .profile-title {
    font-size: 22px;
  }

  .img-position,
  .floated {
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* Styles for large screens (e.g., laptops, desktops) */
  .wrapper2 {
    font-size: 26px;
  }

  .profile-title {
    font-size: 24px;
  }
}
