﻿@media (min-width: 1001px) {

    .containerpage {
        background-color: white;
        margin: 0;
    }

    .topbutton {
        width: 0px;
        height: 0px;
        display: none;
    }

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
        top: 249px;
    }

    .container1 {
        background-color: black;
        width: 100%;
        height: 119px;
    }

    h1 {
        height: 119px;
        color: white;
        font-size: 28px;
        display: flex;
        align-items: center; /* Center vertically */
        width: 872px;
        margin: 0 auto;
    }

    .container2 {
        position: relative; /* Added to ensure the pseudo-element is positioned relative to this container */
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally */
    }

        .container2::before {
            content: "";
            background-image: url('/media/background.jpg');
            background-repeat: no-repeat;
            background-size: 110%;
            background-attachment: fixed;
            background-position: center 0%;
            opacity: .5;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1; /* Place the image behind the container's content */
        }

    .pagelink {
        width: 870px;
        font-size: 28px;
        line-height: 32px;
        z-index: 2;
        text-decoration: none;
        letter-spacing: -0.6px;
        color: rgb(11,47,91);
        display: flex;
        flex-direction: row;
        margin-top: 47.5px;
        margin-bottom: 47.5px;
    }

        .pagelink:hover {
            color: rgb(97,97,97);
        }

    .arrow-left {
        width: 28px;
        height: 54px;
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-left: 2px;
    }

    .symbol {
        width: 1.5px;
        height: 36px;
        transform: rotate(45deg);
        margin-top: -25px;
        margin-left: 13px;
        background-color: rgb(11,47,91);
    }

    .symbol2 {
        width: 1.5px;
        height: 37px;
        transform: rotate(135deg);
        margin-left: -1px;
        margin-top: 26px;
        background-color: rgb(11,47,91);
    }

    .pagelink:hover .symbol, .pagelink:hover .symbol2 {
        background-color: rgb(97,97,97);
    }

    .linktext {
        margin-top: 10px;
        margin-left: 40px;
    }

    .subcontainer2-1 {
        z-index: 2;
        display: flex;
        flex-direction: row;
        margin-bottom: 57.5px;
    }

    table {
        padding-bottom: 10px;
    }

    .tablemarginright {
        margin-right: 70px;
    }

    .custom-table {
        width: 401px; /* Adjust as needed */
        background-color: white;
    }

    .tablebody {
        width: 399px;
    }


    .custom-table th {
        background-color: rgb(11, 47, 91);
        color: white;
        font-size: 20px;
        height: 60px;
        width: 401px;
        text-align: center;
        font-weight: 700;
    }

    .custom-table tr {
        background-color: white;
        color: black;
        font-size: 16px; /* Adjust if needed */
        height: 42px;
        width: 401px;
        text-align: center;
    }

        .custom-table tr td:hover {
            color: rgb(218,218,218);
        }

        .custom-table tr td:not(:empty):hover {
            cursor: pointer;
        }

    .hidefull {
        display: none;
    }

    /*CSS FOR TRANSITION EFFECTS THAT CORRESPOND WITH JAVASCRIPT*/

    #arrowSub {
        opacity: 0;
    }

    .text-visible {
        opacity: 1;
        transform: translateX(0);
    }

    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-300%);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .slide-in-delayed {
        animation: slideInFromLeft 1s ease-in-out 1s forwards;
    }
}









@media (max-width: 1000px) {

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
        top: 205px;
    }

    .containerpage {
        background-color: white;
        margin: 0;
        width: 322px;
    }

    .container1 {
        background-color: black;
        width: 322px;
        height: 108px;
    }

    h1 {
        height: 108px;
        color: white;
        font-size: 21px;
        display: flex;
        align-items: center; /* Center vertically */
        width: 127px;
        margin: auto auto;
    }

    .container2 {
        position: relative; /* Added to ensure the pseudo-element is positioned relative to this container */
        width: 322px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally */
    }

        .container2::before {
            content: "";
            background-image: url('/media/background.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            /* background-attachment: fixed; */
            background-position: center;
            opacity: .5;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1; /* Place the image behind the container's content */
        }

    .pagelink {
        width: 280px;
        font-size: 24px;
        line-height: 32px;
        z-index: 2;
        text-decoration: none;
        letter-spacing: -0.48px;
        color: rgb(11,47,91);
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    /*.pagelink:hover {
            color: rgb(97,97,97);
        } */

    .arrow-left {
        width: 24px;
        height: 43px;
        display: flex;
        align-items: center;
        cursor: pointer;
        /*background-color: pink;*/
    }

    .symbol {
        width: 2px;
        height: 28px;
        transform: rotate(45deg);
        margin-top: -22.5px;
        margin-left: 0px;
        background-color: rgb(11,47,91);
    }

    .symbol2 {
        width: 2px;
        height: 30px;
        transform: rotate(135deg);
        margin-left: -1.85px;
        margin-top: 18px;
        background-color: rgb(11,47,91);
    }

    .linktext {
        margin-top: 7px;
        margin-left: 13px;

    }

    .subcontainer2-1 {
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        margin-bottom: 35px;
    }

    .tablemarginright {
    }

    .custom-table {
        width: 280px;
        background-color: white;
        padding-bottom: 10px;
    }

    .tablebody {
        width: 280px;
    }


    .custom-table th {
        background-color: rgb(11, 47, 91);
        color: white;
        font-size: 20px;
        height: 60px;
        width: 280px;
        text-align: center;
        font-weight: 700;
    }

    .custom-table tr {
        background-color: white;
        color: black;
        font-size: 16px; /* Adjust if needed */
        height: 42px;
        width: 280px;
        text-align: center;
    }

        .custom-table tr td:not(:empty):hover {
            cursor: pointer;
        }

.hidemobile {
    display: none;
}

    /*CSS FOR TRANSITION EFFECTS THAT CORRESPOND WITH JAVASCRIPT*/

    #arrowSub {
        opacity: 0;
    }

    .text-visible {
        opacity: 1;
        transform: translateX(0);
    }

    @keyframes slideInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .slide-in-delayed {
        animation: slideInFromBottom 1s ease-in-out 1s forwards;
    }

    /*
    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-300%);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .slide-in-delayed {
        animation: slideInFromLeft 1s ease-in-out 1s forwards;
    }
    */
}




