/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.top-hero {
    position: relative;
}

.video-container,
.image-container {
    border: 3px solid white;
    border-radius: 22px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    display: block;
}

.mosaic-div {
    padding: 32px 32px 0px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.mosaic-div .two_per_row {
    width: calc(50% - 16px);
    display: block;
}

.mosaic-div .two_per_row:nth-of-type(2n + 2) {
    margin-right: 0 !important;
}

.mosaic-div .three_per_row {
    width: calc(33.33% - 22px);
    display: block;
}

.mosaic-div .three_per_row:nth-of-type(3n + 2) {
    margin-left: 32px;
    margin-right: 32px;
}

.mosaic_picture-link {
    border-radius: 22px;
    margin-bottom: 32px;
    position: relative;
}

.mosaic_picture-element img {
    border-radius: 19px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.mosaic-element__label {
    position: absolute;
    bottom: -3px;
    left: -3px;
    background-color: #282828;
    border-radius: 22px 28px 28px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding:8px 16px 8px 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: Oswald-Medium;
    font-size: 20px;
}

.mosaic-element__label .eye-icon {
    margin-right: 8px;
}

.mosaic_even {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media all and (max-width:1045px) {
    .mosaic-div .three_per_row {
        width: calc(50% - 16px);
    }

    .mosaic-div .three_per_row:nth-of-type(3n + 2) {
        margin-left: 0;;
        margin-right: 0;;
    }

    .mosaic-div {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

@media all and (max-width:690px) {
    .mosaic_picture-link {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 16px !important;
    }

    .mosaic-div {
        padding: 16px;
    }
}