* {
    box-sizing: border-box;
}

/* Typography */

html {
    background: #e6eaf5;
    font-size: 62.5%;
    line-height: 1.15;
}

body {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
}

h1 {
    color: #111;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h1 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.sr-only {
    visibility: hidden;
}

/* Links */

a {
    color: #333;
    text-decoration: underline;
    transition: 0.2s;
}

a:hover {
    color: #999;
}

/* Icons */

.icon {
    fill: none;
    height: 2.5rem;
    stroke-width: 6px;
    stroke: #333;
    transition: 0.2s;
    width: 2.5rem;
}

.icon:hover {
    stroke: #999;
}

/* Buttons */

.btn {
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 1rem 0;
    padding: 1rem 3rem;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: #222;
    color: #fff;
}

.btn--primary:hover {
    background: #555;
}

.btn--secondary {
    background: #aaa;
}

.btn--secondary:hover {
    background: #ccc;
}

/* Navbar & Header */

.header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 5rem 2rem 5rem;
    text-align: center;
}

.header__title {
    text-decoration: none;
    z-index: 9;
}

.navbar {
    background-color: hsla(224deg 43% 93% / 0.95);
    height: 100%;
    inset: 0 0 50% 0;
    list-style: none;
    margin: 0;
    opacity: 1;
    padding-top: 10rem;
    padding: 0;
    position: fixed;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: 8;
}

.navbar[data-visible="true"] {
    transform: translateX(0);
}

.navbar__item {
    padding: 1rem 0;
}

.navbar__item img {
    max-width: 2rem;
}

.navbar__item>a {
    text-decoration: none;
    transition: 0.2s;
}

.navbar:first-child {
    margin-top: 10rem;
}

.navbar--active {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hamburger {
    background: none;
    border: 0;
    cursor: pointer;
    height: 3rem;
    width: 3rem;
    z-index: 9;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger__bar {
    background-color: #111;
    border-radius: 2px;
    display: block;
    height: 3px;
    margin: 4px -4.5px;
    padding: 0;
    transition: 0.3s ease-in-out;
    width: 25px;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.social-icons {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.social-icons li {
    padding: 0 1rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .navbar {
        display: flex;
        padding-top: 0.5rem;
        position: relative;
        transform: translateX(0);
    }

    .hamburger {
        display: none;
    }

    .navbar__list {
        display: flex;
        width: auto;
    }

    .navbar__item {
        padding: 1rem;
    }

    .navbar:first-child {
        margin-top: 0;
    }

    .social-icons li {
        padding-top: 0;
    }

    .social-icons li:first-child {
        padding-left: 0;
    }

    .social-icons li:last-child {
        padding-right: 0;
    }
}

/* Home Page */

.home-gallery {
    align-content: center;
    display: grid;
    gap: 10px;
    justify-content: center;
    padding: 1rem 5rem;
}

.home-gallery .home-gallery__img {
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
}

.home-gallery__img {
    cursor: pointer;
    transition: 0.2s;
}

.home-gallery__img:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

/* Forms */

.form {
    display: flex;
    flex-direction: column;
    margin: 5rem auto;
    width: 65%;
}

.form__input,
.form__textarea {
    border-radius: 5px;
    border: 1px solid #333;
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    outline: 0;
    padding: 1rem 1rem;
}

.form__textarea {
    resize: vertical;
}

::placeholder {
    color: #777;
}

.form__btn {
    margin: 0.25rem auto;
    width: fit-content;
}

.form__label {
    cursor: pointer;
    margin-bottom: 0.25rem;
}

.form__label::after {
    content: '*';
}

.form__recaptcha {
    align-items: center;
    justify-content: center;
    margin: 1rem;
}

@media (min-width: 768px) {
    .form {
        width: 40%;
    }
}

/* Lightbox */

.lightbox-background {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    opacity: 0;
    overflow: scroll;
    place-items: center;
    position: fixed;
    top: 0;
    transition: 0.2s;
    visibility: hidden;
    width: 100%;
    z-index: 7;
}

.lightbox-background.active {
    backdrop-filter: blur(1rem);
    opacity: 1;
    visibility: visible;
}

#lightboxImg {
    border-radius: 5px;
    border: 0.5rem solid #fff;
    box-shadow: 5px 5px 20px #000;
    margin-top: 15rem;
    max-height: 100%;
    max-width: 90%;
    z-index: 8;
}

.lightbox-buttons {
    display: flex;
    gap: 2rem;
    z-index: 8;
}

.lightbox-button {
    background-color: hsl(224, 43%, 93%, .75);
    border-radius: 5px;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 600;
    outline: none;
    padding: 5px;
    text-align: center;
    transition: 0.2s;
}

.lightbox-button:hover {
    color: #999;
}

@media (min-width: 768px) {
    .lightbox-background.active {
        gap: 10px;
    }

    #lightboxImg {
        margin-top: 10rem;
        max-width: 80%;
    }
}

@media (min-width: 1024px) {
    #lightboxImg {
        margin-top: 9rem;
        max-width: 65%;
    }
}

/*# sourceMappingURL=/styles.e2bd51e3.css.map */