@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marck+Script:wght@400&display=swap');


:root {
    --nav-height: 95px;
    --global-padding: 110px;
    
    --font-size-heading:    50px;
    --font-size-subheading: 40px;
    --font-size-heading-medium:    90px;
    --font-size-subheading-medium: 40px;
    
    --font-size-mobile:         16px;
    --font-size-heading-mobile: 40px;
    --font-size-button:         16px;
}
/* @media screen and (max-width: 1200px) { */
@media screen and (max-width: 900px) {
    :root {
        --nav-height: 85px;
        --global-padding: 30px;
    }
}


* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: 0;
    margin:  0;
}


body {
    background-color: black;
    font-family: 'Montserrat', sans-serif;
}

.section-home {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: var(--global-padding);
}
@media screen and (max-height: 1000px) {
    .section-home {
        padding-top: calc(var(--nav-height) + var(--global-padding));
        height: auto;
    }
}
@media screen and (max-height: 650px) and (max-width: 900px) {
    .section-home {
        flex-direction: column-reverse;
        justify-content: center;
    }
}

.home-gradient:empty {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--nav-height) * 3);
    background: linear-gradient(180deg, rgba(35, 26, 17, 0.709), transparent);
}

.home-image {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width:  100%;
    height: 100%;
    z-index: 1;
    opacity: 80%;
}

.menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1c21;
    height: var(--nav-height);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 8;
    padding-left:  var(--global-padding);
    padding-right: var(--global-padding);
}
@media screen and (max-width: 1200px) {
    .menu-nav {
        --lr-padding: calc(var(--global-padding) * 0.4);
        padding-left:  var(--lr-padding);
        padding-right: var(--lr-padding);
    }
}
@media screen and (max-width: 900px) {
    .menu-nav {
        padding-left:  var(--global-padding);
        padding-right: var(--global-padding);
    }
}
@media screen and (max-height: 650px) {
    .menu-nav {
        background-color: #1a1c2146;
    }
}

#menu-mobile {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    border-radius: 0;
    position: fixed;
    z-index: 7;
    overflow: scroll;
    transition: opacity 0.25s ease;
}

.section-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    font-size: 28px;
    color: aliceblue;
    transition: all 0.33s ease;
}
@media screen and (max-width: 900px) {
    .section-logo {
        font-size: 25px;
    }
}

.section-logo:hover {
    margin-left: 10px;
    transition: margin-left 0.33s;
}

.image-logo {
    object-fit: contain;
    width:  45px;
    height: 45px;
    margin-right: 4px;
}
@media screen and (max-width: 900px) {
    .image-logo {
        width:  34px;
        height: 34px;
    }
}

.section-nav {
    min-width: 750px;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    font-size: 17px;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 1200px) {
    .section-nav a, .section-nav select {
        display: none;
    }
    .section-nav {
        min-width: auto;
        width: auto;
    }
}

