#infoContainer {
    position: relative;
    width: 85%;
    height: 1120px;
    background-color: white;
    border-radius: 17px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 20px;
    margin-bottom: 30px;
}

.infoDiv {
    height: auto;
    min-height: 150px;
    width: calc(50% - 90px);
    padding: 35px;
    background-color: #EFF3F8;
    color: #00326C;
    border-radius: 17px;
    margin: 10px;
    float: left;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.infoContent {
    display: flex;
    align-items: center;
}

.profileImage {
    width: 30%;
    border-radius: 10px;
    margin-right: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
    height: auto;
}

.infoText {
    width: 70%;
    max-height: 160px;
    overflow: auto;
}

.infoContent .infoText::-webkit-scrollbar {
    width: 3px;
}

.infoContent .infoText::-webkit-scrollbar-track {
    background: transparent;
}

.infoContent .infoText::-webkit-scrollbar-thumb {
    background: #CFCFCF;
}

.subtitle {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

.infoContent .infoText > div:not(.subtitle), .infoContent .hiddenInfo > div:not(.subtitle) {
    margin-bottom: 25px;
}

.infoText {
    max-height: 190px;
    overflow: auto;
    box-shadow: inset 0 -15px 10px -10px rgb(0 0 0 / 5%);
}

@media screen and (max-width:768px) {
    #infoContainer {
        padding: 0;
        width: 100%;
        padding-top: 1px;
        height: auto;
        top: 80px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .infoDiv {
        position: relative;
        width: calc(84% - 15px);
        padding: 20px;
        margin: 0 auto;
        margin-top: 20px;
        float: none;
        font-size: 15px;
        height: auto;
    }

    .infoContent {
        flex-direction: column;
        align-items: flex-start;
    }

    .profileImage {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    
.infoText {
    max-height: 129px;
    width:100%;
    overflow: auto;
    box-shadow: inset 0px -10px 10px -10px rgba(0,0,0,0.1);
}
}
