@font-face {
    font-family: truenobd;
    src: url(../fonty/truenobd.otf);
}

@font-face {
    font-family: truenoultlt;
    src: url(../fonty/truenoultlt.otf);
} 

@font-face {
    font-family: Oswald-Light;
    src: url(../fonty/Oswald-Light.ttf);
} 

@font-face {
    font-family: Oswald-Bold;
    src: url(../fonty/Oswald-Bold.ttf);
} 


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

body {
    color: #f2f2f2;
    background-color: #171818;
    font-family: Oswald-Light;
    font-size: 20px;
    line-height: 1.5;
}

h1 {
    color: white;
    font-size: 22px;
    margin-top:0;
    text-transform: uppercase;
    font-family: truenobd;
    padding-top: 0px;
}  

h2 {
    color: white;
    margin-top:0;
    text-transform: uppercase;
    font-family: truenobd;
    text-align: center;
    padding-bottom: 20px;
}

h3 {
    color: white;
    margin-top:0;
    text-transform: uppercase;
    font-family: truenobd;
    text-align: center;
}

a {
    color: #c48f56;
    text-decoration: none;
}

a:hover {
    color:#e29849
}

strong {
    font-weight: bold;
    color: #c48f56;
}

/*
    HEADER
*/
.header {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background: url('../images/slider.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header h2 {
    font-size: 53pt;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header p {
    text-align: center;
}

/*
    CONTACT
*/
.contact {
    padding: 50px 20%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .row {
    display: flex;
    flex-direction: column;
    border: 1px solid #232323;
    max-width: 900px;
    width: 100%;
}

.contact .address {
    padding: 50px;
    width: 100%;
    background: #121212;
}

.contact .address .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.contact .forms {
    padding: 50px;
    width: 100%;
    background: #121212;
}

.contact .forms,
.contact .forms .row {
    display: flex;
    flex-direction: column;
    border: 0px;
}

.contact .forms .row {
    padding: 5px;
}

.contact .forms .row label {
    text-transform: uppercase;
}

.contact .forms .row input,
.contact .forms .row textarea,
.contact .forms .row select {
    width: 100%;
    padding: 5px;
    border: 0;
    border-radius: 5px;
    background:rgb(18, 18, 18);
    color: #ffffff;
    border: 1px solid #1f1f1f;
    outline: none;
    resize: none;
}

.contact .forms .row input[type="submit"] {
    background-color: #c48f56;
    color: #fff;
    font-family: truenobd;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact .address .kontaktfoto {
    float: left;
    padding-top: 200px;
    text-align: left;
    width: 200px;
}

.contact .address .footerlogo{
    padding-top: 30px;
}

.odeslano {
    width: 100%;
    max-width: 762px;
    height: 40px;
    line-height: 37px;
    color: #56ce8c;
    border: 1px solid #56ce8c;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    }

.zamitnuto {
        width: 100%;
        max-width: 762px;
        height: 40px;
        line-height: 37px;
        color: red;
        border: 1px solid red;
        text-transform: uppercase;
        margin-bottom: 10px;
        text-align: center;
        }


/*
    FOOTER
*/
.footer {
    background-color: #121212;
    padding: 5px 0%;
    text-align: center;
}

@media only screen and (max-width: 720px) {
    
    .info,
    .portfolio,
    .price,
    .contact {
        flex-direction: column;
        padding: 15px;
    }

    .price {
        padding-top: 30px;
    }

    .price .pricelist {
        margin-top: 10px;
    }    

    .portfolio .gallery,
    .portfolio .gallery .row {
        display: flex;
        flex-direction: column;
    }

    .portfolio .gallery .row img {
        width: calc(100%) !important;
    }

    .price .pricelist {
        flex-direction: column;
        padding: 15px;
    }

    .price .pricelist .priceitem {
        width: 100%;
    }
    
    .contact,
    .contact .row {
        flex-direction: column;
        padding: 0;
    }

    .address {
        display:flex;
        padding: 10px 0px 0px 0px !important; 
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}