/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

* {
    box-sizing: border-box;
}

body {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #222222;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #FFD700;
    outline: none;
    text-decoration: none;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: #666;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #222222;
    color: #FFD700;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    border-radius: 0;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top:hover {
    color: #222222;
    background: #FFD700;
}

.back-to-top i {
    padding-top: 10px;
}

/* ================================================= */
/* ---------------- Nav Header CSS ----------------- */
/* ================================================= */

#header {
    background: #222222;
    position: relative;
    height: 60px;
}

#header .logo {
    padding-left: 25px;
    left: 0;
    display: inline-block;
    position: absolute;
    line-height: 55px;
}

#header .logo img {
    max-height: 55px;
}

.main-menu {
    padding: 0 130px;
    width: 100%;
    text-align: center;
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    display: inline-block;
}

.main-menu ul li:hover a,
.main-menu ul li.active a {
    color: #ffffff;
}

.main-menu ul li a {
    color: #FFD700;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 200;
    padding: 0 10px;
    line-height: 60px;
    display: block;
    transition: color .25s ease, background-color .25s ease;
}
.mobile-menu-btn {
    color: #FFD700;
    text-align: center;
    font-size: 30px;
    line-height: 57px;
    display: none;
    white-space: nowrap;
}

.mobile-menu-btn i {
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #2a2a2a;
    border-top: #343434;
}

.mobile-menu .top-menu {
    display: block;
}

.mobile-menu .top-menu ul {
    padding: 0;
}

.mobile-menu .top-menu ul li {
    display: block;
    text-align: center;
}

.mobile-menu .top-menu ul li a {
    padding: 0;
    line-height: 40px;
}

.mobile-menu .top-menu ul li a:hover {
    text-decoration: none;
}

.phone {
    position: absolute;
    padding-right: 25px;
    padding-left: 10px;
    right: 0;
    color: #FFD700;
    line-height: 60px;
    cursor: pointer;
    transition: color .25s ease;
    font-size: 18px;
    font-weight: 600;
}

.phone:hover {
    color: #ffffff;
}

.phone i {
    padding-right: 10px;
    font-size: 20px;
}
@media (max-width: 575.98px) {
    #header .logo {
        padding-left: 5px;
    }

    #header .phone {
        display: none;
    }

    #header .mobile-menu-btn {
        padding-right: 5px;
        display: block;
        text-align: right;
        font-size: 20px;
        line-height: 55px;
    }

    .main-menu {
        padding: 0 30px;
    }
}
@media (max-width: 1199.98px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ================================================= */
/* --------------- Header Slider CSS --------------- */
/* ================================================= */

#headerSlider {
    position: relative;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    margin: 0 auto;
    text-align: center;
}

#headerSlider img {
    width: 100%;
}

#headerSlider .carousel-caption {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(0,0,0,.5);
    z-index: 1;
}

#headerSlider .carousel-caption h1 {
    color: #FFD700;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 767.98px) {
    #headerSlider .carousel-caption h1 {
        font-size: 35px;
        font-weight: 700;
        letter-spacing: 3px;
    }
}

@media (max-width: 575.98px) {
    #headerSlider .carousel-caption h1 {
        font-size: 25px;
        font-weight: 500;
        letter-spacing: 1;
    }
}

#headerSlider .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/* ================================================= */
/* ----------------- Search Style ------------------ */
/* ================================================= */

#search {
    position: relative;
    background: #ffffff;
    padding: 30px 0 20px 0;
}

@media (max-width: 767.98px) {
    #search {
        padding: 30px 0 35px 0;
    }
}

@media (max-width: 575.98px) {
    #search {
        padding: 30px 0 35px 0;
    }
    
    #search .kid {
        margin-top: 15px;
    }
}

#search label {
    font-size: 14px;
    font-weight: 600;
}

#search .input-group-text {
    border-radius: 0;
}

#search input,
#search select,
#search button {
    box-shadow: none;
    border-radius: 0;
}

#search input:focus,
#search select:focus,
#search button:focus {
    border-color: #FFD700;
}

#search .btn {
    margin-top: 31px;
    color: #FFD700;
    background: #222222;
    border-color: #222222;
}

