/*-----------------------------------------------------------------------------------
    
-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
	
    1. About Area
    2. Room Area
    3. Services Area
    4. Fun Factor Area
    5. Gallery Area
    6. Team Area
    7. Advertise Area
    8. Pricing Area
    9. Blog Area
    10. Client Area
    11. Newsletter Area
    12. Room Grid / List Page
    13. Room Details Page
    14. Location Page
    15. Event Page
    16. Contact Page

-----------------------------------------------------------------------------------*/


/*----------------------------------------*/


/*  1. About Area
/*----------------------------------------*/


/*form.search-form {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    padding: 50px 70px;
    position: relative;
    z-index: 2;
}

.box-select .select {
    border: 1px solid #dddddd;
    float: left;
    height: 48px;
    margin-right: 30px;
    width: 182px;
}

.box-select .select input[type="date"] {
    text-transform: uppercase;
    height: 100%;
}

.box-select .select input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.select>select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    cursor: pointer;
    position: relative;
    z-index: 99;
}

.select>select:focus {
    outline: 0
}

.search-form button {
    border: 0 none;
    color: #ffffff;
    line-height: 48px;
    text-transform: uppercase;
    width: 182px;
}

.box-select .select {
    position: relative;
}

.box-select .select::after {
    content: "";
    font-family: "Material-Design-Iconic-Font";
    font-size: 18px;
    position: absolute;
    right: 9px;
    top: 14px;
    z-index: 1;
}*/


/* .box-select .select::after {
    content: "\f331";
} */


/*.box-select .select.arrow::after {
    content: "\f2f2";
    font-size: 24px;
    top: 8px
}*/

.about-text {
    padding-top: 90px;
}

.about-text .section-title {
    padding: 0;
}

.about-links>a {
    border: 1px solid #f1f1f1;
    color: #0055df;
    display: table;
    float: left;
    font-size: 18px;
    height: 38px;
    margin-right: 15px;
    text-align: center;
    transition: all 0.3s linear 0s;
    width: 38px;
}

.about-links>a i {
    display: table-cell;
    vertical-align: middle;
}

.about-links>a:hover {
    background: #0055df none repeat scroll 0 0;
    border-color: #0055df;
    color: #ffffff;
}

.about-links {
    padding-top: 37px;
}

.video-wrapper,
.video-overlay {
    position: relative;
}

