/*==============================================
          Yo. Website Stylesheet
           Body Core Stylesheet
===============================================*/

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

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: #fff;
    color: #323232;
    font-family: 'Raleway', sans-serif;
}

body,
html {
    height: 100%;
}


.btn-skin {
    font-size: 20px;
    padding: 15px 26px;
    margin: 30px 0;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: #ff9f19;
    color: #fff;
    /*border-color: #ffffff;*/
    /*border: 2px solid #ffffff;*/
    font-family: 'Raleway', sans-serif;
}
.btn-skin:hover {
    color: #37bfbb;
    background-color: transparent;
    border: 2px solid #37bfbb;
    transition: 0.5s;
}

.btn-outline-skin{ font-size: 20px;
    padding: 15px 26px;
    margin: 30px 0;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
    /*border-color: #ffffff;*/
    border: 2px solid #ffffff;
    font-family: 'Raleway', sans-serif;}

.btn-outline-skin:hover {
    color: #37bfbb;
    background-color:#fff;
    border: 2px solid #37bfbb;
    transition: 0.5s;
}


.bg-skin{background-color: #37bfbb;}
.bg-lightskin{background-color: #bee3de;}

.btn:focus,
.btn:active {
    outline: none !important;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0px;
    padding: 0px
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
}

li {
    display: inline-block;
}

a {
    cursor: pointer;
    color: #000000;
}

a:hover {
    text-decoration: none;
}

textarea {
    resize: none;
}

hr {
    margin-bottom: 0;
}

.container-fluid {
    padding: 0;
}

/*-- scroll to top ---*/

#return-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 9999;
    display: block;
    position: fixed;
    background: #37bfbb;
    text-decoration: none;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#return-to-top i {
    color: #ffffff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#return-to-top:hover {
    background: #c1e4df;
}

#return-to-top:hover i {
    color: #ffffff;
    top: 5px;
}

::placeholder {
    font-size: 14px;
    font-style: italic;
}

:-moz-placeholder {
    font-size: 14px;
    font-style: italic;
}

:-ms-input-placeholder {
    font-size: 14px;
    font-style: italic;
}

::-moz-placeholder {
    font-size: 14px;
    font-style: italic;
}

::-webkit-input-placeholder {
    font-size: 14px;
    font-style: italic;
}

