.content {
    margin: 50px 150px 0px 150px;
}

@media screen and (max-width: 1600px) {
    .content {
        margin: 50px 50px 0px 50px;
    }
}

@media screen and (max-width: 620px) {
    .content {
        margin: 50px 25px 0px 25px;
    }
}

.header
{
    text-transform: uppercase;
    text-align: center;
}

.content__images {
    display: grid;
    margin: 50px 0px;
    grid-gap: 20px;
    grid-template-columns: 2fr repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);

}

@media screen and (max-width: 940px) {
    .content__images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }
}

.images__image {
    width: calc(100% - 20px);
    height: 200px;
    padding: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    position:relative;
    display: block;
    cursor: pointer;
    -webkit-transition: 0.3s opacity ease-in-out;
    transition: 0.3s opacity ease-in-out;
}

@media screen and (max-width: 1200px) {
    .images__image {
        height: 150px;
    }
}

@media screen and (max-width: 940px) {
    .images__image {
        height: 300px;
    }
}

@media screen and (max-width: 640px) {
    .images__image {
        height: 200px;
    }
}

@media screen and (max-width: 400px) {
    .images__image {
        height: 100px;
    }
}

.images__image--big {
    grid-row: 1 / span 2;
    height: 440px;
}


@media screen and (max-width: 1200px) {
    .images__image--big {
        height: 340px;
    }
}

@media screen and (max-width: 940px) {
    .images__image--big {
        grid-row: 1 / 1;
        grid-column: 1 / span 2;
        height: auto;
    }
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .content__images {
        column-count: 3;
        column-gap: 1em;
    }
    .images__image {
        width: 100%; max-width: 100%; height: auto;
        box-shadow: none;
    }
}

.images__image:hover {
    opacity: 0.8;
}

.images__more 
{
    text-align: right;
    padding: 0px 15px;
}

.images__more > a 
{
    text-decoration: none;
    color: #686868;
    -webkit-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}

.images__more > a:hover 
{
    color: black;
}

.images__modal
{
    position: fixed;
    top: 0; left: 0;
    background-color: rgba(0,0,0,0.8);
    width: 100vw;
    height: 100vh;
    display: none;
}

.images__modal--visible
{
    display: block;

}

.modal__times
{
    font-size: 56px;
    color: white;
    text-align: right;
    padding-right: 40px;
}

.modal__img__container
{
    width: 100%;
    height: calc(100% - 140px);
    text-align: center;
}
.modal__img
{
    max-width: 100%;
    max-height: 100%;
}

.close__button
{
    cursor: pointer;
}

.about {
    margin: 50px 0px 0px 0px;
    background-color: #eeeeee;
    padding: 50px;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 50px;
}

@media screen and (max-width: 920px)
{
    .about {
        grid-template-columns: 100%;
        grid-row-gap: 50px;
        padding: 25px;
    }
}

.about__image 
{
    max-width: 400px;
}

@media screen and (max-width: 920px)
{
    .about__image {
        max-width: 100%;
    }
}


.about__content
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: justify;
}

.about__header {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
    font-size: 2.5em;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 620px)
{
    .about__header {
        font-size: 2em;
    }
}

@media screen and (max-width: 480px)
{
    .about__header {
        font-size: 1.5em;
    }
}

.about__body {
    margin-top: 25px;
    letter-spacing: 1px;
}

.about__more 
{
    background-color: #ddd;
    text-align:center;
    padding: 15px;
}

.about__more > a 
{
    text-decoration: none;
    color: #686868;
    -webkit-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}

.about__more > a:hover 
{
    color: black;
}

.fade {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: 1;
}


@keyframes fade {
    0% {
        opacity: 1;
    }
    33% {
        opacity: 0.0;
    }
    66% {
        opacity: 0.0;
    }
    100% {
        opacity: 1;
    }
}