/* Estilo para tornar o iframe responsivo */
.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: inherit;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 100%;

    @media only screen and (max-width: 768px) {
        top: 30%
    }
}

.tm-img-gallery-container {
    width: 100vw;
    height: 100vh;

    @media only screen and (min-width: 1024px) {
        width: 70vw;
    }
}
