@charset "UTF-8";
/* 
$content-width will be the max width of the content within the navigation bar. 
$breakpoint determines at which width the media query breakpoint will take effect.
*/

body {
color: #464747;
}
.bg-skin{background-color: #40a798;}
.ttm-textcolor-white{color: #fff;}
a{color: #333;}
a:hover{text-decoration: none;}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background:#f6bd60;
  color: #463f3f;
  text-decoration: none;
  font-weight: 600;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  background: #f6bd60;
  color: #000;
  font-weight: bold;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 75px;
  background: #f6bd60;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background: #f6bd60;
  z-index: 1000;
}
/*.nav-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: darkcyan;
  transition: background .5s
}*/

.main-header {

  width: 100%;
  background-color: #f7ede2;
  position: relative;
  top: 0;
}

.main-header .header-content p{margin: 5px 0px;}

.main-header hr{margin: 0px;}

/*SLIDER CSS START*/
.carousel-fade {
    .carousel-inner {
        .item {
            transition-property: opacity;
        }
        
        .item,
        .active.left,
        .active.right {
            opacity: 0;
        }

        .active,
        .next.left,
        .prev.right {
            opacity: 1;
        }

        .next,
        .prev,
        .active.left,
        .active.right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }
    }

    .carousel-control {
        z-index: 2;
    }
}



html, 
body, 
.carousel, 
.carousel-inner, 
.carousel-inner .item {
    height: 100%;
}

.item:nth-child(1) {
    background: #74C390;
}

.item:nth-child(2) {
    background: #51BCE8;
}

.item:nth-child(3) {
    background: #E46653;
}

/*---------------*/
.slides-wraper {
  height: 100vh;
  /*background-repeat: no-repeat;*/
  /*background-size: 100%;*/
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
}
.intro-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: width: 100vw; */
  height: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: height: 100vh; */ 
  object-fit: cover;
  z-index:-1;
  /* filter: brightness(50%); */ /* 0% black, 100% original image, values > 100% are allowed for brighter than original image. */
  /* display: none; */
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

.slides-wraper .booknow-header {
  position: absolute;
  bottom: -285px;
  right: 50px;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  background-color: rgba(255,255,255,0.9);
  text-align: left;
}

.slides-wraper .booknow-header h3{ font-family: 'Kaushan Script', cursive;}
.booknow-header  .booknow-inner .check-date label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    float: left;
}

.booknow-header form .booknow-inner .check-date input {
    width: 100%;
    height: 35px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    font-size: 14px;
    color: #464747;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 20px;
    opacity: 0.7;
 }

 .booknow-header form .booknow-inner .check-date select {
    width: 100%;
    height: 35px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    font-size: 14px;
    color: #464747;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 20px;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0.7;

 }



.booknow-header form .booknow-inner .check-date {
    position: relative;
    margin-bottom: 15px;
}
/*
.booknow-header form .booknow-inner .check-date span {
    color: #40a798;
    position: absolute;
    right: 24px;
    bottom: 11px;
    font-family: 'FontAwesome'; 
 }*/

.booknow-header form .booknow-inner .check-date i {
    color: #40a798;
    position: absolute;
    right: 24px;
    bottom: 10px;
    /*font-family: 'FontAwesome'; */
 }

.icon_calendar::before {
    content: "\f073";
}

.icon_arrow::before {
    content: "\f0dd  ";
}

.slides-wraper h3 {
  font-size: 36px;
  margin-bottom: 1.75rem;
  text-align: center;
}
.slides-wraper p {
  font-size: 1.75rem;
}

@media (max-width: 700px) {
  html { font-size: 12px; }
  .booknow-header { padding: 1.5rem 2rem; font-family: 'Kaushan Script', cursive; }
  .slides-wraper h3 { font-size: 2.5rem; }
  .slides-wraper p { font-size: 1.25rem; }
}
/*SLIDER CSS ENDS*/

.section-title h2 {
    font-size: 38px;
    color: #323333;
    line-height: 58px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
}

/*BUTTON CSS START*/
.button {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #333;
  margin: 20px 20px 20px 20px;
  font-size: .8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: flex;

}

.main-header #btn-skin{margin: 5px; float: right;}
.check-button {
  display: inline-flex;
  height: 80px;
  width: 280px;
  border: 2px solid #333;
  margin: 20px 20px 20px 20px;
  color: #BFC0C0;
  background-color: #40a798;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: flex;

}

