
:root {
    --bkg-color: #314453;
    --darker-bkg-color: #243848;
    --accent-color: #ecda74; /*#D7D55AEE;*/ /*rgb(215, 213, 91);  /*#41DCE1;*/
    --darker-accent-color: #edeba3;    /*#3399F0F5;*/
    --text-color: #FFFFFFF0;    /*#FFFFAA;*/
    --dark-text-color: #000000;
    --header-height: 80px;
    --navbar-height: 60px;
    --logo-height: var(--navbar-height);
    --footer-height: 60px;
    --color-blue-01: #1161E0F1;
    --color-blue-02: #2288E0F1;
    --color-blue-03: #3399F0F5;
    --color-light-gray: #c7cfd6;
    
    --color-border: #949494;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

html {
    height: 100%;
    line-height: 1.10;
    -webkit-text-size-adjust: 100%;
}

body {
    height: 100%;
}

.container {
    display: grid;
    height: auto;
	/*overflow-x: auto;*/
    grid-template-columns: .5fr .5fr;
    grid-template-rows: var(--header-height) auto var(--footer-height); 
    grid-template-areas: 
      "header header"
      "main main"
      "footer footer";
    color: white;
}

header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: fixed;
    height: var(--header-height);
    width: 100%;
    background: var(--bkg-color); /*#4b4e55F0; */
}

.header-content {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    /* background: #4b4e55F0; */
}

.logo {
    height: var(--navbar-height);
    width: var(--navbar-height);
    margin-left: 5px;
    margin-right: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-variant: small-caps;
    text-decoration: none;
}

header .titel {
    display: flex;
    justify-content: start;
    align-items: center;
    height: var(--navbar-height);
    width: 360px;
    margin-left: 10px;
    margin-right: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-variant: small-caps;
    text-decoration: none;
}

header .titel a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-variant: small-caps;
}

