/* BODY */
.part1 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0;
}

.profileContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    position: relative;
}

.profilePic {
    border-radius: 40px;
    width: 39%;
    height: auto;
    z-index: 3;
}

.profileName {
    width: 55%;
}

.blueRect {
    border-radius: 50px;
    background-color: rgba(133, 192, 195, 0.21);
    letter-spacing: 0.38px;
    line-height: 35px;
    text-align: justify;
    padding: 30px;
    z-index: 1;
}

.cabinetPic {
    width: 80%;
    max-width: 840px;
    height: auto;
    border-radius: 40px;
    margin-top: 20px;
    z-index: 2;
}

.part2 {
    margin-bottom: 50px;
    align-items: center;
    background-color: #ECE6D7;
    letter-spacing: 0.38px;
    line-height: 35px;
    padding: 20px 30px 20px 30px;
}

.text {
    max-width: 80%;
    margin: auto;
}

.center {
    text-align: center;
}

/* Responsive part */

@media screen and (min-width: 1024px) { /* Desktop */

}

@media screen and (min-width: 768px) and (max-width: 1023px) { /* Tablet */

}

@media screen and (max-width: 767px) { /* Mobile */
    .profileContainer {
        flex-direction: column;
    }

    .profileName {
        width: 80%;
    }

}