body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
}

#mm-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.mm-wrapper_flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.mm-inner {
    display: flex;
    max-width: 50%;
    flex: 0 0 50%;
    height: 100%;
}

.flex-left {
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.flex-left_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

.flex-right {
    background-image: url(img/bg.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

h3 {
    font-size: 54px;
    text-align: center;
    text-transform: uppercase;
}

h4 {
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #4c4c4c;
}

.eb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

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

.kontakt-i {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 50%;
    flex: 0 0 50%;
}

.kontakt-i img {
    height: 32px;
    width: auto;
    margin: 10px auto;
}

@media (max-width: 900px){
    h4 {
        font-size: 22px;
    }
    h3 {
        font-size: 34px;
    }
    .flex-left_inner {
        max-width: 400px;
    }
}

@media (max-width: 768px){
    h4 {
        font-size: 18px;
    }
    h3 {
        font-size: 26px;
    }
    .mm-inner {
        display: flex;
        max-width: 100%;
        flex: 0 0 100%;
        height: 100%;
    }
    .flex-right {
        display: none;
    }
}

@media (max-width: 480px){
    .mm-wrapper_flex {
        padding: 5px 15px;
        width: auto;
    }
    .kontakt {
        flex-direction: column;
    }
}