@font-face {
    font-family: 'bradhitc';
    src: url('../font/bradhitc-webfont.woff2') format('woff2'),
    url('../font/bradhitc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayregular';
    src: url('../font/raleway-regular.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'mitrlight';
    src: url('../font/mitr-light-webfont.woff2') format('woff2'),
    url('../font/mitr-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'mitrregular';
    src: url('../font/mitr-regular-webfont.woff2') format('woff2'),
    url('../font/mitr-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #353131;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: 'ralewayregular', 'mitrlight';
    overflow-x: hidden;
    /*font-weight: bold;*/
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

h1, h2, h3 {
    color: #31322d;
    font-family: ralewayregular, mitrregular;
    text-transform: capitalize;
    font-weight: lighter;
    margin: 0;
    line-height: 1.4;
    /*font-weight: bold;*/
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-weight: lighter;
    font-size: 20px;
    margin: 0;
}

p {
    margin: 6px 0 15px;
}


a {
    color: inherit;
    text-decoration: none;
    transition: all .4s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}
.background-white {
    background: white;
}
/*-------------------------------------*/
/* SLIDER SHOW */
/*-------------------------------------*/
.wrap-slider {
    position: relative;
}
.overlay-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);

}

.text-slider {
    position: absolute;
    width: 80%;
    height: 197px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 50px;
    z-index: 15;
}
.text-slider h1 {
    color: white;
    margin: 0;
    font-family: bradhitc, mitrlight;
    font-weight: bold;
}
.text-slider p {
    color: white;
    text-transform: capitalize;
    font-size: 20px;
    margin: 0;
    font-family: bradhitc, mitrlight;
    font-weight: bold;
}
.text-slider ul {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}
.text-slider li {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
}

.text-slider li:nth-child(1) {
    animation-delay: 0.5s;
}
.text-slider li:nth-child(2) {
    animation-delay: 0.7s;
}
.slider-arrow {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 16
}
.slider-arrow a {
    position: absolute;
    opacity: .3;
    margin: 0 50px;
    cursor: pointer;
}
.slider-arrow a:hover {
    opacity: .8;
}
.slider-arrow img {
    width: 40px;
}
.slider-arrow #arrow_left {
    left: 0;
}
.slider-arrow #arrow_right {
    right: 0;
}
/*-------------------------------------*/
/* HEADER */
/*-------------------------------------*/
.wrap-header {
    position: absolute;
    width: 100%;
    top: 30px;
    background: none;
    transition: all .6s ;
    z-index: 99;
}
.wrap-scroll {
    position: fixed;
    top: 0;
    height: 90px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.wrap-header .container ,
.wrap-scroll .container {
    width: 100% !important;
    transition: all .6s;
}

.site-logo {
    position: relative;
    z-index: 2;
}
.wrap-header .site-logo img {
    position: absolute;
    top: 0;
    width: 130px;
    filter: brightness(0) invert(1);
}
.wrap-header  .site-logo {
    padding: 14px 55px;
}
.wrap-scroll .site-logo {
    padding: 14px 50px;
}
.wrap-scroll .site-logo img {
    width: 100px;
    filter: initial;
    padding: 10px 0;
}

.navbar-nav a {
    text-transform: capitalize;
    color: white;
}
.wrap-scroll .navbar-nav a {
    padding: 44px 6px 11px;
    color: #333333;
}

.nav > li > a {
    font-size: 20px;
    padding: 30px 6px 10px;
}

.sub-info {
    position: absolute;
    /*width: 100%;*/
    white-space: nowrap;
    transform: translateY(-1em);
    left: 0;
    padding: 0;
    text-align: left;
    background: white;
    border-top: 3px solid #fc28fc;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
}
.navbar-nav {
    position: relative;
    z-index: 2;
}
.navbar-nav .sub-info a {
    padding: 6px 10px ;
    color: #31322d;
    font-size: 18px;
}
.sub-info > li {
    list-style: none;
}

.sub-menu-info:hover .sub-info {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar-nav a {
    padding: 10px;
    display: block;
}
.navbar-nav .sub-info a:hover {
    background: #fc28fc;
    color: #fff !important;
}
.navbar-nav a:hover,.navbar-nav a.active ,
.menu-container a:hover, .menu-container a.active {
    color: #fc28fc !important;

}
#book-header {
    padding: 10px 30px;
    background: rgba(252,40,252,0.5);
    border: 0;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0 50px;
    margin: 23px 0 0 10px;
    transition: all .6s;
}
.wrap-scroll #book-header {
    /*background: #fc28fc;*/
    margin: 30px 0 10px 10px;
}

#book-header > a {
    padding: 0 !important;
    color: #fff;
    font-size: 18px;
}
#book-header:hover a {
    color: #fff !important;
}
#book-header:hover {
    background: #fc28fc;
}
#book-header img {
    width: 25px;
    vertical-align: middle;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}
