* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: #9E9E9E;
}

#wrapper {
    max-width: 1000px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Quicksand", Arial, sans-serif;
    color: #292f38;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .width {
    flex: 1 1 0;
    padding: 40px 60px;
}

#wrapper .box {
    background: #eb0000;
    width: 30%;
    padding: 40px 15px 30px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .img {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

#wrapper .img img {
    border-radius: 50%;
}

#wrapper .mb {
    margin-bottom: 8%;
}

#wrapper .mb img {
    position: relative;
    top: -2px;
}

#wrapper .map {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

#wrapper .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .social {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 27px 0;
}

#wrapper p {
    margin-bottom: 12px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 700;
}

#wrapper h3 {
    margin: 30px 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #eb0000;
}

#wrapper .avatar {
    margin-bottom: 25px;
}

#wrapper .avatar p {
    text-align: center;
    color: #fff;
}

#wrapper .avatar p a {
    color: #fff !important;
}

#wrapper .small p {
    font-size: 14px;
    color: #fff;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 31px;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 50px;
    background: #eb0000;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 999px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .width {
        padding: 16px;
    }

    #wrapper .box {
        width: 300px;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    #wrapper .box {
        width: 100%;
    }

    #wrapper .small p {
        text-align: center;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}