.profile-intro{
    background-color: #F3F6FD;
}

.profile-intro__inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 35px 0;

    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 992px) {
    .profile-intro__inner{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}
.profile-intro__img{
    max-width: 100%;
    height: auto;

    margin-left: 35px;
    grid-column:  2 / 3;
    grid-row: 1/ 3;
}
@media screen and (max-width: 992px) {
    .profile-intro__img{
        grid-column: auto;
        grid-row: 2/3;
        margin: 25px 0;
        width: 576px;
    }
}
@media screen and (max-width: 768px) {
    .profile-intro__img{
        width: 320px;
    }
}
@media screen and (max-width: 768px) {
    .profile-intro__img{
        max-width: 320px;
        width: auto;
    }
}

.profile-intro__img-inner{
    width: 100%;
    height: 100%;

    border-radius: 10px;
    object-fit: contain;
}

.profile-intro__text{
    line-height: 1.55;
}