.index {
    .thanks {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    .thanks__in {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .thanks__in img {
        width: 100%;
        min-width: 500px;
    }
    .thanks__content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    @media screen and (max-width: 676px) {
        .thanks {
            width: 100%;
            margin: 0;
            padding: 0 20px 50px 20px;
        }
        .thanks__in {
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: space-between;
        }
        .thanks__in img {
            width: 100%;
            min-width: 100%;
        }
    }
}