.wrap {
    text-align: center;
    overflow: hidden;
}

.head-inner {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    z-index: 99999;
    min-width: 1320px;
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.7s;
}

.scroll-on {
    padding: 10px 2%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.6);
}

.head-inner li a {
    font-size: 18px;
    font-weight: 600;
}

.head-inner .logo {
    width: 300px;
}

.head-inner .logo img {
    width: 100%;
}

.head-nav {
    display: flex;
    align-items: center;
}

.head-nav li {
    padding: 0 25px;
    color: #fff;
}

@media screen and ( max-width: 1600px ) {
    .head-nav {
        display: none;
    }

    .head-inner {
        min-width: 100%;
        justify-content: center;
    }

    .head-inner .logo {
        width: 220px;
    }
}

/********* section 01 ***********/

.main01 {
    background: url(../img/main-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    background-position: center;
}

.main01 h2 {
    position: absolute;
    top: 200px;
    right: 0;
    animation: moveUpDown 2s infinite;
}

.main01 p {
    position: absolute;
    top: 200px;
    left: 0;
    animation: moveUpDown 2s infinite;
}

.main01 h1 {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.main01 h3 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.main01 h4 {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
}

@media screen and ( max-width: 1000px ) {
    .main01 h1 img {
        width: 70%;
    }

    .main01 h3 img {
        width: 50%;
    }
    
    .main01 h4 img {
        width: 50%;
    }
}

@media screen and ( max-width: 480px ) {
    .main01 {
        background: url(../img/main-bg-m.png);
        background-position: center;
        height: 600px;
    }

    .main01 h2 {
        display: none;
    }

    .main01 p {
        display: none;
    }

    .main01 h1 {
        top: 25%;
    }

    .main01 h1 img {
        width: 80%;
    }

    .main01 h3 {
        top: 47%;
    }

    .main01 h3 img {
        width: 80%;
    }

    .main01 h4 {
        top: 56%
    }
    
    .main01 h4 img {
        width: 80%;
    }
}

/********* section 02 ***********/
.main02 {
    background: url(../img/main02-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1700px;
    position: relative;
    background-position: center;
    padding: 300px 0;
    overflow: hidden;
}

.main02 h1 {
    margin: 30px 0;
}

.main02 h3 {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    animation: moveUpDown 2s infinite;
}

.main02 h5 {
    margin-top: 90px;
    padding: 0 50px;
}

.main02 h5 img {
    width: 100%;
}

.main02 .txt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3%;
    width: 1280px;
    padding: 50px 0;
    margin: 0 auto;
    background: url(../img/main02-sub03.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    color: #fff;
}

.main02 .txt h2 {
    color: #fff;
    font-family: 'BMEULJIRO';
    font-size: 36px;
    animation: Textani 1s 0s infinite;
}

.main02 .txt p {
    font-size: 20px;
    text-decoration: underline;
    padding: 10px 0;
}

strong {
    color: #e5ff00;
}

@keyframes Textani {
    0%{
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media screen and ( max-width: 1500px ) {
    .main02 h3 {
        display: none;
    }
}

@media screen and ( max-width: 480px ) {
    .main02 {
        background: url(../img/main02-bg-m.png);
        background-position: center;
        background-repeat: no-repeat;
        padding: 120px 0 50px 0;
        height: 890px;
    }

    .main02 img {
        width: 100%;
    }

    .main02 h4 {
        padding: 0 30px;
    }

    .main02 h1 {
        padding: 0 30px;
        margin: 20px 0;
    }

    .main02 h5 {
        margin-top: 55px;
        padding: 0px;
    }

    .main02 .txt {
        position: absolute;
        bottom: 4%;
        width: 90%;
        height: 150px;
        background: url(../img/main02-sub03-m.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
    }

    .main02 .txt h2 {
        font-size: 18px;
        margin-top: -10px;
    }

    .main02 .txt p {
        font-size: 12px;
    }
}

/********* section 03 ***********/
.main03 {
    background: url(../img/main03-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1950px;
    position: relative;
    background-position: center;
    padding: 300px 0;
    overflow: hidden;
}

.main03 h5 {
    margin-top: 50px;
}

.main03 h2 {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.main03 h4 {
    position: absolute;
    top: 35%;
    right: -15%;
    animation: Spin 8s linear infinite;
}

.main03 h3 {
    position: absolute;
    top: 35%;
    left: -15%;
    animation: Spin 8s linear infinite;
}

.main03 p {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
}

@keyframes Spin {
    0%{
        transform: rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

@media screen and ( max-width: 480px ) {
    .main03 {
        background: url(../img/main03-bg-m.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: 630px;
        background-position: center;
        padding: 120px 20px 50px 20px;
    }

    .main03 img {
        width: 100%;
    }

    .main03 h1 {
        padding: 0 10px;
    }

    .main03 h5 {
        margin: 20px;
    }
    .main03 h2 {
        top:43%;
    }

    .main03 h2 img {
        width: 90%;
    }

    .main03 h4 {
        display: none;
    }
    
    .main03 h3 {
        display: none;
    }

    .main03 p {
        bottom: 5%;
    }
}

/********* section 04 ***********/
.main04 {
    background: url(../img/main04-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1355px;
    position: relative;
    background-position: center;
    padding-top: 180px;
    overflow: hidden;
}

.main04 p {
    animation: Textani 1s 0s infinite;
}

.main04 h2 {
    margin: 50px 0;
}

.main04 h4 {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
}

.main04 h3 {
    margin-top: 40px;
} 

@media screen and ( max-width: 480px ) {
    .main04 {
        background: url(../img/main04-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: 520px;
        background-position: center;
        padding: 50px 20px;
        overflow: hidden;
    }

    .main04 img {
        width: 100%;
    }

    .main04 h4 {
        display: none;
    }

    .main04 h1 {
        padding: 0 30px;
    }

    .main04 h2 {
        margin: 20px 0;
        padding: 0 30px;
    }

    .main04 p {
        padding: 0 80px;
    }

    .main04 h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .main04 h3 img {
        width: 100%;
    }
}


/********* section 05 menu-slide ***********/
.main05 {
    background: url(../img/main05-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1520px;
    position: relative;
    background-position: center;
    padding: 180px 0;
    overflow: hidden;
}

.main05 h2 {
    margin: 50px 0;
}

.main05 h3 {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: 2;
}

.main05 h4 {
    position: absolute;
    bottom: 5%;
    left: 0;
    z-index: 2;
}

.main05 h5 {
    margin-top: 80px;
}

.main05 .menu-main {
    max-width: 1320px;
    margin: 0 auto;
    border: 5px solid #d10000;
    background: #fff;
    box-sizing: border-box;
}

.main05 .menu-slide {
    padding: 80px;
}

.main05 .menu-slide img {
    width: 100%;
}

.swiper-button-next, .swiper-button-prev {
    color: #222;
}

@media screen and ( max-width: 480px ) {
    .main05 {
        background: url(../img/main05-bg-m.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        position: relative;
        background-position: center;
        padding: 50px 20px;
        overflow: hidden;
    }

    .main05 img {
        width: 100%;
    }

    .main05 h3 {
        display: none;
    }

    .main05 h4 {
        display: none;
    }

    .main05 h2 {
        margin: 30px 0;
        padding: 0 20px;
    }

    .main05 h5 {
        margin-top: 30px;
    }

    .main05 .menu-slide {
        padding: 50px;
    }
}

/********* section 06 ***********/
.main06 {
    overflow: hidden;
    height: 1031px;
    display: flex;
}

.main06 .day {
    padding-top: 180px;
    background: url(../img/main06-day.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 50%;
}

.main06 .day h1 {
    margin: 80px 0 150px 0;
}

.main06 .night {
    padding-top: 180px;
    background: url(../img/main06-night.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 50%;
}

.main06 .night h1 {
    margin: 80px 0 130px 0;
}

@media screen and ( max-width: 480px ) {
    .main06 {
        flex-direction: column;
        height: auto;
    }

    .main06 img {
        width: 100%;
    }

    .main06 .day {
        padding: 20px;
        background: url(../img/main06-day-m.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
    }

    .main06 .day h1 {
        margin: 100px 0 50px;
    }

    .main06 .night {
        padding: 20px;
        background: url(../img/main06-night-m.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
    }

    .main06 .night h1 {
        margin: 100px 0 50px;
        padding: 0 20px;
    }
}

/********* section 07 ***********/

.main07 {
    background: url(../img/main07-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1560px;
    position: relative;
    background-position: center;
    padding: 300px 0;
    overflow: hidden;
}

.main07 h2 {
    margin-top: 100px;
}

.main07 h3 {
    position: absolute;
    bottom: 20%;
    right: 21%;
    animation: Textani 1s 0s infinite;
}

.main07 h4 {
    position: absolute;
    top: 32%;
    left: 7%;
}

@media screen and ( max-width: 480px ) {
    .main07 {
        background: url(../img/main07-bg-m.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        background-position: center;
        padding: 120px 20px 50px 20px;
    }

    .main07 img {
        width: 100%;
    }

    .main07 h2 {
        margin-top: 50px;
    }

    .main07 h4 {
        display: none;
    }

    .main07 h4 img {
        width: 50%;
    }

    .main07 h3 {
        width: 50%;
        bottom: 13%;
        right: 25%;
    }
}

/********* section 08 ***********/

.main08 {
    background: url(../img/main08-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1395px;
    position: relative;
    background-position: center;
    padding: 180px 0;
    overflow: hidden;
}

.main08 h1 {
    text-align: left;
    margin-left: 220px;
}

.main08 h2 {
    margin-top: 100px;
}

@media screen and ( max-width: 480px ) {
    .main08 {
        background: url(../img/main08-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        background-position: left;
        padding: 50px 20px;
    }

    .main08 img {
        width: 100%;
    }

    .main08 h1 {
        text-align: left;
        margin-left: 0px;
    }

    .main08 h2 {
        margin-top: 50px;
    }
}


/********* section 09 ***********/

.main09 {
    overflow: hidden;
    height: 1370px;
    display: flex;
}

.main09 .left {
    padding-top: 180px;
    background: url(../img/main09-left-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 50%;
}

.main09 .right {
    padding: 180px 0;
    background: url(../img/main09-right-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 50%;
}

.main09 .right h2 {
    margin-bottom: 50px;
}

@media screen and ( max-width: 480px ) {
    .main09 {
        height: auto;
        flex-direction: column;
    }

    .main09 img {
        width: 100%;
    }

    .main09 .left {
        padding: 50px 40px 180px 40px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
    }

    .main09 .right {
        padding: 50px 40px;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-position: center;
        width: 100%;
    }
}


/********* section 10 ***********/

.main10 {
    background: url(../img/main10-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1344px;
    position: relative;
    background-position: center;
    padding: 180px 0;
    overflow: hidden;
}

#map {
    width: 1340px;
    height: 650px;
    background: #fff;
    margin: 100px auto;
}

/* 지도 api */
.map_wrap, .map_wrap * {margin:0;padding:0;font-family:'Malgun Gothic',dotum,'돋움',sans-serif;font-size:12px;}
.map_wrap a, .map_wrap a:hover, .map_wrap a:active{color:#000;text-decoration: none;}
.map_wrap {position:relative;width:1320px;height:650px; margin: 0 auto;}
#menu_wrap {position:absolute;top:0;left:0;bottom:0;width:320px;margin:10px 0 30px 10px;padding:5px;overflow-y:auto;background:rgba(255, 255, 255, 0.7);z-index: 1;font-size:12px;border-radius: 10px;}
.bg_white {background:#fff;}
#menu_wrap hr {display: block; height: 1px;border: 0; border-top: 2px solid #5F5F5F;margin:3px 0;}
#menu_wrap .option{text-align: center; padding: 20px 0;}
#menu_wrap .option p {margin:10px 0;}  
#menu_wrap .option button { margin-left:5px;border: none;background: #0050cd;padding: 10px 20px;color: #fff;}
#menu_wrap .option input {padding: 10px;width: 60%;border: 1px solid #ececec;}
#placesList li {list-style: none;}
#placesList .item {position:relative;border-bottom:1px solid #888;overflow: hidden;cursor: pointer;min-height: 65px;}
#placesList .item span {display: block;margin-top:4px;}
#placesList .item h5, #placesList .item .info {text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
#placesList .item .info{padding:10px 0 10px 55px;}
#placesList .info .gray {color:#8a8a8a;}
#placesList .info .jibun {padding-left:26px;background:url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/places_jibun.png) no-repeat;}
#placesList .info .tel {color:#009900;}
#placesList .item .markerbg {float:left;position:absolute;width:36px; height:37px;margin:10px 0 0 10px;background:url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/marker_number_blue.png) no-repeat;}
#placesList .item .marker_1 {background-position: 0 -10px;}
#placesList .item .marker_2 {background-position: 0 -56px;}
#placesList .item .marker_3 {background-position: 0 -102px}
#placesList .item .marker_4 {background-position: 0 -148px;}
#placesList .item .marker_5 {background-position: 0 -194px;}
#placesList .item .marker_6 {background-position: 0 -240px;}
#placesList .item .marker_7 {background-position: 0 -286px;}
#placesList .item .marker_8 {background-position: 0 -332px;}
#placesList .item .marker_9 {background-position: 0 -378px;}
#placesList .item .marker_10 {background-position: 0 -423px;}
#placesList .item .marker_11 {background-position: 0 -470px;}
#placesList .item .marker_12 {background-position: 0 -516px;}
#placesList .item .marker_13 {background-position: 0 -562px;}
#placesList .item .marker_14 {background-position: 0 -608px;}
#placesList .item .marker_15 {background-position: 0 -654px;}
#pagination {margin:10px auto;text-align: center;}
#pagination a {display:inline-block;margin-right:10px;}
#pagination .on {font-weight: bold; cursor: default;color:#777;}

@media screen and ( max-width: 480px ) {
    .main10 {
        background: url(../img/main10-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        position: relative;
        background-position: left;
        padding: 50px 20px;
    }

    .main10 img {
        width: 100%;
    }

    .map_wrap {
        width: 100%;
    }

    #menu_wrap {
        top: 50%;
        width: 94%;
    }

    #map {
        margin: 20px auto;
    }
}

/********* section 11 ***********/

.info-section {
    background: url(../img/main11-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1300px;
    position: relative;
    background-position: center;
    padding: 180px 0;
    overflow: hidden;
}

.inner {
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
    border: 3px solid #d10000;
    border-radius: 20px; 
    padding: 80px;
}

.info-section form table {
    width: 100%;
    border-collapse: collapse;
}

.info-section form table tr td.tit {
    width: 10%;
    padding: 20px 0;
    text-align: left;
    color: #fff;
}

.info-section form table tr td.tit label {
    position: relative;
    font-size: 20px;
    color: #fff;
}

.info-section form table tr td.tit .required::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -10px;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #dc000c;
}

.info-section form table tr td.inputCon {
    width: 80%;
    padding-top: 10px;
    font-size: 18px;
    letter-spacing: normal;
    text-align: left;
    color: #302d2d;
}

.info-section form table tr td.inputCon input {
    width: 100%;
    height: 60px;
    padding: 20px;
    border: solid 1px #ccc;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 18px;
    letter-spacing: normal;
    text-align: left;
    color: #666;
}

.info-section form table tr td.inputCon.email input {
    width: 25.4%;
}

.info-section form table tr td.inputCon input[type="number"] {
    width: 27.8%;
}

.info-section form table tr td.inputCon select {
    width: 54.16%;
    height: 60px;
    text-indent: 15px;
    border: solid 1px #ccc;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 18px;
    letter-spacing: normal;
    text-align: left;
    color: #666;
}

.info-section form table tr td.inputCon .experience {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.info-section form table tr td.inputCon .experience li {
    display: flex;
    align-items: center;
}

.info-section form table tr td.inputCon .experience li:nth-child(2) {
    margin-left: 24px;
}

.info-section form table tr td.inputCon .experience input {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: solid 1px #e6e6e6;
    background-color: #f5f5f5;
}

.info-section form table tr td.inputCon .experience .iq_rad {
    margin-left: 5px;
    font-size: 18px;
    line-height: 1;
    text-align: left;
    color: #fff;
}

.info-section form .inquiry__agree {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 60px;
}

.info-section form .inquiry__agree li.check .agree {
    display: flex;
    align-items: center;
}

.info-section form .inquiry__agree li.check input {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #403533;
}

.info-section form .inquiry__agree label span {
    display: inline-block;
    margin-left: 10px;
    font-size: 20px;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.info-section form button {
    display: flex;
    align-items: center;
    height: 100%;
    border: 0;
    background-color: transparent;
    font-size: 18px;
    letter-spacing: normal;
    text-align: right;
    color: #302d2d;
}

.info-section form .center {
    display: flex;
    justify-content: center;
}

.info-section form .btn_submit {
    display: inline-block;
    text-align: center;
    width: 240px;
    height: 60px;
    border-radius: 50px;
    background-color: #cc000a;
    box-sizing: border-box;
    cursor: pointer;
}

.info-section form .btn_submit span {
    font-size: 25px;
    text-align: center;
    color: #fff;
}

.inquiry__agree span {
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #ccc;
}

.black {
    font-weight: 800;
}

@media screen and ( max-width: 480px ) {
    .info-section {
        background: url(../img/main11-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        background-position: center;
        padding: 50px 20px;
    }

    .info-section h2 {
        padding: 0 30px;
    }

    .info-section img {
        width: 100%;
    }

    .inner {
        margin: 50px auto 0px;
        padding: 20px;
    }

    .info-section form table tr td.tit {
        width: 25%;
    }

    .info-section form table tr td.inputCon.email input {
        width: 100%;
    }

    .info-section form table tr td.inputCon input {
        height: 20px;
        font-size: 16px;
    }

    .info-section form table tr td.tit label {
        font-size: 16px;
    }

    .info-section form .inquiry__agree label span {
        font-size: 14px;
    }

    .info-section form table tr td.inputCon select {
        width: 100%;
        height: 40px;
        font-size: 16px;
    }

    .info-section form .inquiry__agree li.check input {
        width: 15px;
        height: 15px;
    }

    .info-section form .inquiry__agree {
        margin-bottom: 30px;
    }

    .inquiry__agree span  {
        font-size: 12px;
    }

    .info-section form .btn_submit {
        width: 150px;
        height: 40px;
        padding: 5px 0;
    }

    .info-section form .btn_submit span {
        font-size: 16px;
        font-weight: 400;
    }
}


/********* footer ***********/
.footer {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.btn_top {
    display: inline-block;
    position: fixed;
    bottom: 50px;
    right: 60px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    z-index: 9;
    animation: moveUpDown 2s infinite;
}

/* 개인정보수집 */
.agree_pop {
    display: none;
    width: 500px;
    box-sizing: border-box;
    position: fixed;
    left: 50%;
    margin-left: -250px;
    top: 200px;
    z-index: 75;
    overflow: hidden;
}

.agree_pop .title {
    width: 500px;
    background-color: #333;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #fff;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    text-align: left;
}

.agree_pop .pop-esc {
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: 0;
    padding: 0 15px;
    font-size: 20px;
    right: 0;
    position: absolute;
    top: 0;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.pop-content {
    padding: 30px 20px ;
    font-size: 12px;
    background-color: #fff;
    overflow-y: hidden;
    border: 1px solid #ddd;
    line-height: 1.3;
    color: #5d5d5d;
    text-align: left;
}

@media screen and ( max-width: 480px ) {
    .agree_pop {
        width: 350px;
        left: 50%;
        margin-left: -175px;
    }

    .footer img {
        width: 100%;
        padding: 0 50px;
    }

    .btn_top {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .btn_top img {
        width: 100%;
    }
}