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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #c6c5c6;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 0 44px;
}

#wrapper footer {
    padding: 10px 10px 30px 44px;
    border-bottom: 15px solid #fecb26;
    position: relative;
}

#wrapper footer .qr {
    position: absolute;
    right: 20px;
    bottom: 7px;
    width: 65px;
}

#wrapper p {
    color: #57585a;
    margin-bottom: 14px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0;
    font-size: 53px;
    font-weight: 700;
    color: #fecb26;
    line-height: 1.2;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #313149;
    border-bottom: 4px solid #fecb26;
    min-width: 170px;
    display: inline-block;
}

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

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

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

#wrapper ul li:before {
    content: '\2022';
    font-size: 23px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
    color: #fecb26;
}

#wrapper ul li:not(:last-child) {
    margin-bottom: 7px;
}

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

#wrapper .title {
    position: relative;
    background: #fff;
    padding: 25px 15px 35px 15px;
    box-shadow: 0 0 5px rgb(0 0 0 / 25%);
    margin: -110px -44px 30px 0;
    min-height: 124px;
}

#wrapper .title .box {
    padding: 5px;
    background: #fecb26;
    display: inline-block;
    color: #333;
    position: absolute;
    top: -15px;
    left: 15px;
}

#wrapper .title .location {
    background-color: #575756;
    color: white;
    padding: 5px 5px 5px 25px;
    position: absolute;
    right: 20px;
    bottom: -10px;
    margin: 0;
}

#wrapper .title .location::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -3px;
    height: 40px;
    width: 40px;
    background: url(map.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

#wrapper header .logo {
    margin-left: auto;
    padding: 10px 20px;
    width: 330px;
}

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

#wrapper .content .col {
    width: 31.2%;
}

#wrapper footer .info span:not(.nobr) {
    color: #fecb26;
}

#wrapper footer .info {
    margin: 0 85px 0 0;
}

#wrapper footer .apply {
    display: flex;
    justify-content: flex-end;
    margin: 0 101px 20px 0;
}

#wrapper footer .apply a {
    background-color: #fecb26;
    color: #57585a;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #57585a;
    transition: background-color 0.4s;
    min-width: 160px;
    display: inline-block;
    text-align: center;
}

#wrapper footer .apply a:hover {
    background-color: #ffffff;
    color: #57585a;
    border: 1px solid #c6c5c6;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

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

    #wrapper article {
        padding: 0 16px;
    }

    #wrapper footer {
        padding: 30px 10px 30px 16px;
    }

    #wrapper .title {
        margin: -110px -16px 30px 0;
    }
}

@media (max-width: 799px) {
    #wrapper .content {
        display: block;
    }

    #wrapper .content .col {
        width: 100%;
    }

    #wrapper footer .qr {
        position: static;
        margin: 20px 0 0;
    }

    #wrapper footer .info {
        margin: 0;
    }

    #wrapper footer .apply {
        margin-right: 10px;
    }

    #wrapper h1 {
        font-size: 45px;
    }
}

@media (max-width: 699px) {
    #wrapper h1 {
        font-size: 40px;
    }
}

@media (max-width: 399px) {
    #wrapper .title .box {
        font-size: 12px;
    }
}