.realwork-about-grid {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 20px;
}

@media (max-width: 1279px) {
    .realwork-about-grid {
        grid-template-columns: 1fr;
    }
}

.realwork-about-card {
    border-radius: 30px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 799px) {
    .realwork-about-card {
        padding: 16px;
    }
}

.realwork-about-card:nth-child(1) {
    background-color: #EAEDFF;
}


.realwork-about-card:nth-child(2) {
    grid-row: 2 span;
}

.container .content .realwork-about-card:nth-child(2) img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s linear;
}

@media (hover: hover) {
    .realwork-about-card:nth-child(2):hover img {
        transform: scale(1.03);
    }
}

.realwork-about-card:nth-child(3) {
    background-color: #AFCCFF;
    min-height: 200px;
}

.container .content .realwork-about-card:nth-child(3) img {
    position: absolute;
    top: -42px;
    left: -30px;
    width: 408px;
    height: auto;
}

@media (max-width: 1279px) {
    .realwork-about-card:nth-child(1) {
        order: 2;
    }

    .realwork-about-card:nth-child(2) {
        order: 1;
        height: calc(81.25vw - 64px);
    }

    .realwork-about-card:nth-child(3) {
        order: 3;
    }

    .container .content .realwork-about-card:nth-child(3) img {
        top: -70px;
        left: -33px;
        width: 462px;
    }
}

@media (max-width: 799px) {
    .realwork-about-card:nth-child(3) {
        min-height: 200px;
    }

    .realwork-about-card:nth-child(2) {
        height: calc(109.33vw - 32px);
    }

    .container .content .realwork-about-card:nth-child(3) img {
        top: -25px;
        left: -18px;
        width: 200px;
    }
}