.video-overlay::after {
    background: rgba(0, 0, 0, 0.25) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.video-wrapper:hover .video-overlay::after {
    opacity: 1;
}

.video-overlay>img {
    width: 100%;
}

.video-popup {
    bottom: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 72px;
    height: 60px;
    left: 0;
    line-height: 58px;
    margin: auto;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 60px;
    z-index: 2;
}

.video-popup i {
    line-height: 58px
}

.video-wrapper .video-popup:hover {
    color: #c6c6c6
}

.video-wrapper:hover .video-popup {
    opacity: 1
}


/*----------------------------------------*/


/*  2. Room Area
/*----------------------------------------*/

.room-area .container-fluid {
    padding: 0;
}

.homeimg {
    padding: 0px;
}

.single-room {
    float: left;
    width: 25%;
    position: relative;
    overflow: hidden;
}

.single-room.small {
    width: 100%;
}

.single-room.large {
    width: 29.1%;
}

.single-room.medium {
    width: 25%;
}

.single-room img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.room-hover {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
}

.room-hover:after {
    background-color: rgba(0, 0, 0, 0.5);
    border: 5px solid #fff;
    border-top: 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in 0.4s;
    width: 100%;
}

.single-room:hover .room-hover:after {
    opacity: 1;
    transition-delay: 0.2s;
}

.single-room>h3 {
    color: #ffffff;
    left: 50%;
    margin-bottom: 19px;
    opacity: 1;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease 0s;
    width: 100%;
    z-index: 1;
}

.single-room:hover>h3 {
    opacity: 0;
    transition-delay: 0s
}

.hover-text>h3 {
    color: #ffffff;
    background: #0a2d65;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease 0s;
    width: 70%;
}

.single-room:hover .hover-text>h3 {
    top: 26%;
}

.hover-text>p {
    width: 100%;
    text-align: center;
    bottom: 41%;
    color: #ffffff;
    opacity: 0;
    padding: 0;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out 0.1s;
    text-align: center;
}

.large .hover-text>p {
    padding: 0 10px
}

.single-room:hover p {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.2s;
}

.hover-text>h3:hover a {
    color: #0055df;
}

.hover-text {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.hover-text .room-btn {
    bottom: 25%;
    left: 0;
    opacity: 0;
    right: 0;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out 0.1s;
}

.single-room:hover .room-btn {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.5s;
}

.hover-text .default-btn {
    display: inline-block;
    line-height: 38px;
    padding: 0 22px;
}

.p-amount {
    bottom: 26px;
    color: #ffffff;
    position: absolute;
    right: 23px;
    transform: translateX(100px);
    transition: all 0.3s ease-in-out 0.1s;
    z-index: 2;
}

.p-amount.abs-remove {
    position: unset;
}

.p-amount>span {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 700;
    opacity: 0;
}

.hover-text:hover .p-amount>span {
    opacity: 1;
}

.p-amount>span i {
    font-size: 18px;
}

.hover-text .single {
    width: 150px;
    margin-top: 20px;
    fill: white;
    opacity: 0;
}

.hover-text:hover .single {
    opacity: 1;
    transition-duration: 3s;
}

.hover-text .double {
    width: 150px;
    margin-top: 20px;
    fill: white;
    opacity: 0;
}

.hover-text:hover .family {
    opacity: 1;
    transition-duration: 3s;
}

.hover-text .family {
    width: 150px;
    margin-top: 20px;
    fill: white;
    opacity: 0;
}

.hover-text:hover .suite {
    opacity: 1;
    transition-duration: 3s;
}

.hover-text .suite {
    width: 110px;
    margin-top: 10px;
    fill: white;
    opacity: 0;
}

.hover-text:hover .double {
    opacity: 1;
    transition-duration: 3s;
}

.p-amount>span.count {
    font-size: 15px;
    font-weight: 400;
    padding-top: 3px;
}

.single-room:hover .p-amount {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.3s;
}

.single-room.large:hover .hover-text>h3 {
    top: 29%;
}

.single-room.large .hover-text>p {
    bottom: 44%;
}

.single-room.large .hover-text>.room-btn {
    bottom: 26%;
}


/*----------------------------------------*/


/*  3. Services Area
/*----------------------------------------*/

.nav.nav-tabs {
    border: 0 none;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    background: #16b2d2 none repeat scroll 0 0;
    border: 0 none;
    color: #ffffff;
}

.nav-tabs>li>a {
    background: #f1f1f1 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    line-height: 24px;
    margin: 0;
    padding: 10px 0 12px;
}

.title {
    font-family: "raleway";
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

span.title,
span.text {
    color: #444444;
    display: block;
    padding-left: 80px;
}

span.image {
    display: block;
    left: 20px;
    position: absolute;
    top: 18px;
}

.nav-tabs>li {
    margin-bottom: 20px;
    width: 100%
}

.nav-tabs>li.active>a .title,
.nav-tabs>li.active>a:focus .title,
.nav-tabs>li.active>a:hover .title {
    color: #ffffff;
}

.nav-tabs>li.active>a .text,
.nav-tabs>li.active>a:focus .text,
.nav-tabs>li.active>a:hover .text {
    color: #ffffff;
}

.nav-tabs>li>a span {
    transition: all 0.2s ease 0s;
}

.nav-tabs>li:last-child {
    margin: 0;
}

span.image.s-img {
    display: none;
}

.nav-tabs>li.active>a span.s-img,
.nav-tabs>li.active>a:focus span.s-img,
.nav-tabs>li.active>a:hover span.s-img {
    display: block;
}


/*----------------------------------------*/


/*  4. Fun Factor Area
/*----------------------------------------*/

.fun-factor-area {
    padding: 57px 0 69px;
}

.single-fun-factor>h1 {
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 60px;
    font-weight: 700;
}

.single-fun-factor>h4 {
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding-top: 17px;
    text-transform: uppercase;
}


/*----------------------------------------*/


/*  5. Gallery Area
/*----------------------------------------*/

.gallery-item {
    /* width: 24%; */
    overflow: hidden;
    padding: 5px;
    height: 183px;
    width: 278px;
}

.img-size {
    height: 100%;
    width: 100%;
}

.thumb>img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-hover a {
    border: 1px solid #fbfafa;
    border-radius: 50%;
    color: #ffffff;
    display: inline-table;
    font-size: 24px;
    height: 38px;
    margin: 0 8px;
    position: relative;
    text-align: center;
    transition: all 0.2s linear 0s;
    width: 38px;
}

.gallery-hover {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}

.gallery-icon {
    bottom: 0;
    height: 40px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

.gallery-hover a i {
    display: table-cell;
    vertical-align: middle;
}

.gallery-hover a:hover {
    background: #ffffff none repeat scroll 0 0;
    color: #0055df;
}

.gallery-filter,
.event-menu {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-filter button,
.event-menu button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    color: #444444;
    font-family: "raleway";
    font-size: 18px;
    line-height: 17px;
    padding: 0 21px;
}

.gallery-filter button:focus,
.gallery-filter button.active,
.event-menu button:focus,
.event-menu button.active {
    color: #0055df;
}

.gallery-icon span {
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    vertical-align: middle;
}

.gallery-icon span img {
    transition: all 0.3s ease-in-out 0s
}

.gallery-icon span.s-img,
.gallery-icon a:hover span.p-img {
    display: none;
}

.gallery-icon a:hover span.s-img {
    display: block;
}


/*----------------------------------------*/


/*  6. Team Area
/*----------------------------------------*/

.single-team {
    position: relative;
    text-align: center;
    overflow: hidden
}

.team-image>img {
    max-width: 100%;
}

.team-hover>h4 {
    color: #ffffff;
    margin-bottom: 2px;
    transform: translate3d(0px, 200%, 0px);
    transition: transform 0.25s ease 0s;
}

.single-team:hover .team-hover h4 {
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0.3s;
}

.team-hover span {
    color: #ffffff;
    font-family: "raleway";
    font-size: 16px;
    margin-bottom: 14px;
    transform: translate3d(0px, 200%, 0px);
    transition: transform 0.25s ease 0s;
}

.single-team:hover .team-hover span {
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0.4s;
}

.team-hover>p {
    color: #ffffff;
    margin-bottom: 12px;
    transform: translate3d(0px, 200%, 0px);
    transition: transform 0.25s ease 0s;
}

.single-team:hover .team-hover p {
    transform: translate3d(0px, 0px, 0px);
    transition-delay: 0.5s;
}

.team-links a {
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    margin: 0 20px;
    transform: translate3d(0px, 200%, 0px);
    transition: transform 0.35s ease 0s;
}

.single-team:hover .team-links a {
    transform: translate3d(0px, 0px, 0px);
}

.single-team:hover .team-links a:nth-child(1) {
    transition-delay: 0.7s;
}

.single-team:hover .team-links a:nth-child(2) {
    transition-delay: 0.9s;
}

.single-team:hover .team-links a:nth-child(3) {
    transition-delay: 1.1s;
}

.team-links>a:hover {
    color: #0055df;
}

.team-hover {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: -100%;
    left: 0;
    padding: 28px 32px 25px;
    position: absolute;
    transition: all 0.4s ease 0s;
    width: 100%;
}

.single-team:hover .team-hover {
    bottom: 0;
}

.team-section .single-team {
    margin-bottom: 50px
}


/*----------------------------------------*/


/*  7. Advertise Area
/*----------------------------------------*/

.advertise-text {
    overflow: hidden;
    padding: 75px 0;
}

.advertise-text.reduce_pd {
    padding: 35px 0;
}

.advertise-text>h1 {
    color: #ffffff;
    float: left;
    font-size: 48px;
    line-height: 48px;
    text-transform: uppercase;
}

.advertise-text span {
    color: #0055df;
}

.advertise-text .default-btn {
    float: right;
    line-height: 48px;
    padding: 0 25px;
    text-transform: uppercase;
}


/*----------------------------------------*/


/*  8. Pricing Area
/*----------------------------------------*/

.package-name>h3 {
    color: #252525;
    font-family: "Lato", sans-serif;
    padding: 44px 0 25px;
}

.single-pricing {
    background: #f1f1f1 none repeat scroll 0 0;
    border-bottom: 1px solid #0055df;
    border-top: 1px solid #0055df;
    padding-bottom: 49px;
    text-align: center;
}

.package-name>h1 {
    background: #ffffff none repeat scroll 0 0;
    color: #535353;
    font-family: "Lato", sans-serif;
    font-size: 50px;
    padding: 30px 0 36px;
}

.package-name h1 span {
    font-size: 20px;
}

.package-name h1 .currency {
    position: relative;
    top: -20px;
}

.package-offer {
    padding-top: 10px;
}

.package-offer>span {
    color: #606060;
    display: block;
    font-size: 18px;
    margin: 16px 0;
}

.signup-btn {
    padding-top: 33px;
}

.signup-btn a {
    background: #ffffff none repeat scroll 0 0;
    color: #606060;
    display: inline-block;
    font-weight: 700;
    line-height: 38px;
    padding: 0 21px;
    text-transform: uppercase;
}

.signup-btn a::before {
    background: #0055df none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: 50% 0 0;
    transition-duration: 0.5s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1;
}

.signup-btn a:hover,
.signup-btn a:focus,
.signup-btn a:active {}

.signup-btn a:hover::before,
.signup-btn a:focus::before,
.signup-btn a:active::before {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.single-pricing.best-offer {
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.15);
}

.best-offer .package-name>h1,
.best-offer .signup-btn a {
    color: #0055df;
}

.signup-btn a:hover {
    color: #ffffff;
}

.package-offer>span.light {
    color: #bbbbbb;
}


/*----------------------------------------*/


/*  9. Blog Area
/*----------------------------------------*/

.single-blog-wrapper {
    position: relative;
    overflow: hidden
}

.blog-text {
    border: 1px solid #dfdfdf;
    padding: 26px 0 29px;
}

.single-blog {
    text-align: center;
}

.blog-text>h3,
.blog-hover>h3 {
    color: #252525;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.blog-text .time,
.blog-hover>span {
    color: #909090;
    display: block;
    font-size: 13px;
    margin-bottom: 14px;
}

.blog-text .time,
.blog-hover>span {}

.blog-text .time i,
.blog-hover>span i {
    font-size: 14px;
    padding-right: 5px;
}

.blog-hover {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #dfdfdf;
    bottom: 0;
    height: 100%;
    left: -100%;
    padding: 26px 26px 6px;
    position: absolute;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.blog-hover>p {
    color: #252525;
    padding-top: 13px;
}

.post-info>span {
    display: inline-block;
    font-size: 13px;
    padding-right: 35px;
}

.post-info>span a {
    color: #909090;
}

.post-info>span a:hover {
    color: #444;
}

.post-info>span i {
    padding-right: 5px;
}

.post-info>span:last-child {
    padding-right: 0;
}

.post-info {
    padding-top: 14px;
}

.blog-hover .default-btn {
    line-height: 38px;
    margin-top: 48px;
    padding: 0 21px;
}

.blog-hover .default-btn::before {
    background: #131313 none repeat scroll 0 0;
}

.blog-hover .default-btn::hover {
    color: #fff;
}

.blog-hover .default-btn::before {
    color: #0055df;
}

.single-blog-wrapper:hover .blog-hover {
    left: 0;
}

.blog-hover>h3:hover a {
    color: #0055df
}

.blog-hover>p {
    transform: translate3d(0px, 350%, 0px);
    transition: transform 1s ease 0s;
}

.post-info>span {
    transition: transform 1s ease 0s;
}

.post-info>span:first-child {
    transform: translate3d(-500%, 0px, 0px);
}

.post-info>span:nth-child(2) {
    transform: translate3d(-550%, 0px, 0px);
}

.post-info>span:nth-child(3) {
    transform: translate3d(-600%, 0px, 0px);
}

.blog-hover .default-btn {
    transform: translate3d(0px, 700%, 0px);
    transition: transform 0.4s ease 0s;
}

.single-blog-wrapper:hover .blog-hover>p,
.single-blog-wrapper:hover .post-info>span,
.single-blog-wrapper:hover .blog-hover .default-btn {
    transform: translate3d(0px, 0px, 0px);
}

.single-blog-wrapper:hover .blog-hover>p {
    transition-delay: .4s;
}

.single-blog-wrapper:hover .post-info>span:last-child {
    transition-delay: 1.2s;
}

.single-blog-wrapper:hover .post-info>span:nth-child(2) {
    transition-delay: 1.7s;
}

.single-blog-wrapper:hover .post-info>span:first-child {
    transition-delay: 2s;
}

.single-blog-wrapper:hover .blog-hover .default-btn {
    transition-delay: 2.3s;
}


/*----------------------------------------*/


/*  10. Client Area
/*----------------------------------------*/

.client-area {
    padding: 68px 0 61px;
}

.client-image>a {
    display: table-cell;
    vertical-align: middle;
}

.single-client {
    /*height: 80px;
    padding-left: 15px;
    padding-right: 15px;*/
    text-align: center;
}

.client-image {
    display: inline-table;
    height: 100%;
}

.owl-carousel .owl-item .client-image .s-img,
.single-client:hover .p-img {
    /* display: none; */
}

.owl-carousel .owl-item .single-client:hover .client-image .s-img {
    display: block;
}


/*----------------------------------------*/


/*  11. Newsletter Area
/*----------------------------------------*/

.newsletter-container h3 {
    float: left;
    line-height: 38px;
    text-transform: uppercase;
}

.newsletter-container {
    overflow: hidden;
    padding: 0 25px;
}

.newsletter-form {
    overflow: hidden;
}

.newsletter-area {
    padding: 80px 0;
}

.newsletter-form input {
    border: 1px solid #b7b6b6;
    color: #4d4d4d;
    font-family: "raleway";
    font-size: 14px;
    height: 38px;
    padding: 0 8px;
    width: 284px;
}

.newsletter-form input#mc-email::-moz-placeholder {
    color: #4d4d4d;
}

.newsletter-form input[type="email"]::-webkit-input-placeholder {
    color: #4d4d4d;
}

.newsletter-form form {
    float: right;
}

.mailchimp-alerts {
    display: block;
    overflow: hidden;
    padding-left: 53px;
    width: 100%;
}

.newsletter-form button {
    border: 0 none;
    float: right;
    line-height: 38px;
    padding: 0 20px;
    text-transform: uppercase;
}

.newsletter-form button::before,
.search-form button:before {
    background: #131313 none repeat scroll 0 0;
}

.newsletter-form button:hover,
.search-form button:hover {
    color: #fff
}


/*----------------------------------------*/


/*  12. Room Grid / List Page
/*----------------------------------------*/

.room-grid {
    position: relative;
}

.room-grid .single-room {
    padding: 0;
    width: 100%;
}

.room-grid .p-amount {
    left: 0;
    margin-bottom: 6px;
    opacity: 0;
    right: 0;
    top: 39%;
    transition: all 0.3s ease-in-out 0.2s;
    bottom: auto;
    width: 100%;
}

.room-grid .single-room:hover .p-amount {
    opacity: 1;
}

.room-grid .p-amount>span {
    display: inline-block;
    font-size: 24px;
}

.room-grid .p-amount>span.count {
    font-size: 15px;
}

.room-grid .hover-text h3 {
    margin-bottom: 18px;
}

.room-grid .single-room:hover .hover-text>h3 {
    top: 30%;
}

.room-grid .single-room .hover-text .room-btn {
    /* bottom: 44%; */
    bottom: 36%;
}

.room-grid .hover-text .default-btn {
    margin-top: 26px;
}

.room-grid .single-room {
    margin-bottom: 50px;
}

.room-grid .single-room .room-hover {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.room-grid .single-room::after {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleY(1);
    transition: all 0.5s ease 0s;
    width: 100%;
}

.room-grid.new_effect .single-room::after {
    background: unset;
}

.room-grid .hover-text {
    z-index: 2;
}

.room-grid .single-room:hover::after {
    transform: scaleY(0.57);
}

.room-grid .single-room .hover-text>p {
    bottom: 45%;
    padding: 0 20px;
    left: 0;
}

.room-grid .single-room:hover .hover-text .default-btn {
    bottom: 28%;
}

.room-list a {
    display: block;
}

.room-list-text>h3:hover a {
    color: #0055df;
}

.room-service p {
    font-family: "raleway";
    width: 77%;
}

.room-list-text>h3 {
    margin-bottom: 15px;
}

.room-list-text h4 {
    padding: 15px 0 18px;
}

.room-list {
    margin-bottom: 50px;
    position: relative;
    transition: all 0.3s ease 0s;
}

.room-list::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    right: 0;
    width: 100%;
}

.room-list img {
    position: relative;
    z-index: 2;
}

.room-list .p-amount {
    background: #0055df none repeat scroll 0 0;
    bottom: 0;
    height: 101px;
    opacity: 0;
    padding-top: 20px;
    right: 15px;
    text-align: center;
    transform: translateX(0px);
    transition: all 0.3s ease 0s;
    width: 150px;
}

.room-list-text {
    padding-bottom: 48px;
    padding-top: 58px;
}

.room-list:hover .p-amount {
    opacity: 1;
}

.room-list:hover::after {
    background: #0055df none repeat scroll 0 0;
}

.room-list:hover {
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.1);
}


/*----------------------------------------*/


/*  13. Room Details Page
/*----------------------------------------*/

.slick-list {
    padding: 0 !important
}

.slick-slide img {
    width: 100%;
}

.slider-nav .slick-slide {
    padding-left: 11px;
    padding-right: 11px;
}

.nav-row {
    margin-left: -11px;
    margin-right: -11px;
}

.room-slider {
    margin-bottom: 20px;
}

.slider-nav {
    position: relative;
    overflow: hidden;
}

.slick-prev,
.slick-next {
    font-size: 0;
    padding: 0
}

.slick-arrow {
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    border: 0 none;
    height: 100%;
    left: 11px;
    position: absolute;
    top: 0;
    width: 30px;
    z-index: 9;
}

.slick-next {
    left: auto;
    right: 9px;
}

.slick-prev::before,
.slick-next::before {
    color: #444444;
    content: "\f2f4";
    font-family: "Material-Design-Iconic-Font";
    font-size: 48px;
    left: 50%;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease 0s;
    width: 16px;
    transform: translate(-50%, -50%)
}

.slick-next:before {
    content: "\f2f6";
}

.room-details-title {
    line-height: 18px;
    margin-bottom: 34px;
    position: relative;
    text-transform: uppercase;
}

.room-details-title::after {
    background: #0055df none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 90px;
}

.room-details-text {
    padding-top: 50px;
}

.room-details-text>p {
    margin-bottom: 24px;
}

.room-facilities {
    margin-bottom: 32px;
    overflow: hidden;
    padding-top: 22px;
}

.single-facility>span {
    display: block;
    font-family: "raleway";
    line-height: 25px;
    margin-bottom: 10px;
}

.single-facility {
    float: left;
    width: 33.3333%;
}

.single-faciity {
    padding-top: 1px;
}

.single-facility span i {
    font-size: 18px;
    padding-right: 10px;
}

.cost>h2,
.cost span {
    color: #ffffff;
}

.cost {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    height: 100px;
    padding: 20px 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 170px;
}

.cost>span {
    display: block;
    font-family: "raleway";
    font-size: 15px;
    padding-top: 5px;
}

.zmdi-check {
    color: #1db000;
}

.zmdi-close {
    color: #ff0101;
}

.room-area .room-details-title {
    margin-bottom: 40px;
}

.cost>h2,
.cost span {
    color: #ffffff;
}

.cost {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    height: 100px;
    padding: 20px 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 170px;
}

.cost>span {
    display: block;
    font-family: "raleway";
    font-size: 15px;
    padding-top: 5px;
}

.sidebar-widget form.search-form {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget .box-select .select {
    background: #ffffff none repeat scroll 0 0;
    border-color: #ffffff;
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
}

.sidebar-widget .search-form button {
    margin-top: 20px;
    width: 100%;
}

.sidebar-widget {
    background: #f1f1f1 none repeat scroll 0 0;
    margin-bottom: 50px;
    padding: 24px 20px 30px;
}

.sidebar-widget .room-details-title {
    font-size: 18px;
    margin-bottom: 27px;
    padding-top: 6px;
}

.sidebar-widget .room-details-title::after {
    bottom: -7px;
}

.sidebar-widget .c-info>span:first-child {
    border: 0 none;
    text-align: left
}

.sidebar-widget .c-info:hover>span:first-child {
    background: transparent;
    color: #252525
}

.sidebar-widget .c-info {
    margin-bottom: 12px;
}

.sidebar-widget .c-info-text {
    margin-bottom: 12px
}

.sidebar-widget .c-info:last-child {
    margin: 0;
}

.sidebar-widget .c-info>span:last-child {
    padding-left: 44px;
}

.post-img>img {
    max-width: 100%;
}

.post-img {
    float: left;
}

.post-content {
    margin-bottom: 40px;
    overflow: hidden;
}

.post-text {
    overflow: hidden;
    padding-left: 24px;
}

.post-text h4 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 11px;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.post-text h4:hover a {
    color: #0055df;
}

.post-text>span {
    color: #909090;
    display: block;
    font-size: 13px;
}

.post-content:last-child {
    margin: 0;
}

.room-details .single-room.large .hover-text {
    padding: 0 80px;
}


/*----------------------------------------*/


/*  14. Location Page
/*----------------------------------------*/

.location-image a {
    display: block;
    position: relative;
    overflow: hidden
}

.location-image a::before {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
}

.location-image a:hover::before {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}

.location-image a::after {
    color: #ffffff;
    content: "ÃƒÂ¯Ã¢â‚¬Â Ã…Â½";
    font-family: "Material-Design-Iconic-Font";
    font-size: 48px;
    left: 50%;
    margin: auto;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease 0s;
}

.location-image a:hover::after {
    opacity: 1;
}

.location-text>h3 {
    color: #252525;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    margin-bottom: 13px;
}

.location-text>h3:hover a {
    color: #0055df;
}

.location-text {
    padding-top: 25px;
}

.address-distance>span {
    display: inline-block;
    font-size: 15px;
}

.address-distance>span:first-child {
    float: left;
}

.address-distance>span:last-child {
    float: right;
}

.single-location {
    margin-bottom: 70px;
}


/*----------------------------------------*/


/*  15. Event Page
/*----------------------------------------*/

.event-items {
    margin-left: -5px;
    margin-right: -5px
}

.single-event {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
}

.single-event-item>img {
    width: 100%;
}

.single-event-item {
    position: relative;
}

.event-text {
    height: 100%;
    left: 0;
    padding-left: 39px;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.event-text::before {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.single-event:hover .event-text::before {
    opacity: 1;
}

.event-title {
    bottom: 45px;
    color: #ffffff;
    position: absolute;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.single-event:hover .event-title {
    bottom: 140px;
}

.event-text .author-name {
    bottom: -90%;
    color: #0055df;
    position: absolute;
    transition: all 0.8s ease 0s;
    z-index: 1;
}

.event-text>p {
    bottom: -200%;
    color: #ffffff;
    position: absolute;
    transition: all 1s ease 0s;
    width: 48%;
    z-index: 1;
}

.small .event-text>p {
    width: 93%;
}

.single-event:hover .event-text>p {
    bottom: 37px;
    transition-delay: 0.25s;
}

.single-event:hover .event-text .author-name {
    bottom: 108px;
    transition-delay: 0.1s;
}

.event-text::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 53px;
    content: "";
    height: 0;
    left: 29px;
    position: absolute;
    transition: all 0.8s ease 0s;
    width: 1px;
}

.single-event:hover .event-text::after {
    height: 110px;
    transition-delay: 0.5s;
}

.event-area .single-event:nth-child(5),
.event-area .single-event:nth-child(6) {
    margin: 0;
}


/*----------------------------------------*/


/*  16. Contact Page
/*----------------------------------------*/

h4.contact-title {
    font-size: 24px;
    line-height: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-text>p {
    line-height: 24px;
    margin-bottom: 13px;
}

.contact-text i {
    font-size: 18px;
}

span.c-icon {
    display: inline-block;
    float: left;
}

span.c-icon i {
    position: relative;
    top: 3px;
    width: 27px;
}

span.c-text {
    display: inline-block;
}

.contact-text {
    margin-bottom: 55px;
}

.link-social>a {
    color: #444;
    display: inline-block;
    line-height: 19px;
    margin-right: 27px;
}

.link-social>a:hover {
    color: #0055df
}

.link-social>a i {
    font-size: 20px;
}

.contact-form-area input,
.contact-form-area textarea {
    background: #f1f1f1 none repeat scroll 0 0;
    border: 0 none;
    color: #444444;
    font-size: 14px;
    height: 48px;
    margin-bottom: 20px;
    padding: 0px 15px;
    width: 100%;
}

.contact-form-area textarea {
    height: 150px;
    padding-top: 13px;
    resize: none;
}

#contact-form input::-moz-placeholder,
#contact-form textarea::-moz-placeholder {
    color: #444;
}

#contact-form input::-webkit-input-placeholder,
#contact-form textarea::-webkit-input-placeholder {
    color: #444;
}

#contact-form button.default-btn {
    border: 0 none;
    font-size: 16px;
    line-height: 40px;
    padding: 0 35px;
}

#contact-form button.default-btn::before {
    background: #333333 none repeat scroll 0 0;
}

.foot_map iframe {
    width: 100%;
    height: 250px;
}

.ytb_frame {
    width: 100%;
    height: 400px;
}

.galleryrow {
    margin: 15px;
}

.img-fluid {
    width: 105%;
    border-radius: 5px;
}

.contact-links {
    padding-top: 0px;
}

.contact-links>a {
    border: 1px solid #f1f1f1;
    color: #0055df;
    display: table;
    float: left;
    font-size: 18px;
    height: 38px;
    margin-right: 15px;
    text-align: center;
    transition: all 0.3s linear 0s;
    width: 38px;
}

.contact-links>a i {
    display: table-cell;
    vertical-align: middle;
}

.contact-links>a:hover {
    background: #0055df none repeat scroll 0 0;
    border-color: #0055df;
    color: #ffffff;
}


/* --------------------------------Booking Page----------------------------------*/

#bokng_frm .panel-heading a:before,
#bokng_frm .panel-heading.active a:before,
#bokng_frm #cust_nts:focus,
#bokng_frm #cust_nts {
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
}

.top-header {
    background-color: rgba(255, 255, 255, 0.91);
    padding: 22px 0;
    padding-top: 8px;
}

.booking-form {
    background-color: #0055df;
    padding: 50px 20px;
    margin-bottom: 40px;
    display: none;
}

.booking-form h4 {
    font-size: 15px;
    text-transform: uppercase;
    border-right: 1px solid #fff;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
    line-height: 26px;
}

.booking-form h4 span {
    font-weight: bold;
    display: block;
    font-size: 25px;
}

.booking-form form .form-group {
    width: 20%;
    float: left;
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 0;
    margin-top: 5px;
    position: relative;
}

.booking-form .form-group>i {
    position: absolute;
    left: 20px;
    color: #7d90be;
    top: 0;
}

.booking-section2 .booking-form .form-group>i {
    left: auto;
    right: 50px;
    top: 18px;
    color: #909090;
}

.ui-datepicker {
    padding: 10px;
}

.booking-form .form-group .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn),
.booking-form2 .form-group .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.booking-form .form-group .btn-default {
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 2px solid #1b3471;
    color: #7d90be;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form .form-group .btn-default:hover,
.booking-form .form-group .btn-default:focus,
.booking-form2 .form-group .btn-default:hover,
.booking-form2 .form-group .btn-default:focus {
    outline: none;
    background-color: transparent;
    color: #7d90be;
    border-bottom-color: #1b3471;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-menu li a {
    text-align: right;
    color: #7d90be;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-align: right;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: auto;
    left: 0;
}

.booking-section2 .booking-form .form-group .btn-default {
    border: 1px solid #cfcfcf;
    padding: 16px 32px;
    border-radius: 5px;
}

.booking-form2 .form-group .btn-default {
    padding: 11px 32px;
    border-radius: 0;
    border-color: #dadada;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .filter-option,
.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-menu li a {
    text-align: left;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 32px;
    left: auto;
}

.booking-section2 .booking-form .form-group .btn-default {
    color: #909090;
}

.booking-section2 .booking-form .form-group .btn-default:hover,
.booking-section2 .booking-form .form-group .btn-default:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form2 .form-group .bootstrap-select .dropdown-toggle:hover,
.booking-form2 .form-group .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    font-size: 15px;
}

.booking-form2 .form-group .btn-default:hover,
.booking-form2 .form-group .btn-default:focus {
    border-bottom-color: #dadada;
}

.booking-form2 .form-group .bootstrap-select.btn-group .dropdown-menu li a span.text,
.bootstrap-select.btn-group:hover .dropdown-toggle .filter-option {
    color: #222222;
}

.booking-form2 .form-group .bootstrap-select.open .btn-default.active,
.booking-form2 .form-group .bootstrap-select.open .btn-default:active,
.booking-form2 .form-group .bootstrap-select.open>.dropdown-toggle.btn-default {
    background-color: transparent;
    border-color: #dadada;
    box-shadow: none;
    -webkit-box-shadow: none;
    font-size: 15px;
}

.booking-form .bootstrap-select.btn-group .dropdown-toggle .caret,
.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret {
    top: 4px;
    border: none;
    font-size: 15px;
}

.booking-section2 .booking-form .bootstrap-select.btn-group .dropdown-toggle .caret {
    top: 35%;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 42px;
}

.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 35px;
    top: 13px;
}

.booking-form .bootstrap-select.btn-group .dropdown-toggle .caret::before,
.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    content: "\f107";
    font-family: 'FontAwesome';
    color: #7d90be;
}

.booking-section2 .booking-form .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    color: #909090;
}