#search .btn:hover {
    color: #222222;
    background: #FFD700;
    border-color: #FFD700;
}

#search .dropdown-menu {
    width: 230px;
}

@media (max-width: 767.98px) {
    #search .btn {
        margin-top: 15px;
    }
    
    #search .kid {
        margin-top: 15px;
    }
}

/* ================================================= */
/* ---------------- Welcome Section ---------------- */
/* ================================================= */

#welcome {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
    text-align: center;
}

#welcome h3 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#welcome p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    #welcome h3 {
        font-size: 40px;
        font-weight: 700;
    }
    
    #welcome p {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
    }
}

@media (max-width: 575.98px) {
    #welcome h3 {
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 0;
    }
    
    #welcome p {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }
}

#welcome a {
    display: inline-block;
    padding: 7px 30px;
    color: #FFD700;
    background: #222222;
}

#welcome a:hover {
    color: #222222;
    background: #FFD700;
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 700;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 0;
    }
}

/* ================================================= */
/* ----------------- Amenities Style --------------- */
/* ================================================= */

#amenities {
    position: relative;
    padding: 45px 0 15px 0;
    text-align: center;
}

#amenities.home-amenities {
    max-height: 100%;
    background-image: url(../img/facility_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

#amenities.home-amenities:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

#amenities.home-amenities h2,
#amenities.home-amenities h3,
#amenities.home-amenities p {
    color: #ffffff;
}

#amenities h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#amenities .icons {
    margin-bottom: 30px;
}

#amenities .icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

#amenities .icon.icon-1 {
    background-image: url(../img/icon/shield-hover.png);
}

#amenities .icon.icon-1:hover {
    background-image: url(../img/icon/shield.png);
}

#amenities .icon.icon-2 {
    background-image: url(../img/icon/air-conditioner-hover.png);
}

#amenities .icon.icon-2:hover {
    background-image: url(../img/icon/air-conditioner.png);
}

#amenities .icon.icon-3 {
    background-image: url(../img/icon/bathtub-hover.png);
}

#amenities .icon.icon-3:hover {
    background-image: url(../img/icon/bathtub.png);
}

#amenities .icon.icon-4 {
    background-image: url(../img/icon/shower-hover.png);
}

#amenities .icon.icon-4:hover {
    background-image: url(../img/icon/shower.png);
}

#amenities .icon.icon-5 {
    background-image: url(../img/icon/towel-hover.png);
}

#amenities .icon.icon-5:hover {
    background-image: url(../img/icon/towel.png);
}

#amenities .icon.icon-6 {
    background-image: url(../img/icon/television-hover.png);
}

#amenities .icon.icon-6:hover {
    background-image: url(../img/icon/television.png);
}

#amenities .icon.icon-7 {
    background-image: url(../img/icon/wifi-hover.png);
}

#amenities .icon.icon-7:hover {
    background-image: url(../img/icon/wifi.png);
}

#amenities .icon.icon-8 {
    background-image: url(../img/icon/call-hover.png);
}

#amenities .icon.icon-8:hover {
    background-image: url(../img/icon/call.png);
}

#amenities .icon.icon-9 {
    background-image: url(../img/icon/minibar-hover.png);
}

#amenities .icon.icon-9:hover {
    background-image: url(../img/icon/minibar.png);
}

#amenities .icon.icon-10 {
    background-image: url(../img/icon/kitchen-hover.png);
}

#amenities .icon.icon-10:hover {
    background-image: url(../img/icon/kitchen.png);
}
#amenities .icon.icon-11 {
    background-image: url(../img/icon/shampoo-hover.png);
}

#amenities .icon.icon-11:hover {
    background-image: url(../img/icon/shampoo.png);
}

/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#about hr {
    width: 50%;
    margin: 45px auto;
}

#about .img-cols,
#about .content-cols {
    padding: 0;
}

#about .content-cols {
    background: #222222;
}

#about .img-col,
#about .content-col {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .content-col {
    background: #222222;
    padding: 30px
}

#about .img-col {
    overflow: hidden;
}

#about .img-col img {
    transition: 0.3s;
    width: 100%;
}

