:root {
    --forrestgreen: #2A5B23;
    --lightgreen: #B4DC7F;
    --coolslate: #2C3531;
    --cream: #F9FBF7;
    --mutedsage: #E2ECD5;
}

/* GENERAL */
/*  reset page */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    background-color: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    overflow-x: hidden;
}

main {
    flex: 1;
}

header {
    top:0;
    z-index:1000;
    background-color: var(--cream);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
}

header.is-sticky {
    position: sticky;
}

#icon-top {
    position: fixed;
    z-index: 1001;
    top: 15px;
    left: 15px;
    display: flex;
    background: transparent;
    background-color: var(--forrestgreen);
    border-radius: 50%;
    padding: 5px;
    border: none;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.3);
}

#icon-top img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#icon-top.visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);

}

#open-menu, #close-menu {
    display: none;
}

#nav {
    color: var(--coolslate);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
}

#nav div {
    width: 25%;
    height: 10%;
    text-align: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 400;
    cursor: pointer;
}

#nav div:hover {
    background-color: var(--forrestgreen);
}

#nav a {
    color: var(--coolslate);
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
    padding: 10px;
}

#nav div a:hover {
    color: var(--cream);
}

#nav a:visited {
    color: var(--coolslate);
}

#nav .active-item {
    -webkit-box-shadow:inset 0 0 0 3px var(--lightgreen);
    box-shadow:inset 0 0 0 3px var(--lightgreen);
}

#nav .active-item a {
    color: var(--coolslate);
}

#banner {
    height: 70vh;
    width: 100%;
    border-radius: 10px;
    background-color: var(--forrestgreen);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#banner div {
    font-size: 25vw;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    color: var(--cream);
    line-height: 0.6;
}

/* end GENERAL */

/* mobile friendly nav */

@media (max-width: 500px) {
    html.no-scroll, body.no-scroll {
        overflow: hidden !important;
        touch-action: none;
    }

    #icon-top img {
        width: 40px;
        height: 40px;
    }

    #open-menu, #open-menu:hover, 
    #close-menu, #close-menu:hover {
        background: transparent;
        background-color: var(--forrestgreen);
        color: var(--mutedsage);
        border: none;
        border-radius: 10px;
        font-size: 1.5rem;
        z-index: 9999;
        right: 0;
        margin-left: auto;
        margin-right: 5px;
        margin-top: 5px;
        padding: 6px;
        cursor: pointer;
    }

    #open-menu {
        position: absolute;
    }

    #close-menu {
        position: fixed;
    }

    #open-menu.active-btn, #close-menu.active-btn {
        display: block;
    }

    #nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: color-mix(in srgb, var(--coolslate) 80%, transparent);
        backdrop-filter: blur(8px);
        z-index: 9998;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    #nav div {
        width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
        border-radius: 0;
    }

    #nav div:hover {
        background-color: transparent;
        border-radius: 0;
    }

    #nav a {
        font-size: 35px;
        color: var(--mutedsage);
        text-decoration: none;
        display: block;
        height: 100%;
        width: 100%;
        padding: 10px;
    }

    #nav div a:hover {
        color: var(--mutedsage);
    }

    #nav a:visited {
        color: var(--mutedsage);
    }

    #nav .active-item {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #nav .active-item a {
        color: var(--lightgreen);
    }

    #nav.active {
        display: flex;
    }
}

@media (max-width: 700px) {
    #banner {
        height: 50vh;
    }
}

@media (max-width: 400px) {
    #banner {
        height: 25vh;
    }
}

/* about page */

#sub-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--coolslate);
}

#sub1 {
    font-size: 4vw;
    margin-top: 50px;
    line-height: 0.1;
}

#sub2 {
    font-size: 8vw;
}

#sub3 {
    font-size: 1.5vw;
    border: 3px solid var(--lightgreen);
    border-radius: 10px;
    padding: 5px;
    margin-top: 5px;
}

#about {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 75px;
    height: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

#img {
    background-color: transparent;
    height: 700px;
    width: 40%;
    border-radius: 10px;
}

#img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#words {
    color: var(--coolslate);
    width: 35%;
    height: auto;
}

#words h2 {
    font-size: 2vw;
    font-weight: bolder;
    margin-bottom: 10px;
}

#words p, #words ul {
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

#words ul {
    list-style-type: none;
    padding: 0;
}

#words li {
    position: relative;
    line-height: 1.5;
    padding-left: 50px;
    margin-bottom: 15px;
}

#words li:before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--forrestgreen);
    font-size: 2rem;
}

#mainline {
    color: var(--coolslate);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    width: 100%;
}

#tagline {
    text-align: center;
    width: 100%;
}

#tagline > :first-child {
    font-weight: bolder;
    font-size: 3.5em;
    margin-bottom: 10px;

}

