.contact-body {
    padding-top: 100px;
    padding-bottom: 20px;
}

.contact-body > .body {
    word-break: break-all;
}

.contact-bottom {
    padding-bottom: 200px;
    gap: 30px;
}

.contact > .title {
    font-size: 70px;
    line-height: 60px;
}

.small-text {
    font-size: 18px;
    text-align: center;
    width: 100%;
    line-height: 24px;
    margin: 0 auto;
    margin-bottom: 30px;
    color: #3c3c3c;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    gap: 10px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-wrapper > label {
    font-size: 16px;
    color: #3c3c3c;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgb(141, 141, 141);
    padding: 0 10px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.full-block.contact-body a {
    color: inherit;
}

textarea.form-input {
    padding: 10px;
    min-height: 100px;
    max-height: 500px;
    resize: vertical;
}

.captcha-area {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-submit {
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    margin-top: 20px;
    border-radius: 4px;
    background-color: black;
    color: white;
    border: 0;
    cursor: pointer;
    transition: .1s ease opacity;
}

.form-submit:hover {
    opacity: 0.8;
}

.form-submit:active {
    opacity: 0.6;
}

.form-submit:disabled {
    opacity: 0.5;
}

.form-error, .form-success {
    text-align: center;
    font-size: 16px;
    color: rgb(205, 0, 0);
    margin-top: 20px;
}

.form-success {
    color: rgb(44, 148, 0);
}

.full-block.social {
    gap: 30px;
    padding-top: 20px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-row > a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: black;
    transition: .2s ease transform;
}

.social-row > a > svg {
    width: 80px;
    height: 80px;
}

.social-row > a > label {
    font-size: 16px;
    line-height: 16px;
}

.social-row > a:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 700px) {
    .contact-body {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .contact > .title {
        font-size: 60px;
        line-height: 50px;
    }

    .small-text {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .full-block {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-body .body {
        font-size: 14px;
    }

    .contact-body .body br {
        line-height: 10px;
    }

    .contact-bottom > .title {
        font-size: 48px;
        line-height: 44px;
    }
}