.wrap-scroll #book-header:hover {
    background: #fc28fc;
}
.wrap-header .navbar-nav,.wrap-scroll .navbar-nav {
    padding: 0 50px 0 0;
}
.transfer-mobile {
    padding: 6px 20px;
    background: #fc28fc;
    border: 0;
    color: #fff;
    font-weight: bold;
    transition: all .4s;
    outline: none;
    cursor: pointer;
    border-radius: 0 50px;
    margin: 28px 25px 0;
    position: absolute;
    right: 85px;
    display: none;
    font-size: 16px;
}
.nav-lang {
    position: absolute;
    right: 280px;
    top: -7px;
    z-index: 10;
    transition: all .6s;
}
.nav-lang i {
    margin-left: 6px;
}
.nav-lang.hide {
    display: none;
}
.wrap-scroll .nav-lang {
    top: 9px;
    /*right: 275px;*/
}
.nav-lang ul {
    padding: 0;
    margin: 0;
    text-align: left;
}
.nav-lang label {
    color: #fff;
    /*padding: 0 10px;*/
    cursor: pointer;
    font-weight: lighter;
    font-size: 16px;
}
.wrap-scroll  .nav-lang label {
    color: #31322d;
}
.nav-lang ul li {
    list-style: none;
}
.nav-lang ul .lang_parent  {
    border-top: 3px solid #fc28fc;
}
.nav-lang ul .lang_parent li a {
    display: block;
    padding: 6px 10px;
    color: #31322d;
    font-size: 16px;
}
.lang_parent {
    position: absolute;
    left: 0;
    white-space: nowrap;
    width: 100%;
    background: #fff;
    transform: translateY(-1em);
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    z-index: 8;
}
.nav-lang label:hover{
    color: #fc28fc;
}
.nav-lang .lang_parent li:hover a {
    background: #fc28fc;
    color: #fff;
}
.lang_parent.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/*-------------------------------------*/
/* SITE LOGO SHA */
/*-------------------------------------*/
.site-sha {
    position: absolute;
    left: 55px;
    top: 130px;
    z-index: 15;
}
.site-sha img {
    width: 190px;
}


    /*-------------------------------------*/
/* HAMBURGER */
/*-------------------------------------*/
.ui-style {
    position: absolute;
    width: 35px;
    height: 20px;
    top: 15px;
    bottom: 0;
    right: 25px;
    margin: 25px;
    cursor: pointer;
    z-index: 6;
    display: none;
    transition: all .4s;
}
.style-icon {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.style-icon .amburgers1 {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    background: #fff;
    border-radius: 2px;
    transition: .23s ease-in-out;
}
.style-icon .amburgers2 {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 7px;
    background: #fff;
    border-radius: 2px;
    transition: .23s ease-in-out;
}
.style-icon .amburgers3 {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 14px;
    background: #fff;
    border-radius: 2px;
    transition: .23s ease-in-out;
}
.style-icon .amburgers4 {
    position: absolute;
    width: 0;
    height: 3px;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 2px;
    transform: rotate(-90deg);
    transition: all 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;

}
.style-icon .amburgers5 {
    position: absolute;
    width: 0;
    height: 3px;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.open-bar div:nth-child(1) , .open-bar div:nth-child(2),
.open-bar div:nth-child(3){
    transform: scale(0);
}
.open-bar div:nth-child(4),.open-bar div:nth-child(5){
    width: 30px;
}
.style-icon.open-bar .amburgers4 {
    transform: rotate(-45deg);
}
.style-icon.open-bar .amburgers5 {
    transform: rotate(45deg);
}
.wrap-scroll .ui-style {
    top: 30px;
    margin: 20px 25px;
}
.wrap-scroll .amburgers1 ,.wrap-scroll .amburgers2 ,
.wrap-scroll .amburgers3 ,.wrap-scroll .amburgers4 ,
.wrap-scroll .amburgers5 {
    background: #31322d;
}
.style-icon.open-bar .amburgers1, .style-icon.open-bar .amburgers2,
.style-icon.open-bar .amburgers3, .style-icon.open-bar .amburgers4,
.style-icon.open-bar .amburgers5 {
    background: #31322d;
}
/*-------------------------------------*/
/* MENU MOBILE */
/*-------------------------------------*/
.menu-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}
.panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 100px 50px;
    justify-content: space-between;
}
.menu-container ul {
    width: 100%;
    padding: 0;
    margin: 0;
}
.menu-container li {
    position: relative;
    list-style: none;
}
.menu-container a {
    position: relative;
    padding: 7px;
    display: block;
    color: #333333;
    font-size: 18px;
    text-transform: capitalize;
    transition: all .4s;
    width: 80%;
}

