* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 960px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper .logo {
    padding: 26px 36px;
    display: inline-block;
    background: #fff;
    border-radius: 0 0 10px 0;
}

#wrapper .title {
    margin: 10% 16px;
}

#wrapper .title p {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    font-size: 19px;
}

#wrapper .text {
    display: flex;
    align-items: center;
    gap: 10px;
}

#wrapper .padding {
    padding: 20px 0 30px 180px;
}

#wrapper .avatar {
    background: #E8E8E8;
    padding: 16px 20px 16px 177px;
    border-radius: 11px;
    position: relative;
}

#wrapper .avatar img {
    position: absolute;
    top: 12px;
    left: 20px;
    border-radius: 11px;
    width: 140px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    background: url(header.jpg) no-repeat;
    background-size: 100%;
}

#wrapper .benefit {
    background: #FFBCDF;
    padding: 30px 50px;
    margin: 30px -50px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
    row-gap: 20px;
}

#wrapper .icon {
    position: relative;
    padding-left: 50px;
    width: 48%;
}

#wrapper .icon img {
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .article {
    padding: 30px 50px;
}

#wrapper .footer {
    background: #2C373E;
    padding: 16px;
}

#wrapper .footer h3 {
    text-align: center;
    color: #fff;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

#wrapper h2 {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 700;
}

#wrapper h4 {
    font-size: 18px;
    font-weight: 700;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#wrapper .width {
    width: 48%;
}

#wrapper .banner {
    width: 48%;
    border-radius: 6px;
    overflow: hidden;
}

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    margin-top: 30px;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    background: rgba(239, 239, 239, 0.9);
    padding: 15px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 12px;
    background: #B0E572;
    color: #000;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #9DDF50;
}

#wrapper .button2 {
    display: flex;
    justify-content: center;

}

#wrapper .button2 a {
    display: inline-block;
    padding: 11px 12px;
    background: #FFFA65;
    color: #000;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button2 a:hover {
    background: #FFF93C;
}

#wrapper ul {
    margin: 0 0 20px 17px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 959px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper .header {
        background-size: cover;
        background-position: center;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .logo {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 659px) {

    #wrapper .icon,
    #wrapper .width,
    #wrapper .banner {
        width: 100%;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .avatar {
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    #wrapper .avatar img {
        position: static;
    }

    #wrapper .padding {
        padding: 15px 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}