.__col__ {

    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__col__ img {
    width: 100%;
}

.__row__ {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.__row__1 {
    display: grid;
    height: 50px;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;

}


.__col1__ {
    width: 75%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__col1__ img {
    width: 100%;
}

@media (max-width:1000px) {
    .__row__ {

        grid-template-columns: 1fr;

    }

}