.page-title-div {
    background-image: url(../img/information1.jpg);
    height: 200px;
    background-size: cover;
}

.page-title-div-background {
    background-color: rgba(209, 209, 209, 0.8);
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.page-title-div-background h1 {
    font-size: 45px;
    color: white;
    font-weight: 400;
}

.about-us-content-div {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.icons {
    font-size: 25px;
    color: rgb(42, 112, 225);
    margin-right: 10px;
}

.about-us-content-div h2 {
    font-weight: bold;
    color: rgb(124, 124, 124);
    font-size: 27px;
}

.about-us-content-div-data {
    padding-top: 30px;
    margin-left: 40px;
    margin-right: 40px;
    padding: 20px;
}

.about-us-content-div-data:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    background-color: rgba(202, 202, 202, 0.2);
    border-radius: 12px;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .about-us-content-div-data {
        padding-top: 30px;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
        margin-bottom: 15px;
        border-radius: 12px;
    }
}


/*******************BOARD DISPLAY********************/

.board-display-div {
    background-color: rgb(236, 236, 236);
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 20%;
    padding-right: 20%;
}

.board-display-div h3, .members-title {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(146, 146, 146);
    font-size: 70px;
    font-weight: 600;
}

.member-row-div {
    height: 150px;
    width: 100%;
    display: grid;
    grid-template-columns: 20% 80%;
    padding-top: 1%;
    padding-left: 6%;
    border-radius: 15px;
    background-image: linear-gradient(to right, rgb(42, 112, 225), rgb(21, 194, 203));
    margin-bottom: 20px;
}

.member-profile-outline .member-profile {
    padding-top: 10%;
}

.member-profile-description {
    padding-top: 5%;
}

.member-profile-outline .member-profile img {
    border-radius: 50%;
    width: 90px;
    height: auto;
}

.member-profile-description h3{
    font-size: 25px;
    text-align: start;
    color: black;
    font-weight: bold;
    background-color: rgb(152, 152, 21)e;
}

.member-profile-description p {
    margin-top: -47px;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

@media (min-width: 200px) and (max-width: 800px) {
    .board-display-div {
        background-color: rgb(236, 236, 236);
        padding-top: 5%;
        padding-bottom: 5%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .board-display-div h3, .members-title {
        text-align: center;
        margin-bottom: 20px;
        color: rgb(146, 146, 146);
        font-size: 40px;
        font-weight: 600;
    }
    .member-row-div {
        height: 100px;
        width: 100%;
        display: grid;
        grid-template-columns: 30% 70%;
        padding-top: 1%;
        padding-left: 6%;
        border-radius: 15px;
        background-image: linear-gradient(to right, rgb(42, 112, 225), rgb(21, 194, 203));
        margin-bottom: 20px;
    }
    .member-profile-outline .member-profile {
        padding-top: 10%;
    }
    .member-profile-description {
        padding-top: 8%;
    }
    .member-profile-outline .member-profile img {
        border-radius: 50%;
        width: 70px;
        height: auto;
    }
    .member-profile-description h3 {
        font-size: 16px;
        text-align: start;
        color: black;
        font-weight: bold;
        background-color: rgb(152, 152, 21)e;
    }
    .member-profile-description p {
        margin-top: -17px;
        font-size: 17px;
        color: white;
        font-weight: bold;
    }
}


/*******************BOARD DISPLAY********************/

.img-class {
    width: 300px;
    /* height: 40%; */
    border-radius: 15px;
}






/*******************CERTIFICATES********************/
.certificate-display-div {
    background-color: rgb(255, 255, 255);
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 20%;
    padding-right: 20%;
}

.certificate-display-div h2{
    text-align: center;
    margin-bottom: 50px;
    font-size: 55px;
    font-weight: 600;
}



/*******************END CERTIFICATES********************/

/* MEMORANDUM BUTTON */
/* From Uiverse.io by satyamchaudharydev */ 
button {
    --primary-color: #645bff;
    --secondary-color: #ffffff;
    --hover-color: #2600ff;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
  }
  
  button .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  button .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
  }
  
  button .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
  }
  
  button:hover {
    background-color: var(--hover-color);
  }
  
  button:hover .arrow {
    background: var(--secondary-color);
  }
  
  button:hover .arrow:before {
    right: 0;
  }
/* END MEMORANDUM BUTTON */








/* .structure-div {
    padding-top: 40px;
    padding-bottom: 70px;
    background-image: linear-gradient(to right, rgb(42, 112, 225), rgb(21, 194, 203));
    padding-left: 20%;
    padding-right: 20%;
    font-size: 17px;
}

.structure-div h3 {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-size: 70px;
    font-weight: 600;
}

.structure-table-outline table {
    width: 100%;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
}

.structure-table-outline table tr {
    height: 70px;
    width: 200px;
}

.structure-table-outline table tr th,
td {
    padding-left: 30px;
    padding-right: 20px;
}

.structure-table-outline table th {
    color: rgb(0, 83, 135);
    font-size: 20px;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .structure-div {
        padding-top: 40px;
        padding-bottom: 70px;
        background-image: linear-gradient(to right, rgb(42, 112, 225), rgb(21, 194, 203));
        padding-left: 5%;
        padding-right: 5%;
        font-size: 17px;
    }
} */