.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    color: #afafaf;
}

.booking-form form .form-group input {
    text-align: right;
    padding-bottom: 14px;
    padding-top: 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1b3471;
    border-radius: 0;
    font-size: 12px;
    box-shadow: none;
    outline: none;
    color: #fff;
}

.booking-form form .form-group input::-webkit-input-placeholder {
    color: #7d90be;
}

.booking-form form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: #7d90be;
}

.booking-form form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: #7d90be;
}

.booking-form form .form-group input:-ms-input-placeholder {
    color: #7d90be;
}

.booking-form form .form-group select {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1b3471;
    border-radius: 0;
    color: #7d90be;
    padding-bottom: 9px;
    padding-top: 0;
    width: 100%;
    font-size: 12px;
    text-align: right;
}

.booking-form form .form-group input[type="submit"] {
    background-color: #2AA5DB;
    width: 100%;
    padding-top: 14px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
}

.content-block {
    /* padding-bottom: 50px; */
    border-bottom: 1px solid #eee;
}

.content-block h3 {
    font-size: 36px;
    text-transform: uppercase;
    padding-bottom: 50px;
    margin-bottom: 50px;
    position: relative;
    line-height: 50px;
}

.content-block h3::before {
    background-color: #d0d0d0;
    content: "";
    height: 3px;
    width: 114px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.content-block p {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.3px;
    padding-right: 20%;
    color: #666;
    margin-bottom: 60px;
}

.content-block .col-md-7 p::first-letter {
    color: #333;
    font-family: 'Merriweather', serif;
    font-size: 80px;
    font-weight: bold;
    float: left;
    padding-right: 20px;
}

.ui-datepicker {
    padding: 10px;
}

.booking-form .form-group .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn),
.booking-form2 .form-group .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
    font-size: 15px;
}

.booking-form .form-group .btn-default {
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 2px solid #1b3471;
    color: #7d90be;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form .form-group .btn-default:hover,
.booking-form .form-group .btn-default:focus,
.booking-form2 .form-group .btn-default:hover,
.booking-form2 .form-group .btn-default:focus {
    outline: none;
    background-color: transparent;
    color: #7d90be;
    border-bottom-color: #1b3471;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-menu li a {
    text-align: right;
    color: #7d90be;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-align: right;
}

.booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: auto;
    left: 0;
}

.booking-section2 .booking-form .form-group .btn-default {
    border: 1px solid #cfcfcf;
    padding: 16px 32px;
    border-radius: 5px;
}

.booking-form2 .form-group .btn-default {
    padding: 11px 32px;
    border-radius: 0;
    border-color: #dadada;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .filter-option,
.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-menu li a {
    text-align: left;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 32px;
    left: auto;
}

.booking-section2 .booking-form .form-group .btn-default {
    color: #909090;
}

.booking-section2 .booking-form .form-group .btn-default:hover,
.booking-section2 .booking-form .form-group .btn-default:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form2 .form-group .bootstrap-select .dropdown-toggle:hover,
.booking-form2 .form-group .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.booking-form2 .form-group .btn-default:hover,
.booking-form2 .form-group .btn-default:focus {
    border-bottom-color: #dadada;
}

.booking-form2 .form-group .bootstrap-select.btn-group .dropdown-menu li a span.text,
.bootstrap-select.btn-group:hover .dropdown-toggle .filter-option {
    color: #222222;
}

.booking-form2 .form-group .bootstrap-select.open .btn-default.active,
.booking-form2 .form-group .bootstrap-select.open .btn-default:active,
.booking-form2 .form-group .bootstrap-select.open>.dropdown-toggle.btn-default {
    background-color: transparent;
    border-color: #dadada;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.booking-form .bootstrap-select.btn-group .dropdown-toggle .caret,
.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret {
    top: 4px;
    border: none;
}

.booking-section2 .booking-form .bootstrap-select.btn-group .dropdown-toggle .caret {
    top: 35%;
}

.booking-section2 .booking-form .form-group .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 42px;
}

.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 35px;
    top: 13px;
}

.booking-form .bootstrap-select.btn-group .dropdown-toggle .caret::before,
.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    content: "\f107";
    font-family: 'FontAwesome';
    color: #7d90be;
}

.booking-section2 .booking-form .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    color: #909090;
}

.booking-form2 .bootstrap-select.btn-group .dropdown-toggle .caret::before {
    color: #afafaf;
}

.booking-form form .form-group input {
    text-align: center;
    padding-bottom: 14px;
    padding-top: 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    font-size: 12px;
    box-shadow: none;
    outline: none;
    color: #fff;
}

.booking-form form .form-group input::-webkit-input-placeholder {
    color: #7d90be;
}

.booking-form form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: #7d90be;
}

.booking-form form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: #7d90be;
}

.booking-form form .form-group input:-ms-input-placeholder {
    color: #7d90be;
}

.booking-form form .form-group select {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    color: #fff;
    padding-bottom: 9px;
    padding-top: 0;
    width: 100%;
    font-size: 12px;
    text-align: right;
}

.booking-form form .form-group input[type="submit"] {
    background-color: #fff;
    width: 100%;
    padding-top: 14px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
}

.content-block {
    /* padding-bottom: 50px; */
    border-bottom: 1px solid #eee;
}

.content-block h3 {
    font-size: 36px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 40px;
    position: relative;
    line-height: 50px;
}

