.body-style {
    background-color: #fff;
}

/*main*/

/*main header*/

.main-header {
    position: relative;
    border-bottom: 1px solid #ebedee;
    padding: 0 12px;
}

/*main logo*/

.header-logo {
    max-width: 350px;
}

.header-logo-inner {
    position: relative;
    max-width: 350px;
    padding-top: 21.42857142857143%;
    margin: 0 auto;
    display: block;
    text-decoration: none;
}

.header-logo-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

/*languages*/

.lang-select {
    position: absolute;
    height: 39px;
    top: 50%;
    right: 0;
    padding-top: 6px;
    padding-bottom: 8px;
    margin-top: -19px;
}

.lang-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-align: right;
}

.lang-list-item {
    padding-right: 28px;
    display: inline-block;
}

a.lang-link {
    color: #ff4005;
}

a.lang-link.select {
    font-weight: bold;
    text-decoration: underline;
}

a.lang-link:hover {
    text-decoration: none;
    color: rgba(255, 64, 5, 0.75);
}

/*content*/

.content {
    border-bottom: 3px solid #ebedee;
}

.content-section {
    padding: 12px 24px;
}

.section-orange {
    border-left: 1px solid rgba(255, 152, 0, 0.15);
    border-right: 1px solid rgba(255, 152, 0, 0.15);
    background-color: rgba(255, 152, 0, 0.05);
}

.section-red {
    border-left: 1px solid rgba(255, 152, 0, 0.15);
    border-right: 1px solid rgba(255, 152, 0, 0.15);
    background-color: rgba(255, 64, 5, 0.15);
}

.section-main-header {
    border-left: 1px solid #ebedee;
    border-right: 1px solid #ebedee;
}

.content-section-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.content-header {
    margin-bottom: 0.5rem;
}

.content-image {
    max-width: 360px;
    margin: 4px auto;
    padding: 4px;
    border: 1px solid rgba(91, 55, 0, 0.15);
}

.content-image img {
    margin: 0 auto;
    display: block;
    image-rendering: pixelated;
}

h1 {
    font-size: 1.45rem;
    text-align: center;
    color: #333;
}

h2 {
    font-size: 1.35rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    text-align: center;
    color: #333;
}

.content p {
    font-size: 1rem;
    margin-bottom: 0;
    text-align: justify;
    color: #4c4c4c;
}

.content p + p {
    margin-top: 0.5rem;
}

.content ul {
    font-size: 0.9rem;
    text-align: justify;
    list-style: none;
    color: #1c000b;
}

.content ul li {
    position: relative;
}

.content ul li:before {
    position: absolute;
    left: -16px;
    content: "\2013";
}

/*media queries*/

@media screen and (max-width: 640px) {
    .header-logo {
        margin: 0 auto;
    }

    .lang-select {
        position: relative;
        height: auto;
        padding-top: 0;
        margin-top: 0;
    }

    .lang-list {
        text-align: center;
    }

    .lang-list-item {
        padding-left: 14px;
        padding-right: 14px;
    }

    a.lang-link {
        font-size: 0.9rem;
    }

    .error-page .content-header {
        text-align: center;
    }

    .error-page .content p {
        text-align: center;
    }
}

@media screen and (max-width: 420px) {
    .content-image {
        position: relative;
        max-width: inherit;
        margin: 0 auto;
        padding: 100% 0 0;
        border: 0;
    }

    .content-image img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }
}