.thank-you {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;

    @media (min-width:768px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.thank-you__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 32px;

    @media (min-width:768px) {
        font-size: 40px;
    }
}

.thank-you__text {
    margin: 0 auto 40px auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--brand-grey-light);

    p {
        a {
            display: inline-block;
            font-weight: 700;
            color: var(--brand-green);
            text-decoration: underline;
            transition: color .2s ease-in-out;

            &:hover,
            &:focus {
                color: var(--brand-green);
                text-decoration: none;
            }
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    @media (min-width:768px) {
        max-width: 50%;
        font-size: 18px;
    }
}