/*

dnaprogram

*/
:root {
    --col1: #df0024;
    --col2: #f80020;
    --text: #333;
    --light: #fceef7;
    --borbis: #aec90b;
}

.col1 { color: var(--col1); }
.col2 { color: var(--col2); }

/* scroll */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--col1);
    border-radius: 10px;
}

/* font */
@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('/font/NotoSans.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* podstawowe style */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 300%;
}

h2 {
    font-size: 220%;
}

h3 {
    font-size: 170%;
}

h4 {
    font-size: 135%;
}

h5 {
    font-size: 120%;
}

h6 {
    font-size: 110%;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease;
    outline: none;
}

a:active, a:focus {
    outline: 0;
    border: none;
}

a:hover {
    color: var(--col1);
}

p {
    margin: 0 auto 15px;
    color: var(--text);
}

p.constrained {
    max-width: 1000px;
}

p:last-child {
    margin-bottom: 0;
}

p.small {
    font-size: 90%;
}

p.large {
    font-size: 130%;
    font-weight: 300;
}

.center, .center p, p.center {
    text-align: center;
}

.right, .right p, p.right {
    text-align: right;
}

.justify, .justify p, p.justify {
    text-align: justify;
}

b, strong, .strong {
    font-weight: 600;
}

.stronger {
    font-weight: 800;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.center img, img.center {
    margin: 0 auto;
}

.right img {
    margin-left: auto;
}

.container {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1400px;
    width: 100%;
}

.container.full {
    max-width: 100%;
}

.container.small {
    max-width: 1000px;
}

/* content */
.logo {
    margin-bottom: 30px;
}

.contact {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.contact:not(:last-child) {
    margin-bottom: 10px;
}

.contact svg {
    height: 24px;
    margin-right: 10px;
}

.contact svg path {
    fill: var(--col1);
}

/* rwd */
@media(max-width: 1000px) {
    .logo {
        width: 100px;
        margin-bottom: 20px;
    }

    body {
        font-size: 16px;
    }

    .contact svg {
        height: 22px;
    }
}