* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 980px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background: #fff url(background.jpg) no-repeat bottom right;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    background-size: contain;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    24% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .slide img:nth-child(4) {
    animation-delay: 9s;
}

#wrapper .slide img:nth-child(5) {
    animation-delay: 12s;
}

#wrapper .title {
    background: #F68B1F;
    padding: 16px 30px 16px 50px;
    margin: -55px 40px 20px -50px;
    position: relative;
}

#wrapper .title p {
    margin-bottom: 0;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .mt {
    margin-top: 100px;
    font-size: 13px;
}

#wrapper .content {
    width: 48%;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .logo {
    position: absolute;
    top: 0;
    right: 5%;
    background: #fff;
    padding: 15px;
    z-index: 1;
}

#wrapper .article {
    padding: 0 50px 30px;
}

#wrapper p {
    margin-bottom: 4px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 7px 0;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

#wrapper h2 {
    margin: 24px 0 5px;
    font-size: 19px;
    font-weight: 700;
    background: #F68B1F;
    color: #fff;
    padding: 2px 5px;
    display: inline-block;
}

#wrapper h3 {
    margin: 20px 0 5px;
    font-size: 19px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    background: #F68B1F;
    left: 0;
    width: 10px;
    height: 10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 979px) {
    #wrapper {
        margin: 0;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 0 16px 16px;
    }

    #wrapper .mt {
        margin-top: 8%;
    }
}

@media (max-width: 699px) {
    #wrapper .content {
        width: 100%;
    }

    #wrapper .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding: 16px;
    }

    #wrapper .title {
        margin: 0 -16px 16px;
        padding: 16px;
    }
}