#track {
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--lightgreen);
    color: var(--coolslate);
    border-top: 2px solid var(--coolslate);
    border-bottom: 2px solid var(--coolslate);
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 0;
    width: 100%;
    overflow-anchor: none;
}

#move-track {
    display: inline-flex;
    gap: 3rem;

    animation: scroll-left 40s linear infinite;
    -moz-animation: scroll-left 40s linear infinite;
    -webkit-animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(0);
    }
    100% {
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

#move-track span {
    color: var(--coolslate);
    font-size: 1.5em;
}

#tagline > :last-child {
    font-size: 1.5rem;
    margin-top: 10px;
}

#steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--mutedsage);
    border-radius: 10px;
    margin-top: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

#steps > div {
    background-color: var(--forrestgreen);
    -webkit-box-shadow:inset 0 0 0 3px var(--lightgreen);
    box-shadow:inset 0 0 0 3px var(--lightgreen);
    text-align: center;
    border-radius: 10px;
    padding: 25px;
}

.symbol {
    font-size: 3em;
    margin: 0;
}

.heading {
    font-size: 1.5vw;
    margin: 0;
    font-weight: bold;
    color: var(--lightgreen);
}

#offer {
    margin-top: 60px;
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
}

#offer > :first-child {
    color: var(--coolslate);
    font-size: 2rem;
    margin-bottom: 10px;
}

#offer-list ul {
    column-count: 2;
    list-style: none;
}

#offer-list a {
    display: block;
    width: auto;
    height: auto;
    cursor: pointer;
    text-decoration-color: var(--lightgreen);
    font-weight: bold;
    color: var(--mutedsage);
}

#offer-list li, #offer-list a:visited {
    padding: 10px;
    background-color: var(--forrestgreen);
    color: var(--mutedsage);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--lightgreen);
    font-size: 1.6vw;
}

#find-services {
    color: var(--coolslate);
    width: 100%;
    border: 3px solid var(--lightgreen);
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#find-services > :first-child {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

#contact-btns a {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 15px;
    background-color: var(--coolslate);
    border: 2px solid var(--lightgreen);
    color: var(--mutedsage);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#contact-btns a:visited {
    color: var(--mutedsage);
}

#contact-btns a:hover {
    background-color: var(--lightgreen);
    color: var(--coolslate);
    border: 2px solid var(--coolslate);

    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact-btns {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

#contact-btns ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

#contact-btns ul li {
    width: 25%;
}

#hours h2 {
    font-size: 35px;
}

#hours p {
    font-size: 25px;
}

#hours div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* end about page */

/* mobile about */

@media (max-width: 920px) {
    #sub1 {
        font-size: 25px;
        line-height: 0.3;
    }

    #sub2 {
        font-size: 10vw;
    }

    #sub3 {
        font-size: 4vw;
        line-height: 0.2;
        border: 2px solid var(--lightgreen);
        padding: 20px;
    }

    #about {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 25px;
        gap: 15px;
    }

    #img {
        width: 90%;
        height: 250px;
    }

    #words {
        color: var(--coolslate);
        width: 95%;
        height: auto;
        margin-bottom: 25px;
    }

    #words h2 {
        font-size: 25px;
    }

    #words p, #words ul {
        font-size: 1rem;
    }

    #mainline {
        margin-top: 15px;
    }

    #tagline > :first-child {
        font-size: 40px;
    }

    #move-track span {
        font-size: 1.2rem;
    }

    #tagline > :last-child {
        font-size: 15px;
    }

    #steps {
        flex-direction: column;
        padding: 0 15px;
    }

    #steps > div {
        width: 100%;
        margin-bottom: 10px;
    }

    .heading {
        font-size: 20px;
    }

    #offer > :first-child {
        font-size: 1.5rem;
    }

    #offer-list ul {
        column-count: 1;
    }

    #offer-list li, #offer-list a:visited {
        font-size: 17px;
    }

    #find-services {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    #contact-btns a {
        font-size: 1rem;
        transition: none;
    }

    #contact-btns ul {
        flex-direction: column;
        align-items: center;
    }

    #contact-btns ul li {
        width: 80%;
    }

    #contact-btns a:hover {
        transform: none;
    }

}

@media (max-width: 620px) {
    #hours div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    #sub3 {
        padding: 10px;
    }
    
    #hours p {
        font-size: 20px;
    }
}
 
/* services page */

#services-banner, #request-banner {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--forrestgreen);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#services-banner div, #request-banner div {
    font-size: 18vw;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    color: var(--cream);
    line-height: 0.6;
}

#services-intro {
    color: var(--coolslate);
    margin: 25px 3% 25px;
    font-size: 25px;
}

#services-intro p {
    margin-bottom: 25px;
}

#list-services {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
}

#list-services ul {
    column-count: 1;
    column-gap: 30px;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 50px;

}