#about .img-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#about .content-col h3 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    #about .content-col {
        text-align: center;
    }

    #about .content-col h3 {
        font-weight: 400;
        margin-top: 15px;
    }
}

#about .content-col p {
    color: #ddd;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}

#about .content-col a {
    display: inline-block;
    background: #FFD700;
    font-weight: 400;
    color: #222222;
    padding: 10px 30px;
}

#about .content-col a:hover {
    background: #ffffff;
    color: #FFD700;
}

#about .content-col a:focus {
    color: #fff;
}

/* ================================================= */
/* ------------- About Page Style ------------------ */
/* ================================================= */

/*
    about.html Àü¿ë ½ºÅ¸ÀÏ
    ±âÁ¸ ¸ÞÀÎÆäÀÌÁö #about ½ºÅ¸ÀÏ°ú Ãæµ¹ÇÏÁö ¾Êµµ·Ï
    #about.about-page ·Î ±¸ºÐ
*/

#about.about-page {
    padding: 55px 0 80px;
    background: #ffffff;
}

/* ================================================= */
/* ---------------- Page Title --------------------- */
/* ================================================= */

#about.about-page .about-page-title {
    text-align: center;
    margin-bottom: 35px;
}

#about.about-page .about-page-title h2 {
    margin: 0 0 15px;
    color: #222222;
    font-size: 32px;
    font-weight: 600;
}

#about.about-page .about-title-line {
    display: block;
    width: 35px;
    height: 2px;
    background: #FFD700;
    margin: 0 auto 15px;
}

#about.about-page .about-page-title p {
    margin: 0;
    color: #777777;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}


/* ================================================= */
/* ---------------- Main Image --------------------- */
/* ================================================= */

#about.about-page .about-main-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    overflow: hidden;
}

#about.about-page .about-main-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}


/* ================================================= */
/* ------------- Introduction Text ---------------- */
/* ================================================= */

#about.about-page .about-intro {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 35px;
}

#about.about-page .about-intro-left {
    width: 35%;
    padding-right: 40px;
}

#about.about-page .about-intro-right {
    width: 65%;
    padding-top: 3px;
}

#about.about-page .about-small-line {
    display: block;
    width: 30px;
    height: 2px;
    background: #FFD700;
    margin-bottom: 13px;
}

#about.about-page .about-intro-left h4 {
    margin: 0 0 5px;
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

#about.about-page .about-intro-left strong {
    display: block;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

#about.about-page .about-intro-right p {
    margin: 0 0 10px;
    color: #777777;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

#about.about-page .about-slogan {
    margin-top: 15px;
    color: #999999;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

#about.about-page .about-slogan strong {
    color: #555555;
    font-weight: 600;
}




/* ================================================= */
/* ---------------- Bottom Gallery ----------------- */
/* ================================================= */

#about.about-page .about-gallery {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.1fr;
    grid-template-rows: 160px 160px;

    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    gap: 4px;
    background: #ffffff;
}


/* °øÅë */

#about.about-page .about-gallery-item {
    position: relative;
    overflow: hidden;
}

#about.about-page .about-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#about.about-page .about-gallery-item:hover img {
    transform: scale(1.05);
}


/* 1¹ø - ÁÂÃø Å« ÀÌ¹ÌÁö */

#about.about-page .about-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* 2¹ø - °¡¿îµ¥ À§ */

#about.about-page .about-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


/* 3¹ø - ¿À¸¥ÂÊ À§ */

#about.about-page .about-gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}


/* 4¹ø - °¡¿îµ¥ ¾Æ·¡ */

#about.about-page .about-gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}


/* 5¹ø - ¿À¸¥ÂÊ ¾Æ·¡ */

#about.about-page .about-gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}


/* ================================================= */
/* ---------------- Tablet ------------------------- */
/* ================================================= */

@media (max-width: 991.98px) {

    #about.about-page .about-gallery {
        grid-template-rows: 140px 140px;
    }

}


/* ================================================= */
/* ---------------- Mobile ------------------------- */
/* ================================================= */

@media (max-width: 767.98px) {

    #about.about-page .about-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 150px 150px;
        gap: 3px;
    }

    #about.about-page .about-gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    #about.about-page .about-gallery-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    #about.about-page .about-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    #about.about-page .about-gallery-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    #about.about-page .about-gallery-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

}





