* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}


.desktop {
    display: none;
}

.container {
    width: 100vw;
    min-height: 100vh;
}

.header {
    display: flex;
    flex-direction: row;
    padding-top: 30px;
}

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

.languages-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    color: black;
    padding-left: 10%;
}

.language {
    margin: 0 10px;
    color: black;
    font-size: 0.9em;
}

.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%;
}

main{
    padding-top: 30px;
}

.map-container{
    min-height: calc(100vh - 180px);
}

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

.content-container .title, .content-container p{
    width: 90%;
    font-size: 0.8em;
    text-align: left;
}

.content-container p{
    padding-top: 60px;
}

.divider{
    border-bottom: 1px solid black;
    width: 20%;
    padding: 90px;
}

.go-back{
    padding: 130px 0;
    text-align: center;
    font-size: 1.2em;
}

.go-back a{
    text-decoration: none;
    color: black;
}

/*Footer*/
.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 30px;
    color: black;
    padding-left: 15px;
}


.left-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 0.6em;
}

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

.icons{
    margin-right: 15px;
}

.icons:last-child{
    margin-right: 40px;
}

.footer-desktop{
    display: none;
}

p a {
    text-decoration: none;
    color: #000000;
}

p a:hover {
    text-decoration: none;
    color: #606060;
}