@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 200;
    src: url('../font/extra_light_200.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../font/regular_400.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../font/bold_700.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    src: url('../font/black_900.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

.container-center-vh {
    display: grid;
    justify-content: center;
    align-content: center;
    height: 100%;
    min-height: 100vh;
    position: relative;
}

.container-center-vh .intro-image {
    text-align: center;
}

.container-center-vh .intro-image img {
    width: 350px;
}

.container-center-vh h1 {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}

footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    padding: 0 15px;
    display: inline-block;
}

footer ul li a {
    color: #828282;
    font-weight: 400;
    text-decoration: none;
}

footer ul li a:hover {
    color: #00594F;
}

.content {
    width: 1100px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.content h1 {
    margin: 0px;
    padding: 0;
}

.lang-list {
    display: grid;
    column-gap: 15px;
    width: 92%;
    margin: 0 4%;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 80px 80px 80px;
    margin-bottom: 40px;
}

.lang-list .lang {
    padding: 4px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
}

.lang-list .lang img {
    width: 100%;;
}

.lang-list .lang:hover {
    background-color: #00594F;
}

.lang-list .lang.active {
    background-color: #00594F;
}

.get-app-from-store {
    width: 96%;
    margin: 55px auto;
    display: grid;
    grid-template-columns: auto auto;
}

.get-app-from-store img {
    width: 100%;
}

@media only screen and (max-width: 1100px) {
    .content {
        width: 92%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 400px) {
    .container-center-vh {
        display: grid;
        justify-content: center;
        align-content: center;
        height: auto;
        position: relative;
        padding: 25px 0;
    }
}

@media only screen and (max-width: 350px) {
    .container-center-vh .intro-image img {
       width: 92%;
       margin: 0 4%;
    }
}

.project-partners-logotypes {
    width: 500px;
    margin: 0 auto;
}

.project-partners-logotypes img {
    width: 100%;
}

.project-partners-logotypes .one-in-line {
    display: grid;
    grid-template-columns: auto;
}

.project-partners-logotypes .two-in-line {
    display: grid;
    grid-template-columns: auto auto;
}

@media only screen and (max-width: 500px) {
    .project-partners-logotypes {
        width: 90%;
        margin: 0 auto;
    }
}    
        
