#PEOPLE {
  min-height: 100vh auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  
  font-family: "poppins", sans-serif;
  align-items: center;
  padding-bottom: 40px;
}

.People-heading {
  height: max-content;
  color: white;
  background-color: var(--main-color);
  padding: 20px;
  width: 100%;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.people-heading-text {
  width: max-content;
  margin-left: 0vh;
  margin-top: 150px;
  padding: 20px;
}

.People-heading p {
  font-size: 40px;
  font-weight: 700;
}

/* MAIN-SECTION */
.people-main-section {
  display: flex;
  flex-direction: column;
  height: max-content;
  width: 90%;
  padding: 10px;
}

/* management-Team */

.Management-Team {
  height: max-content;
  width: 100% auto;
  display: flex;
  flex-direction: column;
  
  padding: 5px;
}

.Management-Team-heading,
.Technical-Team-heading {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  color: var(--text-color);
  margin-bottom: 10px;
}

/* management images section */
.Management-Team-main-section {
  display: flex;
  padding-bottom: 30px;
  
}
#management-details {
  width: 100%;
  height: 400px;
  margin: 0px 10px 0px 0px ;
  border-radius: 10px;
  background-color: #080a3f;
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  transition: all ease 0.8s;
}



#management-details:hover {
  transform: scale(1.01);
}

#people-images-management-team {
  width: 240px;
  background-color: white;
  border-radius: 50%;
  margin-top: 30px;
}
#management-details:hover #people-images-management-team{
  border-radius: 10%;
  background-color: transparent;
}
.management-team-names {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.name {
  font-family: "poppins", sans-serif;
}
.position {
  font-family: "poppins", sans-serif;
  color: orange;
}

/* TECHNICAL TEAM */

.Technical-Team {
  height: max-content;
  width: 100% auto;
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.first-section-technical-team,
.second-section-technical-team {
  display: flex;
}

#see-management-team {
  font-size: 15px;
  cursor: pointer;
}
#see-management-team:hover {
  font-size: 17px;
}
/* technical images section */
.Technical-Team-main-section {
  display: flex;
  flex-direction: column;
}

#technical-details {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background-color: #5a0436;
  color: white;
  display: flex;
  margin: 0px 10px 10px 0px ;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  transition: all ease 0.5s;
}
#see-technical-team {
  font-size: 15px;
  cursor: pointer;
}
#see-technical-team:hover {
  font-size: 17px;
}
#technical-details:hover {
  transform: scale(1.05);
}
#people-images {
  width: 250px;
  background-color: white;
  border-radius: 50%;
  margin-top: 30px;
  transition: all ease 0.5s;
}
#technical-details:hover #people-images {
  border-radius: 10%;
  background-color: transparent;
}

.technical-team-names {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.name {
  font-family: "poppins", sans-serif;
  font-size: 15px;
}
.position {
  font-family: "roboto", sans-serif;
  color: orange;
}

/* MEDIA QUERIES  */

/* LARGE DISPLAYS  */
@media screen and (min-width: 2570px) {
}
/*......................... LAPTOP DISPLAYS ...............  */
@media screen and (min-width: 930px) and (max-width: 1440px) 
{
  #PEOPLE {
   height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: "poppins", sans-serif;
    align-items: center;
    padding-bottom: 40px;
  }
  
  .People-heading {
    height: max-content;
    color: white;
    background-color: var(--main-color);
    padding: 20px;
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .people-heading-text {
    width: max-content;
    margin-left: -0vh;
    margin-top: 150px;
    padding: 20px;
  }
  
  .People-heading p {
    font-size: 40px;
    font-weight: 600;
  }
  
  /* MAIN-SECTION */
  .people-main-section {
    display: flex;
    flex-direction: column;
    height: max-content;
    width: 100%;
    padding: 10px;
    overflow: hidden;
  }
  
  /* management-Team */
  
  .Management-Team {
    height: max-content;
    width: 100% auto;
    display: flex;
    flex-direction: column;
    
    padding: 5px;
  }
  
  .Management-Team-heading,
  .Technical-Team-heading {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
    color: var(--text-color);
    margin-bottom: 10px;
  }
  
  /* management images section */
  .Management-Team-main-section {
    display: flex;
    padding-bottom: 30px;
    
  }
  #management-details {
    width: 100%;
    height: 270px;
    margin: 0px 5px 0px 0px ;
    background-color: #080a3f;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    transition: all ease 0.8s;
  }
  #technical-details {
    width: 100%;
    height: 270px;
    background-color: #5a0436;
    color: white;
    display: flex;
    margin: 0px 5px 5px 0px ;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    transition: all ease 0.5s;
  }
  
  
  
  #management-details:hover {
    transform: scale(1.02);
  }
  
  #people-images-management-team, #people-images {
    width: 140px;
    background-color: white;
    border-radius: 50%;
    margin-top: 30px;
  }
  #management-details:hover #people-images-management-team{
    border-radius: 10%;
    background-color: transparent;
  }
  .management-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .name  {
    font-family: "poppins", sans-serif;
    font-size: 7px;
    text-align: center;
    font-weight: 400;
  }
  .position {
    font-family: "poppins", sans-serif;
    color: orange;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 200;
  }
  
  /* TECHNICAL TEAM */
  
  .Technical-Team {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }
  .first-section-technical-team,
  .second-section-technical-team {
    display: flex;
  }
  
  #see-management-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-management-team:hover {
    font-size: 17px;
  }
  /* technical images section */
  .Technical-Team-main-section {
    display: flex;
    flex-direction: column;
  }
  

  #see-technical-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-technical-team:hover {
    font-size: 17px;
  }
  #technical-details:hover {
    transform: scale(1.02);
  }
 
  #technical-details:hover #people-images {
    border-radius: 10%;
    background-color: transparent;
  }
  
  .technical-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  
  .name {
    font-family: "poppins", sans-serif;
    font-size: 15px;
  }
  .position {
    font-family: "roboto", sans-serif;
    color: orange;
  }
}

