
@import url('https://fonts.googleapis.com/css?family=Arapey:400,400i|Open+Sans:300,400,700,800');
@import 'https://fonts.googleapis.com/css?family=Oswald:300,400,700';


html, body {
    height: 100%;
    overflow-x: hidden;
}

#loading {  
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 2000;   
    top: 0px;
    background: #fff; 
}
.spinner {
    left: 0;
    right: 0;
    top: 45%;
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto;
}

.cube1, .cube2 {
    background-color: #333;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
    50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
    75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
    100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
    25% { 
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    } 50% { 
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    } 50.1% { 
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    } 75% { 
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    } 100% { 
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
/*---------------- 1.1 Preloader Ends ------------------*/
/**********************************
 	Preloader CSS
 **********************************/

 .cat-preloader {
    background-color: var(--cat-white);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}

.cat-preloader-inner {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/*---------------- 1.2 Global properties (body, common classes, structure etc) Starts ----------------------*/

body {     
    font-family: 'Arapey', serif;
    font-weight: normal;
    background: #fff;
    color: #4c4c4c;
    font-size: 17px;
    overflow-x: hidden; 
    letter-spacing: 2px;
}

.boxed .wrapper {
    background-color: #ffffff;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.theme-container {
    padding-left: 0;
    padding-right: 0;
}
.no-padding {
    padding-left: 0;
    padding-right: 0;
}
.no-margin {
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
    transition: all 0.4s linear 0s;
    -webkit-transition: all 0.4s linear 0s;
}
.panel { background-color: inherit;}
.light-bg { background-color: #f2f2f2; }
.light-bg-1 { background-color: #fcfcfc; }
.white-bg { background-color: #fff; }
.black-bg { background-color: #000; }
.rel-div { position: relative; z-index: 1; }

.black-mask, .white-mask, .theme-mask {
    position: relative;
    transition: all 0.4s linear 0s;
    -webkit-transition: all 0.4s linear 0s;
}
.black-mask:before, .white-mask:before, .theme-mask:before {    
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;

    transition: all 0.4s linear 0s;
    -webkit-transition: all 0.4s linear 0s;
}
.black-mask:before {
    background: #5550;
}
.white-mask:before {
    background: #5550;
}

/*-- Titles --*/
.title-wrap {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}
.title-wrap > p {
    margin: 30px auto;
    width: 75%;
}
.section-title.wht {
    color: #fff;
}
.section-title {
    font-size: 50px;
    margin: 0;
    color: #2c2d2e;
    /* text-transform: capitalize; */
}
.sub-title {
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.title-1 { font-size: 24px; text-transform: capitalize; font-weight: 400; color: #2c2d2e; }

.sub-detail {
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 0 #000, 4px 2px 0 #000, -1px 1px 0 #000, 3px 2px 0 #012;
    text-transform: uppercase;  
    /* letter-spacing: 6px; */
    font-size: 21px;
}
.sub-detail.wht {
    color: #fff;
}
.white-clr .section-title, .white-clr .sub-detail, .white-clr a {
    color: #fff;
}
.white-clr a:hover {
    color: #a3a3a3;
}
/*-- Titles --*/

.white-clr { color: #fff !important; }
.black-clr { color: #000000 !important; }
.gray-clr { color: #a3a3a3 !important; }
.gray-light { color: #ccc; }
.red-clr { color: #000; }

.block-inline {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}
.list-items li {
    display: inline-block;
    margin: 0 5px;
}
.list-items { margin-bottom: 0; }

.to-top {
    background-color: #2c2d2e;
    border-radius: 50%;
    bottom: -150px;
    color: #fff;
    cursor: pointer;
    height: 55px;
    left: 0;
    line-height: 50px;
    margin: auto;
    position: fixed;
    right: 0;
    text-align: center;
    width: 55px;
    z-index: 999;
}
/*------------------- 1.2 Global properties (body, common classes, structure etc) Ends -----------------*/

/*---------------------- 1.3 Section Space Starts ----------------------------*/
.sec-space {
    padding-bottom: 82px;
    padding-top: 82px;
}
.ptb-15 {
    padding-bottom: 15px;
    padding-top: 15px;
}
.pb-15 { padding-bottom: 15px; }
.pt-15 { padding-top: 15px;}
.ptb-20 {
    padding-bottom: 20px;
    padding-top: 20px;
}
.pb-20 {padding-bottom: 20px;}
.pt-20 {padding-top: 20px;}
.ptb-25 {
    padding-bottom: 25px;
    padding-top: 25px;
}
.pb-25 { padding-bottom: 25px;}
.pt-25 {padding-top: 25px;}
.ptb-30 {
    padding-bottom: 30px;
    padding-top: 30px;
}
.pb-30 {padding-bottom: 30px;}
.pt-30 {padding-top: 30px;}
.ptb-40 {
    padding-bottom: 40px;
    padding-top: 40px;
}
.pb-40 {padding-bottom: 40px;}
.pt-40 {padding-top: 40px;}
.ptb-35 {
    padding-bottom: 35px;
    padding-top: 35px;
}
.pb-35 { padding-bottom: 35px;}
.pt-35 {padding-top: 35px;}
.ptb-50 {
    padding-bottom: 50px;
    padding-top: 50px;
}
.pb-50 {padding-bottom: 50px;}
.pt-50 { padding-top: 50px;}
.ptb-60 {
    padding-bottom: 60px;
    padding-top: 60px;
}
.pb-60 {padding-bottom: 60px;}
.pt-60 {padding-top: 60px;}
.ptb-70 {
    padding-bottom: 70px;
    padding-top: 70px;
}
.pb-70 {padding-bottom: 70px;}
.pt-70 { padding-top: 70px;}

.mb-0 { margin-bottom: 0px !important;}
.mb-10 { margin-bottom: 10px;}
.mt-10 {margin-top: 10px;}
.mt-30 { margin-top: 30px;}
.mt-100 { margin-top: 100px;}
.ml-10 { margin-left: 10px;}
.m20 { margin: 20px !important;}
.va {vertical-align: middle;}
/*---------------------------- 1.3 Page section block Ends ---------------------------*/

/*--------------------------- 1.4 Typography (section title, links, page dividers) Starts -------------------------- */
a:hover 
a:active,
a:focus,
.btn:hover, .btn:focus,.btn:active {  
    text-decoration: none;
    outline: 0;
}
a, .btn {
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #000;
}
a:hover,
a:active,
a:focus,
.smooth-trantn {
    text-decoration: none;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
p {
    margin-bottom: 15px;
    line-height: 1.7;
}
ul,
ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}
ul ul,
ol ul,
ul ol,
ol ol {
    padding-left: 20px;
}
h2,h3,h4,h5,h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*------------------------ 1.4 Typography (section title, links, page dividers) Ends ---------------------- */

/*--------------------------- 1.5 Buttons Starts ---------------------- */

/* Common Button CSS  */
.theme-btn {
    background-color: transparent;
    border: medium none;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    height: 55px;
    color: #fff;
    min-width: 265px;
    line-height: 55px;
    outline: medium none;
    vertical-align: middle;
    padding: 0 10px;  
    text-align: center;
    /* text-transform: uppercase; */
    z-index: 1;

    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}


.small-btn {
    height: 40px;  
    line-height: 40px;
    min-width: 160px;
    box-shadow: 2px 2px 2px 2px #cf3821;
}
.small-alt-btn {
    height: 40px;  
    line-height: 40px;
    min-width: 160px;
    box-shadow: 2px 2px 2px 2px #cf3821;
}

.small-alt-btn:hover {
    box-shadow: 2px 2px 2px 2px #3c3c3c;
}
.small-alt-btn:active {
    box-shadow: 0;
    transform: translateY(10px);
}
.big-btn {
    height: 90px !important;
    line-height: 10px;
    min-width: 100%;
    box-shadow: 2px 2px 2px 2px #cf3821;
}
.theme-btn .fa {
    border-right: 2px solid;
    float: left;
    line-height: 43px;  
    margin-left: -10px;
    margin-right: 10px;
    width: 40px;
}
.btn-black {
    background-color: #cf3821;
    color: #fff;
}
.btn-black:hover, .btn-black:focus {color: #fff;}
.clr-btn:hover, .clr-btn:focus {
    background-color: #cf3821;
    color: #fff;
}
.btn-1 {
    /* border-bottom: 3px solid #4a4945;
    border-left: 3px solid #4a4945; */
    color: #4a4945;
    min-width: 235px;
    position: relative;
}
.theme-btn i {
    font-size: 20px;
    line-height: normal;
    vertical-align: middle;
    width: 20px;
}
.border-effect::before {
    position: absolute;  
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: #4a4945;
    content: '';
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
}

.border-effect::after {
    background: #4a4945 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    width: 3px;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}
.btn-1::before {
    position: absolute;
    opacity: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: #4a4945;
    content: '';
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
}

.btn-1::after {
    position: absolute;
    opacity: 0;
    bottom: 0;
    right: 0;
    width: 3px;
    height: 3px;
    background: #4a4945;
    content: '';
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

.btn-1:hover::before {
    bottom: 100%;
    width: 100%;
    opacity: 1;
}

.btn-1:hover::after {
    height: 100%;
    opacity: 1;
}

/*-- ./ Common Button CSS --*/

/*------------------------ 1.5 Buttons Ends ---------------------------- */

/*----------------------- 1.6 Form / Input / Textarea Starts --------------------------- */

.form-group {
    margin-bottom: 15px;
}
.form-control, .input-group-addon, .bootstrap-select .btn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #cf3821;
    border-radius: 0;
    box-shadow: none;
    color: #000000;
    /* text-transform: capitalize; */
    font-size: 18px;
    height: 45px;
    vertical-align: middle;    
    padding: 10px 20px;
}
.form-control.submit-btn {
    height: auto;
    line-height: normal;
}
.form-alert {
    margin: 0;
}
textarea.form-control {
    height: auto !important;
}
label {font-weight: normal;}
/*-- Checkbox/Radiobox Starts --*/
.form-group [type="radio"] {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.checkbox-inline, .form-group .radio-inline {
    margin: 0;
    padding-left: 0;
    line-height: 1.2;
    color: #a3a3a3;
    vertical-align: -moz-middle-with-baseline;
}

[type="checkbox"] + span, [type="radio"] + span {
    border: 1px solid #a3a3a3;
    cursor: pointer;
    display: inline-block;
    height: 10px;
    margin-right: 8px;
    position: relative;
    width: 10px;
}
[type="checkbox"]:checked + span, .checkbox-inline:hover [type="checkbox"] + span,
[type="radio"]:checked + span, .radio-inline:hover [type="checkbox"] + span {
    border-color: #000;
}
[type="checkbox"]:checked + span::before, [type="radio"]:checked + span::before {
    background-color: #000;
    bottom: 0;
    content: "";
    display: block;
    height: 6px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
}

/*-- Checkbox/Radiobox Ends --*/

/*--Bootstrap Select--*/
.bootstrap-select .btn .filter-option {
    color: #000000;
    line-height: 25px;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
    border: none;
    margin-top: 0; 
    right: 30px;
    top: 0;
}
.bootstrap-select.btn-group .dropdown-toggle .caret:after {
    content: "\f0d7";
    font-family: fontawesome;
    font-size: 13px;
    color: #000;
}
.bootstrap-select .btn-default.active.focus, .bootstrap-select .btn-default.active:focus, .bootstrap-select .btn-default.active:hover, 
.bootstrap-select .btn-default.focus:active, .bootstrap-select .btn-default:active:focus, .bootstrap-select .btn-default:active:hover, 
.bootstrap-select > .dropdown-toggle.btn-default.focus, .bootstrap-select > .dropdown-toggle.btn-default:focus, 
.bootstrap-select > .dropdown-toggle.btn-default:hover {
    background-color: transparent;
    border-color: #cccccc;
}
.bootstrap-select .dropdown-toggle:focus {
    outline: 0 none !important;
    outline-offset: 0;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
}
:-moz-placeholder {
    color: #a3a3a3;
}
::-moz-placeholder {
    color: #a3a3a3;
}
:-ms-input-placeholder {
    color: #a3a3a3;
}

.form-control::-webkit-input-placeholder {
    color: #a3a3a3;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #a3a3a3;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #a3a3a3;
    opacity: 1;
}
.form-control:focus {
    background-color: transparent;
    border-color: #e7e8ec;
    box-shadow: none;
    outline: 0 none;
}
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: 0;
}
input:focus::-webkit-input-placeholder {
    color: transparent !important;
}
input:focus:-moz-placeholder {
    color: transparent !important;
}
input:focus::-moz-placeholder {
    color: transparent !important;
}
input:focus:-ms-input-placeholder {
    color: transparent !important;
}
textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}
textarea:focus:-moz-placeholder {
    color: transparent !important;
}
textarea:focus::-moz-placeholder {
    color: transparent !important;
}
textarea:focus:-ms-input-placeholder {
    color: transparent !important;
}


/*---------------------------- 1.6 Form / Input / Textarea Ends ------------------------------ */

/*----------------------- 1.7 Theme Colors Starts --------------------------- */
a:hover,
a:active,
a:focus {
    color: #000000;
}
.theme-clr, .sub-title, .primary-navbar li > a:hover, .primary-navbar li > a:focus, .primary-navbar > li > a.active, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    color: #cd3131;
}
.clr-btn, .btn-black:hover, .btn-black:focus {
    background-color: #cd3131;
}
.theme-mask:before {
    background: rgba(212, 189, 109, 0.3) none repeat scroll 0 0;
}

/*----------------------- 1.7 Theme Colors Ends --------------------------- */

/*-------------------------- 1.8 Theme Fonts Starts ------------------- */

.font-2, .section-title, .title-1, .widget-title, .blog-title { font-family: 'Arapey', serif; }
.font-1, .sub-title { font-family: 'Oswald', sans-serif; }
.normal-font { font-weight: normal;}
.bold-font { font-weight: bold; }
.italic-font { font-style: italic; }
.extra-bold-font { font-weight: 800; }
.light-font { font-weight: 300; }
.upper-text { text-transform: uppercase; }
.normal-text { text-transform: none; }
.capital-text { text-transform: capitalize; }

.fsz-8 { font-size: 8px; }
.fsz-10 { font-size: 10px; }
.fsz-12 { font-size: 12px; }
.fsz-14 { font-size: 14px; }
.fsz-15 { font-size: 15px; }
.fsz-16 { font-size: 16px; }
.fsz-18 { font-size: 18px; }
.fsz-20 { font-size: 20px; }
.fsz-24 { font-size: 24px; }
.fsz-34 { font-size: 34px; }
.fsz-48 { font-size: 48px; }
.fsz-56 { font-size: 56px; }
.fsz-86 { font-size: 86px; }


.fw-900 { font-weight: 900; }
.fw-600 { font-weight: 600; }
.fw-500 { font-weight: 500; }
.fw-300 { font-weight: 300; }

/*-------------------------1.8 Theme Fonts Ends--------------------- */

/*-------------------------  1.9 - Rating Stars Starts --------------------- */

/*.rating .star {
    cursor: pointer;     
}*/
.rating span.star::before {
    color: #ccc;
    font-size: 15px;
    content: "\f005";    
    font-family: FontAwesome;
}
.rating span.star.active::before {
    color: #000;
}
.rating span.star.half:before {
    color: #000;
    content: "\f089";    
    font-family: FontAwesome;
}

/*------------------------- 1.9 - Rating Stars Ends --------------------- */


/******************************* 
    1 - GENERAL CSS ENDS 
********************************/
html, body {
    overflow-x: hidden;
}

/******************************* 
    2 - HOME CSS STARTS 
********************************/

/*---------------------- 2.1 - Home Videobg Starts ---------------------------- */
.video-bg:before {z-index: 1;}
.video-bg {
   background-image: url(../img/video-poster.html);
    position: relative;
    padding: 170px 0 0;
    height: 760px;
    width: 100%;
    margin: auto;
    display: inline-block;
    z-index: 1;
}
.banner-content > i {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 30px;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    width: 60px;
    cursor: pointer;
    margin-top: 30px;
}
#play {
    display: none;
}
.banner-content .section-title {
    font-size: 150px;
    margin-bottom: 10px;
    margin-top: 30px;
}
@media (max-width: 1200px){
    .video-bg {height: 575px; padding: 5% 0 ;}
}
@media (max-width: 991px){
    .video-bg {height: 430px; padding: 5% 0 0;}
}
@media (max-width: 767px){
    .video-bg {height: 430px; padding: 5% 0;}
}
@media (max-width: 600px){
    .video-bg {height: 338px; padding: 5% 0;}
    .video-bg .banner-content > i {margin-top: 15px;}
}
@media (max-width: 568px){
    .video-bg {height: 320px; padding: 5% 0;}   
}
@media (max-width: 480px){
    .video-bg {height: 270px; padding: 0;}
    .video-bg .sub-detail {font-size: 10px;}
}
@media (max-width: 380px){
    .video-bg {height: 205px; padding: 10% 0 0;}
    .video-bg .sub-detail {display: none;}
}
@media (max-width: 320px){
    .video-bg {height: 180px; padding: 10% 0 0;}    
}
/*---------------------- 2.1 - Home Videobg Ends ---------------------------- */

/*---------------------- 2.2 - Home Banner Starts ---------------------------- */
#canvas-bg {
    position: relative;
    width: 100%;
    z-index: 1; 
    overflow: hidden;    
}
.banner-bg {
    background-image: url(../img/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    height: auto !important;
}

#banner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1; */
}
.canvas-section {
    height: auto;
    overflow: hidden;
    position: relative;
    width: 100%;    
}
/*---------------------- 2.2 - Home Banner Ends ---------------------------- */

/*---------------------- 2.3 - Home Image Slider Starts ---------------------------- */
.main-slider .slides > li { 
    width: 100%;
    display: none; 
    -webkit-backface-visibility: hidden; 
    background-size: cover;
    background-position: center center;
}
.main-slider .theme-container {
    padding-top: 8%;
    padding-bottom: 8%;
}
.flex-caption.content, .flex-caption.video {
    padding-bottom: 5%;
}
.flex-caption .theme-box{ margin: 0;}
.inquiry-form.light {
    background-color: rgb(115 189 149 / 42%);
}
.inquiry-form.dark {
    background-color: rgba(0, 0, 0, 0.8);
}
.inquiry-form {
    padding: 15px 25px;
}
.inquiry-form .sub-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}
.inquiry-form .form-group i{
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 14px;
}
.inquiry-form.form-icon .form-group { margin-bottom: 15px; }

.fullscreen-slider .flexslider-nav .prev {
    left: 30px;
}
.fullscreen-slider .flexslider-nav .next {
    right: 30px;
}
/*---------------------- 2.3 - Home Image Slider Ends ---------------------------- */

/*---------------------- 2.4 - Home Text Slider Starts ---------------------------- */
.slider-fixbg .main-slider {
    background-attachment: fixed;
    background-image: url("../img/slider-4.jpg");
    background-position: center top;
    background-size: cover;
}
.slider-fixbg .main-slider .theme-container {
    padding-top: 12%;
}
/*---------------------- 2.4 - Home Text Slider Starts ---------------------------- */

/*---------------------- 2.5 Check Availability Starts ---------------------------- */
.availability {
    border-bottom: 1px solid #dedede;
}
.availability .availability-info > li {
    display: inline-block;
    vertical-align: middle;
}
.availability .details {
    display: table;
    margin: auto;
}
.availability-info > li > div >  span {
    color: #6d6d6d;
    display: block;
    font-size: 12px;
}
.availability .details .title {
    font-size: 12px;
}
.availability .details .title {
    display: block;
    font-size: 24px;
    line-height: normal;
    margin: 0;
}
.availability .details .date-formet {
    border: 1px solid #dedede;
    line-height: normal;
    margin-top: 5px;
    padding: 5px 10px;
    width: 125px;
}
.availability .availability-info li > i {
    width: 20px;
    vertical-align: middle;
}
.availability .availability-info li > div {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.availability .availability-info {
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: middle;
    margin-top: 30px;
    margin-right: 50px;
}
.availability .availability-info > li + li {
    border-left: 1px solid #dedede;
    margin-left: 30px;
    padding-left: 30px;
}
.room-guests .btn-default {
    border: medium none;
    height: auto;
    line-height: normal;
    padding: 0;
    width: auto;
}
.room-guests .btn-default .filter-option {
    font-size: 24px;
    text-transform: none;
}
.room-guests .bootstrap-select.btn-group .dropdown-toggle .caret::after {
    content: "";
}
.room-guests .search-selectpicker {
    display: inline-block;
}

/*---------------------- 2.5 Check Availability Ends ---------------------------- */

/*---------------------- 2.6 About Us  Starts ---------------------------- */
.our-feature .details i {
    font-size: 46px;
}
.our-feature .details .title-1 {
    display: inline-block;
    width: 100%;
}
.our-feature .details + .details {
    border-left: 2px solid #f4f4f4;
}
.our-feature .details {
    margin-top: 45px;
}
/*---------------------- 2.6 About Us Ends ---------------------------- */

/*---------------------- 2.7 Gallery Starts ---------------------------- */
.gallery-wrap {
    padding: 180px 0 0;
}
.gallery-bg {
    background-color: #faf8f0;
    text-align: center;
}
.gallery-slider {
    margin-top: -130px;
    padding-bottom: 53px;
}
.flexslider, .theme-box {
    background-color: #fff;
    border: medium none;
    border-radius: 0;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
    padding: 10px;
    margin: 0 0 60px;
}
.flex-control-nav {
    bottom: 40px;
    left: 0;
    z-index: 10;
}
.flex-control-paging li a {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;  
    box-shadow: none;
}
.flex-control-paging li a.flex-active, .flex-control-paging li a:hover {
    background: #fff;
}
.flexslider-nav span {
    bottom: 0;
    position: absolute;
    top: 0;
    height: 30px;
    line-height: normal;
    cursor: pointer;
    margin: auto;
}
.flexslider-nav .prev {
    left: -60px;
}
.flexslider-nav .next {
    right: -60px;
}
.flexslider-nav i {
    font-size: 35px;
}
.flexslider > img {
    display: block;
    margin: auto;
}
.next .material-icons.arrow {
    margin-left: -25px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
}
.next .material-icons.dash {
    font-size: 41px;
}
.prev .material-icons.arrow {
    margin-right: -25px;
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
}
.prev .material-icons.dash {
    font-size: 41px;
}

/*---------------------- 2.7 Gallery Ends ---------------------------- */

/*---------------------- 2.8 Hotel Rooms Starts ---------------------------- */
.hotel-wrap {
    background-color: #f9f9f9;
    padding: 80px 0 40px;
}
.hotel-rooms {
    color: #fff;
    margin: 50px 0 0;
    position: relative;
}
.hotel-rooms::before {
    background-color: #2c2d2e;
    bottom: 0;
    content: "";
    top: 13%;
    position: absolute;
    right: 0;
    width: 50%;
}
.hotel-detail {
    padding-left: 40px;
    padding-top: 130px;
}
.hotel-detail ul {
    list-style: inside none disc;
    margin: 15px 0 30px;
    padding: 0;
}
.hotel-detail ul li {
    padding: 7px;
}
.start-frm i {
    vertical-align: middle;
    font-size: 16px;
    line-height: normal;
}
.start-frm {
    border: 2px solid;
    display: inline-block;
    height: 75px;
    line-height: 75px;
    margin-right: -5px;
    text-align: center;
    vertical-align: middle;
    width: 205px;
    font-size: 20px;
}
.start-frm span {
    vertical-align: middle;
}
.price-tag .theme-btn {
    min-width: 180px;
}
.hotel-wrap .flexslider {
    margin-bottom: 25px;
    margin-left: 5px;
    margin-top: 15px;
}
.hotel-wrap .all-photo {
    padding: 0 0 40px;
}
.hotel-wrap .all-photo .theme-btn {
    min-width: 165px;
}
.hotel-rooms .flexslider-nav span {
    bottom: 10px;
    top: auto;
}
.hotel-rooms .flexslider-nav .next {
    right: 35%;
}
.hotel-rooms .flexslider-nav .prev {
    left: auto;
    right: 40%;
}
/*---------------------- 2.8 Hotel Rooms Ends ---------------------------- */

/*---------------------- 2.9 Blog Starts ---------------------------- */
.img-hover {
    display: inline-block;
    overflow: hidden;
    width: 100%;
}
.img-effect:hover .img-hover > img {
    -ms-transform:scale(1.1);
    -webkit-transform:scale(1.1);
    transform:scale(1.1)
}
.widget-title {
    color: #000;
    border-bottom: 1px solid #000000;
    margin: 0 0 25px;
    padding-bottom: 20px;
    font-size: 24px;
}
.home-blog {
    clear: both;
    padding: 80px 0;
}
.blog-bg {
    clear: both;
    color: #000;
    /* margin: 100px 0 0; */
    position: relative;
}
.blog-bg::before {
    /* background-color: #2c2d2e; */
    bottom: 20%;
    content: "";
    left: 0;
    position: absolute;
    top: 13%;
    width: 50%;
}
.blog-detail {
    padding-top: 95px;
}
.blog-detail .section-title {
    margin: 20px 0;
}
.blog-bg .all-photo {
    bottom: -20%;
    position: absolute;
}
.blog-bg .all-photo .theme-btn {
    min-width: 165px;
}
.blog-bg .flexslider-nav span {
    bottom: auto;
    top: 18%;
}
.blog-bg .flexslider-nav .next {
    right: 60%;
}
.blog-bg .flexslider-nav .prev {
    left: 30%;
}
.blog-flexslider .flexslider {
    margin-right: 10px;
    margin-top: 15px;
}
/*---------------------- 2.9 Blog Ends ---------------------------- */

/*---------------------- 2.10 Testimonial Starts ---------------------------- */
.testimonial-wrap {
    background-image: url("../img/testimonial-bg.jpg");
    padding: 50px 0 20px;
}
.testimonial-flexslider.flexslider {
    padding: 80px 20px;
}
.testimonial-wrap .title-wrap > p {
    font-size: 24px;
    line-height: 1.4;
    width: 85%;
}
.testimonial-slider .flexslider-nav .prev {
    left: 5px;
}
.testimonial-slider .flexslider-nav .next {
    right: 5px;
}
/*---------------------- 2.10 Testimonial Ends ---------------------------- */

/*---------------------- 2.11 Our Dining Starts ---------------------------- */
.theme-tabs {   
    display: table;
    font-weight: 600;
    margin: 30px auto;
    text-align: center;
    text-transform: uppercase;
    width: 55%;
    overflow: hidden;
}
.theme-tabs li {
    border: 2px solid #000;
    display: inline-table;
    margin-left: -4px;
    vertical-align: middle;
    width: 32.8%;
}
.theme-tabs li + li {
    border-left: 0;
}
.theme-tabs li a:hover, .theme-tabs li a:focus, .theme-tabs li.active a {
    background-color: #000;
    color: #fff;
}
.dining-wrap {
    clear: both;
    padding: 50px 0 40px;
    background-image: url(../img/dining-bg.jpg);
}
.dining-content .isotope-item {
    padding-top: 30px;
}
.dining-item {
    margin-bottom: 25px;
}
.dining-item .title-1 {
    font-size: 34px;
}
.dining-item p {
    margin-bottom: 0;
}
.dining-item .price {
    font-size: 28px;
}

/*---------------------- 2.11 Our Dining Ends ---------------------------- */

/*---------------------- 2.12 Contact Us Starts ---------------------------- */
.contact-us {
    /* background-color: #2c2d2e; */
    padding: 50px 0 40px;
    color: #fff;
}
.contact-us .address {
    margin-top: 40px;
}
.contact-detail {
    padding-left: 60px;
    padding-right: 0;
}
#map{height: 400px;}
.contact-detail p.font-2 {
    line-height: 1.2;
    margin: 5px 0 20px;
}
.socia-link {
    text-align: right;
}
/*---------------------- 2.12 Contact Us Ends ---------------------------- */

/******************************* 
    2 - HOME CSS ENDS 
********************************/

/******************************* 
    3 - BLOG PAGE CSS STARTS 
********************************/
/*--------- 3.1 Breadcrumb Starts ---------- */
.breadcrumb-bg {
    background-image: url("../img/breadcrumb-bg.jpg"); 
    background-repeat: no-repeat;   
    padding: 45px 0;
}
.site-breadcumb .section-title {
    font-size: 30px;
}
.breadcrumb-menubar{background:transparent none repeat scroll 0 0; margin:7px 0 0; padding:0}
.breadcrumb-menubar > li{text-transform:uppercase;  font-weight: 500; color: #fff; }
.breadcrumb-menubar > li > a {color: #fff;}
.breadcrumb-menubar > li > a:after{
    content: "\f105";
    font-family: FontAwesome;
    color: #fff;
    padding: 0 3px;
}
/*--------- 3.1 Breadcrumb Ends ---------- */

/*--------- 3.2 Sidebar Starts ---------- */

.widget-wrap {
    display: inline-block;
    width: 100%;
    margin-bottom: 35px;
}
.widget-wrap > ul, .widget-wrap > ul li:last-child {
    margin-bottom: 0;
}

/*---- Search Widget ----*/
.widget-search > button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    position: absolute;
    right: 25px;
    top: 13px;
}

/*---- Category Widget ----*/
.cate-panel {
    margin-bottom: 0;
}
.cate-panel .accordion-toggle {
    line-height: 25px;
    display: inline-block;
    padding-bottom: 20px;
    width: 100%;
}
.cate-panel .panel {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    border-bottom: 1px dotted #a3a3a3;
    margin-bottom: 18px;
}
.cate-panel .panel-collapse ul {
    display: inline-block;
    margin: 5px 0;
    padding-left: 20px;
    width: 100%;
}
.cate-panel .panel-collapse li {
    margin-bottom: 15px;
}
.cate-panel .plus-icon {    
    float: right;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    width: 25px;
}
.cate-panel .panel:last-child {
    margin-bottom: 0;
}

/*---- Recent Post Widget ----*/
.post-widget .post-img {
    display: table-cell;
}
.post-widget .details {
    display: table-cell;
    padding-left: 15px;
    vertical-align: top;
}
.post-widget .blog-title {
    font-size: 18px;
}
.post-widget > li {
    border-bottom: 1px dotted #a3a3a3;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 25px;
    width: 100%;
}
.more-post {
    margin-top: 20px;
}

/*---- Twitter Widget ----*/
.tweet-icn {
    display: inline-block;
    font-size: 18px;
    vertical-align: top;
    width: 35px;
}
.tweet-info {
    display: inline-block;
    width: calc(100% - 40px);
}
.tweet-info a {
    font-size: 12px;
    display: block;
}
.tweet-wrap > li {
    border-bottom: 1px dotted #a3a3a3;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.tweet-info > p {
    margin-bottom: 10px;
}

/*---- Flickr Widget ----*/
.widget-wrap .flickr-feed li {
    float: left;
    margin: 0 8px 10px 0;
}


/*---- Tags Widget ----*/

.tag-cloud a {
    border: 2px solid #000000;
    display: inline-block;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
    padding: 0 20px;
    text-transform: uppercase;
}
.tag-cloud a:hover {
    background-color: #000;
    color: #fff;
}
/*--------- 3.2 Sidebar Ends ---------- */


/*--------- 3.3 Theme Blog Single Starts ---------- */
.blog-wrap {
    margin-bottom: 50px;
}
.blog-img {
    position: relative;
}
.btn-play {
    background-color: #fff;
    border-radius: 50%;
    bottom: 0;
    color: #000;
    font-size: 20px;
    height: 60px;
    left: 0;
    line-height: 60px;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 60px;
}

.blog-title {
    font-size: 40px;
    text-transform: capitalize;
}
.blog-wrap .flexslider, .blog-wrap .theme-box {
    margin-bottom: 30px;
}

.blog-meta li {
    font-size: 12px;
    margin-top: 10px;
}
.blog-meta li i {
    font-size: 18px;
    padding-right: 3px;
}
.alt-b {
    font-size: 18px;
}
.blog-content {
    font-weight: 500;
    font-size: 18px;
    padding: 70px 0;
}
.blog-page-wrap .read-more .theme-btn {
    margin-right: 15px;
}
.meta-icon  {
    border: 2px solid #000000;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 40px;
}
.media-box {
    position: relative;
    width: 45%;
}
.media-box, .media-box > ul li {
    display: inline-block;
    vertical-align: middle;    
}
.media-box ul {
    border: 2px solid #000000;
    border-left: 0;
    display: inline-block;
    height: 40px;
    line-height: 35px;   
    margin: 0;
    padding: 0 7px;    
    vertical-align: middle;
    opacity: 0;
    visibility: hidden;
    position: absolute;  
    width: 120px;

    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.media-box:hover ul{
    opacity: 1;
    visibility: visible;   
}
.media-box ul li a {
    margin: 0 5px;
}

.blog-wrap blockquote {
    padding: 20px 20px 50px 20px;
    border-color: #000;    
    position: relative;
}
.blog-wrap blockquote:after {
    content: '\f10e';
    font-family: 'FontAwesome';
    font-size: 60px;
    line-height: 60px;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 7px;
    opacity: .1;
}

/*--------- 3.3 Theme Blog Starts ---------- */

/*--------- 3.4 Theme Blog Single Starts ---------- */
.title-2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-transform: capitalize;
}
.auther-wrap {
    border: 1px solid #dadada;
    background-color: #f2f2f2;    
    margin: 0 0 35px;
}
.auther-detail {
    border-left: 1px solid #dadada;
}
.auther-detail .title-2 {margin-bottom: 20px;}
.auther-detail ul {
    margin-bottom: 10px;
    margin-right: -10px;
    text-align: right;
}
.auther-detail ul li { padding: 0 5px; }
.auther-detail ul li a { padding: 10px 5px; }
.auther-detail p {margin-bottom: 0;}
.auther-img > img {
    border-radius: 50%;
}
.rel-blog-slider .blog-title {
    font-size: 26px;
}
.rel-blog-slider .flexslider-nav span {
    bottom: auto;   
    top: -65px;
}
.rel-blog-slider .flexslider-nav .prev {
    left: auto;
    right: 60px;
}
.rel-blog-slider .flexslider-nav .next {
    right: 0;
}

/*Comment css*/
.comments .comment-avatar { padding-right: 35px; }
.comment-meta {
    display: inline-block;
    margin: 10px 0 20px;
    width: 100%;
}
.rel-blog-slider .blog-wrap .flexslider {
    margin: 10px 10px 30px;
}
.comment-meta .admin, .comment-meta .reply {
    border: 2px solid #000000;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    margin-right: 15px;
    padding: 0 10px;
    text-transform: capitalize;
    vertical-align: middle;
    font-weight: 600;
}
.comment-meta .admin:hover, .comment-meta .reply:hover {
    background-color: #000; color: #fff;
}
.comment-meta .title-2 {
    margin-right: 15px;
    vertical-align: middle;
}
.comment-meta .reply {
    float: right;
    margin-right: 0;
}
.comment-meta .reply i {
    margin-right: 8px;
}
.comment-text {
    clear: both;
}
.media.comment {
    margin-top: 30px;
    border-bottom: 1px dotted #a3a3a3;
}
.comment-wrap .media-object {
    border-radius: 50%;
}

.media.comment-child {
    border-left: 2px solid #000000;
    border-top: 1px dotted #a3a3a3;
    margin-top: 0;
    padding-left: 35px;
    padding-top: 30px;
}

.reply-form .theme-btn {
    margin-right: 15px;
}
.form-icon .form-control {
    border: 3px solid #cf3821;
    text-transform: capitalize;
}
.form-icon  .form-group {
    margin-bottom: 25px; position: relative;
}
.form-group .fa {
    position: absolute;
    right: 35px;
    top: 40px;
}
.form-group.no-label  .fa{
    top: 15px;
}
/*--------- 3.4 Theme Blog Single Ends ---------- */

/*--------- 3.5 Pagination Starts ---------- */
.pagination-wrap {
    border-top: 1px solid #000000;
    padding-top: 30px;
}
.pagination-1 {
    margin: 0;
}
.pagination-1 > li {
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
}
.pagination-1 > li a {
    border: 2px solid #000000;
    display: inline-block;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    vertical-align: middle;
    width: 45px;
}
.pagination-1 > li a:hover, .pagination-1 > li a:focus, .pagination-1 > li a.active {
    background-color: #000000;
    color: #ffffff;
}
/*--------- 3.5 Pagination Ends ---------- */

/*-----  3.6 Theme Blog Responsive Starts -----*/
@media (min-width:768px) and (max-width:992px) {
    .comments .comment-date {
        display: block;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .blog-title {
        font-size: 30px;
    }
    #blog-page .post-wrap, #blog-single-page .single-post {
        margin-bottom: 50px;
    }
    #blog-page-left .post-wrap {
        margin-top: 50px;
    }
}
@media (max-width:567px) {  
    .comments .comment-avatar {
        float: none !important;
    }
    .comments .comment-date {
        display: block;
        margin-top: 10px;
    }
}
/*----- 3.6 Theme Blog Responsive Ends -----*/

/******************************* 
   3 - BLOG PAGE CSS ENDS 
********************************/

/******************************* 
   4 - COMINGSOON CSS STARTS 
********************************/
.countdown-section {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}
.countdown-amount { 
    display: inline-block;
    font-size: 80px;
    height: 100px;
    line-height: normal;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}
.countdown-period {
    clear: both;
    display: block;
    font-size: 16px;
    line-height: normal;
    margin: 0;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
}
.coming-wrap {
    background-image: url(../img/slider-2.jpg);
    background-size: cover;
    position: relative;
    border-radius: 0;
    padding: 5.5% 0;
}
@media (max-width: 767px) {
    .countdown-amount {
        font-size: 44px;
        height: auto;
    }
    .countdown-period {
        font-size: 14px;
        margin-bottom: 15px;
    }

}
@media (max-width: 380px) {
    .countdown-section {margin: 0 5px;}
    .countdown-amount {font-size: 34px;}
}
/******************************* 
   4 - COMINGSOON CSS ENDS 
********************************/


/******************************* 
    5 - FOOTER CSS STARTS 
********************************/
.footer-wrap {
    background-color: #faf8f0;
}
.footer-wrap .primary-navbar {
    float: none;
    text-align: left;
}
.socia-link > p {
    font-size: 26px;
    margin: 10px 0;
}
.socia-link li + li {
    padding-left: 25px;
}
.socia-link li a {
    font-size: 25px;
}
.footer-1 {
    padding: 20px 0;
}
.footer-1 .primary-navbar > li > a {
    padding: 0;
}
.footer-1 .primary-navbar > li + li::before {
    top: 15%;
}

/******************************* 
    5 - FOOTER CSS ENDS 
********************************/

/******************************* 
    6 - RESPONSIVE STARTS 
********************************/

@media (max-width:1200px) {
    .theme-container {
        padding-left: 15px;
        padding-right: 15px;
    }  
}

@media (min-width:992px)and (max-width:1199px) {
    .banner-content .section-title {
        font-size: 100px;
    }
    .start-frm {  width: 170px; }
    .blog-detail {
        padding-bottom: 40px;
    }

    .blog-bg::before {
        bottom: 0;
    }
    .contact-detail {
        padding-left: 20px;
    }
    .footer-wrap .primary-navbar {
        margin-top: 25px;
    }
    
}
@media (min-width:768px) {
    .slider-fixbg .main-header {
        background-color: rgba(255, 255, 255, 0.5);
        position: fixed;
        top: 0;
    }
}

@media (min-width:768px)and (max-width:991px) {

    /*-- Common CSS --*/
    .section-title {font-size: 56px;}
    .fsz-34 {
        font-size: 28px;
    }
    .sub-detail {
        font-size: 18px;
    }
    .flexslider-nav .prev {
        left: -30px;
    }
    .flexslider-nav .next {
        right: -30px;
    }

    /*Home*/
    .banner-content .section-title {
        font-size: 70px;
    }
    .slider-fixbg .main-slider .theme-container {
        padding-top: 18%;
    }
    .availability .details > .theme-btn {
        font-size: 12px;
        min-width: 160px;
    }
    .availability .details > ul {
        margin-right: 20px;
    }
    .availability .details li + li {
        margin-left: 15px;
        padding-left: 15px;
    }
    .hotel-rooms::before {
        width: 100%;
    }
    .hotel-detail{
        padding-bottom: 55px;
        padding-top: 35px;
    }
    .hotel-rooms .flexslider-nav .prev {
        left: 35px;
        right: auto;
    }
    .hotel-rooms .flexslider-nav .next {
        right: 35px;
    }
    .hotel-wrap .all-photo a:before, .hotel-wrap .all-photo a:after, .hotel-wrap .border-effect::before, .hotel-wrap .border-effect::after,
    .blog-detail .all-photo a:before, .blog-detail .all-photo a:after, .blog-detail .border-effect::before, .blog-detail .border-effect::after{
        background-color: #fff;
    }
    .hotel-wrap .all-photo {
        padding: 0;
    }
    .hotel-wrap .all-photo a {
        color: #fff;
        padding: 0;
        position: absolute;
        right: 20px;;
        top: 55%;
    }

    .blog-bg .all-photo {
        bottom: 0;
    }
    .blog-bg::before {
        width: 100%;
        top: 0;
    }
    .blog-detail {
        margin-bottom: 50px;
        padding-bottom: 70px;
        padding-top: 50px;
    }
    .blog-bg .flexslider-nav .prev {
        left: auto;
        right: 70px;
    }
    .blog-bg .flexslider-nav .next {
        right: 15px;
    }
    .blog-bg .flexslider-nav span {
        bottom: auto;
        top: 5%;
    }

    .theme-tabs {
        width: 70%;
    }
    /*Footer*/
    .footer-wrap .primary-navbar, .socia-link {
        text-align: left;
    }

    .socia-link .list-inline {
        margin-bottom: 0;
    }

}
@media (max-width:767px) {

    /*-- Common CSS --*/
    body {
        font-size: 12px;
    }
    .theme-btn {
        font-size: 12px;
        min-width: 150px;
        height: 45px;
        line-height: 45px;
    }
    .small-btn {
        height: 35px;
        line-height: 35px;
    }
    .sec-space {
        padding-bottom: 15px;
        padding-top: 15px;
    }
    .section-title {
        font-size: 34px;
    }
    .fsz-56 {
        font-size: 44px;
    }
    .fsz-34 {
        font-size: 22px;
    }
    .flexslider-nav .prev {
        left: -30px;
    }
    .flexslider-nav .next {
        right: -30px;
    }
    .sub-title {
        font-size: 12px;
    }
    .title-1 {font-size: 20px;}


    /*Home*/

    .banner-bg {
        height: auto;
        padding: 25px 0;
    }
    .inquiry-form .sub-title {
        margin-bottom: 15px;
    }
    .flex-caption .theme-box {
        padding: 5px;
    }
    .flex-caption.content .theme-btn {
        margin-top: 10px;
    }
    .main-slider .flex-control-nav {
        bottom: 20px;
    }
    .inquiry-form {
        padding: 10px 15px;
    }
    .inquiry-form.form-icon .form-group {
        margin-bottom: 8px;
    }
    .inquiry-form.form-icon .form-control {
        border-width: 1px;
        font-size: 12px;
        height: 35px;
        padding: 10px;
    }
    .inquiry-form .form-group i {
        font-size: 12px;
        right: 10px;
        top: 12px;
    }

    .sub-detail {
        font-size: 14px;
    }
    .our-feature .details {
        margin-top: 0;
    }
    .our-feature .details + .details {
        margin-top: 30px;
    }
    .banner-content .section-title {
        font-size: 48px;
    }
    .availability .details > ul {
        margin-right: 0;width: 100%;
    }
    .availability .details .title {
        font-size: 20px;
    }
    .hotel-wrap {
        padding: 52px 0 0;
    }
    .hotel-rooms {
        margin: 50px 0 0;
    }
    .hotel-rooms::before {
        width: 100%;
    }
    .hotel-detail{
        padding-bottom: 55px;
        padding-left: 15px;
        padding-top: 35px;
    }
    .hotel-rooms .flexslider-nav .prev {
        left: 35px;
        right: auto;
    }
    .hotel-rooms .flexslider-nav .next {
        right: 35px;
    }
    .hotel-wrap .all-photo a:before, .hotel-wrap .all-photo a:after, .hotel-wrap .border-effect::before, .hotel-wrap .border-effect::after,
    .blog-detail .all-photo a:before, .blog-detail .all-photo a:after, .blog-detail .border-effect::before, .blog-detail .border-effect::after{
        background-color: #fff;
    }
    .hotel-wrap .all-photo a, .blog-detail .all-photo a {
        color: #ffffff;
    }

    .start-frm {
        font-size: 20px;
        height: 55px;
        line-height: 55px;
        width: 180px;
    }
    .price-tag .theme-btn, .blog-bg .all-photo .theme-btn, .hotel-wrap .all-photo .theme-btn {
        min-width: 150px;
    }

    .home-blog { 
        padding: 50px 0;
    }
    .blog-bg {
        margin: 50px 0 0;
    }
    .blog-bg .all-photo {
        bottom: 0;
    }
    .blog-bg::before {
        width: 100%;
        top: 0;
    }
    .blog-detail {
        margin-bottom: 50px;
        padding-bottom: 70px;
        padding-top: 50px;
    }
    .blog-bg .flexslider-nav .prev {
        left: auto;
        right: 70px;
    }
    .blog-bg .flexslider-nav .next {
        right: 15px;
    }
    .blog-bg .flexslider-nav span {
        bottom: auto;
        top: 5%;
    }

    .testimonial-flexslider.flexslider {
        padding: 50px 20px;
    }
    .testimonial-wrap .title-wrap > p {
        font-size: 16px;
    }
    .testimonial-slider .flexslider-nav .prev {
        left: 0;
    }
    .testimonial-slider .flexslider-nav .next {
        right: 0;
    }

    .dining-wrap {
        padding: 50px 0 40px;
    }
    .theme-tabs {
        width: 100%;
    }
    .dining-item .title-1 {
        font-size: 24px;
    }
    .dining-content .isotope-item {
        padding-top: 0;
    }
    .dining-item {
        margin-bottom: 0;
    }
    .dining-item .price {
        font-size: 20px;
    }
    .contact-us {
        padding: 50px 0 20px;
    }
    .contact-detail {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*Footer*/
    .footer-1 .primary-navbar > li {
        display: inline-block;
        font-size: 12px;
        margin: 10px;
        padding: 0;
    }
    .primary-navbar > li > a, .socia-link > p {font-size: 16px;}
    .primary-navbar > li + li::before {content: "";}
    .socia-link {
        text-align: left;
    }
    .flexslider {
        padding: 10px;
        margin-right: 0;
    }

}

@media only screen and (max-width: 600px) {
    .theme-btn {
        min-width: 100%;
    }
}
@media (min-width:600px) and (max-width:767px) {
    /*Home*/
    .availability .details li + li {
        margin-left: 15px;
        padding-left: 15px;
    }

}

@media (max-width:599px) {  
    /*Home*/
    .availability .details li + li {
        border: medium none;
        margin-left: 15px;
        padding: 0;
    }

}
@media (max-width:567px) {
    .availability .details > ul, .availability .details {
        text-align: center;
        width: 100%;
    }
    .availability .details li {display: block;}
    .availability .details li + li {
        border: medium none;
        margin: 20px auto auto;
        padding: 0;
    }
}
@media (max-width:479px) {  
    .sub-detail {
        font-size: 12px;
    }
    /*Home*/
    .banner-content .section-title {
        font-size: 36px;
        margin-top: 0;
    }
    .banner-bg p {
        /* display: none; */
    }
    .fullscreen-slider .flexslider-nav .next {
        right: 0;
    }
    .fullscreen-slider .flexslider-nav .prev {
        left: 0;
    }

    #map {
        height: 250px;
    }

}
@media (max-width:320px) { 
    .main-slider li [class^="col"] {
        width: 100%;
    }
    .main-slider li .col-xs-6 .content {
        display: none;
    }
    .start-frm {
        margin-bottom: 15px;
    }

}

/******************************* 
    6 - RESPONSIVE ENDS 
********************************/

.item{
    padding-left:5px;
    padding-right:5px;
  }
  .item-card{
    transition: 0.5s;
    /* cursor: pointer; */
    border-radius: 48px;
    background-color: #df9e94 !important;
    color: #ffffff;
    margin-top:10%;
  }
  .item-card img {
    border-top-right-radius: 48px;
    border-top-left-radius: 48px;
  }
  .item-card-title{  
    /* color: white;*/
    /*font-weight: 600;*/
    /*text-shadow: 2px 2px 0 #000, 4px 2px 0 #000, -1px 1px 0 #000, 3px 2px 0 #012;*/
    /*font-family: serif;*/
    /*font-size: 30px;*/
    /*transition: 1s;*/
    /*cursor: pointer;*/
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
  }
  .item-card-title i{  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#000;
  }
  .card-title i:hover{
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  .card:hover{
    /*transform: scale(1.05);*/
    /*box-shadow: 10px 10px 15px rgba(0,0,0,0.3);*/
  }
  .card-text{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 18px;
    font-size: 17px;
  }
  
  .card::before, .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    /* background: rgba(255, 255, 255, 0.1); */
    content: '';
    pointer-events: none;
  }
  .card::before {
    transform-origin: left top;
  }
  .card::after {
    transform-origin: right bottom;
  }
  .card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
    transform: scale3d(1, 1, 1);
  }
  .card .theme-btn {
    border-radius: 20px;
    margin-top: 2%;
    /*margin-left: 3%;*/
    letter-spacing: 2px;
  }

 
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icon-bar a:hover {
    background-color: #000;
  }
  
  .facebook {
    background: #3b5998;
    color: white;
  }
  
  .whatsapp {
    background: #25D366;
    color: white;
  }
  
  .instagram {
    background: #E4405F;
    color: white;
  }
  
  .phone {
    background: #0077B5;
    color: white;
  }
  
  .youtube {
    background: #FF0000;
    color: white;
  }
  
  /* Media query for mobile */
@media (max-width: 767px) {
    .icon-bar {
       display:none;
    }
}

  .fas fa-shopping-cart  {
    background-color:#FFF;} 
  #myBtn {
    height:50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align:center;
    padding:10px;
    text-align:center;
    line-height:40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
  }
  .fa-arrow-circle-up  {
    font-size:30px;}
  
  #myBtn:hover {
    background-color: #555;
  }     




 h1 {
    /*color: #dbd56e;*/
    /*background: -webkit-linear-gradient(25deg, #eee, #333);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*font-size: 3rem;*/
    /*font-weight: 500;*/
    /*overflow: hidden;*/
    /*white-space: nowrap;*/
    /*border-right: 2px solid;*/
    /*animation: type 1.5s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;*/
    /*position: relative;*/
}
@keyframes type {
    from {
        width: 0;
   }
    to {
        width: 100%;
   }
}
@keyframes cursor {
    50% {
        border-color: transparent;
   }
}


.btn2 {
    margin-left: 0 !important;
    margin-bottom: 10px;
}

.reply-form .form-group {
    text-align:-webkit-center;
}

.reply-form input {
    max-width:30%;
}

.minh165 {
    min-height: 165px;
}


  
.custom-choose
{
    justify-content: normal;
    align-items: center;
    font-family: fantasy;
    font-size: 55px;
    display:table;
}
.custom-choose input[type='radio'],.custom-choose input[type='checkbox']
{
    display: none;
}
.custom-choose input[type='radio'] + label,.custom-choose input[type='radio']:not(checked) + label
,.custom-choose input[type='checkbox'] + label,.custom-choose input[type='checkbox']:not(checked) + label
{
    padding: 13px 45.5px;
    border: solid 2px #444444;
    border-radius: 47px;
    text-align: center;
    font-size: 18px;
    margin-right: 31px;
    transition: .4s;
    min-width: 30%;
}
.custom-choose input[type='radio']:checked + label,
.custom-choose input[type='checkbox']:checked + label
{
    position: relative;
    border: solid 2px #444444;
    background: #444444;
    color: #FFF;
    transition: .4s;
}
.custom-choose input[type='radio']:checked + label::before,
.custom-choose input[type='checkbox']:checked + label::before
{
    content:'✓';
    position: absolute;
    left: 16px;
}

#book-button {
    font-size: 25px;
}

#book-form input[type="date"] {
    font-size: 28px;
}

input#booking-date {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

/*** cards ***/


@media (max-width: 768px) {
    .flex-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        text-align: left;
    }
    
    .item-card-img {
       border-radius: 20px !important;
        padding: 10px;
        margin-left: 10px;
        width: 50%;
        max-width: 100px;
        height: auto;
    }
    
    .item-card-content {
        display: grid;
        width: 50%;
    }
    .item-card img {
       border-radius: 50%;
      }
      .item-card {
        transition: 0.5s;
        /* cursor: pointer; */
        border-radius: 0px;
        background-color: #df9e94;
        color: #ffffff;
        margin-top: 3%;
    }
    .item-card-content .material-icons {
        display: none;
    }

}
/***** end card ****/
.text-white {
    color: #fff !important;
}

/**** banner css style ****/
h5 {
    font-size: 30px !important;
  }
  
  .text_1 {
    animation: text1;
  }
  
  .text_2 {
    animation: text2;
  }
  
  .text_1, .text_2 {
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 0 #000, 4px 2px 0 #000, -1px 1px 0 #000, 3px 2px 0 #012;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    animation-duration: 15s;
    animation-timing-function: steps(100, end);
    animation-iteration-count: infinite;
  }
  
  .text_1::after, .text_2::after {
    content: "|";
    position: absolute;
    right: 0;
    animation: caret infinite;
    animation-duration: 1s;
    animation-timing-function: steps(1, end);
  }
  
  @keyframes text2 {
    0%, 50%, 100% {
      width: 0;
    }
    
    60%, 90% {
      width: 13em;
    }
  }
  
  @keyframes text1 {
    0%, 50%, 100% {
      width: 0;
    }
    10%, 40% {
      width: 21em;
    }
  }
  
  @keyframes caret {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  @media (max-width: 767px){
  
      
    h5 {
        font-size: 15px !important;
    }

    @keyframes text2 {
        0%, 50%, 100% {
          width: 0;
        }
        
        60%, 90% {
          width: 15em;
        }
      }
      
      @keyframes text1 {
        0%, 50%, 100% {
          width: 0;
        }
        10%, 40% {
          width: 15em;
        }
      }
      .mt-100 {
        margin-top: 65px !important;
      }
      
}

  
  
  .review-card {
    max-width: 100%;
    /* margin: 20px auto; */
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 20px;
  }
  .review-card .review-header {
    display: flex;
    align-items: center;
  }
  .review-card .review-header img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .review-card .review-header .review-author {
    font-weight: bold;
  }
  .review-card .review-header .review-time {
    color: #ffb400;
  }
  .review-card .review-content {
    text-align: justify;
    margin-top: 10px;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Brands';
  }
  .review-card .review-rating {
    margin-top: 15px;
  }
  .review-card .review-rating .star {
    color: #ffc107;
    font-size: 1.2rem;
  }

  /*** youtube ***/
  .profile-card {
    max-width: 100%;    
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .profile-card .profile-header {
    background-color: #004d40;
    padding: 20px;
    text-align: center;
  }
  .profile-card .profile-header img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
  }
  .profile-card .profile-body {
    padding: 20px;
    text-align: center;
  }
  .profile-card .profile-body h5 {
    margin: 10px 0;
  }
  .profile-card .profile-body p {
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
  }
  .profile-card .profile-body .btn {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
  }
  .profile-card .profile-images {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 10px;
  }
  .profile-card .profile-images img {
    width: 30%;
    border-radius: 10px;
  }

  .custome-text {
    font-size: 50px !important;
  }

  @media (max-width: 767px){
    .custome-text {
      font-size: 20px !important;
    }
  
}
  
  .testimonial-flexslider .flexslider-nav span {
    bottom: 0;
    position: absolute;
    top: 0;
    height: 5px;
    line-height: normal;
    cursor: pointer;
    margin: auto;
}

.sub-detail-alt {
    padding: 10px;
    color: #a2f7c3;
    /* text-transform: uppercase; */
    letter-spacing: 6px;
    font-size: 40px;
    font-weight: 900;
}

.ft-alt {
    font-weight: 600;
    color: #cf3821;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.custom-calendar-icon {
    position: absolute;
    top: 55% !important;
    right: 0.5rem; /* Adjust as needed */
    transform: translateY(-50%);
    /* color: white;  */
    pointer-events: none; /* Make sure clicks go through to the input */
    font-size: 1.25rem; /* Adjust size as needed */
}
@media (min-width: 768px) {
    .break {
        display: none;
    }
}


.marquee-container {
    width: 100%;
    height: 30px;
    background-color: red;
    overflow: hidden;
    position: relative;
}

.marquee-text {
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ffffff;
    animation: marquee 15s linear infinite;
    font-weight: 700;
}

@keyframes marquee {
    from {
        left: 100%;
    }
    to {
        left: -100%;
    }
}

.loc-alt {
    border-radius: 45px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(0 57 40 / 22%);
    color: #ffffff;
    text-align: center;
    font-weight: 900;
    font-family: system-ui;
}


@media (max-width: 568px){
    .minheight250 {
        min-height:250px;
    }
    .reply-form input {
        max-width:50%;
    }
    .loc-alt {
        margin-left: 40px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(0 57 40 / 22%);
        color: #ffffff;
        text-align: center;
        font-weight: 900;
        font-family: system-ui;
    }
      .item-card-title{  
        /*font-family: serif;*/
        /*font-size:20px;*/
        /*transition:1s;*/
        /*cursor:pointer;*/
        /*padding-left:10px;*/
        /*padding-right:10px;*/
      }
      
}

.how-it-works {
    background-color: #78bf98;
     padding: 50px 0 40px;
    text-align: center;
}
.how-it-works h2 {
    font-size: 40px;
    color: #cf3821;
    margin-bottom: 30px;
    font-weight: bold;
}
.how-it-works .step {
    margin: 10px;
    background-color: #000;
    color: #a5f7c6;
    padding: 20px;
    border-radius: 5px;
}
.how-it-works .step .icon {
    font-size: 50px;
    margin-bottom: 10px;
}
.how-it-works .step-title {
    font-weight: bold;
}
.how-it-works .step-description {
    margin: 0;
}
.how-it-works .step .arrow {
    font-size: 24px;
    margin-top: 20px;
}

.mh-220{
    min-height:220px !important;
}

.alt-h {
    font-weight: 500;
    margin: 10px;
    font-size: 18px;
}

.rd100 {
    border-radius: 100px;
}

.w100 {
    width:100%;
}
.time-slot .card-input-element:checked + .card-input:not(.disabled) {
    background-color: #ffbdb2;
}