.menu-container .info-detail {
    position: relative;
    display: none;
    padding-left: 30px;
}
.menu-container .info-detail.active {
    display: block;
}
.c_plus {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    display: block;
}
.ui-icon-plus {
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    display: block;
}
.ui-icon-plus:before ,
.ui-icon-plus:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    margin: auto;
    display: block;
    transition: all 0.6s;
}
.ui-icon-plus:before {
    width: 1px;
    height: 20px;
}
.ui-icon-plus:after {
    width: 20px;
    height: 1px;
}
.ui-icon-plus.active:before {
    display: none;
}

.menu-mobile.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-mobile.active .menu-container{
    transform: translateX(0);
    -webkit-transform: translateX(0);
}
.menu-container .info-detail li {
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.menu-container .info-detail li:nth-child(1) {
    animation-delay: 0.3s;
}
.menu-container .info-detail li:nth-child(2) {
    animation-delay: 0.5s;
}
.menu-container .info-detail li:nth-child(3) {
    animation-delay: 0.7s;
}
.menu-container .info-detail li:nth-child(4) {
    animation-delay: 0.9s;
}
.menu-container .info-detail li:nth-child(5) {
    animation-delay: 1s;
}
.menu-container .info-detail li:nth-child(6) {
    animation-delay: 1.3s;
}
/*-------------------------------------*/
/* PADDING BODY */
/*-------------------------------------*/

.envelop {
    position: relative;
    width: 100%;
    display: flex;
}
.envelop-box {
    position: relative;
    width: 100%;
    padding: 60px;
    text-align: center;
    display: inline-block;
}
.envelop-box.room {
    padding: 15px 60px 0;
}

.wrap-best {
    position: relative;
    width: 100%;
    padding: 0 60px;
    text-align: center;
    display: inline-block;
}

.box-slider {
    position: relative;
    width: 100%;
    padding: 0 60px 60px;
    text-align: center;
    display: inline-block;
}
.box-slider.envelop-tap {
    padding: 0 !important;
}
.title_offers {
    padding-bottom: 30px;
}

.envelop-box .logo_top:before   {
    content: "";
    background: url(../images/icon/icon-logo.png) no-repeat center;
    width: 80px;
    height: 30px;
    display: block;
    margin: 0 auto 15px;
}
.c_facilities {
    position: absolute;
    width: 100%;
    bottom: 90px;
    z-index: 16;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
.detail_icon {
    position: relative;
    width: 100%;
}
.detail_icon img {
    width: 45px;
    filter: brightness(0) invert(1);
}
.detail_icon p {
    margin: 0;
}



/*-------------------------------------*/
.image-box {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: flex;
}
.tour_offers .image-box {
    height: 400px;
}
.image-box.accom {
    height: 700px;
}
.photos:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    z-index: 20;
}
.slide-fac .image-box {
    height: 350px;
}
.slider-content {
    position: relative;
    padding: 30px 30px 0;
    text-align: center;
}
.box_offers .slider-content {
    padding: 0 30px 0;
}
.box_offers h3 {
    margin: 0 0 20px;
}
.slider-content p {
    margin: 0;
}
.slider-content p + .btn-main {
    margin-top: 20px;
}
.slider-content h1 > span {
    font-size: 24px;
}
.btn-main.book {
    margin-top: 20px;
}
.btn-main:hover {
    background: #fc28fc;
}
.btn-main {
    position: relative;
    padding: 10px 40px;
    background: rgba(252,40,252,0.5);
    border: 0;
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
    display: inline-block;
    transition: all .4s;
    outline: none;
    cursor: pointer;
    border-radius: 0 50px;
}

.offer {
    position: relative;
}

.page_child h3 {
    text-align: left;
}
.page_child ul {
    text-align: left;
}
.page_child ul li {
    padding: 4px;
}
.tour_offers .col-xs-4 {
    padding: 0 20px 50px;
}
.tour_offers .col-xs-4.last {
    padding: 0 20px;
}
.tour_offers p {
    margin: 0 0 20px;
}

/*-------------------------------------*/
/* TEB */
/*-------------------------------------*/
.slide-teb {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow-x: hidden;
}
.title {
    position: relative;
    width: 100%;
    display: table;
    text-align: center;
    background: #f1f0f0;
}
.roomtitle .teb-title {
    font-size: 22px;
    color: #31322d;
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 20px;
    cursor: pointer;
}
.box-content {
    background: white;
}
.roomtitle .teb-title:hover {
    background: white;
}
/*-------------------------------------*/
/* PAGE INFO */
/*-------------------------------------*/
.margin15 {
    margin-bottom: 15px;
}
.text-primary {
    color: #fc28fc !important;
    font-weight: bold;
    display: block;
    width: 100%;
}
.viewer {
    position: relative;
    width: 100%;
}
.camera {
    position: absolute;
    bottom: 50px;
    color: white;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 21;
    cursor: pointer;
}
.camera i {
    font-size: 30px;
}
.camera p {
    margin-top: 10px;
}
.icon-camera {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    padding: 15px;
    margin: auto;
}
.overlay-sliderbox:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,1);
    background: -webkit-linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.5));
    background: -o-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
    background: -moz-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
    z-index: 3;
}
.amenities {
    position: relative;
    width: 100%;
    text-transform: capitalize;
}
.amenities ul {
    padding: 0;
    margin: 0;

}
.amenities li {
    width: 25%;
    float: left;
    list-style: none;
    display: inline-block;
    padding: 10px;
    text-align: center;
}
.amenities img {
    vertical-align: middle;
    width: 40px;
}
.icon-amenities {
    width: 70px;
    height: 70px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: inline-block;
    padding: 16px 13px;
    margin-bottom: 10px;
}
.amenities p {
    margin: 0;
}
.type {
    position: relative;
    width: 100%;
    font-size: 14px;
}
.type .clearfix {
    display: none;
}
.type h4 {
    font-family: poppins_medium, mitrregular;
    text-transform: uppercase;
    padding: 20px 0 0;
}
.d_type {
    padding: 0 35px;
}
.type img {
    width: 35px;
}
.type span {
    width: 75px;
    height: 75px;
    display: inline-block;
    padding: 20px 10px;
    border-radius: 50%;
    border: 1px solid #dedede;
}
.type .col-xs-3:nth-child(1) ,
.type .col-xs-3:nth-child(2) ,
.type .col-xs-3:nth-child(3) ,
.type .col-xs-4:nth-child(1) ,
.type .col-xs-4:nth-child(2)  {
    border-right: 1px solid #dedede;
}
.info_page table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    text-transform: capitalize;
}
.info_page thead tr {
    background: #31322d;
    color: #efefee;
}
.info_page table tr  td{
    padding: 10px 20px;
}
.info_page table tbody td {
    text-align: left;
    border: 1px solid #d8d8d8;
}
.meeting_ul {
    position: relative;
    width: 100%;
    margin: 40px 0;
    display: flex;
}
.info_page ul {
    padding: 0;
    width: 50%;
    float: left;
    text-align: left;
}
.info_page ul li {
    list-style: none;
    padding: 5px;
}
.info_page ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 10px;
    color: #fc28fc;
}
.b_offers {
    position: relative;
    width: 100%;
    height: 500px;
    padding: 50px;
    text-align: left;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    text-transform: capitalize;
    background: #f5f3f3;
}
.b_offers ul {
    margin: 15px 0;
}
.b_offers h2 , .b_offers p , .b_offers ul{
    width: 100%;
}
.b_offers .text-primary {
    margin: 10px 0 !important;
    font-size: 20px;
}
.b_offers p {
    margin: 15px 0 25px ;
}
.content_child .col-xs-6 {
    padding: 0 20px 50px;
}
.content_child .col-xs-6.last {
    padding: 0 20px;
}
.content-info {
    padding: 30px 30px 0;
    text-align: center;
}


