* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
}

#wrapper {
    max-width: 649px;
    margin: 16px auto;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 6px;
    border-image-source: linear-gradient(to bottom, #EF863E, #F36F6B, #EF863E);
    background-color: #fff;
    overflow: hidden;
    padding: 36px 30px 16px 20px;
    position: relative;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper footer {
    display: flex;
    justify-content: end;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 12px;
    font-size: 25px;
    font-weight: 700;
    color: #0070C0;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 700;
}

#wrapper .title {
    max-width: 350px;
    margin: -37% 0 0 auto;
}

#wrapper .title p {
    text-align: center;
    font-size: 19px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .text {
    background: url(phone.jpg) no-repeat;
    padding-left: 35px;
    background-position: 0 center;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 7px;
}

#wrapper ul li:before {
    content: url(icon.jpg);
    position: absolute;
    top: -1px;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .border {
    color: #FF0000;
    border: 1px solid #FF0000;
    padding: 8px 12px;
    margin-bottom: 0;
    position: absolute;
    transform: rotate(38deg);
    bottom: 34%;
    right: 2%;
}

@media (max-width: 648px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 16px;
    }

    #wrapper .title {
        margin-top: -30%;
    }

    #wrapper .border {
        right: 3px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 609px) {
    #wrapper {
        font-size: 16px;
    }

    #wrapper .border {
        position: static;
        transform: none;
        max-width: 157px;
        margin: 15px auto;
    }

    #wrapper header {
        display: flex;
        justify-content: center;
    }

    #wrapper h1 {
        text-align: center;
    }

    #wrapper .title {
        margin: 0;
        max-width: 100%;
    }

    #wrapper footer {
        justify-content: center;
    }
}