* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Titillium Web", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .logo {
    position: relative;
}

#wrapper .logo a {
    position: absolute;
    top: 0;
    right: 0%;
    width: 28%;
    height: 35%;
    z-index: 1;
}

#wrapper .avatar {
    background: #e8e8e8;
    padding: 10px 10px 10px 150px;
    border-radius: 20px;
    position: relative;
    margin-top: 35px;
}

#wrapper .padding {
    padding: 13px 0 0 150px;
}

#wrapper .position {
    position: relative;
}

#wrapper .position .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
}

#wrapper .position p:before {
    content: "";
    width: 208px;
    height: 131px;
    float: left;
}

#wrapper .avatar img {
    position: absolute;
    top: -15px;
    left: 30px;
    border-radius: 10px;
    width: 100px;
}

#wrapper .avatar p {
    margin-bottom: 0;
}

#wrapper .big {
    font-size: 18px;
}

#wrapper .background {
    background-color: #de2d34;
    color: #fff;
    margin: 20px -40px;
    padding: 20px 40px 10px;
}

#wrapper .background h3 {
    color: #fff;
}

#wrapper .benefit {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#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 .icon {
    width: 48%;
    display: flex;
    align-items: flex-start;
    column-gap: 6px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper .icon img {
    width: 25px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 16px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #de2d34;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
    color: #de2d34;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper h1 {
        bottom: 10%;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 714px) {
    #wrapper .icon {
        width: 100%;
    }

    #wrapper h1 {
        position: static;
        padding: 16px 16px 0;
        width: auto;
        transform: none;
    }

    #wrapper .logo a {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 499px) {
    #wrapper .position p:before {
        display: none;
    }

    #wrapper .position .img {
        position: static;
        width: auto;
        margin-bottom: 17px;
    }

    #wrapper .avatar {
        padding: 10px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #wrapper .avatar p {
        text-align: center;
    }

    #wrapper .avatar img {
        position: static;
    }

    #wrapper .padding {
        padding-left: 0;
    }

    #wrapper ul {
        margin-left: 0;
    }
}