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

html {
    min-height: 100%;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 920px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background: #000 url(background.jpg) no-repeat top;
    overflow: hidden;
    padding: 40px 60px;
   background-size: contain;


}

#wrapper .w-1 {
    max-width: 250px;
}

#wrapper .background {
    background: rgba(23, 55, 127, 0.95);
    padding: 25px;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .content {
    width: 48%;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    display: flex;
    justify-content: end;
    margin-bottom: 51%;
}

#wrapper article {
    padding: 0;
}

#wrapper footer {
    padding: 25px;
    background: #17377F;
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
    font-family: "Roboto", Arial, sans-serif;
}

#wrapper .block {
    display: block;
}

#wrapper h3 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", Arial, sans-serif;
}

#wrapper h2 {
    margin-bottom: 13px;
    font-size: 106px;
    font-weight: 700;
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1;
}

#wrapper .benefit {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

#wrapper .benefit .icon1 {
    margin-right: 1px;
}

#wrapper .benefit .icon img {
    width: 42px;
}

#wrapper .icon p {
    text-align: left;
    margin-bottom: 0;
}

#wrapper h2 span {
    display: block;
    font-size: 57px;
    font-weight: 300;
}

#wrapper .qrcode .mb {
    margin-bottom: 0;
}

#wrapper .qrcode {
    display: flex;
    column-gap: 10px;
    flex-direction: row-reverse;
    width: 80%;
}

#wrapper .qrcode .qr {
    width: 63px;
}

#wrapper .social {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wrapper .qrcode .font {
    flex: 1;
}

#wrapper .qrcode .ml {
    margin-left: 41px;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #17377F;
    color: #fff;
}

#wrapper .font p {
    font-family: "Roboto", Arial, sans-serif;
}

#wrapper .button a:hover {
    background: #395FB3;
}

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

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

#wrapper ul li:before {
    content: '\2022';
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

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

@media (max-width: 919px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 16px;
    }

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

    #wrapper .block {
        display: inline;
    }

    #wrapper h2 {
        font-size: 12vw;
    }

    #wrapper h2 span {
        font-size: 7vw;
    }

    #wrapper .background,
    #wrapper footer {
        padding: 16px;
    }
}

@media (max-width: 830px) {
    #wrapper footer {
        display: block;
    }

    #wrapper .social {
        margin-top: 30px;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
    }

    #wrapper .qrcode {
        width: 100%;
    }

    #wrapper .qrcode .ml {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    #wrapper .content {
        width: 100%;
    }

    #wrapper header {
        justify-content: center;
    }
}

@media (max-width: 570px) {
    #wrapper footer {
        display: block;
    }

    #wrapper .qrcode .width {
        width: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 399px) {
    #wrapper .qrcode {
        flex-direction: column;
        align-items: center;
    }
}