.envelop-view-images {
    position: relative;
}
.page_offers .content_child {
    margin-bottom: 60px;
    display: flex;
}
.page_offers .content_child:last-child {
    margin: 0;
}

.page_offers .text-primary {
    margin: 0 !important;
}

.nearby {
    position: relative;
    text-align: left;
    padding: 30px 0 0;
    width: 100%;
    display: inline-block;
}
.nearby ul {
    padding: 0;
    margin: 20px 0 0;
}
.nearby ul li {
    list-style: none;
    padding: 4px;
}
.nearby ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 10px;
    color: #fc28fc;
}

/*-------------------------------------*/
/* GALLERY*/
/*-------------------------------------*/
.padding10 {
    padding: 10px;
}
.viewer-gallery {
    position: relative;
    overflow: hidden;
}
.viewer-gallery .image-box {
    height: 400px;
    cursor: pointer;
    transition: all 1s ease;
}

.album-gallery {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgb(49, 50, 44,0.8);
    color: white;
    text-align: left;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: capitalize;
}
.album-gallery p {
    margin: 0;
}
.album-gallery .fa-camera-retro {
    float: right;
}
.album-gallery h4 {
    font-weight: bolder;
}
.filtr-item:hover .image-box {
    filter: brightness(60%);
    transform: scale(1.05);
}
.lg-dropdown {
    display: none;
}

