* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Hind", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    box-shadow: 0 4px 8px 0 #aaa;
}

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 32px;
    display: flex;
    justify-content: end;
}

#wrapper article {
    padding: 32px;
}

#wrapper .font {
    color: #e11f1d;
    text-align: center;
    font-size: 21px;
    margin-bottom: 30px;
}

#wrapper .center {
    text-align: center;
    margin: 25px 0 0;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 700;
    color: #e11f1d;
    text-align: center;
    line-height: 1.1;
}
#wrapper h2 {
    margin-bottom: 15px;
    font-size: 16px;
}
#wrapper h3 {
    margin: 30px 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #e11f1d;
    position: relative;
}

#wrapper h3 span {
    background: #fff;
    padding-right: 10px;
    position: relative;
}

#wrapper h3:before {
    content: "";
    width: 100%;
    border-bottom: 1px solid #e11f1d;
    position: absolute;
    top: 14px;
    left: 0;
}

#wrapper .icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#wrapper .background {
    background: #ececec;
    padding: 30px 30px 40px;
}


#wrapper .background p {
    text-align: center;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #e11f1d;
    text-decoration: none;
}

#wrapper a:hover {
    color: #5ab7a9;
}

#wrapper .button {
    margin-top: -16px;
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 6px 40px;
    position: relative;
    text-align: center;
    background: #e11f1d;
    color: #fff;
}

#wrapper .button a:before {
    content: "";
    position: absolute;
    border-bottom: 17px solid transparent;
    border-left: 20px solid #e11f1d;
    border-top: 17px solid transparent;
    height: 0;
    width: 0;
    top: 0;
    right: -20px;
}

#wrapper .button a:after {
    content: "";
    position: absolute;
    border-bottom: 17px solid transparent;
    border-right: 20px solid #e11f1d;
    border-top: 17px solid transparent;
    height: 0;
    width: 0;
    top: 0;
    left: -20px;
}

#wrapper .qr {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 14px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 14px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper .logo {
        padding: 20px 16px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}