/* ================================================= */
/* ------------------ Rooms Style ------------------ */
/* ================================================= */

#rooms {
    position: relative;
    padding: 45px 0 60px 0;
}

#rooms .room-img,
#rooms .room-des,
#rooms .room-rate {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#rooms .room-des {
    width: 100%;
    text-align: center;
}

#rooms .room-img {
    overflow: hidden;
}

#rooms .room-img img {
    transition: 0.3s;
}

#rooms .room-img:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.box12 .icon li a {
    margin-right: 0;
}

#rooms h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

#rooms .room-size {
    margin: 0 0 25px 0;
    padding: 0;
}

#rooms .room-size li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    list-style-type: none;
}

#rooms .room-size li i {
    margin-right: 6px;
}

#rooms .room-icon {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

#rooms .room-icon li {
    list-style-type: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

@media (max-width: 575.98px) {   
    #rooms .room-icon li {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

#rooms .room-icon li.icon-1 {
    background-image: url(../img/icon/shield.png);
}

#rooms .room-icon li.icon-1:hover {
    background-image: url(../img/icon/shield-hover.png);
}

#rooms .room-icon li.icon-2 {
    background-image: url(../img/icon/air-conditioner.png);
}

#rooms .room-icon li.icon-2:hover {
    background-image: url(../img/icon/air-conditioner-hover.png);
}

#rooms .room-icon li.icon-3 {
    background-image: url(../img/icon/bathtub.png);
}

#rooms .room-icon li.icon-3:hover {
    background-image: url(../img/icon/bathtub-hover.png);
}

#rooms .room-icon li.icon-4 {
    background-image: url(../img/icon/shower.png);
}

#rooms .room-icon li.icon-4:hover {
    background-image: url(../img/icon/shower-hover.png);
}

#rooms .room-icon li.icon-5 {
    background-image: url(../img/icon/towel.png);
}

#rooms .room-icon li.icon-5:hover {
    background-image: url(../img/icon/towel-hover.png);
}

#rooms .room-icon li.icon-6 {
    background-image: url(../img/icon/television.png);
}

#rooms .room-icon li.icon-6:hover {
    background-image: url(../img/icon/television-hover.png);
}

#rooms .room-icon li.icon-7 {
    background-image: url(../img/icon/wifi.png);
}

#rooms .room-icon li.icon-7:hover {
    background-image: url(../img/icon/wifi-hover.png);
}

#rooms .room-icon li.icon-8 {
    background-image: url(../img/icon/call.png);
}

#rooms .room-icon li.icon-8:hover {
    background-image: url(../img/icon/call-hover.png);
}

#rooms .room-icon li.icon-9 {
    background-image: url(../img/icon/minibar.png);
}

#rooms .room-icon li.icon-9:hover {
    background-image: url(../img/icon/minibar-hover.png);
}

#rooms .room-icon li.icon-10 {
    background-image: url(../img/icon/kitchen.png);
}

#rooms .room-icon li.icon-10:hover {
    background-image: url(../img/icon/kitchen-hover.png);
}
#rooms .room-icon li.icon-11 {
    background-image: url(../img/icon/shampoo.png);
}

#rooms .room-icon li.icon-11:hover {
    background-image: url(../img/icon/shampoo-hover.png);
}



#rooms .room-rate {
    text-align: center;
}

#rooms .room-rate h3 {
    color: #FFD700;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    background: #222222;
    margin: 0;
    text-transform: uppercase;
}

#rooms .room-rate h1 {
    color: #FFD700;
    font-size: 50px;
    font-weight: 900;
    padding: 15px 0;
    background: #353535;
}

#rooms .room-rate a {
    display: block;
    padding: 7px 30px;
    color: #FFD700;
    background: #222222;
}

#rooms .room-rate a:hover {
    color: #222222;
    background: #FFD700;
}

#rooms hr {
    width: 300px;
    margin: 30px auto;
    text-align: center;
}

.modal .modal-header button {
    margin: 0 auto;
    padding: 0px 8px 5px 8px;
    font-size: 25px;
    border-radius: 20px;
    background: #FFD700;
    color: #fff;
}

