*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

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

button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    appearance: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
}

p {
    line-height: 1.5;
}

address {
    font-style: normal;
}

:root {
    --primary: #E83428;
    --max-width: 1440px;
}


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 40px;
}

.content > .box {
    width: 100%;
    max-width: 1440px;
}

.content > .box > .page-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 2;
}

.content > .box > .section-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 2;
}

.visually-hidden {
    position: absolute !important;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);

    white-space: nowrap;
    border: 0;
}

@media (max-width: 800px) {
    * {
        font-size: 12px;
    }

    .content {
        padding: 10px 20px;
    }

    .content > .box > .page-title {
        font-size: 18px;
    }

    .content > .box > .section-title {
        font-size: 16px;
    }
}