@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}

html {
    background: url(../../../Assets/images/BG3.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.header {

    margin-top: 5px;
}

#header a,
#header a:hover {
    text-decoration: none;

}

.flex-header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.header1 {
    font-size: 2.5vw;
    color: #071d30;
}

.header2 {
    margin-top: 0px;
    font-size: 1.5vw;
    color: #071d30;
}

.header3 {
    font-size: 1.0vw;
    color: #071d30;
}

.imgheader1 {
    width: 150px;
    height: 140px;
}

.imgheader2 {
    width: 160px;
    height: 140px;
}

.content {
    margin-top: 5px;
}

.flex-content {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;
    margin-left: 10px;
    margin-right: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /*border-right: 4px solid rgb(232, 231, 231);*/
    background-color: rgba(255, 255, 255, 0.75);
}

.flex-content-menu-left {
    display: flex;
    flex: 0.99;
    flex-direction: column;
    justify-content: start;
    margin-left: 20px;
}

.flex-content-menu-right {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 4px solid rgb(202, 199, 199, 0.5);
}

.flex-content-row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flex-content-col {
    display: flex;
    flex: 0.5;
    flex-direction: column;
    padding: 10px;
}

.imgFriday {
    width: 100%;
    height: 100%;
}

ul>li>a {
    text-decoration: none;
}

ul>li>a:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border: 1px solid black;
    border-collapse: collapse;
}

thead {
    background-color: #1862A0;
    color: #fff;
}

td,
th {
    padding: 5px;
    border: 1px solid black;
}

.footer {
    padding: 10px;
    text-align: center;
    /*background-color: rgb(145, 187, 222, 0.8);*/
}

@media only screen and (max-width: 1300px) {
    .header {
        min-width: 1300px;
        margin-top: 5px;
    }

    .header1 {
        font-size: 35px;
        color: #071d30;
    }

    .header2 {
        margin-top: 0px;
        font-size: 25px;
        color: #071d30;
    }

    .header3 {
        font-size: 20px;
        color: #071d30;
        margin-top: 5px;
    }

    .content {
        min-width: 1300px;
        margin-top: 5px;
    }

    .footer {
        min-width: 1300px;
        padding: 10px;
        text-align: center;
        /*background-color: rgb(145, 187, 222, 0.8);*/
    }
}