* {
    box-sizing: border-box;
}

/* Style the bodY */
body {
    font-family: Arial, Helvetica, sans-serif;
}


/* PICTURE SLIDES HEADER */
.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

.slideshow container {
    /* Container slides */
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.text {
    /* Label text */
    color: #f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    /* Number text (1/3 etc) */
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    /* The dots/ bullets/ indicators */
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.fade {
    /* Fading animation */
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media only screen and (max-width: 300px) {

    /* On smaller screens, decrease text size */
    .text {
        font-size: 11px
    }
}


/* Head/logo Title 
.header {
    padding: 80px;
    text-align: center;
    background: #1abc9c;
    color: white;
}
/* Increase the font size of the heading 
.header h1 {
    font-size: 40px;
}
*/

/* Style the top navigation bar */
.navbar {
    overflow: hidden;
    background-color: rgb(0, 255, 255);
}

/* Style the navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
    float: right;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Column container */
.row {
    display: flexbox;
    /* IE10 */
    display: flex;
    flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar /left column */
.side {
    flex: 30%;
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
}

/* Main column */
.main {
    -ms-flex: 70%;
    flex: 70%;
    background-color: white;
    padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}


/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns
stack on top of each other instead of next ot each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 300px wide, make the navigation
links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}