#list-services li {
    background-color: var(--forrestgreen);
    color: var(--mutedsage);
    margin-bottom: 10px;
    padding: 25px;
    width: 100%;
    border: solid 2px var(--coolslate);
}

#list-services summary {
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
}

#list-services summary h3 {
    margin-left: 20px;
}

#list-services summary::-webkit-details-marker {
    display: none;
}

.service-details {
    list-style-type: none;
    padding: 0;
    background-color: var(--forrestgreen);
    border-radius: 10px;
}

#list-services .service-details li {
    color: var(--coolslate);
    background-color: var(--cream);
    border-radius: 10px;
}

.service-details li:first-child {
    margin-top: 0;
}

.service-details li:last-child {
    margin-bottom: 0;
}

#list-services .service-details summary {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

#list-services .service-details summary:before {
    content: "+";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bolder;
}

#list-services .service-details details[open] summary:before {
    content: "−";
}

.service-icon {
    width: 80px;
    height: 80px;
}

.service-details div {
    margin-left: 6rem;
    color: var(--forrestgreen);
    padding-top: 15px;
    margin-right: 30px;
}

.service-details div p, .service-details div li, .service-details div span {
    font-size: 18px;
    margin-bottom: 15px;
}

#list-services .service-details ul {
    margin-left: 15px;
}

#list-services .service-details ul li {
    color: var(--forrestgreen);
    padding: 0;
    border-color: transparent;
}

/* end services page */

/* mobile services */
    @media (max-width: 500px) {
        .service-details div {
            margin-left: 3rem;
        }

        #list-services .service-details summary h3 {
            font-size: 18px;
        }
    }

    @media (max-width: 360px) {
        #list-services .service-details summary h3 {
            font-size: 13px;
        }
    }



/* request page */

#request-intro {
    color: var(--coolslate);
    font-size: 25px;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 1%;
}

#request-intro div:first-child {
    margin-top: 1%;
    margin-bottom: 2%;
}

#fill {
    margin-top: 50px;
    margin-left: 3%;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



#fill form {
    width: 100%;
    max-width: 70vw;
    margin-bottom: 50px;
}

#request-success {
    background-color: var(--lightgreen);
    color: var(--coolslate);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
}

.next-step {
    display: none;
    width: 100%;
    background-color: var(--forrestgreen);
    padding: 25px;
    border-radius: 10px;

    animation: slide-right 0.7s ease-out forwards;
}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-moz-keyframes slide-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(40px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-webkit-keyframes slide-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

.next-step.active-step {
    display: block;
}

.step-header {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--lightgreen);
}

label, #issue-step p {
    font-size: 2rem;
    color: var(--mutedsage);
    font-weight: bold;
    display: block;
    width: 100%;
    word-wrap: break-word; /* Fallback for older browsers */
    overflow-wrap: break-word;
}

#issue-step p {
    margin-bottom: 10px;
}

input[type="text"], input[type="email"], input[type="tel"], 
input[type="date"], input[type="time"], select, textarea {
    width: 100%;
    outline: none;
    border-radius: 10px;
    height: 7vh;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 0 1rem 0 1rem;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, 
input[type="date"]:focus, input[type="time"]:focus, textarea:focus {
    border-color: var(--lightgreen);
    box-shadow: 0 0 8px rgba(18, 49, 70, 0.5);
}


textarea {
    height: 15vh;
}

select {
    cursor: pointer;
}

input[type="radio"], input[type="checkbox"] {
    cursor: pointer;
    display: none;
}

#issue-step .issue-choice label {
    display: block;
    background-color: var(--lightgreen); 
    color: var(--coolslate);
    font-size: 1.2rem;
    font-weight: normal;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    display: block;
    width: 100%;
    word-wrap: break-word; /* Fallback for older browsers */
    overflow-wrap: break-word;
}

.issue-choice { 
    margin-bottom: 25px;
}

#issue-step .issue-choice label:hover {
    -webkit-box-shadow:inset 0 0 0 3px var(--coolslate);
    box-shadow:inset 0 0 0 3px var(--coolslate);
}

#issue-step .issue-choice:has(input[type="radio"]:checked) label, 
#issue-step .issue-choice:has(input[type="checkbox"]:checked) label {
    background-color: var(--coolslate);
    color: var(--mutedsage);
}

#photo-btn {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--mutedsage);
    font-size: 1.2rem;
    margin-top: 10px;
}

input[type="file"]::file-selector-button {
    background-color: var(--lightgreen);
    color: var(--coolslate);
    font-size: 1.2rem;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    margin-bottom: 15px;
}

input[type="file"]::file-selector-button:hover {
    -webkit-box-shadow:inset 0 0 0 3px var(--coolslate);
    box-shadow:inset 0 0 0 3px var(--coolslate);
}

