.contact-richtext {
    > div {
        > h2 {
            font-size: 82px;
            line-height: 78px;
            font-weight: 800;
            margin-bottom: 12px;
            margin-top: 48px;
        }

        > h3 {
            font-size: 48px;
            line-height: 60px;
            font-weight: 800;
            margin-bottom: 12px;
            margin-top: 48px;
        }

        > h4 {
            font-size: 24px;
            line-height: 33px;
            font-weight: 300;
            margin-bottom: 20px;
        }

        > p {
            font-size: 21px;
            line-height: 33px;
            margin-bottom: 8px;

            > b {
                font-weight: 800;
            }
        }
    }

    > h3 {
        font-size: 48px;
        line-height: 60px;
        font-weight: 800;
        margin-bottom: 12px;
        margin-top: 48px;
    }

    > p {
        font-size: 21px;
        line-height: 33px;
        margin-bottom: 8px;
    }
}


@media screen and (max-width: 768px) {
    .contact-richtext {
        > div {
            > h2 {
                font-size: 42px !important;
                line-height: 46px;

            }

            > h3 {
                font-size: 32px;
                line-height: 36px;

            }

            > h4 {
                font-size: 20px;
                line-height: 24px;
            }

            > p {
                font-size: 18px;
                line-height: 24px;
            }
        }

        > h3 {
            font-size: 32px;
            line-height: 36px;

        }

        > p {
            font-size: 18px;
            line-height: 24px;
        }
    }
}


@media screen and (max-width: 520px) {
    .contact-richtext {
        > div {
            > h2 {
                font-size: 36px !important;
                line-height: 42px;

            }

            > h3 {
                font-size: 30px;
                line-height: 36px;

            }

            > h4 {
                font-size: 20px;
                line-height: 24px;
            }

            > p {
                font-size: 18px;
                line-height: 24px;
            }
        }

        > h3 {
            font-size: 32px;
            line-height: 36px;

        }

        > p {
            font-size: 18px;
            line-height: 24px;
        }
    }
}

.oxq-input-field-wrapper {
    position: relative;

    label {
        display: block;
        font-size: 16px;
        margin-bottom: 12px;
        text-transform: uppercase;
        font-weight: 800;
    }

    input, textarea {
        display: block;
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgb(var(--color-oxq-black-150)) !important;
        padding: 12px 0 24px 0 !important;
        font-size: 24px !important;
        transition: border .3s ease-in-out;
        margin-bottom: 72px;
        line-height: 1.2;

        &::placeholder {
            color: rgb(var(--color-oxq-black-150));
            font-size: 24px;
            line-height: 24px;
            white-space: wrap;

            @media screen and (max-width: 768px) {
                font-size: 20px;
            }

            @media screen and (max-width: 520px) {
                font-size: 16px;
            }
        }

        &:focus {
            outline: none !important;
            box-shadow: none !important;
            border-bottom: 1px solid rgb(var(--color-oxq-red)) !important;
        }
    }

    &:last-child {
        input, textarea {
            margin-bottom: 64px;
        }
    }

    .errorlist {
        list-style-type: none;
        position: absolute;
        top: 100%;

        li {
            font-size: 11px;
            color: rgb(var(--color-oxq-red));
            margin: 0;
        }
    }
}

.spin-on-z {
    animation: spin-on-z 5s infinite linear;
}

@keyframes spin-on-z {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.send-button {
    -webkit-mask-image: -webkit-radial-gradient(white, black);

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(var(--color-oxq-black));
        border-radius: 9999px;
        transform: translateX(-105%);
        transition: transform .3s ease-in-out;
        z-index: 0;
    }

    &:hover {
        @media screen and (min-width: 1025px) {
            &:before {
                transform: translateX(0);
            }
        }
    }
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
    z-index: 9;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}