.modal .modal-body img {
    height: 100%;
    width: 100%;
}

.modal .modal-body h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .modal-body p {
    margin-bottom: 15px;
}

.modal .modal-body .modal-link {
    position: relative;
    text-align: center;
}

.modal .modal-body a {
    display: inline-block;
    margin: 0 auto;
    padding: 8px 30px;
    background: #222222;
    color: #FFD700;
    cursor: pointer;
    border: none;
}

.modal .modal-body a:hover {
    color: #222222;
    background: #FFD700;
}

.modal .port-slider-nav .slick-track {
    padding: 30px 0 15px 0;
}

.modal .port-slider-nav .slick-center img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* ================================================= */
/* ---------------- Subscribe Style ---------------- */
/* ================================================= */

#subscribe {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#subscribe .section-header::after {
    background: #f2f2f2;
}

#subscribe .subscribe-form {
    position: relative;
    max-width: 525px;
    width: 100%;
    margin: auto;
}

#subscribe .subscribe-form input[type="email"] {
    width: 100%;
    border: 1px solid #666;
    height: 50px;
    line-height: 24px;
    padding: 12px 30px;
    background-color: transparent;
    color: #666;
    font-size: 16px; 
}

#subscribe .subscribe-form input[type="email"]:focus {
    box-shadow: none;
    outline: 0 none;
}

@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form input[type="email"] {
        text-align: center; 
    } 
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder { 
    color: white; 
}

#subscribe .subscribe-form button {
    font-size: 22px;
    color: #FFD700;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1px;
    padding: 6px 30px;
    margin-right: -1px;
    background: #222222;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

#subscribe .subscribe-form button:hover {
    color: #222222;
    background: #FFD700;
}

#subscribe .subscribe-form button:focus {
    box-shadow: none;
    outline: 0 none;
}


@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form button {
        position: static;
        margin-top: 15px;
        width: 100%;
    } 
}

/* ================================================= */
/* ----------------- Booking Style ----------------- */
/* ================================================= */

#booking {
    position: relative;
    padding: 45px 0 60px 0;
}

#booking .container {
    max-width: 990px;
}

#booking label {
    font-size: 14px;
    font-weight: 600;
}

#booking .form-control {
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 0;
    line-height: 24px;
    padding: 5px 20px;
    background-color: transparent;
    color: #222222;
    font-size: 16px;
    font-weight: 200;
}

#booking .form-control:focus {
    border-color: #FFD700;
    box-shadow: none;
    outline: 0 none;
}

#booking .button button {
    display: inline-block;
    font-size: 16px;
    color: #FFD700;
    line-height: 24px;
    padding: 10px 30px 8px 30px;
    border-radius: 0;
    background: #222222;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: all .3s;
}

#booking .button button:hover {
    color: #222222;
    background: #FFD700;
}

#booking .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#booking .dropdown-menu {
    width: 230px;
}

/* ================================================= */
/* ----------------- Call Us Style ----------------- */
/* ================================================= */

#call-us {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#call-us .section-header::after {
    background: #f2f2f2;
}

#call-us a {
    display: inline-block;
    padding: 15px 30px;
    background: #222222;
    color: #FFD700;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

#call-us a:hover {
    color: #222222;
    background: #FFD700;
}

@media (max-width: 575.98px) {
    #call-us a {
        padding: 10px 30px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
    }
}

/* ================================================= */
/* ------------------ Contact Style ---------------- */
/* ================================================= */

#contact {
    position: relative;
    padding: 45px 0;
}

#contact .container {
    max-width: 900px;
}

#contact .contact-info {
    margin-bottom: 30px;
}

#contact .contact-info .info-item {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
}

#contact .contact-info .info-item p {
    font-size: 18px;
    font-weight: 600;
}

#contact .contact-info .info-item i {
    color: #FFD700;
    font-size: 22px;
    margin-right: 8px;
}

#contact .contact-info .info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

#contact .contact-info .info-item p {
    margin: 0;
}

#contact .contact-form {
    position: relative;
}

#contact label {
    font-size: 14px;
    font-weight: 600;
}

