* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    /*background: url("http://localhost/NewProject/assets/Background-1.png");*/
    background-size: cover;
    font-family: "Montserrat";
}

.container {
    width: 100vw;
    min-height: 100vh;
    z-index: 100;
    position: relative;
}

.desktop, .menu-items, .mobile-container {
    display: none;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 40px;
    min-height: 15vh;
    z-index: 100;
    position: relative;
}

.header .intranet-login{
    position: absolute;
    right: 30px;
    font-size: 0.8em;
}

.header .intranet-login:hover{
    color: #606060;
}

.nav {
    width: 33%;
    display: flex;
    justify-content: center;
}

.languages-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.language {
    margin: 0 10px;
    color: white;
    font-size: 0.8em;
}

.language:hover {
    cursor: pointer;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    text-align: center;
    color: black;
}

.logo img{
    max-width: 100%;
}

.menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 100;
}


.menu {
    padding: 30px 0px;
    font-size: 1.7em;
}

.divider {
    width: 40%;
    border-bottom: 1px solid white;
}

.footer {
    /*height: 20vh;*/
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 45px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.left-container {
    font-weight: bold;
    height: 100%;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    font-size: 0.5em;
    padding-left: 20px;
}

.right-container {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.icons {
    padding: 0px 5px;
    margin-right: 3px;
}

.mobile-container {
    min-height: 68vh;
}

.footer-desktop {
    display: none;
}

#render {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.render-title {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    color: white;
    border-bottom: 1px solid white;
}

.render-menu-options, .services-menu-options {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.render-menu-option, .service-menu-option {
    padding: 20px 0;
}

.render-menu-option a, .service-menu-option a {
    text-decoration: none;
    color: white;
}

a {
    color: #ffffff;
}

a:link {
    color: #ffffff;
    text-decoration: none;
}

.menu-container a:hover {
    color: #282828;
}
}

a:hover {
    color: #282828;
}

@media only screen and (min-width: 768px) {
    .mobile, .footer-mobile {
        display: none;
    }

    .footer-desktop {
        display: flex;
    }

    .desktop {
        display: initial;
    }

    .header {
        height: 15vh;
    }

    .menu-container {
        height: 70vh;
    }

    .footer {
        height: 15vh;
    }

    .languages-container {
        justify-content: start;
        margin-left: 30px;
    }

    .language {
        font-size: 0.8em;
    }

    .languages-container a:hover {
        color: #606060;
    }

    .logo img {
        height: 70px;
    }

    .menu-container {
        flex-direction: row;
        height: 100%;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .menu {
        padding: 0px 0px;
        width: 100%;
    }

    .menu:hover {
        cursor: pointer;
    }

    .divider {
        height: 60px;
        border-right: 1px solid white;
        border-bottom: 0;
        width: 1%;
    }

    .services {
        position: relative;
        text-align: center;
        width: 100%;
    }

    .services:hover .services-items {
        display: inline-block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .services-items {
        display: none;
    }

    .menu-item {
        font-size: 0.5em;
        padding: 5px 0;
    }

    .menu-item:first-child {
        padding-top: 20px;
    }

    .menu-item a {
        text-decoration: none;
        color: white;
        cursor: pointer;
    }

    .footer {
        height: auto;
        width: 100%;
        padding-bottom: 45px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .left-container {
        width: 67%;
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        padding-left: 60px;
        font-size: 0.45em;
    }

    .address, .copyright {
        width: 50%;
        font-size: 1.5em;
        /*margin-left: 35px;*/
        padding: 2px;
    }

    .right-container {
        width: 33%;
        justify-content: flex-end;
        padding-right: 60px;
        display: flex;
        flex-direction: row;
    }

    .icons {
        margin-left: 7px;
    }

}