.aboutus-header{
    display: flex;
    justify-content: center;
    height: 220px;
}

.aboutus-section{
    height: 600px;
    width: 100%;
    background: url(/aboutus.webp);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us-content {
    width: 45%;
    line-height: 2rem;
    padding-left: 50px;
}





.aboutus-section h1{
    font-size: 50px;
}

.aboutus-section p{
    font-size: 30px;
}

.closebutton{
    background: transparent;
    border: none;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
}

.aboutus-content{
    display: flex;
    justify-content: center;
    font-size: 18px;
    padding: 50px;
    align-items: center;
}

.aboutus-content h2{
    padding: 50px 30px 15px 0;
}

.aboutus-content p{
    color: #858585;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.team-member-img{
    background: #C6A95F;
    padding: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
}

.team-member-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.heading-height{
    padding: 100px 0;
}

.teammember{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.team-member-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.teammember button{
    display: flex;
    align-items: center;
    background: #0076B2;
    gap: 10px;
    font-size: 16px;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

.teammember h3{
    font-size: 20px;
}

.teammember p{
    color: #858585;
}

.about-us-details{
    position: absolute;
    z-index: 999999;
    position: fixed;
    width: 100%;
    background-color: #0F0F0F; 
    height: 100vh;
    top: 0;
    padding-top: 100px;
    display: none;
    justify-content: center;
    text-align: justify;
    
  }

  .directormain{
    display: flex;
    gap: 30px;
  }

  .directormain h3{
    font-size: 30px;
    margin-bottom: 10px;
  }

  .directormain-img{
    width: 30%;
  }

  .directormain-details{
    width: 70%;
  }

  .directormain-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media screen and (min-width: 321px) and (max-width: 768px){

    .aboutus-header{
        height: 120px;
    }

    .getintouch{
        padding-top: 10px;
    }

    .heading-height{
        padding: 0;
    }

    .directormain{
        gap: 10px;
    }

    .about-us-details{
        padding-top: 30px;
    }

    .directormain-details h3{
        font-weight: 400;
        font-size: 25px;
        margin: 5px 0;
    } 

    .directormain-details p{
        font-size: 13px;
        color: #858585;
    }



    .heading{
        height: 100px;
        
    }

    .heading h3{
        font-weight: 400;
    }

    .team-member-img{
        width: 150px;
        height: 150px;
        
    }

  
    
    .aboutus-section {
        height: 300px;
    }

    .aboutus-section h1{
        font-size: 25px;
        font-weight: 400;
        background: #0f0f0fd5;
        padding: 10px;
    }

    .aboutus-section p {
        background: #0f0f0fd5;
        padding: 5px;
        margin-top: 20px;
    }

    .aboutus-content p{
        font-size: 15px;
        margin: 20px 0;

    }

    .mission div{
        padding: 25px;
    }

    .vision div{
        padding: 25px;
    }

    .aboutus-content{
        height: fit-content;
        padding: 20px 0;
    }

    .aboutus-section p {
        font-size: 15px;
        text-align: center;
    }

    .team-grid{
        grid-template-columns: repeat(2,1fr);
        align-items: baseline;

    }

    .directormain{
        flex-direction: column;
    }

    .directormain-details{
        width: 100%;
    }

    .team-member-details h3{
        font-size: 18px;
        font-weight: 400;
    }

    .team-member-details p{
        font-size: 10px;
    }

  }