.step-buttons button {
    background-color: var(--coolslate);
    border: 2px solid var(--lightgreen);
    color: var(--mutedsage);
    font-size: 1.5rem;
    padding: 10px 25px;
    cursor: pointer;
}

.step-buttons button:hover {
    background-color: var(--lightgreen);
    color: var(--coolslate);
    border: 2px solid var(--coolslate);
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.next-btn {
    margin-left: auto;
}

/* end request page */

/* mobile request */

@media (max-width: 700px) {
    #fill {
        margin-top: 25px;
        margin-left: 1%;
        margin-right: 1%;
    }

    #fill form {
        width: 100%;
        max-width: 95vw;
        margin-bottom: 25px;
    }

    .step-header {
        font-size: 2rem;
    }

    label, #issue-step p {
        font-size: 1.5rem;
    }

    input[type="text"], input[type="email"], input[type="tel"], 
    input[type="date"], input[type="time"], select, textarea {
        height: 9vh;
    }

    textarea {
        height: 20vh;
    }

    #fill button {
        font-size: 1rem;
    }

}


/* contact page */

#contact {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--forrestgreen);
}

#contact div {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    margin-right: 3%;
    margin-left: 3%;
    color: var(--mutedsage);
}

#contact-info {
    font-size: 2vw;
}

#contact-info div {
    color: var(--cream);
}

#contact-info div:first-child {
    margin-top: 2%;
    font-size: 2.5vw;
    font-weight: bold;
    color: var(--lightgreen);
}

#contact-info div:nth-child(3) {
    margin-bottom: 2%;
}

#contact-info div:nth-child(4) {
    font-size: 2.5vw;
    font-weight: bold;
    color: var(--lightgreen);
}

#contact p {
    font-size: 5vw;
    color: var(--lightgreen);
    margin-left: 2%;
}

.phone-num {
    text-decoration: none;
    color: var(--mutedsage);
}

/* end contact page */

/* contact mobile */

@media (max-width: 800px) {
    #contact-info {
        font-size: 3vw;
    }

    #contact-info div:first-child {
        margin-top: 10%;
        font-size: 4vw;
    }

    #contact-info div:nth-child(4) {
        font-size: 4vw;
    }

    #contact p {
        font-size: 5vw;
    }
}

@media (max-width: 500px) {
    #contact-info {
        font-size: 4vw;
    }

    #contact-info div:first-child {
        margin-top: 10%;
        font-size: 6vw;
    }

    #contact-info div:nth-child(4) {
        font-size: 6vw;
    }

    #contact p {
        font-size: 8vw;
    }
}


/* footer */

footer {
    width: 100%;
    bottom: 0;
}

#footer-container {
    height: 300px;
    width: 100%;
    background-color: var(--coolslate);
    color: var(--lightgreen);
    border-top: 3px solid var(--lightgreen);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

#left-footer {
    font-size: 4vw;
    margin-bottom: 5%;
    margin-left: 10%;
    font-weight: bold;

}

#right-footer {
    text-align: right;
    margin-bottom: 5%;
    margin-right: 10%;
}

#right-footer a {
    text-decoration: none;
    color: var(--mutedsage);
}

#right-footer > :first-child {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 10px;
    margin-top: 10px;
}

#right-footer > :nth-child(2) {
    font-size: 1.5vw;
    font-weight: bold;
}

hr {
    border: none;
    background-color: var(--lightgreen);
    height: 2px;
    width: 90%;
    margin: 10px auto;
}

#bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-bottom: 10px;
    color: var(--mutedsage);
}

/* footer */

/* footer mobile friendly */

@media (max-width: 850px) {
    #footer-container {
        height: 300px;
    }

    #bottom {
        font-size: 10px;
    }

    #right-footer > :nth-child(2) {
        font-size: 4vw;
    }

    #left-footer {
        font-size: 4vw;
        margin-bottom: 50px;
        margin-left: 5%;
    }

    #right-footer {
        font-size: 3vw;
        margin-bottom: 50px;
        margin-right: 5%;
    }
}

@media (max-width: 500px) {
    #footer-container {
        height: 250px;
    }

    #bottom {
        font-size: 10px;
    }

    #right-footer > :nth-child(2) {
        font-size: 5vw;
    }

    #left-footer {
        font-size: 6vw;
        margin-bottom: 50px;
        margin-left: 5%;
    }

    #right-footer {
        font-size: 4vw;
        margin-bottom: 50px;
        margin-right: 5%;
    }
}

@media (max-width: 350px) {
    #footer-container {
        height: 200px;
    }

    #right-footer > :nth-child(2) {
        font-size: 5vw;
    }

    #left-footer {
        font-size: 6vw;
        margin-bottom: 50px;
        margin-left: 5%;
    }

    #right-footer {
        font-size: 4vw;
        margin-bottom: 50px;
        margin-right: 5%;
    }
}