nav {
    height: var(--navbar-height);
    background: var(--bkg-color);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

nav ul {
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav li {
    height: 100%;
    width: 150px;
    text-align: center;

    position: relative;
}

nav li:hover  {
    background: var(--accent-color);
}

nav li .selected  {
    border-bottom: 4px solid var(--accent-color);
}


nav .dropdown li:hover {
    background: var(--darker-accent-color);
}

nav li:hover .dropdown {
    display: flex;
}

nav ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

nav input[type="checkbox"] {
    display: none;
}

.dropdown {
    height: min-content;
    width: 200px;
    background: var(--bkg-color);
    
    display: none;
    flex-direction: column;

    position: absolute;
    left: 0;
    top: var(--navbar-height);
}

.dropdown li {
    height: var(--navbar-height);
    width: 100%;
}

.dropdown li a {
    justify-content: flex-start;
    padding-left: 30px;
    width: calc(100%-30px);
}

.expandable_li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle_button {
    width: 30px;
    height: 23px;

    position: absolute;
    top: 25px;
    right: 25px;

    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;    
}

.header-divider {
    height: 2px; 
    width: 100%;
    background: var(--accent-color);
}


.box-divider {
    height: 100%; 
    width: 15px;
}


main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: #E5E5E5; /*#EFEFEF; #b0b7a3f0;*/
    color: white;
}

main .contentcontainer {
    display: flex; 
    flex-direction: row;
    justify-content: start;
    width: 100%;
    padding: 10px 10px 0px 10px;
    background: #E5E5E5;
}

main .contentcontainer:last-child {
    padding-bottom: 10px;
}

.contentcontainer img {
    max-height: 350;
    max-width: 550px;
    margin-right: 10px;
}
.contentcontainer img:first-child {
    margin-left: 0px;
}
.contentcontainer img:last-child {
    margin-right: 0px;
}

main .imgcontainer {
    display: flex; 
    justify-content: space-between;
    width: 100%; 
    height: 200px;
    background: #446688;
}

main .img-top-p1 {
    width: 350px; 
    padding: 10px 10px 10px 10px;
}
main .img-top-p2 {
    width: 350px; 
    padding: 10px 10px 10px 0px;
}

main .textcontainer {
    display: flex; 
    flex-direction: row;
    justify-content: start;
    width: 100%;
    height: 100%;
    padding: 10px 10px 10px 10px;
    background: #DDDDDD;
}

main .textbox {
    display: flex; 
    flex-direction: column;
    justify-content: start;
    width: 100%;
    padding: 10px 10px 10px 10px;
    background: #FFFFFF;
}


main .imgrowbox {
    display: flex; 
    flex-direction: row;
    justify-content: space-around;
    /* margin: 15px 15px 0 15px; */
    padding: 10px 10px 10px 10px;
    background: #FFFFFF;
}

main .limg {
    margin-left: 15px;
}

.w40 {width: 40%;}
.w60 {width: 60%;}
.w100 {width: 100%;}

.h200 {height: 200px;}
.h400 {height: 400px;}


/* main .title, main .title2, main .text {
    margin: 20px 20px 20px 10px;
    /*background: #EFEFEF;*/

main .tt {
    font-size: 26px;
    color: #000000EE;
    font-weight: 600;
}

main .st {
    font-size: 22px;
    color: #000000EE; 
    font-weight: 450;
}

main .dt {
    font-size: 18px;
    color: #000000EE; 
    font-weight: 400;
}

main .text {
    font-size: 18px;
    color: #000000EE; 
    /*background: #FFFFFF;*/
    margin: 25px; 
    font-weight: 600;
}

main .card {
    height: 150px;
    width: 150px;
    margin-left: 10px;
    margin-right: 60px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-variant: small-caps;
    text-decoration: none;
}

footer {
    grid-area: footer;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 50px;
    /* position: fixed; */
    /* bottom: 0; */
    /* margin-top: 10px; */
    background: var(--darker-bkg-color);
    color: white;
}

.mb10 {
    margin-bottom: 0px;
}

.mr10 {
    margin-right: 10px;
}



@media only screen and (max-width: 600px) {

    .container {
        display: grid;
        height: 100vh;
        grid-template-columns: 1fr;
        grid-template-rows: var(--header-height) auto var(--footer-height); 
        grid-template-areas: 
          "header"
          "main"
          "footer";
        color: white;
    }

    main .contentcontainer {
        display: flex; 
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 100%;
        height: min-content;
        padding: 10px 10px 0px 10px;
        /* background: #BBBBBB; */
    }

    .contentcontainer img {
        width: 100%;
    }
    /* .contentcontainer img:first-child {
        margin-top: 0px;
    } */
    .contentcontainer img:last-child {
        margin-bottom: 0px;
    }

    .toggle_button {
        display: flex;
    }

    #toggle_button:checked ~ ul {
        display: block;
    }
    
    main .textcontainer {
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 10px 10px 10px 10px;
        background: #DDDDDD;
    }

    main .textbox {
        display: flex; 
        flex-direction: column;
        justify-content: start;
        width: 100%;
        height: auto;
        padding: 10px 10px 10px 10px;
        background: #FFFFFF;
    }

    main .imgcontainer {
        display: flex; 
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        height: 100px;
        background: #446688;
    }
    main .img-top-p1 {
        width: auto; 
        height: 100px; 
    }
    main .img-top-p2 {
        width: auto; 
        height: 100px; 
    }

    main .imgrowbox {
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        padding: 10px 10px 0px 10px;
        background: #FFFFFF;
    }
    .imgrowbox img {
        height: 250px;
        margin-bottom: 10px;
    }


    nav ul {
        height: min-content;
        width: 100%;
        background: var(--bkg-color);


        display: none;
        position: absolute;
        left: 0;
        flex-direction: column;
        top: var(--header-height);
    }
    nav li {
        height: min-content;
        width: 100%;
    }
    nav ul a {
        padding: 30px 0;
    }
    nav li:hover  {
        background: var(--darker-accent-color);
    }
    nav li .selected  {
        background: var(--accent-color);
    }
    .expandable_li {
        display: block;
    }
    .expandable_li label {
        padding: 30px 0;
        cursor: pointer;
        display: block;
    }
    .expandable_li:hover .dropdown {
        display: none;
    }
    .expandable_li input[type="checkbox"]:checked ~ .dropdown {
        display: block;
    }
    .dropdown {
        position: static;
        width: 100%;
    }
    .dropdown li {
        padding: 0;
        display: block;
        position: static;
        background: var(--darker-bkg-color);
    }
    .dropdown li a {
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .box-divider {
        height: 20px; 
        width: 100%;
    }


    .mr10 {
        margin-right: 0px;
    }

    .mb10 {
        margin-bottom: 10px;
    }


}


.chbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
}


.fjcl {
    justify-content: start;
}
.fjcm {
    justify-content: center;
}
.fjcr {
    justify-content: end;
}



.chbox p {
    color: var(--text-color);
}
.clws1 {
    background: #FFFFFF;
}
.clws2 {
    background: #EFEFEF;
}
.clws3 {
    background: #E8E8E8;
}
.clbl1 {
    background: var(--color-blue-02)
}
.clgn1 {
    background: rgb(116, 208, 121);
}
.clge1 {
    background: rgb(215, 213, 91);
}
.chmb {
    margin-bottom: 0px;
}
  




@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}   

