* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  body {
    background: black;
    overflow-y: scroll;
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: white;
    text-align: start;
  }
  .contactParent {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("/images/pc_bg.webp");
      background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    color: #ffffff;
  }

  .contactParent {
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .contactParent::-webkit-scrollbar {
    display: none; /* WebKit browsers */
  }
  .parentChild{
      padding: 0px 100px;
  }
  .aboutHeading h2,p{
      text-align: center;
  }
  .contactPerson{
      margin-top: 50px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 50px;
  }
  .personCard{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 300px;
      width: 200px;
      border: 1px solid rgba(229, 229, 229, 0.411);
      border-radius: 20px;
      background: rgba(53, 55, 188, 0.246);
      backdrop-filter: blur(5px);
      cursor: pointer;
      animation: moveright .5s linear forwards;
    opacity: 0;
  }
  @keyframes moveright {
      0% {
        opacity: 0;
        transform: translateY(60px);
      }
      100% {
        opacity: 1;
        transform: translateY(0px);
      }
    }
    .personCard:nth-child(1) {
      animation-delay: 0s;
    }
    .personCard:nth-child(2) {
      animation-delay: 0.1s;
    }
    .personCard:nth-child(3) {
      animation-delay: 0.2s;
    }
    .personCard:nth-child(4) {
      animation-delay: 0.3s;
    }  
    .personCard:nth-child(5) {
      animation-delay: 0.4s;
    }  
  .personCard:hover{
      box-shadow: 5px 5px 10px rgb(1, 73, 97), -5px -5px 10px rgb(1, 73, 97);
      transform: translateY(-30px);
      transition: 0.5s;
  }
  .personCard img{
      border: 1px solid rgb(229, 229, 229);
      height: 110px;
      width: 110px;
      border-radius: 50%;
  }
  .personCard h4{
      font-size: 20px;
  }
  .personCard p:nth-child(1){
      font-size: 15px;
  } 
  .personCard p:nth-child(2){
      font-size: 15px;
  }
  .name{
      margin-top: 10px;
      font-size: 25px;
  }
  .work{
      font-size: 13px;
  }
  .phone{
      font-size: 16px;
  }
  .emailId{
      font-size: 15px;
  }
  #moreMentors{
      padding: 50px 0px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "SUSE", sans-serif;
  }
  #mentors{
    font-family: "SUSE", sans-serif;
      padding: 10px 20px;
      border: none;
      background: transparent;
      background: rgb(26, 50, 149);
      color: white;
      font-size: 15px;
      border-radius: 20px;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, 0.684);
      cursor: pointer;
  }
  #mentors:hover{
      padding: 10px 30px;
      transition: 0.2s;
  }
  .child2{
      margin-top: 50px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
  }
  .map{
      width: 500px;
      height: 300px;
      border: 1px solid rgba(255, 255, 255, 0.585);
      background: rgba(246, 216, 66, 0.143);
      backdrop-filter: blur(20px);
      border-radius: 20px;
  }
  .map h3{
      color: rgb(183, 183, 4);
      font-size: 30px;
  }
  .map address h3, h4, p{
      margin-top: 20px;
  }
  .contactContainer{
      width: 400px;
      height: 250px;
      border: 1px solid rgba(255, 255, 255, 0.535);
      background: rgba(246, 216, 66, 0.143);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      
  }
  .map, .contactContainer{
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
  }
  .map:hover, .contactContainer:hover{
      backdrop-filter: blur(0px);
  }
  .contactContainer h3,p{
      text-align: center;
  }
  .contactContainer h3{
      color: rgb(204, 204, 2);
      font-size: 30px;
      margin-top: 20px;
  }
  .contactContainer p{
      margin-top: 10px;
  }
  .contactContainer section{
      margin-top: 15px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 10px;
  }
  .contactContainer section img{
      width: 25px;
  }
  @media only screen and (max-width: 1024px){
      .footer {
    display: none;
  }
      .parentChild{
          padding:0px 50px;
      }
      .aboutHeading h2{
          font-size: 25px;
      }
      .aboutHeading p{
          font-size: 10px;
      }
      .contactPerson, .child2{
          flex-direction: column;
      }
      .map{
          width: 300px;
          height: 200px;
      }
      .contactContainer{
          width: 300px;
          height:180px;
      }
      .contactContainer section{
        font-size: 13px;
        text-align: start;
      }
      .contactContainer h3{
          font-size: 25px;
      }
      .contactContainer p{
          font-size: 10px;
      }
      .map address h3{
          font-size: 25px;
      }
      .map address h4,p{
          font-size: 12px ;
      }
  }