html {
    font-size: 62.5%;
}

body {
    background-color: #252525;
}

/* Preloads content after main body */
 body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -100;
    content: url();
 }
/* All Header Standard Styling */
h1 {
    font-size: 2.6rem;
    line-height: 3.2rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    font-size: 2.6rem;
    line-height: 3.2rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    font-size: 2.6rem;
    line-height: 3.2rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
/* All Paragraph Standard Styling */
p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
}
/* All Links Standard Styling */
a {
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
}

/* NAV BAR START */
/* General Nav Bar */
.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 6.0rem;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}
/* Logo container */
.header-main-logo {
    width: fit-content;
    height: 100%;
    margin-left: 1.0rem;
    display: flex;
}
/* Box logo image is within */
.header-main-logo a {
    align-content: center;
}
/* Image of Logo */
.header-main-logo img {
    height: 80%;
}
/* Clickable Buttons Section of Nav Bar Container */
.header-main-nav {
    width: fit-content;
    height: 100%;
}
/* List of Nav Bar */
.header-main-nav ul {
    list-style: none;
}
/* Parts of List of Nav Bar */
.header-main-nav ul li {
    display: inline;
    float: left;

}
/* Links within the parts of list of Nav Bar (button itself) */
.header-main-nav ul li a {
    display: block;
    height: 100%;
    padding: 0 2.2rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 6.0rem;
    color: white;
    transition-duration: 0.3s;
    transition-property: all;
    transition-behavior: ease;
    transition-delay: 0s;
}
/* Hover (Not Active) background color for button */
.header-main-nav ul li a:hover:not(.active){
    background-color: #131313;
}
/* Active page background color for button */
.header-main-nav ul li a.active {
    background-color: #00ab44;
}

.header-main-navburger, .header-main-navburger-button {
    display: none;
}
/* NAV BAR END */