.content-block h3::before {
    background-color: #d0d0d0;
    content: "";
    height: 3px;
    width: 114px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.content-block p {
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0.3px;
    padding-right: 20%;
    color: #666;
    margin-bottom: 60px;
}

.content-block .col-md-7 p::first-letter {
    color: #333;
    font-family: 'Merriweather', serif;
    font-size: 50px;
    font-weight: bold;
    float: left;
    padding-right: 5px;
}

.heading-test h3 {
    font-size: 36px;
    text-transform: uppercase;
    padding-bottom: 18px;
    margin-bottom: 18px;
    position: relative;
    line-height: 50px;
    font-weight: 600;
}

.heading-test h3::before {
    background-color: #d0d0d0;
    content: "";
    height: 3px;
    width: 114px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.heading-test p {
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.3px;
    padding-right: 20%;
    color: #353535;
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    padding: 11px 13px 10px 23px;
    border: 2px solid #0055df;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.52px;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    background-color: #fff;
}

.read-more i {
    margin-left: 40px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.read-more-left i {
    left: 14px;
}

.read-more::before {
    content: "";
    width: 52px;
    right: 0px;
    top: 0;
    bottom: 0;
    position: absolute;
    border-left: 15px solid transparent;
    border-top: 44px solid #0055df;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.read-more:hover {
    background-color: #0055df;
    color: #fff;
    text-decoration: none;
}

.read-more:hover::before {
    border-top-color: #fff;
}

.read-more:hover i {
    color: #0055df;
}

.read-more-1 {
    display: inline-block;
    padding: 11px 13px 10px 23px;
    border: 2px solid #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.52px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.read-more-1 i {
    margin-left: 40px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.read-more-left i {
    left: 14px;
}

.read-more-1::before {
    content: "";
    width: 52px;
    right: 0px;
    top: 0;
    bottom: 0;
    position: absolute;
    border-left: 15px solid transparent;
    border-top: 44px solid #0055df;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.read-more-1:hover {
    background-color: #0055df;
    color: #fff;
    text-decoration: none;
}

.read-more-1:hover::before {
    border-top-color: #fff;
}

.read-more-1:hover i {
    color: #0055df;
}

.heading-test-img img {
    width: 100%;
}

.heading-test-1-2 {
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 25px;
}

.section-header h3 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 0;
    padding-bottom: 30px;
    position: relative;
}

.section-header h3::before,
.section-header h3::after {
    content: "";
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section-header h3::before {
    background-color: #d0d0d0;
    bottom: 9px;
    width: 114px;
    height: 2px;
}

.section-header h3::after {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #d0d0d0;
}

.section-header p {
    font-size: 15px;
    line-height: 27px;
    margin-top: 15px;
    letter-spacing: 0.3px;
    color: #666;
    padding: 0 15%;
}


/* #to_top{
    z-index: 999;
    right:40px;
    bottom: 16px;
    position: fixed;
    opacity: 0;
    visibility: hidden;
} */


/* #to_top a{
    color: #fff;
    line-height: 50px;
    background-color:#0055df;
    /* border-radius: 50%; */


/* width: 50px; */


/* height: 50px; */


/* text-align: center;
    font-size: 20px;
    float: right;
    line-height: 47px;
    position: relative; */


/* }
#to_top a:after{
    border-top: 60px solid #613440;
    border-left: 25px solid transparent;
    content: none;
    display: inline-block;
    position: absolute;
    right: -30px;
    width: 30px;
    top: 0;
    bottom: 0;         
} */

.ui-datepicker {
    display: none;
    width: 294px;
    padding: 35px;
    cursor: default;
    text-transform: uppercase;
    font-family: Tahoma;
    font-size: 12px;
    background: #141517;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, .1), inset 0px 1px 1px rgb(0, 0, 0);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, .1), inset 0px 1px 1px rgb(0, 0, 0);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, .1), inset 0px 1px 1px rgb(0, 0, 0);
}


/* Calendar Header */

.ui-datepicker-header {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #d6d6d6;
}

.ui-datepicker-title {
    text-align: center;
}


/* Month */

.ui-datepicker-month {
    position: relative;
    padding-right: 15px;
    color: #565656;
}

.ui-datepicker-month:before {
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 5px;
    height: 5px;
    content: '';
    background: #a5cd4e;
    background: -moz-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a5cd4e), color-stop(100%, #6b8f1a));
    background: -webkit-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
    background: -o-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
    background: -ms-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
    background: linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


/* Year */

.ui-datepicker-year {
    padding-left: 8px;
    color: #a8a8a8;
}


/* Prev Next Month */

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: -2px;
    padding: 5px;
    cursor: pointer;
}

.ui-datepicker-prev {
    left: 0;
    padding-left: 0;
}

.ui-datepicker-next {
    right: 0;
    padding-right: 0;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: block;
    width: 5px;
    height: 10px;
    text-indent: -9999px;
    background-image: url(img/arrows.png);
}

.ui-datepicker-prev span {
    background-position: 0px 0px;
}

.ui-datepicker-next span {
    background-position: -5px 0px;
}

.ui-datepicker-prev-hover span {
    background-position: 0px -10px;
}

.ui-datepicker-next-hover span {
    background-position: -5px -10px;
}


/* Calendar "Days" */

.ui-datepicker-calendar th {
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: normal;
    color: #a8a8a8;
}

.ui-datepicker-calendar td {
    padding: 0 7px;
    text-align: center;
    line-height: 26px;
}

.ui-datepicker-calendar .ui-state-default {
    display: block;
    width: 26px;
    outline: none;
    text-decoration: none;
    color: #a8a8a8;
    border: 1px solid transparent;
}


/* Day Active State*/

.ui-datepicker-calendar .ui-state-active {
    color: #6a9113;
    border-color: #6a9113;
}


/* Other Months Days*/

.ui-datepicker-other-month .ui-state-default {
    color: #565656;
}

.offer-list {
    position: relative;
    height: 915.75px;
}

.offer-box tall {
    position: absolute;
    left: 0px;
    top: 0px;
}

.offer-box wide {
    position: absolute;
    left: 392px;
    top: 0px;
}

.offer-box wide {
    position: absolute;
    left: 392px;
    top: 303px;
}

.offer-box full {
    position: absolute;
    left: 0px;
    top: 607px;
}

.header-section {
    position: relative;
    z-index: 11;
}

.page-banner {
    padding-top: 30.3rem;
    height: 410px;
    background: url("../../img/userimg/about-banner.jpg") center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.page-banner .container {
    z-index: 9;
    position: relative;
}

.page-banner:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#about-banner {
    background-image: url("../../img/userimg/about-banner-page.jpg");
}

#gallery-banner {
    background-image: url("../../img/userimg/gallery-banner.jpg");
}

#room_bg_page {
    background-image: url("../../img/userimg/room-banner.jpg");
}

.page-banner h3 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    float: left;
    -webkit-text-shadow: 2px 2px rgba(39, 21, 26, 0.97);
    -moz-text-shadow: 2px 2px rgba(39, 21, 26, 0.97);
    -ms-text-shadow: 2px 2px rgba(39, 21, 26, 0.97);
    -o-text-shadow: 2px 2px rgba(39, 21, 26, 0.97);
    text-shadow: 2px 2px rgba(39, 21, 26, 0.97);
}

.page-banner .breadcrumb {
    float: right;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.page-banner .breadcrumb li {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.56px;
}

.page-banner .breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.page-banner .breadcrumb>li+li::before {
    color: #fff;
}

.page-banner .breadcrumb li.active {
    color: #e92262;
}

.contact-content h4 {
    font-size: 22px;
    letter-spacing: 0.72px;
    color: #313131;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-content>p {
    line-height: 27px;
    letter-spacing: 0.56px;
    color: #666;
    margin-bottom: 25px;
}

.contact input::-moz-placeholder,
.contact textarea::-moz-placeholder {
    color: #444;
}

.contact input::-webkit-input-placeholder,
.contact textarea::-webkit-input-placeholder {
    color: #444;
}

.contact-form .form-control {
    color: #444;
    ;
    height: auto;
    border: none;
    border-radius: 0;
    padding: 16px 22px;
    box-shadow: none;
    height: auto;
    margin-bottom: 0;
    /* -webkit-box-shadow: 3px 4px rgba(175, 175, 175, 0.18);
    -moz-box-shadow: 3px 4px rgba(175, 175, 175, 0.18);
    box-shadow: 3px 4px rgba(175, 175, 175, 0.18); */
}

.contact-form .form-control:focus {
    -webkit-box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.24);
}

.contact-form input[type="submit"],
.btn-sm {
    background-color: #0c3679;
    padding: 7px 15px;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.btn-sm {
    width: auto;
    padding: 6px 17px;
    /* border-radius: 4px; */
}

.contact-form input[type="submit"]:hover,
.btn-sm:hover,
.btn-sm:focus {
    background-color: #0055df;
    color: #fff;
}

.contact-form input[type="button"] {
    background-color: #5d2f3a;
    padding: 15px;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.contact-form input[type="button"]:hover {
    background-color: #1F3139;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: #969595;
}

.contact-form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #969595;
}

.contact-form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #969595;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #969595;
}

.alert-msg {
    color: #50B948;
    display: inline-block;
    width: 100%;
    margin: 10px 15px 0 0;
}

.alert-msg-success {
    color: #50B948;
}

.alert-msg-failure {
    color: #FF0000;
}

.contact-content .contact-detail {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-content .contact-detail::before {
    background-color: #f1f1f1;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 1px;
    left: 50px;
    position: absolute;
    right: 0;
}

.contact-content .contact-detail i {
    background-color: #5d2f3a;
    line-height: 34px;
    position: absolute;
    left: 0;
    top: 0;
    height: 34px;
    width: 34px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border-radius: 100%;
}

.contact-content .contact-detail h5 {
    font-size: 16px;
    color: #313131;
    text-transform: uppercase;
    letter-spacing: 0.56px;
    margin-bottom: 15px;
}

.contact-content .contact-detail p {
    color: #504e4e;
    font-size: 15px;
    letter-spacing: 0.52px;
    line-height: 24px;
    margin-bottom: 0;
    font-size: 12;
}

.contact-content .contact-detail p span,
.contact-content .contact-detail p>a {
    display: block;
}

.contact-content .contact-detail p a {
    color: #d43c44;
    text-decoration: none;
    font-size: 16px;
}

.contact-content .contact-detail p a:hover {
    color: #5d2f3a;
}

.contact-content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.contact-content ul li {
    display: inline-block;
    margin-right: 5px;
}

.contact-content ul li:last-child {
    margin-right: 0;
}

.contact-content ul li a {
    float: left;
    width: 36px;
    height: 37px;
    text-align: center;
    line-height: 37px;
    background-color: #f1f1f1;
    color: #969595;
    font-size: 12px;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.contact-content ul li a:hover {
    background-color: #5d2f3a;
    color: #fff;
}

.map-contact {
    margin-bottom: 0;
    padding: 0;
}

.map-contact iframe {
    height: 400px;
    width: 100%;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.portfolio-categories {
    border-bottom: 1px solid #e4e4e4;
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-categories li {
    display: inline-block;
    margin: 0 10px 20px;
}

.portfolio-categories li a {
    padding: 6px 20px;
    text-transform: uppercase;
    color: #666;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
}

.portfolio-categories li a.active {
    border: 1px solid #bababa;
    color: #222;
}

.portfolio-box {
    border: 2.5px solid #fff;
}

.portfolio-box a::before {
    background-color: rgba(42, 169, 224, 0.85);
    bottom: 0;
    content: "";
    display: inline-block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.portfolio-box:hover a::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}

.portfolio-box.wide {
    width: 66.6666%;
}

.portfolio-box h3 {
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    text-transform: uppercase;
    transform: translate(0%, -50%) scale(0);
    -webkit-transform: translate(0%, -50%) scale(0);
    -moz-transform: translate(0%, -50%) scale(0);
    -ms-transform: translate(0%, -50%) scale(0);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    margin: 0;
    color: #fff;
}

.portfolio-box h3 span::before,
.portfolio-box h3 span::after {
    margin-left: 10px;
    margin-right: 10px;
}

.portfolio-box h3 span::before {
    content: "[";
}

.portfolio-box h3 span::after {
    content: "]";
}

.portfolio-box:hover h3 {
    transform: translate(0%, -50%) scale(1);
    -webkit-transform: translate(0%, -50%) scale(1);
    -moz-transform: translate(0%, -50%) scale(1);
    -ms-transform: translate(0%, -50%) scale(1);
}

.ow-pagination {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0;
    display: inline-block;
}

.ow-pagination ul {
    margin: 0;
}

.ow-pagination ul li a {
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    text-align: center;
    padding: 0;
    font-size: 16px;
    color: #999;
}

.ow-pagination .pagination>li:first-child>a,
.ow-pagination .pagination>li:first-child>span,
.ow-pagination .pagination>li:last-child>a,
.ow-pagination .pagination>li:last-child>span {
    border-radius: 0;
}

.ow-pagination ul li a:hover {
    background-color: #0a1f54;
    color: #fff;
}

.portfolio-categories {
    border-bottom: 1px solid #e4e4e4;
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-categories li {
    display: inline-block;
    margin: 0 10px 20px;
}

.portfolio-categories li a {
    padding: 6px 20px;
    text-transform: uppercase;
    color: #666;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
}

.portfolio-categories li a.active {
    border: 1px solid #bababa;
    color: #222;
}

.portfolio-box {
    border: 2.5px solid #fff;
}

.portfolio-box a::before {
    background-color: rgba(93, 47, 58, 0.6);
    bottom: 0;
    content: "";
    display: inline-block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.portfolio-box:hover a::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}

.portfolio-box.wide {
    width: 66.6666%;
}

.portfolio-box h3 {
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    text-transform: uppercase;
    transform: translate(0%, -50%) scale(0);
    -webkit-transform: translate(0%, -50%) scale(0);
    -moz-transform: translate(0%, -50%) scale(0);
    -ms-transform: translate(0%, -50%) scale(0);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    margin: 0;
    color: #fff;
}

.portfolio-box h3 span::before,
.portfolio-box h3 span::after {
    margin-left: 10px;
    margin-right: 10px;
}

.portfolio-box h3 span::before {
    content: "[";
}

.portfolio-box h3 span::after {
    content: "]";
}

.portfolio-box:hover h3 {
    transform: translate(0%, -50%) scale(1);
    -webkit-transform: translate(0%, -50%) scale(1);
    -moz-transform: translate(0%, -50%) scale(1);
    -ms-transform: translate(0%, -50%) scale(1);
}

.ow-pagination {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0;
    display: inline-block;
}

.ow-pagination ul {
    margin: 0;
}

.ow-pagination ul li a {
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    text-align: center;
    padding: 0;
    font-size: 16px;
    color: #999;
}

.ow-pagination .pagination>li:first-child>a,
.ow-pagination .pagination>li:first-child>span,
.ow-pagination .pagination>li:last-child>a,
.ow-pagination .pagination>li:last-child>span {
    border-radius: 0;
}

.ow-pagination ul li a:hover {
    background-color: #0a1f54;
    color: #fff;
}

.photo-img {
    margin-top: 60px;
}

.images-gallery a img {
    width: 100%;
}

.common-pad-inner {
    padding-top: 4.4em;
    padding-bottom: 2.4em;
}

.sec-header3 {
    position: relative;
}

.sec-header3 h2 {
    color: #0e1322;
    font: 2.43em/1em "Playball", sans-serif;
    margin: 0;
    padding: 0;
}

.sec-header3 h3 {
    color: #aaaaaa;
    font-size: 14px;
    margin: 0 0 1.1em;
    padding: 0;
    font-style: italic;
    position: relative;
    margin-top: 10px;
}

.sec-header3 h3:after {
    content: '';
    position: absolute;
    bottom: 7px;
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #5d2f3a;
    margin: 0 0 0 12px;
}

.sec-header3 h2 {
    color: #0e1322;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.sec-header3 p {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.3px;
    color: #666;
    margin-bottom: 25px;
}

.common-pad-room {
    padding-top: 2.4em;
    padding-bottom: 2.4em;
}

.news-wrapper {
    position: relative;
    background: #f4f4f4;
}

.common-pad-room .news-wrapper:last-child .room-wrapper {
    margin-bottom: 0;
}

.room-wrapper {
    overflow: hidden;
    position: relative;
    border: 1px solid #e9e9e9;
    background: #fff;
    padding: 0.8em;
    margin-bottom: 15px;
}

.room-wrapper .media-body {
    vertical-align: middle;
    padding-left: 0.5em;
    padding-right: 1em;
    position: relative;
}

.room-wrapper .media-body h2 {
    color: #0e1322;
    font-size: 26px;
    /* margin: 0; */
    padding: 0;
    position: relative;
    margin-top: 0;
}

.room-wrapper .media-body h2:after {
    content: '';
    position: absolute;
    bottom: 7px;
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #5d2f3a;
    margin: 0 0 0 12px;
}

.room-wrapper .media-body p {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.3px;
    color: #666;
    margin-bottom: 15px;
}

.room-wrapper .media-body h3 {
    color: #000;
    margin: 0 0 0.5em;
    padding: 0;
    font: 600 1.23em/1em "Open Sans", sans-serif;
    font-style: italic;
}

.room-wrapper .media-body h6 {
    color: #5d2f3a;
    /* margin: 0; */
    padding: 0;
    font-size: 15px;
    line-height: 27px;
    font-style: italic;
    margin-bottom: 0;
}

.room-wrapper .media-right {
    background: #f4f4f4;
    text-align: center;
    vertical-align: middle;
    width: 14%;
    padding-left: 0;
}

.room-wrapper .media-right p {
    color: #242424;
    font-size: 35px;
    padding: 0;
    margin: 0 0 0.5em;
}

.room-wrapper .media-right p span {
    display: block;
    font-size: 16px;
    font-style: italic;
    color: #888;
}

.room-wrapper .media-right a {
    background: #5d2f3a;
    padding: 9px 20px;
    margin: 0;
    letter-spacing: 0.6px;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
}

.room-wrapper .media-right a:hover {
    background: #1a1a1c;
    color: #fff;
}

.single-room-wrapper .room-dec-wrapper h2 {
    color: #0e1322;
    font-size: 30px;
    margin: 0 0 1em;
    padding: 0;
    position: relative;
    margin-top: 40px;
}

.single-room-wrapper .room-dec-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 7px;
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #5d2f3a;
    margin: 0 0 0 12px;
}

.single-room-wrapper .room-dec-wrapper p {
    color: #898989;
    margin: 0 0 2em;
    padding: 0;
    font-size: 15px;
    line-height: 27px;
    color: #666;
    margin-bottom: 25px;
}

.single-room-wrapper .room-fac-wrapper {
    position: relative;
}

.single-room-wrapper .room-fac-wrapper h2,
.single-room-wrapper .room-overview h2,
.single-room-wrapper .question-wrapper h2 {
    color: #0e1322;
    font-size: 30px;
    margin: 0 0 1em;
    padding: 0;
    position: relative;
}

.single-room-wrapper .room-fac-wrapper h2:after,
.single-room-wrapper .room-overview h2:after,
.single-room-wrapper .question-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 7px;
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #5d2f3a;
    margin: 0 0 0 12px;
}

.single-room-wrapper .ro-facilitie {
    position: relative;
}

.single-room-wrapper .ro-facilitie ul {
    margin: 0;
    padding: 0;
}

.single-room-wrapper .ro-facilitie ul li {
    margin: 0 1%;
    padding: 0;
    width: 18%;
    float: left;
    border-top: 4px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    display: table;
}

.single-room-wrapper .ro-facilitie ul li .facilitie-i-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    padding: 2em 0;
}

.single-room-wrapper .ro-facilitie ul li .facilitie-i-box h3 {
    font-size: 16px;
    margin: 0 0 0.8em;
    padding: 0;
    text-align: center;
    color: #0e1322;
    text-transform: uppercase;
}

.single-room-wrapper .room-overview {
    position: relative;
    overflow: hidden;
    margin-top: 3em;
}

.single-room-wrapper .room-overview code {
    color: #000;
    text-transform: uppercase;
    background: transparent;
    font-size: 15px;
}

.single-room-wrapper .room-overview .table>tbody>tr>th {
    width: 35%;
    padding: 13px 30px;
    border-top: 1px solid transparent;
}

.single-room-wrapper .room-overview .table>tbody>tr>td {
    border-top: 1px solid transparent;
    color: #898989;
    padding: 13px 30px;
    font-size: 15px;
}

.single-room-wrapper .room-overview h5 {
    font-style: italic;
    padding: 0;
    margin-top: 1em;
    margin: 0 0 2em;
    font-size: 15px;
    line-height: 27px;
    color: #666;
    margin-bottom: 25px;
}

.single-room-wrapper .question-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f4f6;
    margin: 5em 0 0;
    padding-top: 3em;
    padding-bottom: 3em;
}

.single-room-wrapper .question-wrapper .form-control {
    margin-bottom: 20px;
    border-radius: 0;
    font: 1em/1.5em "Open Sans", sans-serif;
    color: #959595;
    padding: 11px 20px;
    border: 1px solid #e1e1e1;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.room-overview a {
    padding: 0.8em 2em;
}

.res-btn {
    border: none;
    outline: none;
    background: #1a1a1c;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    display: inline-block;
    border-radius: 3px;
    transition: all 0.5s ease;
    padding: 10px 25px;
}

.res-btn:hover {
    background: #5d2f3a;
    color: #fff;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-carousel .owl-controls .owl-nav .owl-next {
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    background: #2a2919;
    margin-top: 23px;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-theme .owl-controls .owl-nav [class*=owl-] {
    margin: 0;
    padding: 15px 6px;
    border-radius: 0;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-carousel .owl-controls .owl-nav .owl-prev {
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    background: #2a2919;
    margin-top: 23px;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-theme .owl-controls .owl-nav [class*=owl-] {
    margin: 0;
    padding: 15px 6px;
    border-radius: 0;
    margin-top: 30px;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .button.secondary.url {
    width: 20%;
    float: left;
    padding: 0 2px;
    display: block;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .button.secondary.url img {
    width: 100%;
    margin: 0;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .button.secondary img {
    margin-right: 0.7px;
}

.book-r-form {
    background: #f1eff2;
    margin-bottom: 6em;
    overflow: hidden;
    width: 100%;
}

.book-r-form .room-price {
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    text-align: center;
    padding: 3em 0 1em;
}

.book-r-form .room-price h6 {
    margin: 0 0 0.8em;
    padding: 0;
    text-transform: uppercase;
    color: #848484;
    font-size: 14px;
}

.book-r-form .room-price p {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 36px;
    text-align: center;
}

.book-r-form .room-price p span {
    font: 600 0.4em/1em "Open Sans", sans-serif;
    color: #848484;
    text-transform: uppercase;
}

.book-r-form .book-form {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.book-r-form .book-form b {
    display: block;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 0.8em;
}

.book-r-form .book-form .form-control[readonly] {
    height: 39px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    font: 400 1.0715em/1em 'PT Serif', serif;
    font-style: italic;
    color: #4b4b4b;
    margin-bottom: 20px;
}

.book-r-form .select-box .select-menu+.ui-selectmenu-button {
    width: 100% !important;
    border-radius: 0;
    padding: 0px 12px;
    border: 1px solid #E5E5E5;
    height: 40px;
    background: #fff;
    outline: none;
    color: #898989;
}

.single-sidebar-widget .popular-post .content h6 {
    color: #242424;
    font-size: 25px;
    margin: 0.6em 0 0;
    padding: 0;
}

.single-sidebar-widget .popular-post .content h6 span {
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    color: #999999;
}

.single-sidebar-widget .popular-post .content span {
    color: #999999;
    font: 400 0.93em/1em "Open Sans", sans-serif;
    display: block;
    margin-top: 1.2em;
}

.book-r-form .book-form .res-btn {
    width: 100%;
    background: #5d2f3a;
}

.res-btn {
    border: none;
    outline: none;
    background: #1a1a1c;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    border-radius: 3px;
    transition: all 0.5s ease;
    padding: 10px 25px;
}

.book-r-form .book-form .res-btn:hover {
    background: #1a1a1c;
}

.form-date span {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.test-img {
    width: 100%;
    padding: 8px;
    margin-bottom: 30px;
}

.test-img {
    background: #fff;
}

.test-img option {
    font-size: 16px;
    font-style: italic;
    padding: 5px 20px;
    border-bottom: 1px solid #E1E1E1;
    text-transform: capitalize;
}

.test-img {
    background: #fff;
    border-color: #565f7a;
    font-weight: normal;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper .button.secondary.url img {
    width: 100%;
    margin: 0;
}

#owl-demo .item img:hover {
    opacity: 0.2;
}

#owl-demo .item {
    margin: 3px;
}

#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}

.single-room-wrapper .room-slider-wrapper {
    position: relative;
    margin-bottom: 3em;
    overflow: hidden;
}

.single-room-wrapper .room-slider-wrapper .single-r-wrapper {
    position: relative;
}

.single-room-wrapper {
    position: relative;
}

.room-detail-slider {
    float: left;
    width: 100%;
    margin: 0 0 35px;
    position: relative;
}

.room-detail-slider .slider-for {
    margin: 0 0 10px;
}

.slick-slider {
    float: left;
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.arrows-radius .slick-arrow {
    border-radius: 100%;
}

.arrows .slick-arrow {
    z-index: 1;
    width: 51px;
    height: 51px;
    font-size: 20px;
    position: absolute;
    text-align: center;
    border: 1px solid #e9e8e8;
}

.slick-prev {
    left: 0px;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.room-detail-slider .slider-for .slick-list {
    margin: 0;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-list {
    margin: 0 -15px;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

figure {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.room-detail-slider .slider-nav .slick-slide {
    padding: 0 5px;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.th-cl,
.time i,
.tweet_list li a:hover,
.page-navigation a:hover,
.weather-inner i,
.menu-list:hover .title a,
.arrows .slick-arrow:before,
.chr-services:hover .title a,
.input-field input:focus,
.error-page .chr-btn:hover,
.header-hotel .chr-top-info i,
.event-small .blog-meta li a i,
.readmore-btn:hover,
.title a:hover,
.breadcrumb>li.active a,
.breadcrumb>li.active,
.blog-meta li a:hover,
.chr-blog-1:hover .title a,
.testimonial-thumb .title a,
.footer-1 address:before,
.fancy-btn:hover,
.chr-price-thumb h6,
.comment-reply-link:before,
.comment-reply-link:hover,
.widget-event-info .title i,
.chr-blog-small:hover .title a,
.room-list-view:hover .title a,
.port-filter li .filter.active,
.port-filter li .filter:hover,
.widget-event-thumb .blog-meta li a i,
.chr-staff-thumb figure .chr-social li a:hover,
.widget-info .flex-text a:hover,
.widget-search .input-field .search_icon:before,
.chr-room-thumb:hover .title a,
.news-letter .input-field input[type="text"]:focus label::before,
.news-letter .input-field input[type="text"]:focus label:hover::before,
.hotel-footer .about-text a:hover,
.header-hotel .navigation ul li:hover>a,
.header-hotel .navigation ul li.active>a,
.header-hotel.absolute .navigation ul li:hover>a,
.header-hotel.absolute .navigation ul li.active>a {
    color: #ffb600;
}

.arrows .slick-arrow {
    z-index: 1;
    width: 51px;
    height: 51px;
    font-size: 20px;
    position: absolute;
    text-align: center;
    border: 1px solid #e9e8e8;
}

.arrows-radius .slick-arrow.slick-prev {
    right: auto;
    left: 20px;
}

.arrows-radius .slick-arrow.slick-next {
    left: auto;
    right: 20px;
}

.arrows .slick-arrow:before {
    top: 50%;
    left: 0;
    right: 0;
    content: "\f104";
    position: absolute;
    text-align: center;
    font-family: 'fontawesome';
    transform: translateY(-55%);
    -o-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -webkit-transform: translateY(-55%);
}

.arrows .slick-arrow.slick-next:before {
    left: auto;
    right: 45%;
    content: "\f105";
}

.arrows .slick-arrow:hover:before {
    color: #fff;
}

.arrows-radius .slick-arrow {
    border-radius: 100%;
}

.arrows-radius .slick-arrow.slick-prev {
    right: auto;
    left: 20px;
}

.arrows-radius .slick-arrow.slick-next {
    left: auto;
    right: 20px;
}

.arrows-top {
    padding: 34px 0 0px;
}

.arrows-top .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translate(0%);
    -o-transform: translate(0%);
    -ms-transform: translate(0%);
    -moz-transform: translate(0%);
    -webkit-transform: translate(0%);
}

.arrows-top .slick-arrow.slick-prev {
    right: auto;
    left: 46%;
}

.arrows-top .slick-arrow.slick-next {
    left: auto;
    right: 46%;
}

.arrows-bottom {
    padding: 0 0 34px;
}

.arrows-bottom .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translate(0%);
    -o-transform: translate(0%);
    -ms-transform: translate(0%);
    -moz-transform: translate(0%);
    -webkit-transform: translate(0%);
}

.arrows-bottom .slick-arrow.slick-prev {
    right: auto;
    left: 46%;
}

.arrows-bottom .slick-arrow.slick-next {
    left: auto;
    right: 46%;
}

.th-bg,
.tweet_list li i,
.ocr-button.hv-th-bg:hover,
.chr-btn.th-bg,
.price-tag:hover,
.room-list-view figure,
.menu-list figure:before,
.price-table:hover .title,
.chr-spa-thumb:hover>span,
.chr-staff-thumb figure:before,
.chr-room-thumb:hover .price-tag,
.chr-pagination .page-numbers.current,
.chr-pagination .page-numbers:hover,
.chr-social li a:hover,
.chr-blog-1:hover .date-box,
.gallary-thumb figure:before,
.headind-1 .title:after,
.arrows .slick-arrow:hover,
.dot-style-1 li.slick-active button,
.chr-blog-small figure:before,
.widget_categories li:hover,
.widget_archive li:hover,
.comingsoon-page-2,
.chr-contact-thumb:hover,
.booking-form .input-field .chr-btn:hover,
.chr-blog-small:hover figure .s-date-box,
.headind-1 .title:before,
.chr-sr-list li:before,
.header-hotel .navigation ul li.active>a:after,
.header-hotel .navigation ul li.active>a:before,
.header-hotel .navigation ul li:hover>a:after,
.header-hotel .navigation ul li:hover>a:before,
.options li:hover,
.widget-title span:before,
.widget-title span:after,
.main-services-tab li.active a:hover,
.main-services-tab li.active a,
.main-services-tab li:hover a,
.aminities-thumb:hover,
.dl-menuwrapper button,
.dl-menuwrapper li a:hover,
.navigation ul li .children li:hover>a {
    background-color: #ffb600;
}

.home-date span {
    background-color: transparent;
    border: transparent;
    position: relative;
    top: -6px;
    left: -15px;
    color: #fff;
}

input::placeholder {
    /*color: #fff!important;*/
}

.booking-form2 {
    display: inline-block;
    width: 100%;
}

.booking-form2 h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 0.72px;
    margin-bottom: 30px;
    font-weight: bold;
    margin-top: 30px;
}

.booking-form2 .form-group {
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

.booking-form2 .form-group>i {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #afafaf;
}

.booking-form2 .form-control {
    border-color: #bfbfbf;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    height: 40px;
    padding: 6px 10px;
    font-size: 15px;
    color: #222;
}

.booking-form2 .form-group select {
    padding-bottom: 10px;
    padding-top: 10px;
    color: #222;
    /* text-transform: uppercase; */
    font-size: 15px;
}

.booking-form2 .form-group input {
    padding-bottom: 10px;
    padding-top: 10px;
    color: #222;
    font-size: 15px;
}

.booking-form2 textarea.form-control {
    height: 127px;
    color: #222;
}

.booking-form2 .form-group:last-child {}

.booking-form2 .form-group button.read-more {
    background-color: transparent;
}

.booking-form2 .form-group button.read-more:hover {
    background-color: #0c3679;
}

.booking-form2 .form-control::-webkit-input-placeholder {
    color: #222!important;
    /* text-transform: uppercase; */
}

.booking-form2 .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #222!important;
    text-transform: uppercase;
}

.booking-form2 .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #222;
    text-transform: uppercase;
}

.booking-form2 .form-control:-ms-input-placeholder {
    color: #222!important;
    text-transform: uppercase;
}

.widget-area .widget_features .widget-title,
.widget-area .widget_room .widget-title {
    padding-bottom: 0;
    margin-bottom: 35px;
}

.booking-test {
    border-color: #dadada;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    height: auto;
    padding: 12px 30px;
    font-size: 13px;
    color: #222;
    width: 100%;
}


/*Responsive Style*/

@media(max-width:1600px) and (min-width:1200px) {
    .heading-test h3 {
        font-size: 30px;
        line-height: 35px;
    }
    .top-header {
        padding: 20px 0;
    }
    .slider-section .carousel-caption h6 {
        font-size: 16px;
    }
    .slider-section .carousel-caption h2 {
        font-size: 50px;
    }
    .slider-section .carousel-control {
        top: 49%;
    }
    .goto-next {
        bottom: 26px;
    }
    .slider-section .carousel-control {
        top: 60%;
    }
}

@media(max-width:1600px) and (min-width:1500px) {
    .slider-section .carousel-caption {
        top: 41rem;
    }
}

@media(max-width:1199px) and (min-width:992px) {
    .ow-navigation .nav.navbar-nav li>a {
        padding: 20px 22px;
    }
    .room-wrapper .media-right {
        width: 20%!important;
    }
    .menu-block .book-now a::after {
        left: -29px;
    }
    .slider-section .carousel-control {
        top: 60%;
    }
    .goto-next {
        display: none;
    }
    .ow-navigation::after {
        right: -29px;
    }
    .top-header {
        padding: 20px 0;
    }
    .slider-section .carousel-caption {
        top: 75%;
    }
    .slider-section .carousel-caption>a {
        margin-top: 10px;
    }
    .booking-form form .form-group {
        width: 50%;
    }
    .input-form {
        text-align: left!important;
        padding: 0!important;
    }
    .menu-block {
        margin-top: 0px;
    }
    .slider-section .carousel-caption h6 {
        font-size: 15px;
    }
    .slider-section .carousel-caption h2 {
        font-size: 50px;
    }
    .heading-test h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .offer-list {
        height: 739.75px;
    }
    .booking-form {
        margin-bottom: 0px;
    }
}

@media(max-width: 991px) and (min-width: 768px) {
    .offer-list {
        height: 570.75px;
    }
    .room-wrapper .media-left,
    .room-wrapper .media-right,
    .room-wrapper .media-body {
        display: block;
        padding: 15px;
    }
    .slider-section .carousel-control {
        top: 51%;
    }
    .menu-block .book-now a::after {
        border-top: 46px solid #5d2f3a;
    }
    .menu-block .book-now a {
        padding: 14.5px 0;
    }
    .room-wrapper .media-right {
        width: 100%;
    }
    .header-1,
    .header-section.navbar-fixed-top {
        position: relative;
    }
    .logo-block {
        text-align: center;
    }
    .logo-block img {
        /* height: 80px; */
        width: 90px;
    }
    .top-header .contact-detail {
        text-align: center;
        margin-top: 3rem;
    }
    .contact-detail>div {
        margin-bottom: 20px;
        border-right: none;
        text-align: center;
    }
    .media-left img {
        width: 100%;
    }
    .menu-block {
        margin-top: 0px;
    }
    .page-banner .breadcrumb {
        float: left;
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
    }
    .page-banner h3 {
        font-size: 30px;
    }
    .booking-form {
        margin-bottom: 0px;
    }
    .heading-test h3 {
        margin-bottom: 6px;
        padding-bottom: 6px;
        font-size: 20px;
        line-height: 30px;
    }
    .ow-navigation .nav.navbar-nav li>a {
        padding: 14px 9px;
    }
    .ow-navigation::after {
        border-bottom: 46px solid #fff;
    }
    .slider-section .carousel-caption>a {
        padding: 9px 0 9px;
    }
    .top-header {
        padding: 10px;
    }
    .direction-section .section-header h3 {
        margin-bottom: 0px;
    }
    .section-header h3 {
        margin-bottom: 20px;
    }
    .direction-section .section-header {
        margin-bottom: 25px;
    }
    .section-header p {
        margin-top: 15px;
        padding: 0;
    }
    .price-box .price-img-box h4 {
        font-size: 45px;
    }
    .price-box .price-img-box h4 span {
        font-size: 16px;
    }
    .widget_gallery {
        margin-top: 40px;
    }
    .widget_newsletter {
        margin-top: 40px;
    }
    .top-footer ul.social_widget {
        text-align: center;
    }
    .booking-form form .form-group {
        width: 50%;
    }
    .booking-form h4 span {
        display: initial;
        padding-left: 4px;
    }
    .slider-section .carousel-caption h6 {
        font-size: 14px;
    }
    .slider-section .carousel-caption h2 {
        font-size: 45px;
    }
    .slider-section .carousel-caption {
        top: 53%;
    }
    .input-form {
        text-align: left!important;
    }
    .goto-next {
        display: none;
    }
    .slider-section .carousel-caption>a {
        margin-top: 10px;
    }
    .home-date span {
        left: -140px;
    }
    .booking-form h4 {
        border-right: none;
    }
}

@media(max-width:767px) and (min-width:480px) {
    .logo-block {
        display: none;
    }
    .booking-form h4 {
        border-right: none;
    }
    .portfolio-categories li a {
        padding: 6px 18px;
    }
    #sync2.owl-theme .owl-next {
        top: 50px!important;
    }
    #sync2.owl-theme .owl-prev {
        top: 50px!important;
    }
    .media-left img {
        width: 100%;
    }
    .portfolio-categories {
        padding: 0px;
    }
    .page-banner .breadcrumb {
        float: left;
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
    }
    .goto-next {
        display: none;
    }
    .page-banner h3 {
        font-size: 28px;
    }
    .map-contact {
        margin-bottom: 40px;
    }
    .contact-content ul {
        text-align: center;
    }
    .page-banner {
        padding-bottom: 110px;
        padding-top: 110px;
    }
    .page-banner {
        height: 300px;
    }
    .top-header {
        padding-bottom: 25px;
        padding-top: 25px;
    }
    .top-header .contact-detail {
        text-align: center;
        margin-top: 0px;
    }
    .contact-detail>div {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .menu-block .book-now a {
        display: none;
    }
    .header-1 {
        position: relative;
        width: auto;
    }
    .ow-navigation {
        padding: 0;
        width: 100%;
        background-color: #fff;
    }
    .ow-navigation .navbar-brand {
        font-size: 30px;
        height: auto;
        letter-spacing: 2.1px;
        padding: 0;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 31px;
        margin: 24px 0;
    }
    .ow-navigation .navbar-brand,
    .ow-navigation .navbar-brand:hover,
    .ow-navigation .navbar-brand:focus {
        color: #5d2f3a;
    }
    .ow-navigation .navbar-collapse {
        border-top: none;
        box-shadow: none;
        width: 100%;
        overflow: auto !important;
        padding-bottom: 10px;
    }
    .ow-navigation .navbar-collapse.collapse {
        display: none!important;
    }
    .ow-navigation .navbar-nav {
        float: none!important;
        border-top: 1px solid #e7e7e7;
    }
    .ow-navigation .navbar-header {
        float: none;
    }
    .ow-navigation .navbar-toggle {
        display: block;
        background-color: #fff;
        margin-bottom: 23px;
        margin-top: 23px;
        margin-right: 0px;
        border-radius: 0;
        border-color: #5d2f3a;
    }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover,
    .navbar-fixed-top .ow-navigation .navbar-toggle .icon-bar,
    .ow-navigation .navbar-toggle .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:focus,
    .navbar-fixed-top .ow-navigation .navbar-toggle:hover,
    .ow-navigation .navbar-default .navbar-toggle:focus,
    .ow-navigation .navbar-default .navbar-toggle:hover,
    .ow-navigation .navbar-toggle:hover {
        background-color: #5d2f3a;
    }
    .navbar-default .navbar-toggle:focus .icon-bar,
    .navbar-default .navbar-toggle:hover .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:focus .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:hover .icon-bar,
    .ow-navigation .navbar-toggle:hover .icon-bar {
        background-color: #fff;
    }
    .ow-navigation .navbar-collapse>.nav.navbar-nav>li {
        margin: 0;
    }
    .ow-navigation .navbar-nav>li {
        display: inline-block;
        float: none;
        width: 100%;
    }
    .ow-navigation .nav.navbar-nav li>a,
    .ow-navigation .navbar-collapse>ul>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }
    .ow-navigation .nav.navbar-nav li>a::before {
        background-image: none;
    }
    .ow-navigation .navbar-text {
        float: none;
        margin: 15px 0;
    }
    .ow-navigation .nav.navbar-nav>li.active>a,
    .ow-navigation .nav.navbar-nav>li.active:hover>a,
    .ow-navigation .nav.navbar-nav>li.active:focus>a,
    .ow-navigation .nav.navbar-nav>li:hover>a,
    .ow-navigation .nav.navbar-nav>li:focus>a,
    .ow-navigation .nav.navbar-nav>li>a:hover,
    .ow-navigation .nav.navbar-nav>li>a:focus,
    .ow-navigation .dropdown-menu li:hover>a,
    .ow-navigation .dropdown-menu li>a:hover {
        color: #d43c44;
    }
    /* since 3.1.0 */
    .ow-navigation .navbar-collapse.collapse.in {
        display: block!important;
        background-color: #5c2f3b;
    }
    .ow-navigation .collapsing {
        overflow: hidden!important;
    }
    .ow-navigation .dropdown-menu {
        background-color: transparent;
        border: 0 none;
        margin-top: 0;
        padding-left: 10px;
        padding-top: 0;
        position: relative;
        width: 100%;
        box-shadow: none;
    }
    /* Switch */
    .ow-navigation .ddl-switch {
        background-color: #5d2f3a;
        cursor: pointer;
        font-size: 18px;
        padding: 1.5px 5px;
        position: absolute;
        right: 0;
        z-index: 9999;
        top: 6px;
        color: #fff;
    }
    .ow-navigation .ddl-active>.ddl-switch:before {
        content: "\f106";
    }
    .menu-block {
        margin-top: 0px;
    }
    .ow-navigation::after {
        display: none;
    }
    .ow-navigation .navbar-brand {
        display: inline-block;
    }
    .ow-navigation .navbar-header {
        position: relative;
    }
    .ow-navigation .dropdown-menu li>a:hover {
        color: #5d2f3a;
    }
    .navbar-nav {
        margin: auto;
    }
    .slider-section .carousel-caption h6 {
        font-size: 11px;
    }
    .slider-section .carousel-caption h2 {
        font-size: 40px;
    }
    .slider-section .carousel-caption>a {
        margin-top: 20px;
        padding: 10px 0 6px;
    }
    .booking-form form .form-group {
        width: 50%;
        margin-bottom: 10px;
    }
    .booking-form h4 span {
        display: initial;
        padding-left: 4px;
    }
    .heading-test h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .booking-form {
        margin-bottom: 0px;
    }
    .offer-list {
        height: 1506.75px;
    }
    .section-header h3 {
        padding-bottom: 28px;
    }
    .section-header p {
        margin-top: 12px;
    }
    .section-header p {
        padding: 0px;
    }
    .price-box .price-img-box h4 {
        font-size: 40px;
    }
    .price-box .price-img-box h4 span {
        font-size: 15px;
    }
    .price-box .price-img-box h4 sub {
        font-size: 13px;
    }
    .widget_newsletter {
        margin-top: 30px;
    }
    .widget_gallery {
        margin-top: 30px;
    }
    .top-footer ul.social_widget {
        text-align: center;
    }
    .offer-box,
    .offer-box.wide,
    .offer-box.full {
        display: block;
        left: auto !important;
        margin: 0 auto;
        max-width: 100%;
        width: 385px;
        position: relative !important;
        top: 0 !important;
        float: none;
    }
    .offer-box.wide img,
    .offer-box.full img {
        height: 285px;
    }
    .offer-detail .price-detail {
        width: 100%;
        text-align: center;
    }
    .offer-box:hover .offer-detail h3 {
        border-bottom: 3px solid #fff;
        border-right: none;
        padding: 10px 0;
        text-align: center;
    }
    .offer-box:hover .offer-detail h3 span,
    .offer-box:hover .offer-detail .price-detail {
        display: inline-block;
    }
    .offer-detail h3,
    .offer-box:hover .offer-detail h3 {
        font-size: 16px;
    }
    .offer-box:hover .offer-detail h3 {
        padding-right: 20px;
    }
    .offer-detail .price-detail {
        padding-left: 20px;
    }
    .heading-test p {
        padding-right: 0px;
    }
    .contact-detail>div {
        border-right: none;
    }
    .contact-detail>div:last-child {
        margin-top: 10px;
    }
    .dir-box+.dir-box {
        margin-left: 20px;
        padding-left: 30px;
    }
    .ow-navigation .ddl-switch {
        display: initial !important;
    }
    .ow-navigation ul li>.dropdown-menu {
        display: none;
    }
    .single-room-wrapper .room-dec-wrapper h2 {
        font-size: 23px;
        margin: 0;
        margin-top: 20px;
    }
    .single-room-wrapper .room-fac-wrapper h2,
    .single-room-wrapper .room-overview h2,
    .single-room-wrapper .question-wrapper h2 {
        font-size: 23px;
    }
    .common-pad-inner {
        padding-top: 1.4em;
    }
    .room-wrapper .media-body {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .room-wrapper .media-left,
    .room-wrapper .media-right,
    .room-wrapper .media-body {
        display: block;
        padding: 15px;
    }
    .room-wrapper .media-right {
        width: 100%;
    }
    .common-pad-room {
        padding-top: 1.4em;
    }
    .single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-theme .owl-controls .owl-nav [class*=owl-] {
        margin-top: 20px;
    }
    .single-room-wrapper .ro-facilitie ul li {
        width: 48%;
        margin-bottom: 10px;
    }
    .test-img-16 {
        height: 80px;
    }
    .test-img-16 img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: 0 auto;
        max-height: 100%;
        max-width: 100%;
        padding: 10px;
    }
    .top-footer .widget_gallery li a {
        display: block;
    }
    .single-room-wrapper .room-overview code {
        font-size: 14px;
    }
    .single-room-wrapper .room-overview .table>tbody>tr>td {
        font-size: 14px;
        padding: 13px 10px;
    }
    .top-header {
        border-bottom: 1px solid #5d2f3a;
    }
    .contact-detail>div>h6 {
        color: #fff;
    }
    .input-form {
        text-align: left!important;
        padding: 0!important;
    }
    .booking-form2 h3 {
        font-size: 26px;
    }
    .home-date span {
        left: -28px;
    }
}

@media(max-width:479px) and (min-width:320px) {
    .logo-block {
        display: none;
    }
    .home-date span {
        left: -116px;
    }
    .booking-form h4 {
        border-right: none;
    }
    .top-header {
        border-bottom: 1px solid #5d2f3a;
    }
    #sync2.owl-theme .owl-next {
        padding: 6px 5px!important;
        top: 38px!important;
    }
    #sync2.owl-theme .owl-prev {
        padding: 6px 5px!important;
        top: 38px!important;
    }
    .media-left img {
        width: 100%;
    }
    .contact-detail>div>h6 {
        color: #fff;
    }
    .test-img-16 {
        height: 80px;
    }
    .single-room-wrapper .room-overview code {
        font-size: 13px;
    }
    .single-room-wrapper .room-overview .table>tbody>tr>td {
        font-size: 13px;
        padding: 13px 10px;
    }
    .test-img-16 img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: 0 auto;
        max-height: 100%;
        max-width: 100%;
        padding: 10px;
    }
    .single-room-wrapper .room-dec-wrapper h2 {
        font-size: 23px;
        margin: 0;
        margin-top: 20px;
    }
    .single-room-wrapper .room-fac-wrapper h2,
    .single-room-wrapper .room-overview h2,
    .single-room-wrapper .question-wrapper h2 {
        font-size: 23px;
    }
    .single-room-wrapper .ro-facilitie ul li {
        width: 48%;
        margin-bottom: 10px;
    }
    .common-pad-inner {
        padding-top: 1.4em;
    }
    .top-footer .widget_gallery li a {
        display: block;
    }
    .room-wrapper .media-body h2 {
        font-size: 23px;
    }
    .single-room-wrapper .room-slider-wrapper .single-r-wrapper .owl-theme .owl-controls .owl-nav [class*=owl-] {
        margin-top: 6px;
    }
    .room-wrapper .media-body {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .room-wrapper .media-left,
    .room-wrapper .media-right,
    .room-wrapper .media-body {
        display: block;
        padding: 15px;
    }
    .room-wrapper .media-right {
        width: 100%;
    }
    .common-pad-room {
        padding-top: 1.4em;
    }
    .sec-header3 h2 {
        font-size: 26px;
    }
    .top-header {
        padding-bottom: 25px;
        padding-top: 25px;
    }
    .page-banner .breadcrumb {
        float: left;
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
    }
    .page-banner h3 {
        font-size: 28px;
    }
    .map-contact {
        margin-bottom: 40px;
    }
    .contact-content ul {
        text-align: center;
    }
    .page-banner {
        padding-bottom: 110px;
        padding-top: 110px;
    }
    .page-banner {
        height: 300px;
    }
    .contact-content ul li {
        margin-right: 0px;
    }
    .top-header .contact-detail {
        text-align: center;
        margin-top: 0px;
    }
    .contact-detail>div {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .menu-block .book-now a {
        display: none;
    }
    .header-1 {
        position: relative;
        width: auto;
    }
    .ow-navigation {
        padding: 0;
        width: 100%;
    }
    .ow-navigation .navbar-brand {
        font-size: 30px;
        height: auto;
        letter-spacing: 2.1px;
        padding: 0;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 31px;
        margin: 24px 0;
    }
    .ow-navigation .navbar-brand,
    .ow-navigation .navbar-brand:hover,
    .ow-navigation .navbar-brand:focus {
        color: #5d2f3a;
    }
    .ow-navigation .navbar-collapse {
        border-top: none;
        box-shadow: none;
        width: 100%;
        overflow: auto !important;
        padding-bottom: 10px;
    }
    .ow-navigation .navbar-collapse.collapse {
        display: none!important;
    }
    .ow-navigation .navbar-nav {
        float: none!important;
        border-top: 1px solid #e7e7e7;
    }
    .ow-navigation .navbar-header {
        float: none;
    }
    .ow-navigation .navbar-toggle {
        display: block;
        background-color: #fff;
        margin-bottom: 23px;
        margin-top: 23px;
        margin-right: 0px;
        border-radius: 0;
        border-color: #5d2f3a;
    }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover,
    .navbar-fixed-top .ow-navigation .navbar-toggle .icon-bar,
    .ow-navigation .navbar-toggle .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:focus,
    .navbar-fixed-top .ow-navigation .navbar-toggle:hover,
    .ow-navigation .navbar-default .navbar-toggle:focus,
    .ow-navigation .navbar-default .navbar-toggle:hover,
    .ow-navigation .navbar-toggle:hover {
        background-color: #5d2f3a;
    }
    .navbar-default .navbar-toggle:focus .icon-bar,
    .navbar-default .navbar-toggle:hover .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:focus .icon-bar,
    .navbar-fixed-top .ow-navigation .navbar-toggle:hover .icon-bar,
    .ow-navigation .navbar-toggle:hover .icon-bar {
        background-color: #fff;
    }
    .ow-navigation .navbar-collapse>.nav.navbar-nav>li {
        margin: 0;
    }
    .ow-navigation .navbar-nav>li {
        display: inline-block;
        float: none;
        width: 100%;
    }
    .ow-navigation .nav.navbar-nav li>a,
    .ow-navigation .navbar-collapse>ul>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }
    .ow-navigation .navbar-text {
        float: none;
        margin: 15px 0;
    }
    .ow-navigation .nav.navbar-nav>li.active>a,
    .ow-navigation .nav.navbar-nav>li.active:hover>a,
    .ow-navigation .nav.navbar-nav>li.active:focus>a,
    .ow-navigation .nav.navbar-nav>li:hover>a,
    .ow-navigation .nav.navbar-nav>li:focus>a,
    .ow-navigation .nav.navbar-nav>li>a:hover,
    .ow-navigation .nav.navbar-nav>li>a:focus,
    .ow-navigation .dropdown-menu li:hover>a,
    .ow-navigation .dropdown-menu li>a:hover {
        color: #5d2f3a;
    }
    /* since 3.1.0 */
    .ow-navigation .navbar-collapse.collapse.in {
        display: block!important;
    }
    .ow-navigation .collapsing {
        overflow: hidden!important;
    }
    .ow-navigation .dropdown-menu {
        background-color: transparent;
        border: 0 none;
        margin-top: 0;
        padding-left: 10px;
        padding-top: 0;
        position: relative;
        width: 100%;
        box-shadow: none;
    }
    /* Switch */
    .ow-navigation .ddl-switch {
        background-color: #5d2f3a;
        cursor: pointer;
        font-size: 18px;
        padding: 1.5px 5px;
        position: absolute;
        right: 0;
        z-index: 9999;
        top: 6px;
        color: #fff;
    }
    .ow-navigation .ddl-active>.ddl-switch:before {
        content: "\f106";
    }
    .menu-block {
        margin-top: 0px;
    }
    .ow-navigation::after {
        display: none;
    }
    .ow-navigation .navbar-brand {
        display: inline-block;
    }
    .ow-navigation .navbar-header {
        position: relative;
    }
    .ow-navigation .dropdown-menu li>a:hover {
        color: #5d2f3a;
    }
    .navbar-nav {
        margin: auto;
    }
    .slider-section .carousel-caption h6 {
        font-size: 11px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .slider-section .carousel-caption h2 {
        font-size: 30px;
    }
    .slider-section .carousel-caption>a {
        margin-top: 10px;
        padding: 8px 0 8px;
    }
    .booking-form form .form-group {
        width: 100%;
    }
    .booking-form h4 span {
        display: initial;
        padding-left: 4px;
    }
    .heading-test h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .booking-form {
        margin-bottom: 0px;
    }
    .offer-list {
        height: 1430.75px;
    }
    .section-header h3 {
        padding-bottom: 28px;
    }
    .section-header p {
        margin-top: 12px;
    }
    .section-header p {
        padding: 0px;
    }
    .price-box .price-img-box h4 {
        font-size: 30px;
    }
    .price-box .price-img-box h4 span {
        font-size: 13px;
    }
    .price-box .price-img-box h4 sub {
        font-size: 13px;
    }
    .widget_newsletter {
        margin-top: 30px;
    }
    .widget_gallery {
        margin-top: 30px;
    }
    .top-footer ul.social_widget {
        text-align: center;
    }
    .contact-detail>div {
        padding-left: 30px;
        padding-right: 20px;
        margin-left: 0px;
        margin-right: 10px;
    }
    .slider-section .carousel-caption h6 span.right-sep {
        display: none;
    }
    .slider-section .carousel-caption h6 span.left-sep {
        display: none;
    }
    .slider-section .carousel-caption {
        top: 50%;
    }
    .booking-form form .form-group {
        width: 100%;
        margin-bottom: 15px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .offer-box,
    .offer-box.wide,
    .offer-box.full {
        display: block;
        left: auto !important;
        margin: 0 auto;
        max-width: 100%;
        width: 385px;
        position: relative !important;
        top: 0 !important;
        float: none;
    }
    .offer-box.wide img,
    .offer-box.full img {
        height: 285px;
    }
    .offer-detail .price-detail {
        width: 100%;
        text-align: center;
    }
    .offer-box:hover .offer-detail h3 {
        border-bottom: 3px solid #fff;
        border-right: none;
        padding: 10px 0;
        text-align: center;
    }
    .offer-box:hover .offer-detail h3 span,
    .offer-box:hover .offer-detail .price-detail {
        display: inline-block;
    }
    .offer-detail h3,
    .offer-box:hover .offer-detail h3 {
        font-size: 16px;
    }
    .offer-box:hover .offer-detail h3 {
        padding-right: 20px;
    }
    .offer-detail .price-detail {
        padding-left: 20px;
    }
    .heading-test p {
        padding-right: 0px;
    }
    .contact-detail>div {
        border-right: none;
    }
    .contact-detail>div:last-child {
        margin-top: 10px;
    }
    .dir-box+.dir-box {
        margin-left: 20px;
        padding-left: 30px;
    }
    .ow-navigation .ddl-switch {
        display: initial !important;
    }
    .ow-navigation .dropdown-menu {
        background-color: transparent;
        border: 0 none;
        margin-top: 0;
        padding-left: 10px;
        padding-top: 0;
        position: relative;
        width: 100%;
        box-shadow: none;
    }
    .ow-navigation ul li>.dropdown-menu {
        display: none;
    }
    .input-form {
        text-align: left!important;
        padding: 0!important;
    }
    .goto-next {
        display: none;
    }
    #sync1.owl-theme .owl-next {
        top: 40%!important;
    }
    #sync1.owl-theme .owl-prev {
        top: 40%!important;
    }
    .booking-form2 h3 {
        font-size: 24px;
    }
}

#sync1 .item {
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    /*text-align: center;*/
}

#sync2 .item {
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item h1 {
    font-size: 18px;
}

#sync2 .current .item {}

.owl-theme .owl-nav {
    /*default owl-theme theme reset .disabled:hover links */
}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {}

#sync1.owl-theme {
    position: relative;
}

#sync1.owl-theme .owl-prev {
    position: absolute;
    left: 0;
    background-color: #5d2f3a;
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

#sync1.owl-theme .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #5d2f3a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

#sync2.owl-theme {
    position: relative;
}

#sync2.owl-theme .owl-next {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: #5d2f3a;
    padding: 10px 8px;
}

#sync2.owl-theme .owl-prev {
    position: absolute;
    top: 55px;
    left: 0;
    background-color: #5d2f3a;
    padding: 10px 8px;
    ;
}

.test-options option {
    color: #000!important;
}

.images-room-type img {
    width: 100%!important;
}

#hme_plans {
    padding-bottom: 30px;
    background-color: #f5f5f5;
    padding-top: 8px;
}

.ful_wdth {
    width: 100%;
    float: left;
}

.req:after {
    content: "*";
    color: #F94B4B;
    float: left;
    margin-right: 2px;
    margin-top: 3px;
    /* font-weight: bold; */
    font-size: 15px;
}

.modal-title {
    color: #fff;
}

.content-img-block {
    float: right;
}

.section-padding {
    padding-bottom: 40px;
    padding-top: 70px;
    display: inline-block;
    width: 100%;
}

.about-section {
    background-color: #f8fdff;
}

.popup-gallery figure {
    margin-bottom: 20px;
}

.popup-gallery a {
    display: block;
}

.popup-gallery a::before {
    background-color: rgba(93, 47, 58, 0.6);
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    position: absolute;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    opacity: 0;
    border-radius: 6px;
}

.popup-gallery a:hover::before {
    opacity: 1;
}

.popup-gallery a:hover::after {
    content: "\f065";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    top: 50%;
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.m_b_30 {
    margin-top: 30px;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.alert {
    padding: 8px 11px;
    margin-bottom: 8px;
}

.close {
    margin-top: -2px;
    font-size: 18px;
}

.map_frme iframe {
    width: 100%;
    border: none;
    height: 177px;
    outline: none;
}

p {
    text-align: justify;
}

.hide-div {
    display: none;
}

.captach-msg-error {
    color: #c65848;
    float: right;
}

.contact-form label.error {
    color: red;
}

#hiddenRecaptcha {
    outline: none;
    border: 0px;
    color: white;
    padding: 0;
    height: 0px;
}

.recaptchaa .error {
    width: 100%;
    float: left;
}

.contact-form label.error {
    color: red;
    display: block !important;
    margin-top: 7px;
    margin-bottom: 0;
}

@media (min-width:1200px) and (max-width:1400px) {
    .header-1 {
        position: relative;
    }
    .slider-section .carousel-caption {
        top: 24rem;
    }
}

@media (min-width:300px) and (max-width:768px) {
    .slider-section .carousel-caption {
        display: none;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .header-1 {
        position: relative;
    }
    .slider-section .carousel-caption {
        top: 53%;
    }
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
    width: 100%;
}


/* Booking Form Page Style*/

#bokng_frm .panel-heading {
    padding: 0;
    background-color: #0c3679;
    color: #fff;
}

#bokng_frm .panel-title>a,
#bokng_frm .panel-title>a:active {
    display: block;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

#bokng_frm .panel-heading a:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f067";
    float: right;
}

#bokng_frm .panel-heading.active a:before {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

#bokng_frm label {
    display: block;
}

