@media only screen and (min-width: 1920px) {
    body, h1, h2, h3, h4, h5, h6, p, ul, li, html {
        font-family: 'Metropolis', sans-serif;
        color: white;
        margin: 0;
        padding: 0;
        cursor: default;
        overflow-x: hidden;
    }

    body {
        background-image: url('/images/over-mij/header.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex; 
        align-items: center; 
        margin-top: 5vh;
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }

    .fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        margin-top: 0;
        background-color: rgba(17, 19, 22, 0.5);
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }
    
    nav ul {
        list-style-type: none;
        margin-left: 20vh;
        margin-right: 20vh;
        padding: 0;
        display: flex; 
        align-items: center; 
    }
    
    nav ul li {
        margin-right: 20px;
    }
    
    nav ul li:last-child {
        margin-right: 0; 
    }

    nav ul li:first-child img {
        width: 125px; 
        margin-right: 50px;
    }

    nav ul li a {
        position: relative;
        color: white;
        text-decoration: none;
        border-radius: 2px;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        align-items: center;
        cursor: pointer;
        padding: 10px 20px; 
        transition: background-color 0.3s ease-in-out;
    }

    nav ul li:nth-child(3) {
        background-color: transparent;
        border-radius: 2px;
    }

    nav ul li:not(:first-child):not(:nth-child(3)) a:hover{
        background-color: transparent;
    }

    .header-display {
        margin-top: 25vh;
        margin-bottom: 144px;
        margin-left: 20vh;
    }

    .header-display #content h1 {
        font-size: 100px;
        font-weight: 800;
        margin-bottom: 5vh;
    }

    .header-display #content p {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 5vh;
        line-height: 4vh;
        margin-right: 100vh;
    }

    .content-display {
        display: grid;
        gap: 5vh;
        margin: 0;
        padding-top: 10vh;
        padding-bottom: 10vh;
        background-color: white;
    }

    .content-display .project-display {
        margin-left: 20vh;
        margin-right: 20vh;
        column-count: 3;
    }

    .project-display .project {
        background-color: white;
        color: #111316;
        margin: 0;
        width: 500px;
        height: auto;
        display: grid;
        margin-bottom: 7vh;
        break-inside: avoid;
    }

    .project #header-container {
        position: relative;
        margin: 0;
        z-index: 10;
        user-select: none;
        -moz-user-select: none; 
        -ms-user-select: none; 
        -webkit-user-select: none;
    }

    .project #header-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .project #header-container #carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .project #header-container #carousel #left{
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #right{
        position: absolute;
        right: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #left-span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-left: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #left:hover #left-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project #header-container #carousel #right-span {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-right: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #right:hover #right-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project .content {
        margin-top: -5px;
        padding-left: 35px;
        padding-right: 35px;
        box-shadow: 
            5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            -5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            0 5px 20px rgba(17, 19, 22, 0.1);
    }

    .project .content h1 {
        font-size: 30px;
        font-weight: 700;
        padding-top: 3vh;
        color: #111316;
    }

    .project .content p {
        font-size: 20px;
        font-weight: 400;
        line-height: 25px;
        padding-top: 2vh;
        padding-bottom: 35px;
        color: #4c4c4c;
    }

    .project .content h2 {
        font-size: 15px;
        font-weight: 500;
        color: #4c4c4c;
        position: absolute;
        left: 0;
    }

    .project .content #indicators {
        display: flex;
        justify-content: center;
        align-content: center;
        position: relative;
        top: 30px;
        margin-bottom: 30px;
    }
    
    .project .content .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(26, 48, 97, 0.5);
        margin: 0 5px;
    }

    .project .content .indicator.active {
        background-color: #1a3061;
    }

    footer {
        border-top: 1px solid #d8d8d8;
        background-color: white;
        color: #111316;
        padding: 30px 20vh;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; 
    }

    footer img {
        height: 40px;
    }

    .footer-social {
        position: absolute; 
        left: 50%;
        transform: translateX(-50%); 
    }

    .footer-social a {
        color: #111316;
        font-size: 20px;
        margin-right: 15px;
        text-decoration: none;
    }

    .footer-copyright {
        margin: 0;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }


    ::-webkit-scrollbar-thumb {
        background: #505a68;
        border-radius: 5px;
    }


    ::-webkit-scrollbar-track {
        background: #111316;
    }


    ::-webkit-scrollbar-thumb:hover {
        background: #3c444e;
    }

    .hidden {
        display: none;
    }
}