#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"] {
    height: 35px;
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 0;
}

#contact .contact-form textarea {
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    textarea:focus,
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#contact .contact-form input[type="text"]:focus,
#contact .contact-form input[type="email"]:focus,
#contact .contact-form textarea:focus {
    border-color: #FFD700;
}

#contact .contact-form button {
    display: inline-block;
    padding: 8px 30px;
    background: #222222;
    color: #FFD700;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-bottom: 15px;
}

#contact .contact-form button:hover {
    color: #222222;
    background: #FFD700;
}

#contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* ================================================= */
/* ------------------ Login Style ------------------ */
/* ================================================= */

#login {
    position: relative;
    padding: 45px 0;
}

#login .container {
    max-width: 900px;
}

@media (max-width: 767.98px) {
    #login .container .col-md-6:first-child {
        margin-bottom: 30px;
    }
} 

#login .login-form {
    position: relative;
}

#login .login-form .control-group {
    margin-bottom: 15px;
}

#login .login-form label {
    font-size: 14px;
    font-weight: 600;
}

#login .login-form input[type="text"],
#login .login-form input[type="email"],
#login .login-form input[type="password"] {
    height: 35px;
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#login .login-form input[type="text"]:focus,
#login .login-form input[type="email"]:focus,
#login .login-form input[type="password"]:focus {
    border-color: #FFD700;
}

#login .login-form button {
    display: inline-block;
    padding: 8px 30px;
    background: #222222;
    color: #FFD700;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-bottom: 15px;
}

#login .login-form button:hover {
    color: #222222;
    background: #FFD700;
}

/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */

#footer {
    position: relative;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #222222;
}

#footer .social {
    position: relative;
    margin-bottom: 20px;
}

#footer a {
    color: #FFD700;
}

#footer a:hover {
    color: #ffffff;
}

#footer .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 5px 10px;
    background: #FFD700;
    color: #222222;
    font-size: 20px;
}

#footer .social a:hover {
    background: #ffffff;
    color: #FFD700;
}

#footer p {
    margin: 0;
    font-size: 18px;
}




/* ==================================================
   CABIN STAY FAQ
================================================== */

.faq-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}


/* =========================
   FAQ TITLE
   Our Rooms ½ºÅ¸ÀÏ°ú ÅëÀÏ
========================= */

.faq-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    text-align: center;
}

.faq-title h2 {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;

    font-size: 45px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;

    color: #666 !important;
    text-align: center !important;
}

.faq-title p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 25px !important;

    color: #666 !important;
    text-align: center !important;
}


/* =========================
   FAQ ITEM
========================= */

.faq-item {
    width: 100%;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    border: 1px solid #d2dce7;
    border-radius: 3px;

    background: #fff;

    box-sizing: border-box;
    overflow: hidden;
}


/* =========================
   FAQ QUESTION
========================= */

.faq-question {
    position: relative;

    display: block !important;
    width: 100%;

    margin: 0 !important;
    padding: 17px 55px 17px 20px !important;

    box-sizing: border-box;

    background: #fff !important;

    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;

    color: #444 !important;

    text-align: left !important;
    text-decoration: none !important;

    cursor: pointer;
}

.faq-question:hover,
.faq-question:focus {
    background: #f8f8f8 !important;
    color: #222 !important;
    text-decoration: none !important;
}


/* =========================
   ¿À¸¥ÂÊ È­»ìÇ¥
========================= */

.faq-question:after {
    content: "?";

    position: absolute;
    right: 20px;
    top: 50%;

    transform: translateY(-50%) rotate(90deg);

    font-size: 24px;
    font-weight: 300;
    line-height: 1;

    color: #777;

    transition: transform 0.25s ease;
}

.faq-question.collapsed:after {
    transform: translateY(-50%) rotate(0deg);
}


/* =========================
   FAQ ANSWER
========================= */

.faq-answer {
    width: 100%;

    margin: 0 !important;
    padding: 20px !important;

    box-sizing: border-box;

    background: #222222 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;

    color: #fff !important;
    text-align: left !important;
}

.faq-answer p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;

    color: #fff !important;
}


/* =========================
   Bootstrap Collapse
========================= */