label.error {
    color: #F44336;
    font-size: 12px;
    margin-bottom: 0;
}

.bdr_top_botm {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

#bokng_frm .panel-body {
    padding: 30px;
}

#bokng_frm .btn-sm {
    padding: 5px 15px;
    border-radius: 4px;
}

.btn-sm i {
    margin-left: 5px;
}

#bokng_frm #cust_nts {
    height: 44px;
}

#bokng_frm #cust_nts:focus {
    height: 60px;
}

#bokng_frm .close {
    margin-top: 0;
    font-size: 22px;
}

#pymnt_table thead {
    background-color: #1061d6;
    color: #fff;
}

#pymnt_table thead th.amunt_wdth {
    width: 20%;
}

#pymnt_table thead th {
    padding: 12px 21px;
}

#pymnt_table tr td {
    font-size: 18px;
    padding: 11px 15px;
}

#pymnt_table tr td:nth-child(even) {
    text-align: right;
}

#pymnt_table .ttl_amnt {
    padding: 10px;
    background-color: #ececec;
}

#pymnt_table .ttl_amnt td {
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
}


/* Login Page Style*/

#login_page {
    padding: 80px 0;
}

.form_inrr {
    background-color: rgba(241, 241, 241, 0);
    border-radius: 0;
    border: 1px solid rgba(210, 210, 210, 0.82);
    margin-bottom: 10px;
    box-shadow: 4px 5px rgba(82, 82, 82, 0.18);
    margin-top: 0;
    padding: 20px;
}

