h2 {
    text-align: center;
}

.event-box,
.gift-box {
    position: relative;
    border: 1px solid #000;
}

.wrapper-s h2 {
    padding: 100px 0;
    font-size: 1.2em;
    font-family: 'Roboto', 'Noto Sans KR', 'Malgun Gothic', 'Dotum', sans-serif;
    color: #999;
}

.event-box {
    margin-bottom: 50px;
}

.event-box p {
    margin-top: 20px;
    padding: 0 20px;
}

.gift-box p {
    padding: 0 20px;
}

.install {
    padding: 15px 0;
    background-color: #008190;
}
.install a {
    display: block;
    text-align: center;
    color: #fff;
}

.event-box::before {
    content: '할인';
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    width: 70px;
    height: 35px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    background-color: #a82a30;
    /* position: absolute;
    left: 0;
    top: 0; */
}

.gift-box::before {
    content: '사은품 증정';
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    width: 120px;
    height: 35px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    background-color: #f7931e;
    /* position: absolute;
    left: 0;
    top: 0; */
}


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-1750px);
        transform: translateX(-1750px);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-1750px);
        transform: translateX(-1750px);
    }
}

.people-box {
    text-align: center;
}


.people-box h2 {
    padding: 100px 0;
    font-size: 1.2em;
    font-family: 'Roboto', 'Noto Sans KR', 'Malgun Gothic', 'Dotum', sans-serif;
    color: #999;
}

.people-slider {
    height: 176px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1400px;
}

.people-slider::before,
.people-slider::after {
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    content: "";
    height: 176px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.people-slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.people-slider::before {
    left: 0;
    top: 0;
}

.people-slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 3500px;
}

.people-slider .slide {
    height: 176px;
    width: 220px;
}

.people-slider .slide img {
    border-radius: 50%;
}
.people {
    margin-top: 100px;
    padding: 10px 20px;
    background-color: #008190;
    color: #fff;
}

/* 1. 모바일까지 */
@media screen and (max-width: 767px) {}

/* 2. 태블릿부터 */
@media screen and (min-width: 768px) {
    .wrapper-s h2 {
        font-size: 1.7em;
    }
    .people-box br {
        display: none;
    }
    .people-box h2 {
        font-size: 1.7em;
    }
    
}

/* 3. 태블릿만 */
@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (min-width: 1024px) {}

/* 4. PC부터 */
@media screen and (min-width: 1280px) {}