.menu-mobile-open {
    display: none;
    cursor: pointer;
    width:  35px;
    height: 35px;
    object-fit: contain;
}
@media screen and (max-width: 1200px) {
    .menu-mobile-open {
        display: block;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: aliceblue;
    height: 100%;
    font-weight: 600;
}

.nav-link:hover {
    color: burlywood;
    transition: color 0.15s;
}

.link-active {
    text-decoration: underline;
    text-decoration-color: burlywood;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.title-main {
    z-index: 2;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

.title-main h1 {
    text-shadow: 5px 5px 20px rgba(31, 20, 9, 0.677);
    font-weight: 700;
    font-size: 125px;
    margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
    .title-main {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-main h1 {
        text-align: center;
        font-size: var(--font-size-heading-medium);
    }
}
@media screen and (max-width: 900px) {
    .title-main h1 {
        font-size: var(--font-size-heading-mobile);
    }
}
@media screen and (max-height: 800px) and (min-width: 900px) {
    .title-main h1 {
        font-size: 80px;
    }
}

.main-subheading {
    font-family: "Marck Script", cursive;
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 3px;
    position: absolute;
    text-shadow: 2px 2px 6px rgba(31, 20, 9, 0.6);
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .main-subheading {
        position: inherit;
        font-size: var(--font-size-subheading-medium);
        transform: translateY(-80%);
    }
}
@media screen and (max-width: 900px) {
    .main-subheading {
        font-size: 25px;
    }
}
@media screen and (max-width: 350px) {
    .main-subheading {
        transform: translateY(-10%);
    }
}
@media screen and (max-height: 800px) and (min-width: 900px) {
    .main-subheading {
        font-size: 40px;
        transform: translateY(-50%);
    }
}

.title-main h3 {
    /* text-shadow: 5px 5px 20px rgb(31, 20, 9); */
    color: white;
    width: 60%;
    font-weight: 400;
    font-size: 19px;
    margin-top:  30px;
    margin-bottom: calc(var(--global-padding) / 2);
}
@media screen and (max-width: 900px) {
    .title-main h3 {
        width: 100%;
        text-align: center;
        font-size: var(--font-size-mobile);
    }
}


.title-button {
    width:  110px;
    height: 110px;
    cursor: pointer;
    border: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
@media screen and (max-width: 900px) {
    .title-button {
        width:  90px;
        height: 90px;
    }
}
@media screen and (max-width: 700px) {
    .title-button {
        display: none;
    }
}
@media screen and (max-height: 700px) and (max-width: 900px) {
    .title-button {
        width:  auto;
        height: auto;
    }
}

.title-button:hover {
    transition: background-color 0.25s;
}

.title-button:active {
    background-color: burlywood;
}

.title-button img {
    width:  50px;
    height: 50px;
    object-fit: fill;
}
@media screen and (max-width: 900px) {
    .title-button img {
        width:  30px;
        height: 30px;
    }
}

.title-button:hover img {
    transform: translateY(5px);
    transition: transform 0.4s;
}


.home-contact-container {
    z-index: 1;
    position: absolute;
    color: white;
    padding: 8px;
    bottom: 65px;
    left:   50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 50px;
    border-radius: 50px;
    background-color: rgb(40 45 57);
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0px 8px 1px #a37c48;
}
@media screen and (max-width: 900px) {
    .home-contact-container {
        font-size: 15px;
        left: var(--global-padding);
        width: calc(100% - var(--global-padding) * 2);
        transform: translateX(0);
    }
}
@media screen and (max-width: 700px) {
    .home-contact-container {
        flex-direction: column;
        height: auto;
        border-radius: 20px;
    }
}
@media screen and (max-height: 650px) and (max-width: 900px) {
    .home-contact-container {
        position: inherit;
        margin: var(--global-padding) 0 var(--global-padding) 0;
        transform: translateX(0);
        bottom: 0;
        left:   0;
    }
}


.home-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-left: 10px;
}
@media screen and (max-width: 700px) {
    .home-contact-item {
        flex-wrap: wrap;
        word-break: break-all;
        white-space: normal;
    }
}
.home-contact-item:first-child {
    margin: 0;
}

.home-contact-item a, .home-contact-item span {
    color: white;
    text-decoration: none;
}

.home-contact-item a:hover {
    text-decoration: underline;
}

.home-contact-item img {
    object-fit: contain;
    width:  20px;
    height: 20px;
    margin-right: 10px;
}

.section-about {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: var(--global-padding);
    /* background: linear-gradient(190deg,#1a1c21 60%, rgb(116, 141, 240)); */
    background-color: #f6f6f6;
    flex-direction: row;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}
@media screen and (max-width: 1600px) {
    .section-about {
        flex-direction: column;
    }
}
@media screen and (max-width: 900px) {
    .section-about {
        --padding: calc(var(--nav-height) + var(--global-padding));
        padding-top:    calc(var(--padding) + 30px);
        padding-bottom: calc(var(--padding) * 0.8);
    }
}

.container-about-left {
    display: flex;
    width: 60%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    z-index: 1;
}
@media screen and (max-width: 1600px) {
    .container-about-left {
        margin-bottom: 100px;
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .container-about-left {
        justify-content: center;
        align-items: center;
    }
}

.container-about-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    z-index: 1;
}
@media screen and (max-width: 1900px) {
    .container-about-right {
        width: 100%;
    }
}

.image-about {
    border-radius: 20px;
    object-fit: cover;
    width:  100%;
    height: calc(100% - var(--nav-height));
    box-shadow: 10px 10px 2px burlywood, -10px -10px 12px #00000011;
}

.image-about-trees {
    z-index: 0;
    position: absolute;
    left:   0;
    bottom: 0;
    width: 100%;
    height: 50%;
    /* background: url(images/trees.svg); */
    background: url(images/dot.svg);
    background-repeat: repeat-x repeat-y;
    background-size: tile;
    opacity: 4%;
}
.trees-fade {
    width:  100%;
    height: 100%;
    background: linear-gradient(180deg, #f6f6f6, transparent);
}
.title-about {
    font-weight: 700;
    font-size: 55px;
    font-size: var(--font-size-heading);
    color: rgb(24, 31, 37);
    margin-bottom: 16px;
}
@media screen and (max-width: 900px) {
    .title-about {
        font-size: var(--font-size-heading-mobile);
    }
}

.paragraph-about {
    font-size: 19px;
    width: 80%;
    /* color: #6f788c; */
    /* color: #9aa1af; */
    color: #363c48;
    
}
@media screen and (max-width: 900px) {
    .paragraph-about {
        text-align: center;
        font-size: 16px;
        width: 100%;
    }
}

.button-container-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
}
@media screen and (max-width: 900px) {
    .button-container-about {
        width: 100%;
    }
}

.button-products img, .button-contact img {
    object-fit: contain;
    margin-right: 10px;
    width:  25px;
    height: 25px;
    transition: all 0.2s;
}

.button-products, .button-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -3px 8px 18px 7px #00000018;
    align-items: center;
    margin-top: 50px;
    font-size: var(--font-size-button);
    font-weight: 700;
    text-decoration: none;
    /* background-color: rgb(53, 133, 213); */
    background-color: rgb(209 148 69);
    color: #fff;
    /* color: aliceblue; */
    width: 260px;
    height: 60px;
    border-radius: 100px;
    transition: all 0.2s;
}
@media screen and (max-width: 900px) {
    .button-products {
        width: 100%;
    }
}

.button-contact {
    margin-left: 22px;
    background-color: #fff;
    /* background-color: #dce2e7; */
    color: #0d161b;
}
@media screen and (max-width: 900px) {
    .button-contact {
        margin: 0;
        margin-top: 30px;
        width: 100%;
    }
}

.button-contact:hover {
    background-color: #fcfdff;
}
.button-contact:active {
    color: #afb7bb;
}
.button-contact:hover img {
    transform: translateY(7%);
    transition: all 0.2s;
}

.button-products:hover {
    padding-right: 6px;
    /* background-color: rgb(44, 115, 186); */
    background-color: rgb(193, 128, 44);
    transition: all 0.30s;
}

.app-window-about {
    background-color: #11171e;
    -webkit-box-shadow: -3px 8px 25px 7px #0000002f; 
    box-shadow: -3px 8px 25px 7px #0000002f;
    width: 100%;
    min-height: 620px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid whitesmoke;
}
@media screen and (max-width: 1300px) {
    .app-window-about {        

    }
}


.app-panel-0 {
    cursor: default;
    color: black;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    justify-content: space-between;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    height: 45px;
}

.app-panel-1 {
    cursor: default;
    color: black;
    background-color: rgb(234, 234, 234);
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 38px;
    padding-left: 15px;
}

.app-panel-1 span {
    margin-right: 25px;
}

.app-content {
    display: flex;
    flex: 1;
}

.app-content img {
    flex: 1;
    object-fit: cover;
    width: 100%;
    /* width:  100%;
    height: 100%;
    object-fit: cover; */
}

.app-panel-options {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.app-panel-options img {
    width:  14px;
    height: 14px;
    object-fit: cover;
    margin-left: 20px;
    cursor: not-allowed;
}


.section-references, .section-products {
    width: 100%;
    min-height: 100vh;
    padding: var(--global-padding);
    padding-top: calc(var(--global-padding)/2 + var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: #1a1c21;
}

.section-products {
    background-color: #f6f6f6;
}


.references-heading, .products-heading {
    position: relative;
    color: aliceblue;
    font-size: var(--font-size-heading);
    margin-top: calc(var(--nav-height) - var(--global-padding) + 35px);
    margin-bottom: 16px;
}
.products-heading {
    color: #1a1c21;
}
@media screen and (max-width: 900px) {
    .references-heading, .products-heading {
        font-size: var(--font-size-heading-mobile);
        word-break: break-all;
        margin-top: 30px;
    }
}

.references-heading::after {
    content: "";
    background: burlywood;
    position: absolute;
    top: -8px;
    left: 0;
    height: 8px;
    width: 100%;
}

.references-paragraph, .products-paragraph {
    font-size: 18px;
    text-align: center;
    color: rgb(196, 205, 212);
    width: 50%;
}
.products-paragraph {
    color: #454954;
}
@media screen and (max-width: 900px) {
    .references-paragraph, .products-paragraph {
        width: 100%;
        font-size: var(--font-size-mobile);
    }
}

.references-button {
    --button-height: 50px;
    min-width: 350px;
    padding: 20px;
    border: 1px solid #525a6e;
    border-radius: var(--button-height);
    font-size: var(--font-size-button);
    text-decoration: none;
    text-align: center;
    color: aliceblue;
    margin-top: 40px;
    font-weight: 500;
}
@media screen and (max-width: 900px) {
    .references-button {
        width: 100%;
        min-width: auto;
    }
}

.references-button:hover {
    color: burlywood;
    transition: color 0.3s ease;
}

.references-items {
    width: 100%;
    height: auto;
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
    .references-items {
        margin-top: 100px;
    }
}


.project-card {
    position: relative;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: end;
    width:  480px;
    height: 700px;
    padding: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 45px;
    box-shadow: 5px 20px 16px #1a1c214c;
    outline: none;
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
    .project-card {
        width: 100%;
        min-height: 500px;
        height: auto;
        padding-top: 140px;
        margin: 0;
        margin-bottom: 90px;
    }
}
.project-card:hover {
    transform: translateY(-2%);
    box-shadow: 3px 3px 2px rgba(87, 128, 209, 0.871);
    transition: all 0.5s ease;
}
.project-card img {
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-gradient {
    position: absolute;
    border-radius: 16px;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgb(5, 9, 13));
}
.project-card span {
    z-index: 1;
    bottom: 100px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: aliceblue;
    margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
    .project-card span {
        word-wrap: break-word;
        white-space: normal;
    }
}

.project-card p {
    z-index: 1;
    bottom: 30px;
    left: 30px;
    font-size: 16px;
    color: rgb(178, 194, 208);
}

.card-button {
    z-index: 1;
    width: 45%;
    padding: 16px;
    text-align: center;
    background-color: #2070b6;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 500px;
    margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
    .card-button {
        width: 100%;
    }
}
.card-button:hover {
    background: linear-gradient(270deg, #2070b6, #29b3c5);
    background-size: 400% 400%;
    animation: color-fade 3s ease infinite;
}
@keyframes color-fade {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


.section-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--global-padding);
    width: 100%;
    min-height: 100vh;
    background-color: #f6f6f6;
}
@media screen and (max-width: 900px) {
    .section-contact {
        padding-bottom: calc(var(--global-padding) * 2);
    }
}
.contact-texture {
    position: absolute;
    z-index: 0;
    top:  0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 13%;
}

.contact-container {
    z-index: 6;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    width: 60%;
    min-height: 60vh;
    overflow: hidden;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 4px 10px 20px #0d131b1c;
}
@media screen and (max-width: 2000px) {
    .contact-container {
        width: 90%;
    }    
}
@media screen and (max-width: 1500px) {
    .contact-container {
        flex-direction: column-reverse;
/*	height: auto;*/
	height: 100%;
    }
}

@media screen and (max-width: 900px) {
    .contact-container {
	width: 100%;
    }
}

.contact-form {
    display: flex;
    padding: 50px;
    flex-direction: column;
    flex: 2;
}
@media screen and (max-width: 900px) {
    .contact-form {
        padding: 35px;
    }
}

.contact-heading {
    font-size: var(--font-size-subheading);
    color: #2b5ec3;
    margin-bottom: 35px;
    word-break: break-all;
}

.contact-form input, .contact-form textarea {
    border: 1px solid rgba(128, 128, 128, 0.396);
    font-size: 18px;
    font-weight: 500;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 25px;
    outline: none;
    background-color: inherit;
}

.contact-form textarea {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    padding: 18px;
    margin: 0;
    min-height: 220px;
}

.contact-button {
    height: 65px;
    cursor: pointer;
    outline: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: var(--font-size-button);
    margin-top: 25px;
    border-radius: 10px;
    background-color: #3f71cd;
    color: white;
}

.contact-button:hover {
    background-color: #345fb0;
    transition: background-color 0.2s ease;
}

.contact-button:active {
    background-color: #588bea;
    transition: background-color 0.1s ease;
}

.contact-info, .contact-product-info {
    display: flex;
    flex-direction: column;
    width: 35%;
    background: linear-gradient(120deg, #1a428b, #5186eb);
    padding: 50px;
    word-break: break-all;
    white-space: normal;
}
@media screen and (max-width: 900px) {
    .contact-info, .contact-product-info {
        padding: 35px;
    }
}
@media screen and (max-width: 1500px) {
    .contact-info, .contact-product-info {
        width: 100%;
    }
}


.contact-info-item {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    color: whitesmoke;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.contact-info-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-left: 12px;
}

.bold {
    font-weight: 700;
}

.contact-info-item img {
    border-radius: 60px;
    padding: 14px;
    width:  50px;
    height: 50px;
    object-fit: contain;
}
@media screen and (max-width: 500px) {
    .contact-info-item img {
        padding: 0;
        width:  20px;
        height: 20px;
        object-fit: fill;
    }
}

/* Product Request (Contact Overlay) */
.section-product-request {
    position: fixed;
    top: var(--nav-height); left: 0;
    width: 100%; height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
    overflow: scroll;
}

.product-request-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: calc(100vh - var(--nav-height));
    backdrop-filter: blur(6px);
    background-color: #151823d6;
    z-index: 6;
}

.contact-product-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.contact-product-info {
    padding: 0;
}


/* Footer */
.content-footer {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 100%;
    height: auto;
    padding: 50px;
    background-color: #1a1c21;
    transition: all 0.2s linear;
}
@media screen and (max-width: 900px) {
    .content-footer {
        padding-bottom: 80px;
    }
}

.content-footer a {
    text-decoration: none;
    color: aliceblue;
}

.footer-back-to-top {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.footer-items {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    margin-top: 10px;
    min-width: 580px;
}
@media screen and (max-width: 900px) {
    .footer-items {
        min-width: auto;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-items a {
        text-align: center;
        width: 100%;
        padding: calc(var(--global-padding) * 0.8);
        border-top: 1px solid #2a3339;
    }
    .footer-items a:last-child {
        border-bottom: 1px solid #2a3339;
    }
}

.footer-items a:hover {
    color: rgb(231, 162, 71);
    transition: all 0.25s;
}

.footer-documents {
    display: flex;
    flex-direction: row;
    width: auto;
    font-size: 15px;
    font-weight: 500;
    justify-content: space-between;
    margin-top: calc(var(--global-padding) / 2);
}
@media screen and (max-width: 800px) {
    .footer-documents {
        text-align: center;
        flex-direction: column;
    }
}

.footer-documents a {
    margin-right: 10px;
    color: burlywood;
}
.footer-documents a:last-child {
    margin-right: 0;
}
.footer-documents a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 800px) {
    .footer-documents a {
        margin: var(--global-padding) 0 0 0;
    }
}
.footer-credit {
    text-align: center;
    margin-top: 35px;
    font-size: 14px;
    color: rgb(166, 171, 197);
    font-weight: 400;
}

.footer-credit a {
    font-weight: 700;
    color: burlywood;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-spacing {
    margin-bottom: 15px;
}

input:focus {
    border-bottom: 4px solid burlywood;
    box-shadow: 0px 6px 5px #0d161b0f;
    transition: box-shadow 0.4s ease;
}
textarea:focus {
    border: 2px solid burlywood;
    box-shadow: 0px 6px 5px #0d161b0f;
    transition: box-shadow 0.4s ease;
}


.hidden-fade {
    opacity: 0%;
}

.hidden {
    display: none;
}

.accent-color {
    color: rgb(255 194 75);
}