.attraction figure img:hover,
.attraction-page figure img:hover {
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.page-title{font-family: 'Anton', sans-serif;            
            line-height: 45px;
            color: #4b4b4b;
            /*margin-top: 0px;
            margin-bottom: 40px;*/
            padding-top: 60px;
            font-weight: bold;
            }

.page-title h2{font-size: 50px;text-align: center;}   

.subtitle{font-family: 'Dancing Script', cursive;font-style: italic;color: #ff9f19;text-align: center;padding-bottom: 60px;}         

.inner_subtitle{font-family: 'Dancing Script', cursive;font-style: italic;font-size: 24px; color: #333;padding: 20px 0px;}

.topbar{width:100%;background-color: #37bfbb;color: #fff;padding: 5px 0px;text-align: center;}

.topbar i{padding-right: 10px;font-size: 20px;}

.topbar a{color: #fff;}

.topbar-inner{padding-top: 2px;}



/*======================
     Nav-bar Styles
======================*/

header {
    height: auto;
    background: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 100;
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    padding: 40px 0;
}

.header {
    background-image: url("../images/cover.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

header .logo {
    text-align: center;
    padding-top: 10px;
}

header .social-icons {
    float: right;
    position: relative;
}

header .social-icons a {
    margin-left: 15px;
}

header .social-icons i {
    font-size: 18px;
    color: white;
    margin-left: 8px;
}

.square {
    height: auto;
    width: 50px;
    margin-top: 4px;
}

.sticky {
    z-index: 99;
    position: fixed;
    font-weight: 600;
    top: 0;
    width: 100%;
    background: rgba(55,191,187, 0.70);
}

.sticky img {
    width: 100%;
    height: auto;
    transition-duration: 0.5s;
    padding: 6px 0;
}

.sticky .header {
    transition-duration: 0.5s;
}

.sticky .social-icons {
    transition-duration: 0.5s;
}

header .social-icons i:hover {
    color: #000000;
}

.sticky p {
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: bold;
}

.affix {
    top: 0;
    z-index: 9999 !important;
}

.affix + .container {
    padding-top: 70px;
}

.slide-menu .fa-bars {
    font-size: 28px;
    margin-left: 28px;
    float: right;
    color: #ffffff;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8392156862745098);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
}

.sidenav.hided {
    width: 0;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover,
.sidenav .active {
    color: #37bfbb;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.slide-menu {
    cursor: pointer;
}

nav p {
    color: #101f63;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0px;
    margin-bottom: 0;

}

.txt-blue{color: #263794;}
nav span {
    color: #101f63;
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

nav .another {
    margin-top: 5px;
}

header .border-img {
    position: absolute;
    opacity: 0.4;
    bottom: -25px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
        z-index: 9999;
    }
    .sidenav a {
        font-size: 14px;
    }
}


/* .testheight Not required - unless testing ;) */

.testheight {
    height: 1200px;
    font-size: 20px;
    text-align: center;
    padding: 100px 20px;
}

.scrolltop {
    display: none;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    right: 10px;
}

.scroll {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: rgb(255, 255, 0);
    padding: 20px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

.scroll:hover {
    background: rgb(0, 0, 0);
    color: white;
    transition: 0.5s;
    -moz-transition: -1.5s;
    -webkit-transition: -1.5s;
    -o-transition: -1.5s;
}

.scroll:hover .fa {
    padding-top: -10px;
}

.scroll .fa {
    font-size: 30px;
    margin-top: -5px;
    margin-left: 1px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

/*==================== 
    Banner Styles
====================*/

.banner-home {
    width: 100%;
    height: 100vh;
    display: flex;
    color: #fff;
    position: relative;
    padding-top: 180px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/cover.jpg);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Old Standard TT', serif;
}

.banner-another {
    width: 100%;
    height: 300px;
    display: flex;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/about_page.jpg);
}

.banner-another:after {
    content: "";
    width: 100%;
    height: 100px;
    /*background: url("../images/background-white-color.png");*/
    bottom: -10px;
    left: 0;
    position: absolute;
    display: inline-block;
}

.banner-home .gradient {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left, rgba(255, 0, 0, 0.3) 0%, rgba(255, 240, 0, 0.3) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 0, 0, 0.3) 0%, rgba(255, 240, 0, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 0, 0, 0.3) 0%, rgba(255, 240, 0, 0.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dff0000', endColorstr='#4dfff000', GradientType=1);
}

.banner-home:after {
    content: "";
    width: 100%;
    height: 100px;
    /*background: url("../images/background-white-color.png");*/
    bottom: 0;
    left: 0;
    position: absolute;
    display: inline-block;
}

.banner-home h1 {
    padding: 0;
    font-size: 60px;
    font-weight: 400;
    padding-bottom: 10px;
    /*color: #fff;*/
    letter-spacing: -3px;
}

.banner-home h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.banner-home p {
    font-size: 20px;
    font-weight: 500;
}

.banner-home i {
    font-size: 25px;
    margin-right: 15px;
}

.banner-home .btn-success {
    font-size: 22px;
    padding: 15px 28px;
    margin: 30px 0;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #ffffff;
    border: 2px solid #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.banner-home .btn-success:hover {
    color: #000000;
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

/*Book Now*/

.booknow_cover_up{width: 100%;background-color: #fff;padding-top: 20px;}

.booknow_cover_up .innertitle{font-family: 'Anton', sans-serif;font-style: italic;font-weight: 700;color: #37bfbb;}

.booknow_cover_up .line{width: 110px;height: 10px;margin: 15px 0px; background-color: #00171f; }

.booknow_cover_up .slimline{background-color: #00171f;width: 360px;height: 1px;position: absolute;top:57px;}

.booknow_cover_up .check_availability{background-color: #c1e4df;padding: 20px;}

.contactform .field-row{ 
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 27px 0px 45px;
    border-right: 2px solid #ededed;
}

.contactform .field-row input, 
.contactform .field-row select{ 
    border: none; 
    background: transparent; 
    padding-left: 5px; 
    position: relative; 
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #333;
    text-align: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 0;
}
.contactform .search-btn{ 
   padding: 30px 15px 30px;
}
.contactform button.ttm-btn.ttm-btn-size-md{width: 80%; height: 50%;margin: 35px 25px;display: block;border-radius: 0;color: #fff;}
.contactform button:focus{ border : 0;box-shadow: none; }
.contactform .field-row select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-align-last: center;
}
.contactform .fontIcon {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 14px;
    display: block;
    color: #333;

}

.contactform .field-row label{ font-size: 16px; color: #333; margin-bottom: 0; text-transform: capitalize; position: relative; display: block; }

/*==================== 
    About Styles
====================*/

.about {
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 100px;
}

.about img {
    width: 100%;
    height: auto;
}

.about .heading {
    
    padding-bottom: 70px;
}

.about .heading h2 {
    font-size: 56px;
    font-family: 'Alegreya', serif;
    text-align: center;
}

/*.about .heading h3 {
    padding: 40px 0px;
    color: #f26522;
    font-size: 30px;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
}*/

.about .heading img {
    width: 80px;
    height: 80px
}

/*.about .subtitle h3{
    padding: 20px 0px;
    color: #f26522;
    font-size: 32px;
    font-family: 'Dancing Script', cursive;
    font-style: italic;
}*/


/*==================== 
    Services Styles
====================*/

.services {
    width: 100%;
    height: 690px;
    /*background: #f2f2f2;*/
    background-image: url('../images/amenities.jpg');background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
}

.services figure img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    position: relative;
}

.services .right-part {
    padding-top: 70px;
    padding-left: 50px;
}

.services figure {
    margin-bottom: 0;
}

/*.services h2 {
    font-size: 56px;
    text-align: center;
    padding: 40px 0px;
}

.services h3 {
    font-size: 30px;
    padding-bottom: 20px;
}*/

.services p {
    font-size: 20px;
    /*padding-bottom: 20px;*/
/*    padding-right: 660px;*/
    text-align: center;
}

.services a {
    color: #323232;
    font-size: 20px;
}

.services .ico {
    color: #00a651;
    font-size: 22px;
    /*margin-right: 10px;*/
}

.services ul li {
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.services ul li span {
    border-bottom: 1px solid;
    display: block;
    float: left;
    width: calc(100% - 40px);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.services .ico {
    color:#37bfbb;
    font-size: 24px;
    margin-right: 5px;
    float: left;
    padding-top: 10px;
    padding-right: 10px;
}

.services ul li:last-child span {
    border-bottom: none;
}

.services .contant-part-2 {
    padding-left: 50px;
}

/*==================== 
    Attraction Styles
====================*/

.attraction {
    width: 100%;
    height: auto;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.attraction img {
    width: 100%;
    height: auto;
}

.attraction .heading {
    text-align: center;
    /*padding-bottom: 70px;*/
}

.attraction .heading h2 {
    font-size: 56px;
}

.attraction .heading h3 {
    font-size: 30px;
}

.attraction .heading img {
    width: 80px;
    height: 80px
}

.attraction figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}

.attraction h6 {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
    color: #323232;

}

.attraction h6 a {
    color: #000000;
}

.attraction h4 b {
    color: #000000;
}

.attraction .inner-content {
    padding-right: 40px;
}

.attraction p {
    font-size: 14px;
    padding-top: 20px
}

.attraction figure {
    margin: 0 0 4rem;
}

.attraction p span {
    display: block;
}

.attraction .btn-skin {
    text-align: center;
    margin: 0px auto 40px;
}
/*
.attraction .button .btn-success {
    font-size: 22px;
    padding: 10px 40px;
    margin: 30px 0;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: transparent;
    color: #000000;
    border: 1px solid #b6b6b7;
    font-family: 'Montserrat', sans-serif;
}*/

.attraction .button .btn-success:hover {
    color: #ffffff;
    background-color: #b6b6b7;
    border: 1px solid #b6b6b7;
}

/*=== Blog-page Styles ===*/

.attraction-page {
    width: 100%;
    height: auto;
    padding-top: 30px;
    /*padding-bottom: 100px;*/
    position: relative;
   font-family: 'Raleway', sans-serif;
}

/*.attraction-page:after {
    content: "";
    width: 100%;
    height: 100px;
    background: url(../images/background-white-color-1.png);
    bottom: -94px;
    z-index: 9;
    left: 0;
    position: absolute;
    display: inline-block;
}*/

.attraction-page img {
    width: 100%;
    height: auto;
}

.attraction-page .heading {
    text-align: center;
    padding-bottom: 70px;
}

.attraction-page .heading h2 {
    font-size: 56px;
}

.attraction-page .heading h3 {
    font-size: 30px;
}

.attraction-page .heading img {
    width: 80px;
    height: 80px
}

.attraction-page figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}

/*.attraction-page h4 {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}*/
.attraction-page h6 {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
    color: #323232;

}
.attraction-page .inner-content {
    padding-right: 40px;
}

.attraction-page p {
    font-size: 14px;
    padding-top: 20px
}

.attraction-page figure {
    margin: 0 0 4rem;
}

.attraction-page p span {
    display: block;
}

.attraction-page .button {
    text-align: center;
}

.attraction-page .button .btn-success {
    font-size: 16px;
    padding: 15px 40px;
    margin: 30px 0;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: transparent;
    color: #cccccc;
    border: 2px solid #b6b6b7;
    font-family: 'Montserrat', sans-serif;
}

.attraction-page .button .btn-success:hover {
    color: #ffffff;
    background-color: #b6b6b7;
    border: 2px solid #b6b6b7;
}

.gallery{width: 100%;background-color: #dfdfdb;padding: 0px 0px;}

.gallery .btn-skin{margin: 40px auto;}

/*Inquiry Style*/

.inquiry{width: 100%;height: auto;
    background-image: url('../images/inquiry-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    /*margin-top: 70px;*/
    text-align: center;
   }

.inquiry .inquirytitle h2{color: #ff9f19;
    font-size: 42px;
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    text-align: center;
    padding: 30px 0px;
 }

.inquiry_inner h5{padding-bottom: 10px;line-height: 1.8;}

/*.inquiry_inner a{border: 2px solid #37bfbb;border-radius: 0;margin: 30px auto;padding:20px; color: #37bfbb;}*/
/*.inquiry_inner{background-image: url('../images/inquiry-inner.jpg');background-repeat: no-repeat;background-size: 100%;}*/

.rooms{width: 100%;padding-bottom: 60px;}


.card:hover{box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);transition: 0.5s;}

.card {
  margin-top: 10px;
  box-sizing: border-box;
  border-radius: 2px;
  background-clip: padding-box;
  min-height:400px;
  text-align: center;
}

.card span.card-title {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  margin:  0px auto;
}

.card .card-image {
  position: relative;
  overflow: hidden;
}

.card .card-image img {
  border-radius: 2px 2px 0 0;
  background-clip: padding-box;
  position: relative;
  z-index: 1;
}

.card .card-image span.card-title {
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  padding: 16px;
  color: #37bfbb;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;

}

.card .card-content {
  padding: 16px;
  border-radius: 0 0 2px 2px;
  background-clip: padding-box;
  box-sizing: border-box;
}

.card .card-content span {
  font-weight: bold;
  display: inline-block;
}
.card .card-content p {
  margin: 0;
  color: inherit;
  display: inline-block;
}

.card .card-content span.card-title {
  line-height: 48px;
}

.card .card-action {
  border-top: 1px solid rgba(160, 160, 160, 0.2);
  padding: 16px;
}

.card .card-action a {
  color: #ff9f19;
  margin-right: 16px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.card .card-action a:hover {
  color: #ffd8a6;
  text-decoration: none;
}

.card .card-action i:before{padding-left: 5px;}
.rooms .btn-skin{margin: 50px auto 0px;}

/*==================== 
    Contact Styles
====================*/


.bottombar{background-color: #c1e4df;text-align: center;}

.bottom_inner img{margin: 20px auto;}

.bottom_inner i{padding:10px 0px; font-size: 28px;color: #37bfbb;}

.bottom_inner h5{font-weight: bold;padding:5px 0px; }

.bottom_inner p{padding:5px 0px;}

.bottombar .bottom_inner .social-icons i{padding: 20px 10px 0px;}

.bottombar .bottom_inner .social-icons i:hover{color: #333;cursor: pointer;}
.bottom{background-color: #37bfbb;padding:20px 0px;}
.bottom .footline{text-align: center;color: #fff;}
.bottom h6 a{font-weight: bold;}

.mapcover{width: 100%;}

.map_img{width: 100%;background-size: cover;background-repeat: no-repeat;}

/*ABOUT PAGE*/

#about-us h5 {
    color: #616161;
    font-size: 16px;
    font-weight: 500;
}

#about-us h5 a {
    color: #616161;
}

#about-us h5 span {
    padding: 0 10px;
}

#about-us h2 {   
    font-size: 56px;
    margin: 60px 0px;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}

#about-us .about-text {
    /*margin: 0;*/
    /*color: #a3a3a3;*/
    /*font-size: 16px;*/
    line-height: 35px;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

#about-us .image {
    width: 100%;
    height: 394px;
    margin-bottom: 52px;
}

#about-us .thumbnail {
    padding: 0;
    border: none;
    border-radius: 0;
    object-fit: cover;
}

/*========================
      Services-Page
=========================*/

#services {
    padding-top: 30px;
/*    padding-bottom: 200px;*/
    position: relative;
 
}
.services-box{ /*-webkit-box-shadow: -1px -1px 8px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -1px 5px 0px rgba(0,0,0,0.75);
box-shadow: -1px -1px 5px 0px rgba(0,0,0,0.75);*/
padding: 30px;box-sizing: border-box;}

#services .part-1,
.part-2,
.part-3,.part-4,.part-5,.part-6,.part-7,.part-8,.part-9 {
    /*border-bottom:1px solid #333; */
    padding-bottom: 50px;
}

#services:after {
    content: "";
    width: 100%;
    height: 100px;
    /*background: url(../images/background-white-color-1.png);*/
    bottom: -94px;
    z-index: 9;
    left: 0;
    position: absolute;
    display: inline-block;

}

#services .service_icon{
    color: #37bfbb;
    font-size: 25px;
    margin-right: 10px;
}

#services h2 {   
    font-size: 56px;
    padding-bottom: 30px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}

#services .heading {
    padding-bottom: 0;
}

#services img {
    width: 92%;
    height: 150px;
    object-fit: cover;
}

#services .heading h3 {
    color: #111111;
    font-size: 24px;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 500;
    text-transform: capitalize;
}

#services p {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #323232;
}

#services .heading {
    padding-bottom: 30px;
}

#services .col1 {
    margin-top: -10px;
}

/*========================
      Room-Page
=========================*/
#rooms {
    padding-top: 30px;
    padding-bottom: 100px;
    position: relative;
 
}

#rooms h2 {   
    font-size: 56px;
     margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}

/*========================
      Room-Page
=========================*/
#portfolio {
    padding-top: 30px;
    padding-bottom: 100px;
    position: relative;
 
}

#portfolio h2 {   
    font-size: 56px;
     margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}
/*========================
      Get In Touch-Page
=========================*/
#contact {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
 
}

#contact h2 {   
    font-size: 56px;
     margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}

#contact img{width: 100%;object-fit: cover;}

#contact .contact-info h3{margin: 20px 0px;font-family: 'Raleway', sans-serif;font-weight: bold;}

#contact .contact-info .contact-header{font-weight: bold;}

#contact .call img{margin-top: 40px;}

/*#contact .contact-info ul li p span{padding-left: 20px;}*/



.attraction-page h2 {   
    font-size: 56px;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Anton', sans-serif;
    color: #4b4b4b;
    text-align: center;
}

.attraction-page-another {
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 100px;
    position: relative;
    font-family: 'Old Standard TT', serif;
}

.attraction-page-another:after {
    content: "";
    width: 100%;
    height: 100px;
    background: url(../images/background-white-color-1.png);
    bottom: -94px;
    z-index: 9;
    left: 0;
    position: absolute;
    display: inline-block;
}

.attraction-page-another img {
    width: 100%;
    height: auto;
}

.attraction-page-another .heading {
    text-align: center;
    padding-bottom: 70px;
}

.attraction-page-another .heading h2 {
    font-size: 56px;
}

.attraction-page-another .heading h3 {
    font-size: 30px;
}

.attraction-page-another .heading img {
    width: 80px;
    height: 80px
}

.attraction-page-another figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.attraction-page-another h4 {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

.attraction-page-another .inner-content {
    padding-right: 40px;
}

.attraction-page-another p {
    font-size: 13px;
    padding-top: 20px
}

.attraction-page-another figure {
    margin: 0 0 4rem;
}

.attraction-page-another p span {
    display: block;
}

.attraction-page-another .button {
    text-align: center;
}

.attraction-page-another .button .btn-success {
    font-size: 16px;
    padding: 15px 40px;
    margin: 30px 0;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: transparent;
    color: #cccccc;
    border: 2px solid #b6b6b7;
    font-family: 'Montserrat', sans-serif;
}

.attraction-page-another .button .btn-success:hover {
    color: #ffffff;
    background-color: #b6b6b7;
    border: 2px solid #b6b6b7;
}
