.about-section {
    margin-top: 130px;
}
h1 {
    font-family: "Raleway-SemiBold", sans-serif;
    font-size: 32px;
    color: #414141;
    text-transform: uppercase;
}
.main-description {
    font-family: "Raleway-Regular", sans-serif;
    color: #414141; 
}
.main-description.last-description {
    margin-bottom: 72px;
}
.member-container {
    border: 1px solid #A3A3A3;
    padding: 16px;
    margin-top: 16px;
}
.member-container .img-container {
    border-radius: 100%;
    padding: 8px;
    border: 1px solid #00A3C3;
    max-width: 200px;
    margin: 0 auto;
}
.member-container .cover {
    height: 100%;
    max-height: 200px;
    overflow: hidden;
}
.member-container .cover img.img-fluid {
    min-height: 200px;
    object-fit: cover;
}
.member-container img {
    border-radius: 100%;
}
.member-details {
    position: relative;
    padding-top: 8px;
    margin-top: 12px;
    text-align: center;
}
.member-details:before {
    content: "";
    display: block;
    width: 40%;
    height: 3px;
    background-color: #A3A3A3;
    top: 0;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}
.member-name {
    color: #00A3C3;
    font-size: 20px;
    font-family: "Raleway-SemiBold", sans-serif;
    line-height: 18px;
    min-height: 36px;
    margin-bottom: 0;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.member-title {
    font-family: "Raleway-Italic", serif;
}
.member-email {
    font-family: "Raleway-Regular", sans-serif;
    margin-top: 8px;
    word-wrap: break-word;
}
.member-email, .member-title {
    color: #414141;
    font-size: 12px;
    margin-bottom: 0;
}
.member-details > div {
    min-height: 62px;
}
.member-details a {
    display: inline-block;
    padding: 8px;
    color: #FFFFFF;
    background-color: #FEC48D;
    text-decoration: none;
    margin-top: 16px;
    font-family: "Raleway-Bold", sans-serif;
    border-radius: 4px;
    min-width: 120px;
    transition: all 0.5s ease;
}
.member-details a:hover,
.member-details a:focus {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #d2ab86;
}
@media only screen and (max-width: 991px) {
    .main-description.last-description {
        margin-bottom: 45px;
    }
}