html {
    width: 100%; height: 100%; margin: 0; padding: 0;
    scroll-behavior: smooth;

}

body {
    width: 100%; height: 100%; margin: 0; padding: 0;
    background-color:white;
    margin:0;
    background:  #c7e5f3;
    background-size: 200px 200px;
    background-position: 0 0, 100px 100px;
    background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, #82b2ff 75%, #82b2ff),
    linear-gradient(45deg, #82b2ff 25%, #c7e5f3 25%, #c7e5f3 75%, white 75%, white);
}

.top-menu {
    color: white;
    background-color: #82b2ff;
    border-bottom-style: solid;
    border-bottom-width: 4px;
    border-bottom-color: #316dcc;
}

.top-menu a {
    float: left;
    color: white;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 21px;
}

.top-menu a.active {
    border-color: #316dcc;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px 10px;
    background-color: #c7e5f3;
    color: white;
    text-decoration: underline;
}

.top-menu .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 21px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #c7e5f3;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /*z-index: 1;*/
}

.dropdown-content a {
    float: none;
    background-color: #82b2ff;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.top-menu a:not(:first-child):hover, .dropdown:hover .dropbtn {
    background-color: #c7e5f3;
    color: white;
}

.top-menu .no-hover {
    background-color: inherit;
    color: inherit;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

div#home {
    padding-top: 65px;
}

.white {
    background: white;
}

.blue {
    overflow: hidden;
    background:  #c7e5f3;
    background-size: 200px 200px;
    background-position: 0 0, 100px 100px;
    background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, #82b2ff 75%, #82b2ff),
    linear-gradient(45deg, #82b2ff 25%, #c7e5f3 25%, #c7e5f3 75%, white 75%, white);
}

.fullScreen {
    width: 100%;
    height: 100%;
}

.marginMenu {
    margin-top: 90px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

/*.top-menu a:not(:first-child):hover {*/
/*    background-color: #316dcc;*/
/*    color: white;*/
/*    text-decoration: underline;*/
/*}*/

.text-col-2 {
    column-count: 2;
    column-rule-style: solid;
    column-rule-width: 1px;
    column-rule-color: #82b2ff;
}

.logoImage img {
    display: block;
    width: 600px;
    margin: auto;
}

.container {
    padding: 10px 20px;
}

.row {
    display: flex;
}

.col {
    padding: 10px;
    flex: 50%;
}

.damFrame {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 800px;
    border-color: #316dcc;
    border-style:solid;
    border-radius: 10px;
    border-width: 5px;
}

@media screen and (max-width: 600px) {
    .damFrame {
        margin-left: 5%;
        margin-right:5%;
        width: 90%;
    }

    .top-menu a:not(:first-child), .dropdown .dropbtn {
        display: none;
        overflow: hidden;
    }
    .top-menu a.icon {
        float: right;
        display: block;
    }

    .top-menu.responsive {
        position: relative;
    }
    .top-menu.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .top-menu.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .top-menu.responsive .dropdown {float: none;}
    .top-menu.responsive .dropdown-content {position: relative;}
    .top-menu.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}

.footer {
    padding: 10px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #82b2ff;
    color: white;
    text-align: center;
    border-radius: 10px 10px 0 0;
    border-bottom-style: solid;
    border-bottom-width: 4px;
    border-bottom-color: #316dcc;
}



