/* UTILITIES */
* {

    padding: 0;
    box-sizing: border-box;
    font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-work, sans-serif;
    padding: 4px;
}

#header {
    width: 100%;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    background-color: #467061;
}

#warning {
    font-size: 16px;
    font-family: courier;
    text-align: center;
}
ul {
    flex-shrink: 0;
}
body {
    /* font-family: cursive;  */
}

a {
    text-decoration: none;
    color: white;
}

#dark {
    text-decoration: none;
    color: black;
    font-weight: 700;
}

#figtitle {
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

li {
    list-style: none;
}
/* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
}

.nav-links a {
    color: #fff;
}

/* LOGO */
.logo {
    font-size: 32px;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover {
    background-color: #4c9e9e;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
    position: relative;
}

.dropdown {
    /* background-color: rgb(1, 139, 139); */
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
}

.dropdown li + li {
    margin-top: 10px;
    background: url("../img/stu_background.jpg");
}

.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
    background: url("../img/stu_background.jpg");
}

.dropdown li:hover {
    background-color: #4c9e9e;
}

.services:hover .dropdown {
    display: block;
}
/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type = checkbox] {
    display: none;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width : 1000px) {
    .menu {
        display: none;
        position: absolute;
        background-color: #477f80;
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }

    .menu li:hover {
        display: inline-block;
        background-color: #4c9e9e;
        transition: 0.3s ease;
    }

    .menu li + li {
        margin-top: 12px;
    }

    input[type = checkbox]:checked ~ .menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }

    .dropdown li:hover {
        background-color: #4c9e9e;
    }
}
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    vertical-align: middle;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    max-width: 30%;
    padding: 0 4px;
    margin: 20px;
}

/* Create four equal columns that sits next to each other */
.column25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 30%;
    padding: 0 4px;
    vertical-align: middle;
}

.column-2 {
    -ms-flex: 60%; /* IE10 */
    flex: 60%;
    max-width: 60%;
    padding: 0 4px;
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    margin: 20px;
}
.blog-column {
    margin: 20px;
    float: right;
    width: 30%;
    min-height: 350px;
    min-width: 30%;
    max-width: 600px;
    background-color: #477f80;
    margin-right: 10px;
    margin-left: 60px;
}
.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

#agenda-image {
    width: 150px;
}

.column-agenda-image{
    margin: 20px;
    float: right;
    background-color: white;
    margin-right: 10px;
    margin-left: 60px;
}

.column-agenda-descr{
    margin: 20px;
    float: right;
    width: 100%;  
    max-width: 600px;
    background-color: white;
    margin-right: 10px;
    margin-left: 60px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width : 1000px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
    .column25 {
        -ms-flex: 30%;
        flex: 30%;
        max-width: 30%;
    }
    .blog-column {
        -ms-flex: 80%;
        flex: 80%;
        max-width: 80%;
        width: 80%;
    }
    .column-2 {
        -ms-flex: 80%;
        flex: 80%;
        max-width: 80%;
        width: 80%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width : 800px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
    .column25 {
        -ms-flex: 75%;
        flex: 75%;
        max-width: 75%;
    }
    .blog-column {
        -ms-flex: 80%;
        flex: 80%;
        max-width: 80%;
        width: 80%;
    }
}
#main-body-container {
    padding: 10px;
    /*  margin: 10px; */
    /*background: url("../img/stu_background.jpg"); */
}
#main-body-container:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#display-ads {
    padding: 20px;
    margin: 20px;
    background: #e5e5e5;
}
#main-article {
    float: left;
    width: 60%;
    min-height: 200px;
    background-color: white;
    padding: 8px;
}
#sidebar {
    float: right;
    width: 33%;
    min-height: 350px;
    min-width: 30%;
    max-width: 600px;
    background-color: #477f80;
    margin-right: 20px;
}

#footer {
    width: 100%;
    background-color: #467061;
    padding: 10px;
    color: #000000;
    text-align: center;
    min-height: 50px;
}
#footer a {
    color: black;
}
html {
    overflow: scroll
} /*for tablets and phones*/

* {
    box-sizing: border-box;
}

.row:after {
    content: "";
    clear: both;
    display: block;
}

[class *= "col-"] {
    float: left;
    padding: 10px;
}


/*global styles*/
#container {
    height: auto;
    margin: auto;
    max-width: 1000px;
    width: 100%}


article {
    width: 100%;
    margin-right: 5%;
    float: left;
    background-color: white;
}

aside {
    width: 100%;
    float: right;
    background-color: #477f80;
}

/* For mobile phones: */
[class *= "col-"] {
    width: 100%;
}

@media only screen and (min-width : 600px) {
/* For desktop: */
    .col-1 {
        width: 8.33%;
    }
    .col-2 {
        width: 16.66%;
    }
    .col-3 {
        width: 25%;
    }
    .col-4 {
        width: 33.33%;
    }
    .col-5 {
        width: 41.66%;
    }
    .col-6 {
        width: 50%;
    }
    .col-7 {
        width: 58.33%;
    }
    .col-8 {
        width: 66.66%;
    }
    .col-9 {
        width: 75%;
    }
    .col-10 {
        width: 83.33%;
    }
    .col-11 {
        width: 91.66%;
    }
    .col-12 {
        width: 100%;
    }


}