/* LARGE PHONES  DISPLAYS  */
@media screen and (min-width: 770px) and (max-width: 929px)
{
  #PEOPLE {
   height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: "poppins", sans-serif;
    align-items: center;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
  }
  
  .People-heading {
    height: max-content;
    color: white;
    background-color: var(--main-color);
    padding: 20px;
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .people-heading-text {
    width: max-content;
    margin-left: -0vh;
    margin-top: 100px;
    padding: 20px;
  }
  
  .People-heading p {
    font-size: 40px;
    font-weight: 600;
  }
  
  /* MAIN-SECTION */
  .people-main-section {
    display: flex;
    flex-direction: column;
    height: max-content;
    width: 100%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  /* management-Team */
  
  .Management-Team {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    
    padding: 5px;
  }
  
  .Management-Team-heading,
  .Technical-Team-heading {
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    padding: 10px;
    color: var(--text-color);
    margin-bottom: 0px;
    margin-left: 40px;
  }
  
  /* management images section */
  .Management-Team-main-section {
    display: flex;
    padding-bottom: 10px 10px 30px 10px ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    
  }
    
  .Technical-Team {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }
  .first-section-technical-team,
  .second-section-technical-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #management-details,  #technical-details  {
    width: 90%;
    height: 670px;
    margin: 20px 0px 0px 0px ;
    background-color: #080a3f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all ease 0.8s;
  }
  #technical-details {
    background-color: #5a0436;

  }
  
  
  #management-details:hover {
    transform: scale(1.02);
  }
  
  #people-images-management-team, #people-images {
    width: 500px;
    background-color: transparent;
    border-radius: 10%;
    margin-top: 30px;
  }
  #management-details:hover #people-images-management-team{
    border-radius: 10%;
    background-color: transparent;
  }
  .management-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .name {
    font-family: "poppins", sans-serif;
    font-size: 37px;
    text-align: center;
    font-weight: 400;
  }
  .position {
    font-family: "poppins", sans-serif;
    color: orange;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 300;
  }
  
  /* TECHNICAL TEAM */

  
  #see-management-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-management-team:hover {
    font-size: 17px;
  }
  /* technical images section */
  .Technical-Team-main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  

  #see-technical-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-technical-team:hover {
    font-size: 17px;
  }
  #technical-details:hover {
    transform: scale(1.02);
  }
 
  #technical-details:hover #people-images {
    border-radius: 10%;
    background-color: transparent;
  }
  
  .technical-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  

}
/* SMALL PHONES  DISPLAYS  */
@media screen and (min-width: 320px) and (max-width: 769px)
{
  #PEOPLE {
   height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: "poppins", sans-serif;
    align-items: center;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
  }
  
  .People-heading {
    height: max-content;
    color: white;
    background-color: var(--main-color);
    padding: 20px;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .people-heading-text {
    width: max-content;
    margin-left: -0vh;
    margin-top: 40px;
    padding: 20px;
  }
  
  .People-heading p {
    font-size: 20px;
    font-weight: 700;
  }
  
  /* MAIN-SECTION */
  .people-main-section {
    display: flex;
    flex-direction: column;
    height: max-content;
    width: 100%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  /* management-Team */
  
  .Management-Team {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }
  
  .Management-Team-heading,
  .Technical-Team-heading {
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "poppins", sans-serif;
    font-weight: 500 !important;
    font-size: 20px !important;
    padding: 10px !important;
    color:  var(--text-color);
    margin-bottom: 0px;
    margin-left: 20px;
  }
  .Technical-Team-heading{

    margin-left: -140px !important;
    font-size: 20px !important;
    font-weight: 500 !important;
  }
  /* management images section */
  .Management-Team-main-section {
    display: flex;
    padding-bottom: 10px 10px 30px 10px ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Technical-Team {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }
  .first-section-technical-team,
  .second-section-technical-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #management-details,  #technical-details  {
    width: 90%;
    aspect-ratio: 1/1;
    height: auto;
    margin: 20px 0px 0px 0px ;
    background-color: #080a3f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all ease 0.8s;
  }
  #technical-details {
    background-color: #5a0436;
  }
  #management-details:hover {
    transform: scale(1.02);
  }
  #people-images-management-team, #people-images {
    width: 260px;
    background-color: transparent;
    border-radius: 10%;
    margin-top: 30px;
  }
  #management-details:hover #people-images-management-team{
    border-radius: 10%;
    background-color: transparent;
  }
  .management-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .name {
    font-family: "poppins", sans-serif;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
  }
  .position {
    font-family: "poppins", sans-serif;
    color: orange;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 300;
  }
  /* TECHNICAL TEAM */
  #see-management-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-management-team:hover {
    font-size: 17px;
  }
  /* technical images section */
  .Technical-Team-main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #see-technical-team {
    font-size: 15px;
    cursor: pointer;
  }
  #see-technical-team:hover {
    font-size: 17px;
  }
  #technical-details:hover {
    transform: scale(1.02);
  }
  #technical-details:hover #people-images {
    border-radius: 10%;
    background-color: transparent;
  } 
  .technical-team-names {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
}

