.videos {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}


@media screen and (min-width: 1498px) {
    .video{
        margin-left: 32px;
        margin-right: 32px;
    }
}


@media screen  and (min-width: 641px) and (max-width: 1190px) {

    .videos iframe {
        width:100%;
        height: 200px;
    }
}

@media screen and (max-width: 640px) {
    .videos {
        flex-direction: column;
        padding: 40px 16px
    }

    .video {
        width: 100%;
        height: calc(100% / 315 * 560);
    }

    .videos iframe {
        width:100%;
    }
}