:root {
  --primary: #630094;
  --white: #ffffff;
}
.about_section {
  width: 100%;
  height: max-content;
  padding: 30px;
  background: #0d0d0df5;
  margin-top: 50px;
  padding-top: 100px;
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  box-shadow: 0px 0px 100px var(--primary);
}
.about_section:hover .about_image {
  transform: scale(1.05) rotate(-5deg) translateY(50px);
}
.about_heading h1 {
  color: var(--primary);
  font-size: 50px !important;
  font-weight: 700 !important;
  font-family: 'Oxygen', sans-serif;
}
.about_para p {
  color: #909090;
  font-size: 18px;
  width: 70%;
}
.about_image {
  height: 700px;
  width: 30%;
  /* background: red; */
  position: absolute;
  right: 0;
  top: -60px;
  transition: transform 1s ease-in-out;
}
.about_image img {
  height: 100%;
}

@media (max-width: 991px) {
  .about_para {
    display: flex;
    justify-content: center;
  }
  .about_para p {
    width: 90%;
    text-align: justify;
  }
  .about_image {
    position: relative;
  }
  .about_section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about_heading h1 {
    font-size: 30px !important;
    text-align: center;
  }
  .about_section {
    padding-top: 30px;
  }
  .about_image {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 500px;
    top: 0;
  }
  .about_section:hover .about_image {
    transform: scale(1) rotate(0deg) translateY(0px);
  }
}
@media (max-width: 650px) {
  .about_para p {
    font-size: 15px;
  }
}

/* Teams section */

.teams_section {
  margin-top: 170px;
  text-align: center;
  margin-bottom: 40px;
}
.teams_heading {
  font-family: 'Oxygen', sans-serif;
  color: #fff;
}
.teams_heading h2 {
  font-weight: 300;
}
.teams_heading span {
  color: var(--primary);
}
.teams_para p {
  color: #909090;
}
.team_members {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.member {
  height: 500px;
  width: 400px;
  background: #0d0d0df5;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s ease;
}
.member:hover {
  transform: translateY(-10px);
}
.member_image {
  height: 75%;
  background: rgba(255, 255, 255, 0);
  margin-bottom: 20px;
}
.member_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.member_name p {
  color: #fff;
  font-size: 24px;
}
.member_position p {
  color: var(--primary);
}
@media (max-width: 991px) {
  .member_image {
    height: 300px;
  }
  .member {
    height: max-content;
    width: 300px;

    margin: 10px;
  }
}
@media (max-width: 650px) {
  .teams_section {
    margin-top: 100px;
  }
  .member_position p {
    font-size: 15px;
  }
  .member_name p {
    font-size: 18px;
  }
  .team_members {
    margin-top: 40px;
  }
  .teams_para {
    width: 80%;
    margin: 0 auto;
  }
  .teams_para p {
    font-size: 15px;
    text-align: justify;
  }
}