.faq-item .collapse:not(.show) {
    display: none;
}

.faq-item .collapse.show {
    display: block;
}


/* ==================================================
   TABLET
   768px ~ 991px
================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

    .faq-wrap {
        max-width: 900px;
        padding: 50px 30px;
    }

    .faq-title {
        max-width: 650px;
        margin-bottom: 40px;
    }

    .faq-title h2 {
        font-size: 35px !important;
        font-weight: 700 !important;
    }

    .faq-title p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .faq-question {
        padding: 16px 50px 16px 18px !important;

        font-size: 15px !important;
    }

    .faq-answer {
        padding: 18px !important;

        font-size: 14px !important;
    }

    .faq-answer p {
        font-size: 14px !important;
    }
}


/* ==================================================
   MOBILE
   767px ÀÌÇÏ
================================================== */

@media (max-width: 767.98px) {

    .faq-wrap {
        padding: 40px 15px;
    }

    .faq-title {
        margin-bottom: 30px;
    }

    .faq-title h2 {
        font-size: 30px !important;
        font-weight: 700 !important;
        letter-spacing: 0;
    }

    .faq-title p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .faq-question {
        padding: 15px 45px 15px 15px !important;

        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .faq-question:after {
        right: 15px;
        font-size: 22px;
    }

    .faq-answer {
        padding: 17px 15px !important;

        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .faq-answer p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
}


/* ==================================================
   SMALL MOBILE
   575px ÀÌÇÏ
================================================== */

@media (max-width: 575.98px) {

    .faq-wrap {
        padding: 35px 12px;
    }

    .faq-title {
        margin-bottom: 25px;
    }

    .faq-title h2 {
        font-size: 25px !important;
        font-weight: 600 !important;
    }

    .faq-title p {
        font-size: 13px !important;
        line-height: 21px !important;
    }

    .faq-question {
        padding: 14px 40px 14px 14px !important;

        font-size: 13px !important;
    }

    .faq-question:after {
        right: 13px;
        font-size: 20px;
    }

    .faq-answer {
        padding: 15px 14px !important;
    }

    .faq-answer,
    .faq-answer p {
        font-size: 12px !important;
        line-height: 1.7 !important;
    }
}




/* ==================================================
   LOCATION
================================================== */

.location-section {
    width: 100% !important;
    margin: 0 !important;
    padding: 70px 15px 100px !important;

    box-sizing: border-box !important;
	background: #f7f7f7 !important;

    clear: both !important;
    float: none !important;
}


/* ==================================================
   LOCATION TITLE
   FAQ TITLE°ú µ¿ÀÏ
================================================== */

.location-title {
    position: relative;

    width: 100% !important;
    max-width: 700px;

    margin: 0 auto 45px auto !important;
    padding: 0 !important;

    text-align: center !important;

    clear: both !important;
    float: none !important;
}

.location-title h2 {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;

    font-size: 45px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 1px;

    color: #666 !important;
    text-align: center !important;
}

.location-title p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 25px !important;

    color: #666 !important;
    text-align: center !important;
}


/* ==================================================
   LOCATION WRAP
================================================== */

.location-wrap {
    display: block !important;

    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    clear: both !important;
    float: none !important;
}


/* ==================================================
   HOTEL INFO
================================================== */

.location-info {
    width: 100% !important;

    margin: 0 !important;
    padding: 20px 20px 35px !important;

    box-sizing: border-box !important;

    text-align: center !important;

    clear: both !important;
    float: none !important;
}

.location-info h3 {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;

    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    color: #222 !important;
    text-align: center !important;
}

.location-address {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;

    color: #666 !important;
    text-align: center !important;
}


/* ==================================================
   MAP
================================================== */

.location-map {
    width: 100% !important;
    max-width: 1000px !important;

    margin: 0 auto !important;
    padding: 0 20px !important;

    box-sizing: border-box !important;

    clear: both !important;
    float: none !important;
}


/* ÀÓ½Ã Áöµµ ¿µ¿ª */
.map-placeholder {
    display: flex !important;

    width: 100% !important;
    height: 400px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    align-items: center !important;
    justify-content: center !important;

    background: #f5f5f5 !important;
    border: 1px solid #e5e5e5 !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    color: #777 !important;
    text-align: center !important;
}


/* ½ÇÁ¦ Áöµµ iframe »ç¿ë ½Ã */
.location-map iframe {
    display: block !important;

    width: 100% !important;
    height: 400px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    box-sizing: border-box !important;
}


/* Áöµµ ÀÌ¹ÌÁö »ç¿ë ½Ã */
.location-map img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 auto !important;

    box-sizing: border-box !important;
}


