* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 25px;
    background: #ebebeb;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #707693;
    overflow: hidden;
}

header {
    padding: 1.5rem;
    display: flex;
    justify-content: right;
    background: #fff;
}



.title {
    padding: 2rem;
    background: #dff3fa;
}

.box-white {
    background: #dff3fa;
    margin: 0 0 0.5rem;
    padding: 1rem 1.5rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.button a {
    background: #035bc5;
    padding: 11px 20px;
    text-align: center;
    color: #fff !important;
    width: 230px;
    font-size: 17px;
    text-transform: uppercase;
    border: 2px solid #035bc5;
}

.button a:hover {
    background: #fff;
    color: #035bc5 !important;
}

.text {
    padding: 16px;
    background: #dff3fa;
}

.text p {
    text-align: center;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

p i {
    width: 15px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0 0 1rem;
    font-size: 23px;
    line-height: 1.182;
    color: #035bc5;
}

h2 {
    font-size: 19px;
    line-height: 24px;
    color: #035bc5;
}

.box {
    border-top: 20px solid #def4fa;
    background: #0766b6;
    color: #fff;
    line-height: 28px;
    padding: 20px 16px 20px 250px;
    font-size: 20px;
    position: relative;
}

.image {
    position: absolute;
    z-index: 3;
    left: 55px;
    bottom: 0;
}

.textbos {
    width: 80px;
    height: 72px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/background.png') no-repeat 0 0;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    position: absolute;
    z-index: 3;
    left: -22px;
    bottom: 9px;
}

textbos p {
    transform: rotate(-16deg);
}

ul {
    list-style: none
}

ul li {
    padding-left: 0.9375rem;
}

ul li:before {
    content: "\25A0";
    color: #035bc5;
    font-size: 0.667rem;
    float: left;
    margin: 6px 0 0 -0.9375rem;
    line-height: 1;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 50%;
    padding-top: 15px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width:800px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(.title, header, .box-white) {
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    span {
        white-space: nowrap;
    }

    .nowap {
        white-space: normal !important;
    }
}

@media only screen and (max-width:575px) {
    .box {
        padding: 16px;
    }

    .image {
        position: relative;
        margin-bottom: 10px;
        left: calc(50% - 85px);
    }
}