.site-logo {
    height: 3em;
}

.arctexa-jumbotron {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arctexa-jumbotron-design {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: start;
}

#home-page-jumbotron {
    background-image: url("/resources/images/pexels-pameilama-14748063.jpg");
}

#dev-page-jumbotron {
    background-image: url("/resources/images/pexels-billelmoula-540518.jpg");
}

#design-page-jumbotron {
    background-image: url("/resources/images/pexels-davidriano-975771.jpeg");
}

#peace-of-mind-section {
    background-image: url("/resources/images/home-page-help-bg.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dev-section-cards {
    width: 50vh;
    height: 40vh;
}

#dev-why-section {
    background-image: url("/resources/images/pexels-andreea-ch-371539-1166644.jpeg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 60vh;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

#design-jumbotron-title {
    font-size: 10rem;
    font-family: "Cormorant Unicase", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 0.9 !important;
}

#design-body {
    font-family: "Ovo", serif;
    font-weight: 400;
    font-style: normal;
}

.design-service-title {
    font-size: 5rem;
    font-family: "Cormorant Unicase", serif;
    font-weight: 700;
    font-style: normal;
}

#design-phil-section {
    background-image: url("/resources/images/pexels-scottwebb-1048033.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.masonry {
    column-count: 3;
    column-gap: 1rem;
}

/* make items behave correctly inside columns */
.masonry-item {
    display: inline-block;
    /* required so width:100% fills the column */
    width: 100%;
    margin: 0 0 1rem;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: .75rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* responsive column counts */
@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}

.grayscale-img {
  filter: grayscale(100%);
}