.review {
    position: relative;
    padding: 70px 0;
}
.review form {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 690px;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}
.review form .title {
    color: #212121;
    font-family: "Mazzard", sans-serif;
    font-size: 5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 60px */
    margin-bottom: 46px;
}
.review form .up-form {
    display: flex;
    align-items: stretch;
    gap: 18px;
    justify-content: space-between;
}
.review form .up-form .inputs {
    /* width: 100%; */
    /* max-width: 440px; */
    flex-grow: 1;
}
.review form .photo {
    flex: 0 0 200px;
    height: auto;
    border-radius: 7px;
    border: 2px solid #AAA;
    margin-bottom: 18px;
}
.review form .photo > input {
    display: none;
}
.review form .photo > label {
    display: grid;
    place-items: center;
    height: 75%;
    width: 100%;
    border-bottom: 2px solid #AAA;
    border-radius: 7px;
    background-image: url('/assets/img/review-icon.png');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
}
.review form .photo > .text {
    height: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #AAA;
    text-align: center;
    font-family: "Mazzard", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 124.535% */
}
.review form .photo > .text > span {
    font-size: 16px;
    color: #AAA;
}
.review form input {
    outline: none;
    margin: 0 0 18px;
    border-radius: 7px;
    border: 2px solid #AAA;
    width: 100%;
    padding: 26px 20px;
    color: #AAA;
    font-family: "Mazzard", sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 124.535%; /* 124.535% */
}
.review form textarea {
    outline: none;
    resize: none;
    border-radius: 7px;
    border: 2px solid #AAA;
    width: 100%;
    padding: 26px 20px;
    color: #AAA;
    font-family: "Mazzard", sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 124.535%; /* 124.535% */
}
.review form button {
    margin: 24px 0 6px;
    border-radius: 77px;
    background: linear-gradient(180deg, #343BB8 0%, #292E89 100%), #FFF;
    padding: 16px 47px;
    color: #FFF;
    text-align: center;
    font-family: "Mazzard", sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 124.535%; /* 124.535% */
    -webkit-border-radius: 77px;
    -moz-border-radius: 77px;
    -ms-border-radius: 77px;
    -o-border-radius: 77px;
}
.review form span {
    color: #212121;
    text-align: center;
    font-family: "Mazzard", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 12px */
}
.review form span a {
    color: #212121;
    text-decoration: underline;
}
@media (max-width: 700px) {
    .review form .title {
        font-size: 4rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 570px) {
    .review form .up-form {
        flex-direction: column;
    }
    .review form .photo {
        flex: 0 0 270px;
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
    }
}