@media only screen and (min-width: 1041px) and (max-width: 1919px) {
    body, h1, h2, h3, h4, h5, h6, p, ul, li, html {
        font-family: 'Metropolis', sans-serif;
        color: white;
        margin: 0;
        padding: 0;
        cursor: default;
        overflow-x: hidden;
    }

    body {
        background-image: url('/images/over-mij/header.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex; 
        align-items: center; 
        margin-top: 5vh;
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }

    .fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        margin-top: 0;
        background-color: rgba(17, 19, 22, 0.5);
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }
    
    nav ul {
        list-style-type: none;
        margin-left: 10vh;
        margin-right: 10vh;
        padding: 0;
        display: flex; 
        align-items: center; 
    }
    
    nav ul li {
        margin-right: 20px;
    }
    
    nav ul li:last-child {
        margin-right: 0; 
    }

    nav ul li:first-child img {
        width: 125px; 
        margin-right: 50px;
    }

    nav ul li a {
        position: relative;
        color: white;
        text-decoration: none;
        border-radius: 2px;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        align-items: center;
        cursor: pointer;
        padding: 10px 20px; 
        transition: background-color 0.3s ease-in-out;
    }

    nav ul li:nth-child(3) {
        background-color: transparent;
        border-radius: 2px;
    }

    nav ul li:not(:first-child):not(:nth-child(3)) a:hover{
        background-color: transparent;
    }

    .header-display {
        margin-top: 25vh;
        margin-bottom: 135px;
        margin-left: 10vh;
        margin-right: 10vh;
    }

    .header-display #content h1 {
        font-size: 70px;
        font-weight: 800;
        margin-bottom: 5vh;
    }

    .header-display #content p {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 5vh;
        line-height: 4vh;
        margin-right: 60vh;
    }

    .content-display {
        display: grid;
        gap: 5vh;
        margin: 0;
        padding-top: 10vh;
        padding-bottom: 10vh;
        background-color: white;
    }

    .content-display .project-display {
        margin-left: 10vh;
        margin-right: 10vh;
        column-count: 3;
    }

    .project-display .project {
        background-color: white;
        color: #111316;
        margin: 0;
        width: 450px;
        height: auto;
        display: grid;
        margin-bottom: 7vh;
        break-inside: avoid;
    }

    .project #header-container {
        position: relative;
        margin: 0;
        z-index: 10;
        user-select: none;
        -moz-user-select: none; 
        -ms-user-select: none; 
        -webkit-user-select: none;
    }

    .project #header-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .project #header-container #carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .project #header-container #carousel #left{
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #right{
        position: absolute;
        right: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #left-span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-left: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #left:hover #left-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project #header-container #carousel #right-span {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-right: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #right:hover #right-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project .content {
        margin-top: -5px;
        padding-left: 35px;
        padding-right: 35px;
        box-shadow: 
            5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            -5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            0 5px 20px rgba(17, 19, 22, 0.1);
    }

    .project .content h1 {
        font-size: 30px;
        font-weight: 700;
        padding-top: 3vh;
        color: #111316;
    }

    .project .content p {
        font-size: 20px;
        font-weight: 400;
        line-height: 25px;
        padding-top: 2vh;
        padding-bottom: 35px;
        color: #4c4c4c;
    }

    .project .content h2 {
        font-size: 15px;
        font-weight: 500;
        color: #4c4c4c;
        position: absolute;
        left: 0;
    }

    .project .content #indicators {
        display: flex;
        justify-content: center;
        align-content: center;
        position: relative;
        top: 30px;
        margin-bottom: 30px;
    }
    
    .project .content .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(26, 48, 97, 0.5);
        margin: 0 5px;
    }

    .project .content .indicator.active {
        background-color: #1a3061;
    }

    footer {
        border-top: 1px solid #d8d8d8;
        background-color: white;
        color: #111316;
        padding: 30px 10vh;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; 
    }

    footer img {
        height: 40px;
    }

    .footer-social {
        position: absolute; 
        left: 50%;
        transform: translateX(-50%); 
    }

    .footer-social a {
        color: #111316;
        font-size: 20px;
        margin-right: 15px;
        text-decoration: none;
    }

    .footer-copyright {
        margin: 0;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }


    ::-webkit-scrollbar-thumb {
        background: #505a68;
        border-radius: 5px;
    }


    ::-webkit-scrollbar-track {
        background: #111316;
    }


    ::-webkit-scrollbar-thumb:hover {
        background: #3c444e;
    }

    .hidden {
        display: none;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1040px) {
    body, h1, h2, h3, h4, h5, h6, p, ul, li, html {
        font-family: 'Metropolis', sans-serif;
        color: white;
        margin: 0;
        padding: 0;
        cursor: default;
        overflow-x: hidden;
    }

    body {
        background-image: url('/images/over-mij/header.png');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top center;
        background-attachment: fixed;
    }

    nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 2vh;
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }

    .fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        margin-top: 0;
        background-color: rgba(17, 19, 22, 0.5);
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }
    
    nav ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    nav ul li:first-child img {
        display: none;
    }

    nav ul li a {
        position: relative;
        color: white;
        text-decoration: none;
        border-radius: 2px;
        font-size: 20px;
        font-weight: 500;
        display: inline-block;
        align-items: center;
        cursor: pointer;
        padding: 20px 0px;
        margin-right: 60px;
        transition: background-color 0.3s ease-in-out;
    }

    nav ul li:last-child:first-child a {
        margin-right: 0;
    }

    nav ul li:nth-child(3) {
        background-color: transparent;
        border-radius: 2px;
    }

    nav ul li:not(:first-child):not(:nth-child(3)) a:hover{
        background-color: transparent;
    }

    .header-display {
        margin-top: 13vh;
        margin-left: 15vh;
        margin-right: 15vh;
        display: flex;
        flex-direction: row;
        justify-content: left;
    }

    .header-display #content h1 {
        font-size: 40px;
        font-weight: 900;
        margin-bottom: 3vh;
    }

    .header-display #content p {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 3vh;
        line-height: 3vh;
    }

    .content-display {
        display: flex;
        justify-content: center;
        gap: 5vh;
        margin: 0;
        padding-top: 5vh;
        padding-bottom: 0vh;
        background-color: white;
    }

    .project-display .project {
        background-color: white;
        color: #111316;
        margin-right: 15vh;
        margin-left: 15vh;
        height: auto;
        display: grid;
        margin-bottom: 5vh;
        break-inside: avoid;
    }

    .project #header-container {
        position: relative;
        margin: 0;
        z-index: 10;
        user-select: none;
        -moz-user-select: none; 
        -ms-user-select: none; 
        -webkit-user-select: none;
    }

    .project #header-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .project #header-container #carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .project #header-container #carousel #left{
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #right{
        position: absolute;
        right: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #left-span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-left: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #left:hover #left-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project #header-container #carousel #right-span {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-right: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #right:hover #right-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project .content {
        margin-top: -5px;
        padding-left: 3vh;
        padding-right: 3vh;
        box-shadow: 
            5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            -5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            0 5px 20px rgba(17, 19, 22, 0.1);
    }

    .project .content h1 {
        font-size: 40px;
        font-weight: 700;
        padding-top: 3vh;
        color: #111316;
    }

    .project .content p {
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        padding-top: 2vh;
        padding-bottom: 35px;
        color: #4c4c4c;
    }

    .project .content h2 {
        font-size: 17px;
        font-weight: 500;
        color: #4c4c4c;
        position: absolute;
        left: 0;
    }

    .project .content #indicators {
        display: flex;
        justify-content: center;
        align-content: center;
        position: relative;
        top: 30px;
        margin-bottom: 30px;
    }
    
    .project .content .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(26, 48, 97, 0.5);
        margin: 0 5px;
    }

    .project .content .indicator.active {
        background-color: #1a3061;
    }

    footer {
        border-top: 1px solid #d8d8d8;
        background-color: white;
        color: #111316;
        padding: 20px 15vh;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; 
    }

    footer img {
        height: 30px;
    }

    .footer-social {
        display: none;
    }

    .footer-copyright {
        margin: 0;
        font-size: 18px;
    }

    .hidden {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    body, h1, h2, h3, h4, h5, h6, p, ul, li, html {
        font-family: 'Metropolis', sans-serif;
        color: white;
        margin: 0;
        padding: 0;
        cursor: default;
        overflow-x: hidden;
    }

    body {
        background-image: url('/images/over-mij/header.png');
        background-size: 150%;
        background-repeat: no-repeat;
        background-position: top center;
        background-attachment: fixed;
    }

    nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 2vh;
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }

    .fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        margin-top: 0;
        background-color: rgba(17, 19, 22, 0.5);
        transition: margin-top 0.3s ease, background-color 0.3s ease;
    }
    
    nav ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    nav ul li:first-child img {
        display: none;
    }

    nav ul li a {
        position: relative;
        color: white;
        text-decoration: none;
        border-radius: 2px;
        font-size: 15px;
        font-weight: 500;
        display: inline-block;
        align-items: center;
        cursor: pointer;
        padding: 10px 0px;
        margin-right: 30px;
        transition: background-color 0.3s ease-in-out;
    }

    nav ul li:last-child:first-child a {
        margin-right: 0;
    }

    nav ul li:nth-child(3) {
        background-color: transparent;
        border-radius: 2px;
    }

    nav ul li:not(:first-child):not(:nth-child(3)) a:hover{
        background-color: transparent;
    }

    .header-display {
        margin-top: 13vh;
        margin-left: 3vh;
        margin-right: 3vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .header-display #content h1 {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 3vh;
    }

    .header-display #content p {
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 3vh;
        line-height: 3vh;
    }

    .content-display {
        display: flex;
        justify-content: center;
        gap: 3vh;
        margin: 0;
        padding-top: 3vh;
        padding-bottom: 0vh;
        background-color: white;
    }

    .project-display .project {
        background-color: white;
        color: #111316;
        margin-right: 3vh;
        margin-left: 3vh;
        height: auto;
        display: grid;
        margin-bottom: 3vh;
        break-inside: avoid;
    }

    .project #header-container {
        position: relative;
        margin: 0;
        z-index: 10;
        user-select: none;
        -moz-user-select: none; 
        -ms-user-select: none; 
        -webkit-user-select: none;
    }

    .project #header-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .project #header-container #carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .project #header-container #carousel #left{
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #right{
        position: absolute;
        right: 0;
        width: 50%;
        height: 100%;
        cursor: pointer;
    }

    .project #header-container #carousel #left-span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-left: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #left:hover #left-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project #header-container #carousel #right-span {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        margin-right: 10px;
        border-radius: 50%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(26, 48, 97, 0);
        transition: background-color 0.2s ease-in, color 0.2s ease-in;
    }

    .project #header-container #carousel #right:hover #right-span {
        background-color: rgba(255, 255, 255, 0.75);
        color: rgba(26, 48, 97, 1);
    }

    .project .content {
        margin-top: -5px;
        padding-left: 3vh;
        padding-right: 3vh;
        box-shadow: 
            5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            -5px 0 20px -5px rgba(17, 19, 22, 0.1), 
            0 5px 20px rgba(17, 19, 22, 0.1);
    }

    .project .content h1 {
        font-size: 25px;
        font-weight: 700;
        padding-top: 3vh;
        color: #111316;
    }

    .project .content p {
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
        padding-top: 2vh;
        padding-bottom: 35px;
        color: #4c4c4c;
    }

    .project .content h2 {
        font-size: 12px;
        font-weight: 500;
        color: #4c4c4c;
        position: absolute;
        left: 0;
    }

    .project .content #indicators {
        display: flex;
        justify-content: center;
        align-content: center;
        position: relative;
        top: 30px;
        margin-bottom: 30px;
    }
    
    .project .content .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(26, 48, 97, 0.5);
        margin: 0 5px;
    }

    .project .content .indicator.active {
        background-color: #1a3061;
    }

    footer {
        border-top: 1px solid #d8d8d8;
        background-color: white;
        color: #111316;
        padding: 20px 3vh;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; 
    }

    footer img {
        height: 20px;
    }

    .footer-social {
        display: none;
    }

    .footer-copyright {
        margin: 0;
        font-size: 12px;
    }

    .hidden {
        display: none;
    }
}