#login_page h4 {
    font-size: 21px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 3px double rgba(17, 17, 17, 0.27);
    margin-bottom: 18px;
}

@media (min-width:992px) and (max-width:1999px) {
    .contact-detail>div {
        border-right: none;
    }
}

@media (min-width:300px) and (max-width:1399px) {
    .page-banner {
        padding-top: 10.3rem;
        height: 230px;
    }
}

.modal-header {
    padding: 8px 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #0c3679;
    color: #fff;
    border-radius: 4px 4px 0px 0px;
}

.close-user {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    /* filter: alpha(opacity=20); */
    opacity: 3.2;
}

.btn-primary {
    color: #fff;
    background-color: #0c3679;
    border-color: #0c3679;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0055df;
    border-color: #0055df;
}


/*Welcome Modal Popup Style*/

#welcome_pop .modal-body {
    padding: 0;
}

#welcome_pop .modal-header {
    padding: 0;
    border: none;
}

#welcome_pop figure {
    float: none;
}

#welcome_pop .imgg {
    width: 100%;
}

#welcome_pop .modal-header .close {
    position: absolute;
    right: -31px;
    color: #fff;
    opacity: 1;
    background-color: #d43c44;
    width: 30px;
    height: 30px;
    top: 2px;
    border-radius: 0 5px 5px 0;
}

