.profile-block {
    padding: 75px 0 0px;
}
.profile-block .profile-item-holder {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.profile-block .profile-block-holder .profile-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile-block .profile-item h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: #484949;
    margin-bottom: 50px;
    text-align: center;
}
.profile-block .profile-block-body {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px 50px;
}
.profile-block .profile-block-body .body-row {
    width: 100%;
}
.profile-block .profile-block-body .body-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.profile-block .profile-block-body .profile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-block .profile-block-body .profile-content p {
    color: #484949;
    font-size: 15px;
    line-height: 140%;
    font-weight: 400;
}
.profile-block .profile-block-body .profile-content li::marker {
    color: #bfcbb7;
}
.profile-block .profile-block-body .body-row h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 25px;
    text-align: center;
}
.profile-block .profile-block-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.profile-block .profile-block-body form .input-holder {
    position: relative;
    display: flex;
    flex-direction: column;
}
.profile-block .profile-block-body form .input-holder label {
    position: absolute;
    left: 15px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #484949;
    font-weight: 400;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 10px;
}
.profile-block .profile-block-body form .input-holder input {
    width: 100%;
    min-height: 30px;
    padding: 5px 0px;
    border: none;
    font-size: 18px;
    color: #444;
    outline: none;
    font-weight: 400;
    border-bottom: solid 1px #bfcbb7;
}
.profile-block .profile-block-body form .input-holder textarea {
    width: 100%;
    min-height: 30px;
    padding: 5px 0px;
    border: none;
    font-size: 18px;
    color: #444;
    outline: none;
    font-weight: 400;
    border-bottom: solid 1px #bfcbb7;
    height: 40px;
    resize: none;
}
.profile-block .profile-block-body form .btn {
    margin-top: 25px;
}
@media screen and (max-width: 1230px) {
    .profile-block .profile-block-body {
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .profile-block .profile-item-holder {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .profile-block .profile-block-body {
        flex-direction: column;
    }
}