
body {
    font-size: var(--fsize-default);
    color: var(--color-2);
    line-height: 1.6;
    font-family: var(--font-main);
}
h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    /*font-family: var(--second);*/
    font-family: 'Kurier', sans-serif;
    text-transform: uppercase;
}
h2 {
    font-family: var(--second);
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 61px;
    color: var(--color-2);
}
h3 {
    font-family: var(--second);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--color-2);
}
h4{
    font-size: 16px;
    line-height: 25px;
    font-weight: 800;
}
h5, h6 {font-size: var(--fsize-sm);}

@media(max-width: 1024px) {
    h1 {
        font-size: 45px;
        line-height: 65px;
    }
    h2 {
        font-size: 33px;
        line-height: 38px;
    }
}
@media(max-width: 767px) {
    h1 {
        font-size: 36px;
        line-height: 42px;
    }
    h4{
        font-size: 14px;
        line-height: 20px;
    }
}
ul {list-style-type: disc;padding-left: 1.5rem;margin-bottom: 1rem;}
li {margin-bottom: 0.5rem;}
a {color: var(--color-3);transition: color 0.3s ease;}
a:hover,
a:focus {color: var(--color-3);text-decoration: underline;}


