* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "DM Sans", Arial, sans-serif;
    color: #393939;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .text {
    text-align: right;
}

#wrapper .big {
    font-size: 18px;
}

#wrapper .title div {
    flex: 1 1 0;
}

#wrapper .title p {
    color: #fff;
    margin-bottom: 0;
}

#wrapper .title {
    gap: 15px;
    background: #DB291D;
    padding: 20px 30px;
    margin: 0 -30px 20px;
    display: flex;
    justify-content: space-between;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: center;
}

#wrapper article {
    padding: 30px;
}


#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper .flexbox {
    display: flex;
    column-gap: 30px;
    flex-wrap: wrap;
}

#wrapper .content {
    flex: 1 1 0;
}

#wrapper .width {
    width: 280px;
}

#wrapper h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    width: 280px;
    margin-bottom: 15px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #da291c;
    box-shadow: 0 0 6px #0003;
    color: #fff;
    transition: .2s;
    text-align: center;
    width: 100%;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

#wrapper .button a:before {
    background: #a41d13;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .35s cubic-bezier(.47, 0, .745, .715);
    width: 0;
    z-index: -1;
}

#wrapper .button a:hover:before {
    width: 100%;
}

#wrapper ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    border-bottom: 6px solid transparent;
    border-left: 6px solid;
    border-top: 6px solid transparent;
    color: #d11f19;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    #wrapper .flexbox {
        display: block;
    }

    #wrapper .width {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 579px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .title {
        flex-direction: column;
        gap: 15px;
    }

    #wrapper .text {
        text-align: left;
    }
}