* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Libre Franklin", Arial, sans-serif;
    color: #595959;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    margin-bottom: 26px;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .left {
    width: 38%;
}

#wrapper .right {
    width: 58%;
}

#wrapper .logo {
    padding: 20px 30px;
    display: flex;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #F2F2F2;
    margin-top: 6px;
    padding: 30px;
    row-gap: 20px;
}

#wrapper .flexbox.flex2 {
    flex-direction: row-reverse;
}

#wrapper .content :is(p, h3) {
    text-align: center;
}

#wrapper .content {
    width: 48%;
}

#wrapper .banner img {
    object-fit: cover;
    height: 100%;
}

#wrapper .banner {
    width: 48%;
}

#wrapper article {
    padding: 30px 30px 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 300;
    color: #e20303;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 400;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #e20303;
    text-decoration: none;
}

#wrapper .link-hover a:hover:before {
    transform: rotate(45deg);
}

#wrapper .link-hover a:before {
    content: '\+';
    font-size: 20px;
    line-height: 0;
    color: #e20303;
    margin-right: 5px;
    position: relative;
    top: 1px;
    display: inline-block;
    transition: .3s;
}

#wrapper .background {
    background: #F2F2F2;
    margin: 30px -30px 0;
    padding: 30px;
}

#wrapper .button a {
    display: inline-block;
    background: #e20303;
    color: #fff;
    padding: 12px 20px;
    transition: .3s;
}

#wrapper .button a:hover {
    background: #595959;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper .ul li {
    padding-left: 45px;
    width: 100%;
    margin-bottom: 16px;
    display: inline-block;
}

#wrapper .ul {
    column-count: 2;
}

#wrapper .ul li:nth-of-type(1) {
    background: url(icon1.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(2) {
    background: url(icon2.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(3) {
    background: url(icon3.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(4) {
    background: url(icon4.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(5) {
    background: url(icon5.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(6) {
    background: url(icon6.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(7) {
    background: url(icon7.jpg) no-repeat 0 0;
}

#wrapper .ul li:nth-of-type(8) {
    background: url(icon8.jpg) no-repeat 0 0;
}

#wrapper .ul li:before {
    display: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper ul li:before {
    content: '\+';
    font-size: 17px;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px 16px 0;
    }

    #wrapper .logo,
    #wrapper .flexbox {
        padding: 16px;
    }

    #wrapper .background {
        padding: 16px;
        margin: 0 -16px;
    }
}

@media (max-width: 699px) {
    #wrapper .ul {
        column-count: 1;
    }

    #wrapper :is(.left, .right, .content, .banner) {
        width: 100%;
    }

    #wrapper .logo {
        justify-content: center;
    }

    #wrapper h1 {
        font-size: 30px;
    }
}