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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Outfit", Arial, sans-serif;
    color: #616973;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper hr {
    border: none;
    margin: 20px 0;
    border-bottom: 1px solid #e4e6f1;
}

#wrapper .title p {
    text-align: center;
    color: #222;
}

#wrapper .img {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 16px;
    background: #F2F4FA;
    display: flex;
    justify-content: center;
}

#wrapper .box {
    background: #F2F4FA;
    padding: 30px;
    border-radius: 25px;
}

#wrapper .box :is(p, h3) {
    text-align: center;
}

#wrapper .article {
    padding: 30px;
}

#wrapper .arrow {
    display: flex;
    justify-content: center;
    margin: 10px 0 15px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 9px;
    font-size: 22px;
    font-weight: 600;
    color: #222222;
}

#wrapper .title {
    background: #fe0002;
    padding: 30px;
    border-radius: 25px;
    margin: -40px 14% 25px;
    position: relative;
    box-shadow: 0 30px 90px 0 rgba(58, 67, 84, 0.09);
}

#wrapper .banner {
    border-radius: 25px;
    overflow: hidden;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#wrapper .button a {
    display: inline-flex;
    padding: 7px 20px;
    background: #fff;
    color: #000;
    border: 2px solid #fe0002;
    border-radius: 25px;
    transition: .3s;
    font-size: 13px;
    align-items: center;
    gap: 3px;
}

#wrapper .button.btn-bg a {
    background: #fe0002;
    color: #fff;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 11px;
}

#wrapper ul li:before {
    content: url(icon.jpg);
    top: 0;
    position: absolute;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .box {
        padding: 16px;
    }

    #wrapper .title {
        margin: -30px 16px 20px;
        padding: 16px;
    }
}