@font-face {
    font-family: "Centaur MT Std";
    src: url('../fonts/template/CentaurMTStd.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Centaur MT Std";
    src: url('../fonts/template/CentaurMTStd-Italic.woff2') format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

h1:not(wp-block-post-content h1),
h2:not(wp-block-post-content h2),
h3:not(wp-block-post-content h3),
h4:not(wp-block-post-content h4),
h5:not(wp-block-post-content h5),
h6:not(wp-block-post-content h6) { 
    margin-block-start: revert;
    margin-block-end: revert;
	font-weight: revert;
}

.mosaic_container {
    width: 100%;
    padding: 7% 5% 3%;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.mosaic_container_left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    padding-right: 7.5%;
    border-right: 1px solid black;
}

.mosaic_container_title {
    font-size: 37px;
    font-family: 'Centaur MT Std';
    color: black;
    line-height: 37px;
    letter-spacing: 17.8px;
}

.mosaic_container_credits {
    font-family: 'Centaur MT Std';
    color: black;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: .75px;
    margin: 100px 0px;
}

.mosaic_container_copy {
    font-size: 17px;
    line-height: 19px;
    font-family: 'Centaur MT Std';
    columns: 2;
    column-gap: 5%;
    color: black;
    text-align: justify;
}

.mosaic_container_right {
    width: 50%;
    height: 80vh;
    padding-left: 10%;
    box-sizing: border-box;
    position: relative;
}

.main_tile_mosaic {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    opacity: 1;
    z-index: 3;
    transition: all 1000ms;
    -webkit-transition: all 1000ms;
}

.main_tile_mosaic.hide {
  opacity: 0;
}

.mosaic_holder {
    width: 100%;
}

.mosaic_grid {
    width: 100%;
    height: 36vw;
    /* margin-left: 100%; */
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
    
.mosaic_grid_item {
    background-size: cover;
    background-position: center;
}

.mosaic_caption {
    margin-top: 10px;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 1px;
    font-family: 'Centaur MT Std';
    font-style: italic;
    color: black;
}

.mosaic_caption.desktop {
    display: block;
}

.mosaic_caption.mobile {
    display: none;
}

.tile_mosaic {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20%;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2;
    transition: all 1000ms;
    -webkit-transition: all 1000ms;
}

.tile_mosaic.active {
    opacity: 1;
}

.mosaic_grid_image {
    width: 100%;
    height: 36vw;
    background-size: cover;
    background-position: center;
}

@media all and (max-width: 1000px) {
    .mosaic_container_left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
        padding-right: 0%;
        border-right: 0px solid black;
    }

    .mosaic_container_right {
        width: 100%;
        height: 110vw;
        padding-left: 0%;
        box-sizing: border-box;
        position: relative;
        margin-top: 50px;
    }

    .mosaic_grid_item {
        background-size: cover;
        background-position: center;
        height: 28vw;
    }

    .mosaic_caption.desktop {
        display: none;
    }
    
    .mosaic_caption.mobile {
        display: block;
    }

    .tile_mosaic {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        position: absolute;
        top: 0;
        left: 0;
        padding-left: 0%;
        box-sizing: border-box;
        opacity: 0;
        z-index: 2;
        transition: all 1000ms;
        -webkit-transition: all 1000ms;
    }

    .mosaic_grid_image {
        width: 100%;
        height: 90.25vw;
        background-size: cover;
        background-position: center;
    }
}

@media all and (max-width: 700px) {
    .mosaic_container_copy {
        font-size: 17px;
        line-height: 19px;
        font-family: 'Centaur MT Std';
        columns: 1;
        column-gap: 5%;
        color: black;
        text-align: justify;
    }

    .mosaic_container_right {
        width: 100%;
        height: 150vw;
        padding-left: 0%;
        box-sizing: border-box;
        position: relative;
        margin-top: 150px;
        padding-bottom: 0px;
    }

    .mosaic_holder {
        width: 100%;
        height: 100vw;
    }

    .mosaic_grid {
        width: 100%;
        height: 100%;
        /* margin-left: 100%; */
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
    }

    .mosaic_caption.desktop {
        display: none;
    }
    
    .mosaic_caption.mobile {
        display: block;
    }
}