/*
* Template Block Styles
*/

:root {
    --gallery-gap:24px;
}
.gallery-block  {
    text-align:center;
    max-width:var(--max-width);
    margin:100px auto;
    /* padding: 0 30px; */
    width: calc(100% - 30px);
}
.gallery-block__gallery {
    display:flex;
    flex-wrap:wrap;
    padding:12px;
    margin: 0 -24px;
}
.gallery-block__description {
    max-width:980px;
    margin:auto;
    font-weight:300;
    line-height:26px;
    padding: 0 15px;
}
h2.gallery-block__title {
    font-size:40px;
    font-weight:600;
    margin:0 0 16px;
        padding: 0 15px;

}
.gallery-block__gallery a:focus {
    outline:none;
}
.gallery-block__gallery img {
    width:100%;
    height:100%;
    object-fit:cover;
    padding:12px;
}
.gallery-block__gallery a:nth-of-type(5n-4), .gallery-block__gallery a:nth-of-type(5n-3) {
    width:50%;
    height:475px;
}
.gallery-block__gallery a:nth-of-type(5n-2), .gallery-block__gallery a:nth-of-type(5n-1), .gallery-block__gallery a:nth-of-type(5n) {
    width:33.33%;
    height:311px;
}
@media(max-width:600px) {
    .gallery-block__gallery a {
        height:160px!important;
    }
    .gallery-block__gallery a:nth-of-type(3n-1), .gallery-block__gallery a:nth-of-type(3n-2) {
        width:50%!important
    }
        .gallery-block__gallery a:nth-of-type(3n) {
        width:100%!important;

    }
}