* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font: 100% normal Arial, Helvetica, sans-serif;
    background: white;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    background-color: #24252a;
}

.logo {
    cursor: pointer;
    margin-right: auto;
}

.nav__links {
    list-style: none;
    display: flex;
}

.nav__links a,
.cta,
.overlay__content a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #edf0f1;
    text-decoration: none;
}

.nav__links li {
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #0088a9;
}

.cta {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.cta:hover {
    background-color: rgba(0, 136, 169, 0.8);
}

/* Mobile Nav */

.menu {
    display: none;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
}

.overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
}

.overlay a:hover,
.overlay a:focus {
    color: #0088a9;
}

.overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
    cursor: pointer;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }

    .overlay .close {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media only screen and (max-width: 800px) {

    .nav__links,
    .cta {
        display: none;
    }

    .menu {
        display: initial;
    }
}

.foto1 {
    background: #000;
    height: 500px;
    width: 100%;
    min-width: 1000px;
}

#contact {
    clear: both;
}

form {
    width: 320px;
    margin: 20px auto;
    border: 2px solid #ccc;
    padding: 20px;
}

form label {

    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
    color: #555555;
}

form textarea,
form input {
    padding: 5px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

form input[type=submit] {
    cursor: pointer;
    margin-bottom: 0px;
}

.naszemotto {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding: 40px 0 0 0;
}

.text1,
.text2 {
    color: black;
    text-align: center;
    margin: 30px;
    text-transform: uppercase;
}

.text2 {
    line-height: 30px;
}

.icon {
    position: absolute;
    display: inline-block;
    top: calc(25%);
    left: calc(25%);
    height: 50px;
    width: 50px;
}

#blok {

    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    letter-spacing: 35px;
    line-height: 12px;
    overflow: hidden;
    padding: 20px 0 50px 0;
    /* width: 800px; */
}

.element {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: solid 2px black;
    background-color: coral;
    display: inline-block;
    letter-spacing: normal;
    font-size: normal;
    white-space: normal;
    text-align: normal;
    vertical-align: middle;
    margin: 20px 70px 20px 70px;
}

.textslogan {
    position: relative;
    text-transform: uppercase;
    top: 130px;
    text-align: center;
}

.text3 {
    float: left;
    width: 500px;
    margin: 20px 0px 20px 150px;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: normal;
    white-space: normal;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;


}

.foto2 {
    float: right;
    width: 500px;
    margin: 20px 100px 20px 0;
    border-radius: 10%;
    box-shadow: darkgray;

}

.line3 {
    clear: both;
}

footer {

    display: fixed;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 10%;
    background-color: #24252a;
    color: white;
}