/* FREE PHOTOS AND COLLECTIONS BACKGROUND */
.photography-collectionsandnoncollections {
    width: 100%;
    background-image: url(../images/Background\ 3c\ Light.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

/* FREE PHOTOS SECTION START */
.photography-freephotos-center {
    width: 130.0rem;
    background-color: white;
    margin: 0 auto;
    padding: 0 5.0rem 6.0rem 5.0rem;
    box-sizing: border-box;
}

.photography-freephotos-center h2 {
    width: 120.0rem;
    color: #111111;
    text-transform: uppercase;
    font-size: 5.0rem;
    text-align: center;
    flex-basis: 100%;
    border-bottom: solid 0.6rem #00ab44;
    padding-top: 5.0rem;
    padding-bottom: 2.0rem;
    justify-self: center;
    margin: 0 auto;
}

.photography-freephotos-center-photo-grid {
    width: 120.0rem;
    padding-top: 5.0rem;
    display: flex;
    flex-direction: column;
   /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    gap: 2.5rem;
    margin: 0 auto;
}

.photography-freephotos-center-photo-grid.is-column-layout {
    flex-direction: row;
    align-items: flex-start;
}

.photography-freephotos-center-photo-grid-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2.5rem;
    min-width: 0;
}

.photography-freephotos-center-photo-grid-column-item {
    height: auto;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.photography-freephotos-center-photo-grid-column-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform ease-in-out 200ms;
}

.photography-freephotos-center-photo-grid-column-item:hover img {
    transform: scale(1.03);
}

@media only screen and (max-width: 1350px) {
    .photography-freephotos-center {
        width: 100%;
    }

    .photography-freephotos-center h2,
    .photography-freephotos-center-photo-grid {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .photography-freephotos-center-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 800px) {
    .photography-freephotos-center {
        padding: 0 2.0rem 4.0rem 2.0rem;
    }

    .photography-freephotos-center h2 {
        font-size: 3.6rem;
    }

    .photography-freephotos-center-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Pop-up CSS */
.photography-freephotos-center-photo-grid-column-item {
    cursor: pointer;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5.0rem;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 200ms;
}

.photo-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.photo-lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 2.0rem 6.0rem rgba(0, 0, 0, 0.6);
    cursor: zoom-in;
    transition: transform ease-in-out 200ms;
}

.photo-lightbox.is-zoomed img {
    transform: scale(1.8);
    cursor: zoom-out;
}

body.lightbox-open {
    overflow: hidden;
}
/* FREE PHOTOS SECTION END */

/* FOOTER START */
footer {
    background-color: #111111;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
}

.footer-contentbox {
    width: 100%;
    max-width: 120.0rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 3.0rem;
    padding-bottom: 3.0rem;
    background-color: #111111;
}

.footer-content-box-left {
    width: 50%;
    display: flex;
    justify-content: left;
}

.footer-content-box-right {
    width: 50%;
    display: flex;
    justify-content: right;
}

.footer-content-box-top {
    display: none;
}

.footer-content-box-bottom {
    display: none;
}

.footer-content-box-quote {
    width: 14.0rem;
    height: 14.0rem;
    display: flex;
    background-color: none;
    align-items: center;
    margin-right: 1.0rem;
}

.footer-content-box-quote p {
    font-size: 3.4rem;
    line-height: 3.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-content-box-navigation {
    width: 30.0rem;
    height: 14.0rem;
    display: flex;
    align-content: space-between;
    padding-left: 2.0rem;
    border-color: #00ab44;
    border-style: none none none solid;
    border-width: 0.5rem;
    background-color: none;
}

.footer-content-box-navigation ul li {
    padding: 0.8rem 0rem;
}

.footer-content-box-navigation ul li a {
    color: white;
    font-size: 1.0rem;
    line-height: 1.2rem;
    text-align: left;
}

.footer-content-box-contact {
    width: 30.0rem;
    height: 14.0rem;
    display: flex;
    align-content: space-between;
    justify-content: right;
    padding-right: 2.0rem;
    border-color: #00ab44;
    border-style: none solid none none;
    border-width: 0.5rem;
    background-color: none;
}

.footer-content-box-contact ul li {
    padding: 0.8rem 0rem;
    text-align: right;
}

.footer-content-box-contact ul li a {
    color: white;
    font-size: 1.0rem;
    line-height: 1rem;
    text-align: right;
}

.footer-content-box-logo {
    width: 14.0rem;
    height: 14.0rem;
    display: flex;
    background-color: none;
    justify-content: right;
    margin-left: 2.0rem;
}

.footer-content-box-logo img {
    width: auto;
    height: auto;
}
/* FOOTER END */


@media only screen and (max-width: 800px) {

/* Keep every page link available without squeezing the navigation text. */
    .header-main {
        height: 5.0rem;
    }

    .header-main-logo img {
        height: 4.2rem;
    }

    .header-main-nav {
        display: none;
    }

    .header-main-navburger {
        display: none;
        position: fixed;
        width: 100%;
        height: calc(100vh - 5.0rem);
        top: 5.0rem;
        z-index: 900;
    }

    .header-main-navburger ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .header-main-navburger ul li {
        flex-basis: 100%;
        border-top: 2px solid white;
        background-color: #111;
    }

    .header-main-navburger ul li:nth-child(1) {
        border-top: 5px solid white;
    }

    .header-main-navburger ul li:last-child {
        border-bottom: 5px solid white;
    }

    .header-main-navburger ul li a {
        display: block;
        height: 100%;
        font-size: 2.4rem;
        padding: 2.0rem 0;
        flex-basis: 100%;
        text-align: center;
    }

    .header-main-navburger-button {
        display: block;
        width: 4.0rem;
        height: 4.0rem;
        margin-right: 1.0rem;
        align-self: center;
        background-image: url(../images/icons/burger_white.png), url(../images/icons/close_white.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center, center left 5.0rem;
    }

    .footer-contentbox {
        padding: 3.5rem 2.0rem;
        flex-direction: column;
        gap: 3.0rem;
        align-items: stretch;
    }

    .footer-content-box-left,
    .footer-content-box-right {
        display: none;
    }

    .footer-content-box-top {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-content-box-navigation ul {
        width: 100%;
        text-align: center;
    }

    .footer-content-box-navigation {
        width: 30.0rem;
        height: 14.0rem;
        display: flex;
        align-items: center;
        padding-left: 0.0rem;
        border: none;
    }

    .footer-content-box-navigation ul li {
        padding: 0rem 0rem;
    }

    .footer-content-box-navigation ul li a {
        font-size: 2.2rem;
        line-height: 3.4rem;
        text-align: center;
    }

    .footer-content-box-bottom {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-content-box-quote,
    .footer-content-box-logo {
        width: 42%;
        max-width: 28.0rem;
        height: auto;
        min-height: 0;
        margin: 0;
    }

    .footer-content-box-quote {
        justify-content: center;
        padding-right: clamp(1.0rem, 2.5vw, 2.0rem);
        border-color: #00ab44;
        border-style: none solid none none;
        border-width: 0.5rem;
    }

    .footer-content-box-quote p {
        width: 100%;
        font-size: clamp(2.4rem, 8vw, 6.4rem);
        line-height: 1;
        text-align: center;
    }

    .footer-content-box-logo {
        padding-left: clamp(1.0rem, 2.5vw, 2.0rem);
    }

    .footer-content-box-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ------ SMALL DESKTOP VERSION ------ */
@media only screen and (min-width: 801px) and (max-width: 1300px) {
    .header-main-nav {
        display: block;
    }

    .header-main-nav ul li a {
        padding: 0 clamp(0.8rem, 1.2vw, 1.8rem);
        font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    }

    .header-main-navburger,
    .header-main-navburger-button {
        display: none !important;
    }

    .footer-contentbox {
        width: 100%;
        padding: 3.0rem clamp(2.0rem, 3vw, 4.0rem);
    }

    .footer-content-box-left,
    .footer-content-box-right {
        min-width: 0;
    }

    .footer-content-box-right {
        align-items: center;
    }

    .footer-content-box-quote,
    .footer-content-box-logo {
        width: clamp(10.0rem, 11vw, 14.0rem);
        flex: 0 0 auto;
    }

    .footer-content-box-quote p {
        font-size: clamp(2.4rem, 2.6vw, 3.4rem);
        line-height: 1.12;
    }

    .footer-content-box-navigation,
    .footer-content-box-contact {
        width: clamp(19.0rem, 22vw, 30.0rem);
        min-width: 0;
    }

    .footer-content-box-navigation {
        padding-left: clamp(1.2rem, 1.8vw, 2.0rem);
    }

    .footer-content-box-contact {
        padding-right: clamp(1.2rem, 1.8vw, 2.0rem);
    }

    .footer-content-box-logo {
        height: auto;
        align-items: center;
        margin-left: clamp(1.0rem, 1.8vw, 2.0rem);
    }

    .footer-content-box-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ------ ULTRA-WIDE VERSION ------ */
@media only screen and (min-width: 2561px) {
    .header-main {
        height: 8.0rem;
    }

    .header-main-logo {
        margin-left: 2.0rem;
    }

    .header-main-nav ul li a {
        padding: 0 3.2rem;
        font-size: 1.8rem;
        line-height: 8.0rem;
    }

    .header-main-navburger,
    .header-main-navburger-button {
        display: none !important;
    }

    .footer-contentbox {
        max-width: 180.0rem;
        padding: 5.0rem 0;
    }

    .footer-content-box-quote,
    .footer-content-box-logo {
        width: 18.0rem;
        height: 18.0rem;
    }

    .footer-content-box-quote p {
        font-size: 4.2rem;
        line-height: 4.6rem;
    }

    .footer-content-box-navigation,
    .footer-content-box-contact {
        width: 38.0rem;
        height: 18.0rem;
    }

    .footer-content-box-navigation {
        padding-left: 3.0rem;
    }

    .footer-content-box-contact {
        padding-right: 3.0rem;
    }

    .footer-content-box-navigation ul li,
    .footer-content-box-contact ul li {
        padding: 0.8rem 0;
    }

    .footer-content-box-navigation ul li a,
    .footer-content-box-contact ul li a {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }
}
