* {
    box-sizing: border-box;
    background: initial;
    border: initial;
    color: inherit;
    font-family: inherit;
    margin: initial;
    padding: initial;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-snap-type: y mandatory;
}

body {}

nav {
    background-color: white;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: stretch;
    position: sticky;
    left: 0px;
    top: 0px;
    padding: 0px 40px;
    width: 100vw;
}

nav a {
    color: black;
    cursor: pointer;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    padding: 0px 15px;
    text-transform: uppercase;
}

nav a.active {
    border-bottom: 2px solid forestgreen;
}

main {
    background-color: white;
    box-shadow: 0px 0px 90px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 0px 40px;
}

img {
    display: block;
    position: relative;
    max-width: 100%;
}

h1 {
    letter-spacing: -1px;
    font-weight: 300;
    font-size: 40px;
}

.center-1080 {
    margin: auto;
    max-width: 1080px;
}

.center-1280 {
    margin: auto;
    max-width: 1280px;
}

.center-1440 {
    margin: auto;
    max-width: 1440px;
}

.center-1600 {
    margin: auto;
    max-width: 1600px;
}

.blur {
    filter: blur(16px) grayscale(0.5);
}

.relative {
    position: relative;
}

.fill-absolute {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.fill {
    width: 100%;
    height: 100%;
}

.fill-width {
    width: 100%;
}

.fill-height {
    height: 100%;
}

.height-50 {
    height: 50vh;
}

.height-75 {
    height: 75vh;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row-fill {
    flex-grow: 1;
    width: 0%;
}

.row-fill-2 {
    flex-grow: 2;
    width: 0%;
}

.col {
    display: flex;
    flex-direction: column;
}

.col-fill {
    flex-grow: 1;
    height: 0%;
}

.jcc {
    justify-content: center;
}

.aic {
    align-items: center;
}

.ais {
    align-items: stretch;
}

.padding {
    padding: 15px;
}

.padding-v {
    padding: 15px 0px;
}

.padding-h {
    padding: 0px 15px;
}

.box {
    background-color: #f4f4f4;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.tag {
    background-color: #f4f4f4;
    color: black;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
    padding: 7px;
    overflow: hidden;
}

.similar-image {
    object-fit: cover;
    aspect-ratio: 2 / 1;
    width: 100%;
}

.aspect-100 {
    aspect-ratio: 1 / 1;
}

.aspect-75 {
    aspect-ratio: 4 / 3;
}

.aspect-50 {
    aspect-ratio: 2 / 1;
}

.photo-column-left {
    max-width: calc(100% - 360px);
}

.photo-column-right {
    width: 360px;
}

.photo-box {
    height: 75vh;
    max-height: 75vh;
}

.photo-box img {
    object-fit: contain;
    object-position: top left;
    max-width: 100%;
}

@media (max-width: 1366px) {
    nav {
        padding: 0px 30px;
    }

    main {
        padding: 0px 30px;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 0px 20px;
    }

    main {
        padding: 0px 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0px 10px;
    }

    main {
        padding: 0px 10px;
    }

    .photo-column-left {
        width: 100%;
        max-width: 100%;
    }

    .photo-column-right {
        width: 100%;
        max-width: 100%;
    }

    .photo-box {
        height: auto;
        max-height: initial;
    }

    .photo-box img {
        object-position: center;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 100px);
    }
}

.btn {
    background-color: rgb(0, 163, 108);
    border-radius: 15px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    z-index: 10;
    width: auto;
}

.btn:hover {
    background-color: rgb(0, 114, 76);
}