/*-------------------------------------*/
/* FOOTER */
/*-------------------------------------*/
.wrap-footer {
    position: relative;
    width: 100%;
    padding: 60px;
    text-align: left;
    display: flex;
}
.wrap-footer .col-xs-4 {
    padding: 0 20px;
}
.wrap-footer p {
    margin: 0;
}
.footer {
    color: #f7f7f7;
    /*background: #8e158e;*/
    /*background:  url("../images/icon/bg_footer.jpg") top center no-repeat;*/
    background: center center no-repeat;
    background-size: cover;
}
.ui-social {
    position: relative;
    width: 100%;
    font-size: 26px;
    text-align: right;
}
.ui-social h3 {
    margin-bottom: 10px;
}
.ui-social a {
    color: white;
    margin: 10px;
}

.wrap-footer h3 {
    margin-bottom: 6px;
    color: white;
}
.contact-footer {
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
}
.contact-footer i {
    font-size: 16px;
    vertical-align: middle;
}
.contact-footer span {
    margin: 0 6px;
}
.contact-footer a:hover , .ui-social a:hover{
    color: #e612e6;
}
.copyright a:hover {
    color: #5e0a5f;
    transition: all .6s;
}
.padding25 {
    padding: 0 25px !important;
}
.ui-telmail.margin15 {
    margin: 10px 0;
}
.copyright {
    display: inline-block;
    background: #d358d4;
    color: #fff;
    padding: 15px;

}
.copyright p {
    text-align: center;
    font-size: 14px;
    margin: 0;
}
.footer .fa-phone {
    transform: rotate(90deg);
}
/*-------------------------------------*/

.sitemap h1 {
    margin-bottom: 0 !important;
}
.sitemap .col-xs-6 {
    text-transform: capitalize;
    font-size: 18px;
    padding: 0 25px !important;

    text-align: left;
}
.sitemap .col-xs-6 ul {
    margin: 0;
}
.sitemap .col-xs-6 li {
    padding: 5px;
}
.sitemap .col-xs-6 li a:hover {
    color: #fc28fc;
}
.sub-sitemap ul {
    padding: 0 0 0 25px !important;
    margin: 0;
}
.map iframe {
    display: flex;
}
/*-------------------------------------*/
/* OWL CAROUSEL */
/*-------------------------------------*/
.owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    height: 180px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.owl-theme .owl-nav .owl-prev {
    position: absolute !important;
    left: 0;
    margin: 0 30px;
}
.owl-theme .owl-nav .owl-next {
    position: absolute !important;
    right: 0;
    margin: 0 30px;
}
.roomimages .owl-nav , .roomcontent .owl-nav{
    display: none;
}
.roomtitle .owl-item.active.center{
    background: white;
}
.roomtitle .owl-nav {
    height: 45px;
    z-index: -1;
    display: block !important;
}
.roomtitle .owl-nav i {
    color: #d0ae65 !important;
}
.roomtitle.owl-theme  .owl-nav [class*=owl-] {
    margin: 0 !important;
    border-color : #fc28fc!important;
}
.roomtitle .owl-nav .owl-prev {
    left: -100px;

}
.roomtitle .owl-nav .owl-next {
    right: -100px;
}

.slide-info.owl-theme .owl-nav {
    height: 45px;
}
.roomhotel .owl-theme .owl-dots {
    margin: 0;
}

.envelop_restaurant .text-primary{
    margin: 0;
}
.envelop_restaurant span{
    margin-bottom: 20px;
    display: inline-block;
}

.roomtitle .owl-nav i{
    color: #fc28fc!important;
}
.footer:before{
    content: '';
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    position: absolute;
}