/* ==================================================
   LOCATION GUIDE
================================================== */

.location-guide {
    display: flex !important;

    width: 100% !important;
    max-width: 1100px !important;

    margin: 40px auto 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    clear: both !important;
    float: none !important;
}

.guide-item {
    flex: 1 1 0 !important;

    margin: 0 !important;
    padding: 25px 25px !important;

    box-sizing: border-box !important;

    text-align: center !important;

    float: none !important;
}

.guide-item h4 {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;

    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    color: #333 !important;
    text-align: center !important;
}

.guide-item p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;

    color: #666 !important;
    text-align: center !important;
}


/* ==================================================
   TABLET
   768px ~ 991px
================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

    .location-section {
        padding: 60px 25px 80px !important;
    }

    .location-title {
        max-width: 650px;
        margin-bottom: 40px !important;
    }

    .location-title h2 {
        font-size: 35px !important;
        font-weight: 700 !important;
    }

    .location-title p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .location-info {
        padding: 15px 20px 30px !important;
    }

    .location-info h3 {
        font-size: 21px !important;
    }

    .location-map {
        padding: 0 10px !important;
    }

    .map-placeholder,
    .location-map iframe {
        height: 350px !important;
    }

    .location-guide {
        margin-top: 35px !important;
    }

    .guide-item {
        padding: 22px 15px !important;
    }

    .guide-item h4 {
        font-size: 17px !important;
    }

    .guide-item p {
        font-size: 13px !important;
    }
}


/* ==================================================
   MOBILE
   767px ÀÌÇÏ
================================================== */

@media (max-width: 767.98px) {

    .location-section {
        padding: 50px 15px 70px !important;
    }

    .location-title {
        margin-bottom: 30px !important;
    }

    .location-title h2 {
        font-size: 30px !important;
        font-weight: 700 !important;
        letter-spacing: 0;
    }

    .location-title p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .location-info {
        padding: 10px 10px 25px !important;
    }

    .location-info h3 {
        font-size: 20px !important;
    }

    .location-address {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .location-map {
        padding: 0 !important;
    }

    .map-placeholder,
    .location-map iframe {
        height: 300px !important;
    }

    .location-guide {
        display: block !important;

        width: 100% !important;

        margin-top: 30px !important;
    }

    .guide-item {
        display: block !important;

        width: 100% !important;

        padding: 22px 15px !important;

        border-bottom: 1px solid #eee;
    }

    .guide-item:last-child {
        border-bottom: 0;
    }

    .guide-item h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .guide-item p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
}


/* ==================================================
   SMALL MOBILE
   575px ÀÌÇÏ
================================================== */

@media (max-width: 575.98px) {

    .location-section {
        padding: 40px 12px 60px !important;
    }

    .location-title {
        margin-bottom: 25px !important;
    }

    .location-title h2 {
        font-size: 25px !important;
        font-weight: 600 !important;
    }

    .location-title p {
        font-size: 13px !important;
        line-height: 21px !important;
    }

    .location-info {
        padding: 10px 5px 22px !important;
    }

    .location-info h3 {
        font-size: 18px !important;
    }

    .location-address {
        font-size: 12px !important;
    }

    .map-placeholder,
    .location-map iframe {
        height: 260px !important;
    }

    .location-guide {
        margin-top: 25px !important;
    }

    .guide-item {
        padding: 20px 10px !important;
    }

    .guide-item h4 {
        font-size: 15px !important;
    }

    .guide-item p {
        font-size: 12px !important;
        line-height: 1.7 !important;
    }
}


#map {
    width: 100%;
    height: 400px;
}

@media (max-width: 767.98px) {
    #map {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    #map {
        height: 260px;
    }
}

