/***************************************************************
# Tags
***************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: url(assets/background.jpg);
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    font-family: 'Catamaran', sans-serif;
    color: #4E4E4E;
}

h1,
h2,
h2,
h3,
h4,
h5,
p {
    margin: 1rem 0;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 4em;
}

img {
    max-width: 100%;
}

.wrapper {
    margin: 3% 0 0;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.sub-title {
    font-size: 1.2em;
}

.button {
    background: #ED6B24;
    color: white;
    text-decoration: none;
    padding: 1em 1.5em;
    border-radius: 0.4em;
    font-weight: 800;
    display: inline-block;
    position: relative;
    padding-left: 5em;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
}

.button:hover {
    transform: translateY(-0.5em);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.button__icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4em;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8em;
    transform: translateX(-50%) translateY(-50%);
}

.portraits__grid-container {
    display: flex;
    flex-flow: wrap;
    margin: 2rem -1%;
    position: relative;
    z-index: 10;
}

.portraits__grid-item {
    width: 25%;
    padding: 1%;
    transition: transform .5s ease;
    position: relative;
}

.portraits__grid-item--full-screen {}

.portraits__grid-item:hover {
    transform: scale(1.15);
    z-index: 10;
}

.portraits__item {
    background: white;
    height: 100%;
    padding: 15%;
    box-shadow: 0rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

.portraits__item--full {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.portraits__item--full .portraits__label {z-index: 3;position: absolute;color: white;text-shadow: 0.07em 0.07em 0em black;width: 90%;left: 5%;bottom: 2.4em;}

.portraits__item--full img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portraits__label {
    font-family: 'Merriweather', serif;
    margin-top: 1em;
    font-size: 1.2em;
}


@media (max-width: 1199.98px) {
    h1 {
        font-size: 3.6em;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 3.2em;
    }

    .portraits__grid-item {
        width: 50%;
    }

    .portraits__label {
        font-size: 1.1em;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.8em;
    }

}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2.4em;
    }

    .portraits__label {
        font-size: 1em;
    }

}