#btn-skin {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 30px auto;
}

#btn-skin a {
  position: relative;
  transition: all .35s ease-Out;
  color: #333;
}

#slide {
  width: 100%;
  height: 100%;
  left: -200px;
  background: #40a798;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#btn-skin:hover #slide {
  left: 0;
}

#btn-skin:hover a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/*BUTTON CSS ENDS*/
/*ABOUT US CSS START*/
.aboutus{width: 100%;background-color: #fff;}

.about-content{text-align: center;}

.about-btn{margin: 0px auto;display: block; background-color: red;}

.centering{margin: 0px auto;display: block;}
/*ABOUT US CSS ENDS*/

/*SERVICES CSS START*/
.services{width: 100%;background-color: #f7ede2;}

.services .section-title h2{padding-top: 40px;}

.services-cover{margin-bottom: 30px;}

.services-inner{width: 100%;background-color: transparent;}

.services-inner ul li{list-style: none;}

.services-inner ul li .services-icon{color: #333;display:inline-block;text-align: center;padding:15px 0px 22px ;font-size: 40px;box-sizing: border-box;}

.services-inner ul li .services-icon:hover {color: #fff;}

.services-inner .services-txt{font-size: 20px;margin: 0px auto;}

.services-inner .services-txt:after{margin-bottom: 40px;}

.services figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    float: left;
}

.services .no-mp{margin: 0px;padding: 0px;}

/*.services-cover .services-img{align-content: l}*/

/*SERVICES CSS ENDS*/
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 20px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #3498db;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  /*height: 240px;*/
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: .4s;
}

.portfolio .portfolio-item figure .link-preview, .portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all .2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i, .portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover, .portfolio .portfolio-item figure .link-details:hover {
  background: #3498db;
}

.portfolio .portfolio-item figure .link-preview:hover i, .portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 22px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

.portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #3498db;
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/*ROOMS CSS START*/

.rooms{width: 100%;}
.custom-slider{
  height: 360px!important;
  .carousel-control-prev,
  .carousel-control-next{
    text-shadow: 2px 2px 4px #000000;
    font-size: 30px;
  }
  .carousel-inner{
    height: 100%;
    .carousel-item{
      height: 100%;
      .carousel-img-container{
        height: 100%;
      }
      img{
        max-width:100% !important;
        max-height:100% !important;
        width: auto !important;
      }
    }
  }
}

.rooms-inner{text-align: left;}
.rooms-inner h1{color: #40a798;font-weight: bold; padding: 20px 0px;}
.rooms-inner p{padding-bottom: 20px;}
.rooms-details .icon-rooms{display: inline-block;font-size: 30px;}
.rooms-details .icon-guest{font-family: 'icomoon';color: #40a798;}
.rooms-details .icon-guest:before{content: "\e906";}
.rooms-details .icon-bed{font-family: 'icomoon';}
.rooms-details .icon-bed:before{content: "\e906";color: #40a798;}
.rooms-details h6 span{font-size:16px;}
.rooms-details span,h6{display: inline-block;font-size:22px;}

/*ROMMS CSS ENDS*/

.online-booking{width: 100%;
    background-image: url('../images/booknow-back.jpg');
    text-align:center;
    width: 100%;
    size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0px;}

.online-booking h1{color: #fff;
    font-weight: bold;
    padding:10px 0px 20px 0px;
    font-family: 'Kaushan Script', cursive;
    color: #f6bd60;}

.online-booking h3{height: 40px;color: #fff;background-color: #40a798;}    

.online-booking .button{ border: 2px solid #fff;}

.online-booking #btn-skin a{ color: #fff;}

.attraction{width: 100%;background-color: #f7ede2;}
.attraction img{
  height:150px;
  width:100%;
}

/* ATTRACTION */
.attraction-box{
    padding:0 0 60px 0;
    background-color: #f7ede2;}
.box-spacing-5px {
    width: 100%;
    overflow: hidden;
    margin: 0px;
}
.box-spacing-5px .tab-box-wrapper {
    padding-right: 5px;
    padding-left: 0px;
    margin-bottom: 5px;
}
.tab-box-view1,.tab-box-view2,.tab-box-view3,.tab-box-view4 {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 400px;
    transition: all .4s;
}
.tab-box-view1{background-image: url(../images/pool-5.jpg);}
.tab-box-view2{background-image: url(../images/resturant.jpg);}
.tab-box-view3{background-image: url(../images/slider1.jpg);}
.tab-box-view4{background-image: url(../images/shopping.jpg);}
.attraction-overlay {
    background-color: #f6bd60;
}
.attraction-overlay:hover{
    background-color: rgba(0,0,0,.5);
    cursor: pointer;
}
 .attraction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s all;
}
 .attraction-overlay .content-inner {
    padding: 0 38px;
}
 .content-inner {
     display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
}
 .content-inner .icon-service {
    margin-top: 30px;
    flex-basis: 100%;
}
.content-inner .icon-service i {
    display: block;
    color: #fff;
    font-size: 48px
}
.content-inner .service-title {
    font-size: 30px;
    line-height: 32px;
    margin-top: 30px;
    flex-basis: 100%;
    margin-bottom: 0;
    font-family: 'Kaushan Script', cursive;
}
.icon-service .service-desc {
    font-size: 16px;
    line-height: 26px;
    margin-top: 17px;
    flex-basis: 100%;
    position: relative;
}
.attraction-box a{ position: relative; }
.attraction-box a:after{
   /*content: "\f101";*/
    position: absolute;
    font-size: 18px;
    color: #fff;
    

    margin-left: 10px;
    top: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.content-inner a:hover:after{ color: #f26a29; }

/*#footer{width: 100%;padding: 40px 0px; background-color: #f7ede2;}

#footer h3{font-family: 'Libre Baskerville', serif;}

#footer ul li: before{font-family: FontAwesome;content: #2b1b;}
*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #313030;
  font-size: 16px;
  background: #fff;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f7ede2;
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  /*font-family: "Raleway", sans-serif;*/
  color: #656262;
}

#footer .footer-top h3 {
  font-size: 22px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Libre Baskerville', serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f6bd60;
  font-size: 14px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #656262;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f6bd60;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #ffe2d9;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff5821;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #ed3b00;
}

#footer .credits {
  padding-top: 5px;
  font-size: 16px;
  color: #313030;
}

#footer .credits a {font-weight: bold;}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f6bd60;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ff7e54;
  color: #fff;
  text-decoration: none;
}

/* ===============================================
    Page-Title-Row
------------------------*/
.ttm-page-title-row { 
    background: url(../images/pagetitle-bg.jpg);
    width: 100%;
    float: left;
    background-size: cover;
    background-position: center;
}
.ttm-page-title-row-inner { 
    width: 100%;
    padding: 170px 0 85px;
    text-align: center;
    background-color: rgba(12, 25, 34, 0.45);
}
.title-box .page-title-heading h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.title-box .page-title-heading{ position: relative; }
.title-box .page-title-heading .title:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
}
.breadcrumb-wrapper a {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.site-main .about-section{padding: 40px 0px; clear: both;}

.site-main .about-section p{padding: 0px 30px; text-align: center;}

/* services_list  

---------------------------------------------------------------*/
ul.services_list{ padding: 0; margin : 40px 0 0;}
ul.services_list li {
    display: inline-block;
    width: calc(50% - 1px);
    float: none;
    padding: 0 0 15px 5px;
    position: relative;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

ul.services_view li {
    display: block;
    float: none;
    padding: 0 0 15px 5px;
    position: relative;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

ul.services_list li i{
    color: #40a798;
    padding-right:10px;
   }

/*ul.services_view li:before {
    font-family: 'FontAwesome';
    content: "\f0a9";
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #625d9c;
}*/

/*ul.services_list li:before {
    font-family: 'FontAwesome';
    content: "\f0a9";
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
}
*/
/* ===============================================
   contact-map-box
------------------------*/
.contact-map-box{
    /*position: relative;*/
    /*z-index: 1;*/
    background-color: #fff;
    border-radius: 4px;
    padding: 40px 0px;
    margin: 60px 0px;
}

.box-shadow1{
    -webkit-box-shadow: 0 0 11px 0 rgba(6,22,58,.14);
    -moz-box-shadow: 0 0 11px 0 rgba(6,22,58,.14);
    box-shadow: 0 0 11px 0 rgba(6,22,58,.14);
}

.featured-icon-box i{color: #40a798; font-size: 22px;}
.site-main .attraction-section{padding: 40px 0px; clear: both;}

.site-main .attraction-section p{padding: 0px 10px; text-align: left;}