@font-face {
    font-family: "Oswald-regular";
    src:url("/css/font/Oswald/static/Oswald-Regular.ttf"); format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --main-font: "Oswald-regular", sans-serif;
    --bold-font: "Kodchasan-bold", sans-serif;
    --next-font: "Belanosima", sans-serif;
    --color-bg: #2e2e2e;
    --color-fg: rgba(35, 66, 74, 0.15);
}
/* BASIC */

body {
    font-family: var(--main-font);
    font-size: 125%;
    background-color: var(--color-fg);;
    color: var(--color-bg);;
}

p{
    line-height: 1.6em;
}

h1,
h2 {
    font-family: var(--main-font);
    font-weight: 700;
}

h1 {
    line-height: 46px;
    color: var(--color-bg);
    font-size: 2em;
}

h3 {
    line-height: 36px;
    margin-bottom: 25px;
    color: rgb(244, 126, 76);
    font-size: 1.6em;
}

.svetla {
    margin-bottom: 25px;
    color: rgb(244, 126, 76);
    font-size: 1.6em;
}

.tucne{
    line-height: 1.3em;
    font-size: 2.8em;
    font-family: "Belanosima", sans-serif;
    font-weight: 400;
    text-shadow: -1px -1px 12px rgba(125, 121, 125, 0.92);
}

h2 {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: -20px;
}

p {
    margin: 20px 0;
    text-align: justify;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}


/* LAYOUT */

.fixed-nav-bar {
    box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.6);
}

.zluta{
    color: #eef606;
}

.container {
    padding: 80px 0;
    background-color: #434343;
    color: rgb(248, 245, 245);
}

.container-svetla {
    padding: 80px 0;
    background-color: rgba(35, 66, 74, 0.08);
    color: #1a1919;
}

.container-loga {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
}



.objednavka{
    border: 1px solid rgba(0, 0, 0, 0.11);
    color: rgba(248, 245, 245, 0.81);
    padding: 20px 25px;
    border-radius: 20px;
    line-height: 36px;
    background-color: #434343;
}

.objednavka-bila{
    border: 1px solid rgba(0, 0, 0, 0.11);
    color:  #434343;;
    padding: 20px 25px;
    border-radius: 20px;
    line-height: 36px;
    background-color: rgb(182, 180, 179);
}
.content {
    position: relative;
    background-size: cover;
}

.description,
.article{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;

}

.description {
    padding-top: 100px;
    min-height: 250px;
    text-align: left;
}

ul.seznam{
    list-style-image: url('/images/check.svg');

}

ul.seznam, li{
    margin: 1px 20px;
}

.footpage{
    text-align: center;
    line-height: 1.8em;
}

.bila{
    color: white;
}

.button,
.button:visited,
.button-dark {
    display: inline-block;
    max-width: 300px;
    margin: 50px 10px 30px 10px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
}

.button-dark,
.button-dark:visited {
    margin: 20px 10px 30px 0;
    color: #464646;
    border-color: #464646;
}

.button:hover,
.button-dark:hover {
    transition: all 0.3s ease;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.button-dark:hover {
    color: #ffffff;
    background-color: rgba(70, 70, 70, 0.9);
}

.loga{
    height: 55px;
    margin:6px;
}

@media (min-width: 800px) {
    .row {
        display: flex;
    }

    .col {
        width: 100%;
    }

    .col + .col {
        margin-left: 5em;
    }

}