@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'fontul_folosit', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 16px auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    text-align: center;
    line-height: 1.25;
    margin: 10px 0 20px;
}

h1 span {
    font-weight: 400;
    font-size: 20px;
}

h2 {
    font-size: 17px;
    margin-top: 16px;
}

section:first-of-type h2 {
    margin-left: 14px;
}

p {
    margin: 0 0 10px;
}

ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

ul li {
    padding-left: 14px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -14px;
    font-size: 1.375em;
    line-height: 1;
}

header {
    position: relative;
}

.logo {
    position: absolute;
    right: 10px;
    top: 26px;
}

article {
    padding: 20px 54px;
}

.box {
    display: flex;
    justify-content: space-between;
}

section {
    width: 48%;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 30px;
    right: 80px;
    font-size: 20px;
    line-height: 1;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 16px;
    }

    span > br {
        display: none;
    }

    header {
        position: relative;
    }

    .logo {
        top: 10px;
    }

    article {
        padding: 10px 0;
    }

    .box {
        display: block;
    }

    section {
        width: 100%;
    }

    footer {
        position: static;
        line-height: 1.1;
    }
}

@media only screen and (max-width: 599px) {
    .logo {
        left: 10px;
        width: 110px;
    }
}