#welcome_pop .modal-header .close:hover {
    background-color: '';
}

#welcome_pop .modal-dialog {
    width: 50%;
    margin-top: 5em;
}

#welcome_pop .modal-content {
    border-radius: 0;
}

div.message.error {
    color: #F44336;
}

div.message.success {
    color: #5cb85c;
    font-size: 15px;
    padding: 10px;
    font-weight: bolder;
}

#notifi_page i {
    display: block;
    margin-top: 21px;
    margin-bottom: 20px;
    font-size: 38px;
}

#notifi_page .notif_text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

#notifi_page h2 {
    margin-top: 0;
}

#notifi_page small {
    font-size: 100%;
}

.noti_suces {
    color: #5cb85c;
}

.noti_fail {
    color: #FF0000;
}

#notifi_page .notifi_inr {
    display: block;
    background-color: rgba(229, 229, 229, 0.3);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 14px rgba(97, 97, 97, 0.28);
    border: 1px solid #d6d6d6;
}

.table thead {
    background-color: #e0e7ea;
}

#status_tble.table {
    font-size: 15px;
}

#status_tble i {
    font-size: 11px;
    padding: 6px 8px;
}

.edit,
.actn {
    width: 50px;
}

#status_tble .label {
    padding: 3px 6px;
    font-size: 100%;
}

