@font-face{font-family:'Montserrat';src:url("https://static.comarch.com/files/css/fonts/Montserrat-UltraLight.otf");font-weight:200}
@font-face{font-family:'Montserrat';src:url("https://static.comarch.com/files/css/fonts/Montserrat-Light.otf");font-weight:300}
@font-face{font-family:'Montserrat';src:url("https://static.comarch.com/files/css/fonts/Montserrat-Regular.otf");font-weight:500}
@font-face{font-family:'Montserrat';src:url("https://static.comarch.com/files/css/fonts/Montserrat-SemiBold.otf");font-weight:600}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    min-height: 100vh;
    min-width: 100vw;
}

body {
    display: block;
}

h1 {
    font-weight:500;
}

h2 {
    font-weight: 300;
    font-size: 20px;
    color: #1e2129;
}

p {
    font-weight: 300;
}

main {
    display: block;
    background-image: url('../css/img/cp-bg.jpg');
    background-size: cover;
    width:100%;
    color: white;
    padding: 0;
}

.container {
    display: flex;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
}
.content > * {
    width: 100%;
}
.content > p {
    margin-top: 5px;
}

.lang {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    cursor: pointer;
}

.lang li {
    display: none;
    transition: all .4s;
    margin-left: 10px;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 50%;
}

.selected {
    border: 1px solid white !important;
}

.visible:hover {
    text-decoration: underline;
}

.lang li.selected, .lang li.visible {
    display: inline-block;
}

.selected:hover {
    background-color: rgba(255,255,255,.1);
}

.products {
    margin-top: 10px;
}

.product {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 150px;
    border: 2px solid white;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 10px;
    transition: all .4s;
}

.product:hover {
    background-color: rgba(255,255,255,.1);
    box-shadow: 0 0 10px rgba(255,255,255, 1);
}

.product img {
    max-height: 45px;
    width: auto;
}

footer {
    background-color: white;
    width:100%;
    padding: 40px 0;
}

footer p {
    font-size: 15px;
    font-weight: 200;
    color: #697780;
}

footer a::before {
    content: '>';
    padding-right: 10px;
}

footer a {
    text-decoration: none;
    color: #00a0e3;
    font-weight: 300;
}
footer a:hover {
    color: #0083ba;
}
footer .container {
    display: block;
    text-align: left;
}

ul {
    font-size: 15px;
    padding-left: 0;
    list-style-type: none;
}

footer ul li {
    margin-bottom: 5px;
}

.community {
    flex: 2;
}

.links {
    flex: 1;
}

contact {
    flex: 1;
}

@media (min-width: 668px) {
    footer .container{
        display: flex;
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    main{
        padding: 8vh 0;
        align-items: center;
    }
}
@media (min-width: 985px) {
    .product{
        padding: 20px;
    }
}