.aboutbox{
    width: 70%;
    margin: auto;
    margin-top: 40px;
}

.aboutheader{
    font-size: 50px;
    font-weight: bold;
    display: block;
    font-family:alk;
    line-height: 1;

}


@media only screen and (min-width: 1024px) {

    .circle-container {
        text-align: center;
        display: inline-block;
        font-family: alk;
        margin-right: 5%;

    }

    .circle {
        width: 170px;
        height: 170px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px auto;
        background-color: #ddd; /* Change background color */
    }
  }@media only screen and (max-width: 1023px) {
        .circle-container {
        text-align: center;
        display: inline-block;
        font-family: alk;
        margin-bottom: 100px;

    }

    .circle {
        width: 100%;
        height: auto;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px auto;
        background-color: #ddd; /* Change background color */
    }
}

    .circle img {
        width: 100%;
        height: auto;
    }

    .name {
        font-size: 18px;
        color: #333; /* Change text color */
        margin-bottom: 5px;
    }

    .job-title {
        font-size: 14px;
        color: #666; /* Change text color */
        margin: 0;
    }

.aboutttext{
    display: block;
    width: 100%;
    text-align:justify;
    font-size: 20px;
    margin-top: 20px;
    font-family:firago;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .team-member {
    width: calc(33.33% - 20px); /* Adjust width for three cards in a row */
    border-radius: 8px;
    padding: 10px;
    height: 450px;
    margin: 10px 0;
    position: relative;
  }
  
  img {
    width: 100%;
    object-fit: cover;
    height: calc(100% - 30px);;
    border-radius: 5px 5px 5px 5px; /* To round only the top corners */
  }
  
  .member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    padding-left: 15px;
    border-radius: 0 0 8px 8px; /* To round only the bottom corners */
  }
  
  h2, p {
    font-size: 17px;
    color: #333;
  }