.m_t_0 {
    margin-top: 0;
}

.m_b_0 {
    margin-bottom: 0;
}

#res_info_pge .table th {
    background-color: #f1f1f1;
}

.panel-custom {
    border-color: #c3c3c3;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.27);
}

.panel-custom>.panel-heading {
    color: #fff;
    background-color: #603440;
    border-color: #362026;
    position: relative;
}

#user_prfle .readonly {
    background-color: #f6f6f6;
    border: none;
    box-shadow: none;
    color: #111;
    height: 40px;
}

#user_prfle .actn_btnn {
    position: absolute;
    right: 7px;
    top: 4px;
}

#user_prfle .actn_btnn .btn {
    font-size: 15px;
    padding: 5px 8px;
}

#user_prfle .actn_btnn .btn i {
    margin-right: 4px;
}

.navbar-default {
    background-color: transparent!important;
    border-color: transparent!important;
}

.ow-navigation .navbar-nav>li>.dropdown-menu li a:last-child {
    padding-bottom: 10px;
}

.ow-navigation .navbar-nav>li>.dropdown-menu li a:first-child {
    padding-top: 12px;
}

.ow-navigation .navbar-collapse>ul>li>.dropdown-menu li a {
    padding: 10px 18px;
    border-bottom: 1px solid rgba(96, 52, 64, 0.28);
}

.ow-navigation .navbar-nav li>.dropdown-menu>li>a {
    white-space: normal;
    padding: 0;
    font-size: 12px;
    color: #603440;
}

.ow-navigation .nav.navbar-nav li>a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 20px 33px;
    position: relative;
    text-transform: uppercase;
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 0;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0px 0;
    margin: 0px 0 0;
    font-size: 13px;
    text-align: left;
    list-style: none;
    background-color: #0c3679;
    -webkit-background-clip: padding-box;
    border: none;
    /* border: 1px solid rgba(0,0,0,.15); */
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    /* box-shadow: 0 6px 12px rgba(0,0,0,.175); */
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: white;
    text-decoration: none;
    background-color: #0c3679;
}

.panel-custom>.panel-heading {
    color: #fff;
    background-color: #0c3679;
    border-color: #0c3679;
    position: relative;
}

.panel-heading {
    padding: 15px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.fa-angle-down {
    color: white;
    font-size: 15px;
}

.single-room img {
    width: 100%;
}

.navbar {
    margin-bottom: 0px;
}

.about-text.padding_10 {
    padding-top: 10px;
}

.about-links.padding_ten {
    padding-top: 10px;
}

.text.font_incre {
    font-size: 18px;
}

@media only screen and (min-width: 991px) and (max-width: 1169px) {
    .respons_img {
        height: 279px;
        object-fit: cover;
    }
}

@media only screen and (min-width: 1170px) {
    .respons_img {
        height: 363px;
        object-fit: cover;
    }
}

@media only screen and (min-width: 1350px) {
    .single-room img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border: 5px solid #fff;
        border-top: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {
    .single-room img {
        height: 330px;
        object-fit: cover;
        /* border: 5px solid #fff; */
    }
}

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top,
.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom {
    background-color: white;
}

.rent_cal {
    margin-top: 25px;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.date .timepicker-sbs {
    background-color: white;
    z-index: 999;
    padding: 5%;
}

.date .bootstrap-datetimepicker-widget.timepicker-sbs {
    padding: 20px !important;
}

.terms_checkbox {
    display: flex;
    justify-content: flex-start;
}

.terms_condition {
    width: 28px;
}

.cond {
    margin-bottom: 0;
    margin-top: 2px;
}

.marquee {
    overflow: hidden;
    font-size: 16px;
    padding: 14px 0;
    padding-bottom: 0;
}

.hme_rom_tle {
    font-family: cursive;
    text-align: center;
    padding: 17px 0;
    background-color: #ffcd00;
    color: #000000;
    margin-bottom: 4px;
    border-radius: 3px 3px 0 0;
    font-weight: 600;
    font-size: 20px;
    border-right: 5px solid#fff;
    border-left: 5px solid#fff;
}

.form-control.terms_condition {
    background: #fff;
    width: 100%;
}

.text-content-st {
    color: white;
    /* background: #0000007a; */
    padding: 20px;
}

.text-content-st p {
    font-size: 16px;
}

.sky-blue-text h1 {
    color: #00ffff;
    text-shadow: 0px 0px 6px #000;
}

.blue-text h1 {
    color: #f6ffc1;
    text-shadow: 0px 0px 9px #000;
}

.yellow-text h1 {
    color: #ffeb01;
    text-shadow: 0px 0px 6px #000;
}

.orange-text h1 {
    color: #ffffffd4;
    text-shadow: 0px 0px 6px #000;
}

.index-dy-message p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    animation-name: txt_color;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes txt_color {
    0% {
        color: green;
    }
    50% {
        color: #800000;
    }
    100% {
        color: blueviolet;
    }
}

@media only screen and (min-width: 992px) {
    .hme_rom_tle {
        font-size: 17px;
        font-family: cursive;
    }
}

.musicbtn-po {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 0 11px;
    z-index: 1000;
}

.d-flex-center {
    display: flex;
    justify-content: center;
}

.hei-weight.btn {
    height: 26px;
    line-height: normal;
}

.dropdown.user-name-css {
    background: #f82d8e;
    padding: 8px 5px !important;
    border-radius: 4px;
}

.musicbtn-po.btn-warning {
    color: #fff;
    background-color: #ff9600;
    border-color: #ff9800;
}
#under_fail{
    color: #de2e2e;
    padding: 20px;
}
.under{
    /* border: 1px solid #eee; */
    
}
.maintanence{
    width: 100%;
    height: auto;
}