#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--wp--preset--color--custom-white);
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
    opacity: 25%;
}

.top_brief img {
    vertical-align: middle;
    width: 75vw;
    margin: auto;
    display: flex;    
}
.top_brief .wp-block-media-text .wp-block-media-text__content {
    padding: unset;
}



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .top_brief .wp-block-media-text {
        grid-template-columns: auto !important;
    }
    .top_brief .wp-block-media-text .wp-block-media-text__content {
        grid-row: 2 !important;
    }

    .top_brief .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
        grid-column: 1 !important;
    }

    .top_brief img {
        width: 50vw;  
    }    
}

/* Medium devices (small laptops, large tablets, 782 and up) */
@media only screen and (min-width: 782px) {
    .top_brief img {
        width: 30vw;   
    }  
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .top_brief .wp-block-media-text {
        grid-template-columns: 1fr 1fr;
    }
    .top_brief .wp-block-media-text .wp-block-media-text__content {
        grid-row: 1 !important;
    }

    .top_brief .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
        grid-column: 2 !important;
    }      

    .top_brief img {
        width: 25vw;   
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}


