 /**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */

 html,
 body {
/*  overflow-x: hidden;*/
}
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

/* Firefox specific rule */
/* @-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
*/
html,
body {
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 

:root {
  --primary-color: #e49527;
  --secondary-color: #88c7d9;
}

::-moz-selection {
  color: #fff;
  background: var(--primary-color)
}

::selection {
  color: #fff;
  background: var(--primary-color)
}

::-moz-selection {
  color: var;
  background: var(--primary-color)
}
/* Base */
body {
  line-height: 1.6;
  color: #395c71;
  font-weight: 400;
  font-size: 1.2rem; 
  overflow-x: hidden;
}

::-moz-selection {
  background: #000;
  color: #fff; }

::selection {
  background: #000;
  color: #fff; 
}

a {
  color: #dea34f;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
}
a:hover {
  color: #395c71;
  text-decoration: none; 
}

p {
  color: #2d2d2d;
  size: 1.2rem
}

.heart-color {
  color: #395c71
}

h1, h2, h3, h4, h5,h6,
.h1, .h2, .h3, .h4, .h5 {
  font-family: "Viga", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 
/*  font-weight: 700*/
}

blockquote {
  margin: 1.2rem 0;
  padding: 5px 15px 5px 20px;
  background: #fff;
  border-left: 2px solid #395c71;
  font-size: 1rem!important;
  line-height: 1.6;
}

.border-2 {
  border-width: 2px; 
}

.text-black {
  color: #000 !important; 
}

.bg-black {
  background: #000 !important; 
}

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5); 
}

.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5); 
}

.site-wrap:before {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden; 
}

.offcanvas-menu .site-wrap {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
}
.offcanvas-menu .site-wrap:before {
  opacity: 1;
  visibility: visible; 
}


/* btn */
.btn {
  border-radius: 4px;
  font-size: 1.4rem; 
  font-weight: 600
}
.btn:hover, .btn:active, .btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; 
}

.btn-primary {
  color: #fff;
  background-color: #395c71;
  border-color: #395c71;
}
/*.btn-secondary {
  color: #fff;
  background-color: #395c71;
  border-color: #395c71;
}*/
.text-primary {
  color: #395c71!important
}
.badge-secondary {
  color: #fff;
  background-color: #395c71;
}
.badge-success {
  background-color: #395c71;
}
.badge-warning {
  background-color: #b99053;
}
.badge-blue {
  background-color: #495d82;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.text-secondary {
  color: #98234d;
}
.text-success {
  color: #33925a;
}
.text-warning {
  color: #ce7c00;
}
.text-blue {
  color: #2d497b;
}
.text-info {
  color: #17a2b8;
}

.btn.btn-black {
  color: #fff;
  background-color: #000; 
}
.btn.btn-black:hover {
  color: #000;
  background-color: #fff; 
}

.btn.btn-secondary {
  color: #fff;
  background-color: #395c71; 
}
.btn.btn-secondary:hover {
  color: #fff;
  background-color: #395c71;

}

.btn.btn-secondary-alt {
  color: #fff;
  background-color: #395c71; 
  border: 2px solid #395c71;
}
.btn.btn-secondary-alt:hover {
  color: #98b4af;
  background-color: #fff; 
  border: 2px solid #395c71; 
}


.btn.btn-white {
  color: #395c71;
  background-color: #fff; 
  border: 2px solid #fff;
}
.btn.btn-white:hover {
  color: #fff;
  background-color: #395c71; 
  border: 2px solid #fff; 
}

.btn.btn-outline-primary {
  color: #395c71;
  border-width: 2px;
  border-color: #395c71;
  border-radius: 50px;
}
.btn.btn-outline-primary:hover {
  color: #fff;
  background: #dea34f;
  border-color: #dea34f
}
.btn.btn-outline-white {
  border: 2px solid #fff; 
}
.btn.btn-outline-white:hover {
  background: #fff;
  color: #395c71 !important; 
}
.btn.btn-md {
  padding: 18px 30px; 
}

.line-height-1 {
  line-height: 1 !important; 
}

.bg-black {
  background: #000; 
}



/* search header */
.form-search-wrap {
  background: #fff;
  padding: 15px 20px !important;
  -webkit-box-shadow: 0 2px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 30px -5px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
}
.form-search-wrap .form-control {
  border: none; 
}

.form-search-wrap .form-control:hover,
.form-search-wrap .form-control:focus {
  border-bottom: 1px solid #000!important;
}
/*input::-webkit-input-placeholder {
    color: rgba(0,0,0,0.3)!important;
}*/
input:focus::-webkit-input-placeholder {
    color: rgba(0,0,0,1)!important;
}
.form-search-wrap .btn {
  border-radius: 4px;
  padding: 10px 30px;
    background-color: #395c71;
    border-color: #395c71;
}
.form-search-wrap .btn:hover {
  background-color: #dea34f;
  border-color: #dea34f;
}
input::-moz-placeholder {
  color: #aaa;
 }

input::-webkit-input-placeholder {
  color: #aaa;
}

input:-ms-input-placeholder {
  color: #aaa;
}
.select-wrap, .wrap-icon {
  position: relative;
}
.select-wrap .icon, .wrap-icon .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}
.select-wrap select, .wrap-icon select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%; 
}

.form-control {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  height: 43px;
  border-radius: 0;
  font-weight: 400
 }
.form-control:hover, .form-control:active, .form-control:focus {
  border-color: #395c71; 
}
.form-control:hover, .form-control:active, .form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; 
}
.form-search-wrap input.form-control:hover, 
.form-search-wrap input.form-control:active, 
.form-search-wrap input.form-control:focus {
  border-bottom: 1px solid
} {
  border-bottom:1px solid;
}

/* Header video */
.video-container video {
  min-width: 100%; 
  min-height: 100%; 
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.video-container:after{
  content: "";
  position: absolute;
  background-color: rgba(0,0,0,0.5);
  /*background-image: url(../images/video/pattern.png); */
    background-image: url('/assets/frontend/video/pattern-60d4c54e5d253460197149368c4d612241389e6c43f724aaa7186957e14753ae.png');
  background-repeat: repeat;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.7;
  z-index: 0;
}

video, video:focus {
  outline: none;
  border: none
}

/* hero-social-btn */
.hero-social-btn {
  position: absolute;
  width: auto;
  height: auto;
  bottom: 21px;
  right: -40px;
  z-index: 9;
}

.hero-social-btn .social-title {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: -70px;
}

.hero-social-btn .social-title.Follow {
    margin-left: -58px;
}

.hero-social-btn .social-title h6 {
  margin-bottom: 0;
  color: #fff;
  line-height: 1;
  margin-right: 15px;
  font-weight: 600;
}

.hero-social-btn .social-title span {
  background-color: #fff;
  width: 38px;
  height: 1px;
  display: block;
}

.hero-social-btn .social-btns {
  margin-top: 79px;
}

.hero-social-btn .social-btns > a {
  font-size: 15px;
  color: #fff;
  display: block;
  margin-top: 10px;
}


/* hero-social-btn for subpages*/
.site-blocks-cover.inner-page-cover .hero-social-btn {
  position: absolute;
  height: auto;
  bottom: 44px;
  right: 0;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-blocks-cover.inner-page-cover .hero-social-btn .social-title {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  margin-left: 0;
}
.site-blocks-cover.inner-page-cover .hero-social-btn .social-title h6 {
  margin-bottom: 0;
  color: #fff;
  line-height: 1;
  margin-right: 15px;
  font-weight:400;
}
.site-blocks-cover.inner-page-cover .hero-social-btn .social-title span {
  background-color: #fff;
  width: 40px;
  height: 1px;
  display: block;
}
.site-blocks-cover.inner-page-cover .hero-social-btn .social-btns {
  margin-left: 16px;
  margin-top: 0;
}
.site-blocks-cover.inner-page-cover .hero-social-btn .social-btns > a {
  font-size: 25px;
  color: #fff;
  display: inline-block;
  margin-top: 0;
  padding-right: 10px;
}
/* popular-category */
.popular-category {
  background: #fff;
  display: block;
  text-align: center;
  padding: 38px 10px 30px 10px;
  border-radius: 7px;
  background: #f8f9fa;
  position: relative;
  top: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; 
}
.popular-category .icon {
  display: block;
  -webkit-transition: .1s all ease;
  -o-transition: .1s all ease;
  transition: .1s all ease; 
}
.popular-category .icon > span {
  line-height: 0;
  font-size: 40px;
  color: #8aaac0
}
 

.popular-category .icon > span.fa-hiking {
  color: #7a5d40
}
.popular-category .icon > span.fa-bicycle {
  color: #678f8a
}
.popular-category .icon > span.fa-procedures {
  color: #7a5d40
}
.popular-category .icon > span.fa-golf-ball {
  color: #6e8132
}
.popular-category .icon > span.fa-anchor {
  color: #8aaac0
}
.popular-category .icon > span.fa-sun {
  color: #dea34f
}
.popular-category .icon > span.fa-dollar-sign {
  color: #179b2e
}
.popular-category .icon > span.fa-snowflake {
  color: #14afb7
}

.popular-category .caption {
  color: #395c71;
  -webkit-transition: .1s all ease;
  -o-transition: .1s all ease;
  transition: .1s all ease; 
}
.popular-category .number {padding: 2px 20px;
  border-radius: 30px;
  display: inline-block;
  background: #fff;
  color: #395c71;font-size: 14px;
  -webkit-transition: .1s all ease;
  -o-transition: .1s all ease;transition: .1s all ease;
}
.popular-category:hover {
  top: -5px;
  background: #395c71;
  -webkit-box-shadow: 0 5px 30px -5px rgba(45, 73, 123, 0.5);
  box-shadow: 0 5px 30px -5px rgba(45, 73, 123, 0.5); 
}
.popular-category:hover .caption {
  color: #fff; 
}
.popular-category:hover .icon > span{
  color: #fff; 
}
.popular-category:hover .icon {
  color: #fff; 
}
.popular-category:hover .number {
  background: #ffffff;
  color: #395c71; 
}
.caption {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: bold; 
}
.overlap-to-top {
  margin-top: -150px; 
}


/* Site section*/
.site-section {
  padding: 2.5em 0; 
}

.site-section.first-sec {
  margin-top: -148px;
}  

.site-section h2.heading {
  font-size: 3rem
}
.site-section p.sub-heading {
  font-size: 1.5rem;
  color: #2d2d2d;
  font-weight: 400
}

.site-section.site-section-sm {
  padding: 4em 0; 
}

.site-section-heading {
  position: relative;
  font-size: 2.5rem; 
}

.site-section-heading:after {
  content: "";
  left: 0%;
  bottom: 0;
  position: absolute;
  width: 100px;
  height: 1px;
  background: #395c71; 
}
.site-section-heading.text-center:after {
  content: "";
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  left: 50%;
  bottom: 0;
  position: absolute;
  width: 100px;
  height: 1px;
  background: #395c71;
}

.site-section.subpages.search hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #395c71;
}

.site-section.subpages h1, 
.site-section.subpages h2, 
.site-section.subpages h3, 
.site-section.subpages h4, 
.site-section.subpages h5, 
.site-section.subpages h6 {
    color: #395c71;
}

.site-section.subpages dl li,
.site-section.subpages ol li,
.site-section.subpages ul li,
.site-section.subpages dl li a,
.site-section.subpages ol li a,
.site-section.subpages ul li a {
  font-size: 1.2rem;
}

.site-section.subpages.generic img{
    padding: 15px 0 20px 0;
}

.border-top {
  border-top: 1px solid #edf0f5 !important; 
}

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000; 
}

.hover-bg-enlarge {
  overflow: hidden;
  position: relative; 
}

.hover-bg-enlarge > div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .8s all ease-in-out;
  -o-transition: .8s all ease-in-out;
  transition: .8s all ease-in-out; 
}
.hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); 
}

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}
.bg-image.overlay {
  position: relative; 
}
.bg-image.overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); 
}
.bg-image > .container {
  position: relative;
  z-index: 1; 
}

/*.ul-check {
  margin-bottom: 50px; }
  .ul-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5; }
    .ul-check li:before {
      left: 0;
      font-size: 20px;
      top: -.3rem;
      font-family: "icomoon";
      content: "\e5ca";
      position: absolute; }
  .ul-check.white li:before {
    color: #fff; 
  }
  .ul-check.success li:before {
    color: #8bc34a; 
  }
  .ul-check.primary li:before {
    color: #395c71; 
  }*/



/* Navbar */
.site-navbar {
  margin-bottom: 0px;
  z-index: 999;
  position: absolute;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 15px 0 7px 0;
}
.site-navbar.transparent {
  background: transparent; 
}
.site-navbar.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
}
.site-navbar .site-logo {
  position: relative;
  left: 0;
  top: -5px; 
}
.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid #f3f3f4 !important;
}
.site-navbar .site-navigation .site-menu {
  margin-bottom: 0; 
}
.site-navbar .site-navigation .site-menu .active > a span {
  background: #395c71;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 15px;
/*  margin-right: 7px;*/
}
.subpages.site-navbar .site-navigation .site-menu .active > a span {
  border: 0px solid #fff;
}
.subpages.site-navbar .site-navigation .site-menu > li > a:hover > span {
  border: 0px solid #fff;
}
.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block; 
}
.site-navbar .site-navigation .site-menu > li {
  display: inline-block; 
}
.site-navbar .site-navigation .site-menu > li > a {
  padding: 10px 0px;
  color: #2d2d2d;
  text-decoration: none !important; 
  font-weight: 600;
  font-size: 1rem;
}

.site-navbar .site-navigation .site-menu > li > a > span {
  padding: 5px 14px;
  display: inline-block;
  border: 0px solid transparent;
  border-radius: 30px; 
    -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.site-navbar .site-navigation .site-menu > li > a:hover > span {
  background: #395c71;
  /*border: 1px solid #fff;*/
  color: #fff;
  border-radius: 30px;
  display: inline-block; 
    -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.site-navbar .site-navigation .site-menu > li > a > span.lang-change {
    background: #585858;
    border-radius: 4px;
    padding: 3px 11px;
    border: 0;
    margin-left: 10px;
    color: #ffffff;
}
.site-navbar .site-navigation .site-menu > li > a:hover > span.lang-change {
  color: #fff;
  background: #395c71;
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative; 
}
.site-navbar .site-navigation .site-menu .has-children > a span {
  position: relative;
  padding-right: 30px; 
}
.site-navbar .site-navigation .site-menu .has-children > a span:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon'; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #395c71;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #edf0f5;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #343a40; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: #395c71 !important; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  background: #f4f5f9;
  color: #25262a; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a {
  position: relative; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:after {
  position: absolute;
  right: 0;
  content: "\e315";
  right: 20px;
  font-family: 'icomoon'; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  left: 100%;
  top: 0; 
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
  background: #f4f5f9;
  color: #25262a; 
}
.site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #395c71; 
}
.site-navbar .site-navigation .site-menu .has-children:hover > a span, .site-navbar .site-navigation .site-menu .has-children:focus > a span, .site-navbar .site-navigation .site-menu .has-children:active > a span {
  background: #395c71;
  color: #fff;
}
.site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer; 
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1; 
}

.menu_fixed {
  position: fixed;
  padding: 15px 0 13px 0;
  z-index: 999!important;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  top: 0
}

.menu_fixed .logo_2 {
  display: inherit
}

.menu_fixed .logo_1 {
  display: none
}

.menu_fixed.site-navbar .site-navigation .site-menu > li > a {
  color: #2d2d2d
}
.menu_fixed.site-navbar .site-navigation .site-menu > li > a > span.lang-change {
/*  border: 2px solid #dea34f!important;
  color: #000;*/

}
/*.site-navbar .site-navigation .site-menu > li > a > span.lang-change:hover {
  background-color:#395c71!important
}*/

.menu_fixed.site-navbar .site-logo img {
/*  -webkit-filter: invert(75%);
  filter: invert(75%);*/
}


.menu_fixed.site-navbar .site-logo a.first-logo {
  display: none
}
.site-navbar .site-logo a.second-logo {
  display: none;
}
.menu_fixed.site-navbar .site-logo a.second-logo {
  display: block;
}

.menu_fixed.site-navbar .site-menu-toggle,
.site-menu-toggle {
  color: #395c71!important
}


.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 9999;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; 
}
.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%); 
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #25262a; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px; 
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none; 
}
.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px; 
}
.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529; 
}
.site-mobile-menu .site-nav-wrap a:hover {
  color: #395c71; 
}
.site-mobile-menu .site-nav-wrap a > span.lang-change {
  border: 2px solid #dea34f;
  padding:5px;
}
.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block; 
}
.site-mobile-menu .site-nav-wrap li.active > a {
  color: #dea34f;
  font-weight: bold;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%; 
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa; 
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); 
}
.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%; 
}
.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px; 
}
.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none; 
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block; 
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px; 
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0; 
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block; 
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px; 
}
.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em; 
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto; 
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important; 
}

/* bookmark heart */
.bookmark-count .bookmark {
  position: fixed;
  right: 13px;
  color: #975054!important;
  top: 0;
  width: 40px;
  height: 60px;
  border-radius: 0;
  display: inline-block;
  background: #ffffff;
  border: 0px solid rgba(0,0,0,0.1);
  border-top: 0;
  border-right: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 1000;
}
.bookmark-count .bookmark .badge {
  border-radius: 0;
  width: 100%;
  position: absolute;
  left: -8px;
  right: 0;
  bottom: -17px;
  background-color: #975054;
}
.bookmark-count .bookmark span {
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bookmark-count a.bookmark:hover > span {
  background: transparent;
}
.bookmark-count .bookmark:hover {
/*  background: #a7b2c7; */
}

.remove-bookmark{
  position: absolute;
  z-index: 9999;
  color: #fff;
  top: 5px;
  left: 25px;
  font-size: 18px;
  background:transparent;
  padding: 0 4px;
  cursor: pointer;
}

.remove-bookmark span {
  color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.removed- {
  -webkit-transition: all 3.3s;
  -o-transition: all 3.3s;
  -moz-transition: all 3.3s;
  transition: all 3.3s;
}
/* Explore Our Parks*/
.listing-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px; 
}
.listing-item:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.2), rgb(0 0 0 / 73%));
 /* background: rgba(0, 0, 0, 0.2);*/
}
.listing-item  img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 260px;
  width: 100%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05); 
}
.listing-item:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); 
}
.listing-item .listing-item-content {
  position: absolute;
  bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2;
  width: 100%;
  text-align: center; 
}
.listing-item .listing-item-content .category {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 9px;
  display: inline-block;
  padding: 5px 30px;
  margin-right: 3px;
  /* background: #395c71; */
  border-radius: 30px;
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.listing-item .listing-item-content .category.badge-primary {
  background-color: #495d82;
}

.listing-item .listing-item-content .category:hover {
  background-color: #a19b96;
}


.listing-item .listing-item-content h2 {
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}
.listing-item .listing-item-content h2, .listing-item .listing-item-content h2 a {
  color: #395c71;
  font-weight: 500;
  background: #ffffff;
  display: table;
  width: 100%;
  padding: 2px 5px 2px 2px;
}

.listing-item .listing-item-content h2, .listing-item .listing-item-content h2 a:hover {
  color: #dea34f
}
.listing-item .listing-item-content h3 {
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}
.listing-item .listing-item-content h3, .listing-item .listing-item-content h3 a {
  color:#395c71;
/*  font-weight: 600;*/
  background: #ffffff;
  display: table;
  width: 100%;
  padding: 2px 5px 2px 2px;
}
.listing-item .listing-item-content h3, .listing-item .listing-item-content h3 a:hover {
  color: #dea34f
}
.listing-item .listing-item-content span {
  color: #fff; 
}
.listing-item .listing-item-content .address {
  color: rgba(255, 255, 255, 1); 
  font-size: 14px;
  font-weight: 400
}
.listing-item .bookmark {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255 255 255 /100%);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 9999;
  cursor: pointer;
}
.listing-item .bookmark span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  color: #975054;
  font-weight: 300
}
.listing-item .bookmark:hover {
  background: #fff
}
.listing-item .bookmark:hover span {
  color: #975054;
  font-weight: 900!important; 
}

.listing-item .bookmark.booked {
  background: rgba(255, 255, 255, 1);
  cursor: not-allowed;
  pointer-events: none;
}
.listing-item .bookmark.booked span{
  color: #975054;
  font-weight: 900
}

/* Stores */
.stories img {
  width: 100%;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px; 
  -o-object-fit: cover;
  object-fit: cover;
  height: 260px;
  width: 100%;
}

.stories .meta {
  color: #707070;
  font-size: 13px; 
}

.stories .meta span.by-author {
  color: #707070;
  font-weight: 700;
}
.stories h2 {
  line-height: 0.9;
  padding-bottom: 5px;
}
.stories h2 a{
color: #395c71;
    font-size: 18px;
    line-height: inherit;
}
.stories h2 a:hover {
  color: #dea34f;  
}
.stories .stories-inner {
  background:#fff;
  padding: 30px;
  border: 1px solid #eee;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px; 
}
.stories-details.stories .bookmark {
  right: 95px!important;
}
.stories .bookmark {
  position: absolute;
  right: 30px!important;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 0;
  cursor: pointer;
}
.stories .bookmark span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  color: #975054;
  font-weight: 300;
}
.stories .bookmark:hover {
  background: #fff;
}
.stories .bookmark:hover span {
  color: #975054;
  font-weight: 900!important;
}

.stories .bookmark.booked {
  background: rgba(255, 255, 255, 1);
  cursor: not-allowed;
  pointer-events: none;
}
.stories .bookmark.booked span{
  color: #975054;
  font-weight: 900!important;
}

.cta {
  background: #395c71; 
  padding:100px 0;
}

.cta h3{
  font-size: 3rem
}
.cta p{
  font-size: 1.6rem
}

.stories.stories-details img {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.stories.stories-details .stories-inner {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.stories.stories-details  h2{
  color:  #395c71;
  font-size: 30px;
  line-height: 37px;
}
.stories.stories-details h1,
.stories.stories-details h2,
.stories.stories-details h3,
.stories.stories-details h4,
.stories.stories-details h5,
.stories.stories-details h6 {
  color: #395c71;
}
.stories.stories-details .stories-inner img {
  padding: 15px 0 20px 0;
  width: 100%!important;
  height: 100%
}

.stories.stories-details video {
  width: 100%!important
}

/* Fixed share buttons */
/* social media share */
.social-share {
  position: fixed;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 3px 25px -2px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 25px -2px rgba(0, 0, 0, 0.2) !important;
  z-index: 999
}

.social-share a {
  display: block;
  text-align: center;
  padding: 7px 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.social-share a:hover {
  background-color: #dea34f;
}

.facebook {
  background: #395c71;
  color: white;
}

.twitter {
  background: #2c4757;
  color: white;
}

.google {
  background: #395c71;
  color: white;
}

.linkedin {
  background: #0494a1;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}




/* Blocks */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-position: center center; 
}
.site-blocks-cover.overlay {
  position: relative;
  overflow: hidden;
}
.site-blocks-cover.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4); 
}
.site-blocks-cover .player {
  position: absolute;
  bottom: -250px;
  width: 100%; 
}
.site-blocks-cover, .site-blocks-cover > .container > .row {
  min-height: 600px;
  height: calc(100vh); 
}
.site-blocks-cover.inner-page-cover, .site-blocks-cover.inner-page-cover > .container > .row {
  min-height: 374px;
  height: calc(30vh);
}
.site-blocks-cover.inner-page-cover:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: #395c71
}
.site-blocks-cover h1 {
  font-size: 30px;
  font-weight:500;
  line-height: 1.5;
  color: #fff;
}
.typed-words {
  color: #fff;
  /* text-decoration: underline; */
  font-size: 60px;
}

.site-blocks-cover p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5; 
}
.site-blocks-cover p a:hover {
  color: #fff;
  text-decoration: underline; 
}
.site-blocks-cover .intro-text {
  font-size: 16px;
  line-height: 1.5; 
}

.bg-light {
  background: #ccc;
}

/* How is works*/
.how-it-work-step {
    text-align: center;
    min-height: 320px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding: 27px 10px 0 10px;
    padding-bottom: 10px;
}
.how-it-work-step h3 {
  font-size: 1.3rem;
  color: #395c71;
  margin-bottom: 1rem;
}
.how-it-work-step p {
  margin-bottom: 1.4em
}
.how-it-work-step .number {
    color: #ffffff;
    letter-spacing: .2rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    border-radius: 50%;
    background: #395c71;
    margin-bottom: 15px;
}
.how-it-work-step .img-wrap {
  height: 270px; 
}
.how-it-work-step img {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem; 
}

/* FAQ */
.FAQ-list .card{
  border: 1px solid rgb(235, 235, 235);
  border-radius: 0 
}
.FAQ-list {
  margin-top: 60px
}
 
.FAQ-list .card .card-body {
  padding: 0.2rem 2.25rem;
}
.FAQ-list .card .card-body p {
  font-size: 18px;
  line-height: inherit
}
.FAQ-list .card-header {
  background-color: #FFF;
  padding: 0.2rem 0rem;
  border: 0;
}

.FAQ-list .card-header h4 {
  font-weight: 600;
  line-height: 1.6;
  font-size: 18px
}

.FAQ-list .card-header .accordion-toggle:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  float: right;
  font-size: 23px;
  margin-right: 0;
  line-height: normal;
  font-weight: 500;
  margin-top: 2px
}
.FAQ-list .card-header .accordion-toggle.collapsed:after {
  content: "\f107";
  color: #2d2d2d
}

.FAQ-list .card-header .accordion-toggle{
  color:#395c71;
  display: block;
  width: 100%
}
.FAQ-list .card-header .accordion-toggle.collapsed {
  color:#2d2d2d;
  display: block;
  width: 100%
}
.FAQ-list .card-header a.accordion-toggle.collapsed:hover {
  color: #395c71;
}

/* aside */
aside.col-lg-4 {
  position: -webkit-sticky;
  position: sticky;
  display: table;
  top: 110px;
}
.widget {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #eee;
}
.widget.search .form-group {
  position: relative
}

.widget.search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 0.95em;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: none
}
.widget.search input:hover, 
.widget.search input:active, 
.widget.search input:focus {
  border-bottom: 1px solid
}
.widget.search input::-moz-placeholder {
  color: #aaa;
  font-family: "Source Sans Pro", sans-serif
}

.widget.search input::-webkit-input-placeholder {
  color: #aaa;
  font-family: "Source Sans Pro", sans-serif
}

.widget.search input:-ms-input-placeholder {
  color: #aaa;
  font-family: "Source Sans Pro", sans-serif
}

.widget.search .submit {
  height: 40px;
  padding: 0;
  line-height: 40px;
  background: none;
  border: none;
  color: #555;
  font-size: 0.9em;
  position: absolute;
  top: 0;
  right: 0
}

.widget.latest-posts a {
  display: block;
  color:#395c71;
  text-decoration: none
}

.widget.latest-posts a:hover {
  color: #dea34f
}

.widget.latest-posts .image {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px
}
.widget.latest-posts .image img.img-fluid {
  max-width: 200%;
}

.widget.latest-posts .item {
  margin-bottom: 20px
}

.widget.latest-posts b {
  font-size: 14px;
  display: block;
  line-height: 17px;
}

.widget.latest-posts .views,
.widget.latest-posts .stopwatch {
  font-size: 0.8em;
  font-weight: 400;
  /*color: #bbb;*/
  color: #707070;
  margin-top: 10px
}

.widget.latest-posts .views i,
.widget.latest-posts .stopwatch i {
  margin-right: 5px
}

.widget.latest-posts .views::after,
.widget.latest-posts .stopwatch::after {
  content: '|';
  display: inline-block;
  margin: 0 7px;
  font-size: 0.9em;
  color: #ccc
}

.widget.latest-posts .stopwatch::after {
  display: none
}

.widget.categories .item {
  background: #fafafa;
  padding: 10px;
  color: #777;
  font-weight: 700
}

.widget.categories .item:nth-of-type(2n+2) {
  background: none
}

.widget.categories .item a {
  color: inherit;
  font-size: 0.95em
}

.widget.categories .item a:hover {
  color: #dea34f;
  text-decoration: none
}

.widget.categories .item span {
  font-size: 0.9em;
  color: #aaa
}

.widget.tags .tag {
  padding: 5px 25px;
  margin: 5px 0;
  color: #fff;
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px
}

.widget.tags .tag:hover {
  background: #a19b96;
  color: #fff;
}
.widget.tags .tag.badge-primary {
 background-color: #2d497b; 
}

/* Events */
.listing-horizontal {
  /*-webkit-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);*/
  /*box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);*/
  margin-bottom: 30px;
  border-radius: 7px;
  background: #fff;
  position: relative; 
  width: 100%
}
@media (min-width: 992px) {
  .listing-horizontal {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px; 
  } 
}
.listing-horizontal .img img{
  opacity: 0;
}
.listing-horizontal .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-right: 10px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 230px;
  flex: 0 0 230px; 
}

.listing-horizontal .img .category {
  font-size: 12px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  margin-right: 20px;
  text-align: center;
  padding: 5px 30px;
  background: #ffffff;
  border-radius: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  text-transform: uppercase;
}
.bookmark .listing-horizontal .img .category {
  top: 40px
}
.listing-horizontal .lh-content {
  padding: 30px;
  position: relative;
  width: 100%; 
}
.listing-horizontal .lh-content h3 a {
  color: #395c71;
  font-size: 20px;
}
.listing-horizontal .lh-content h3 a:hover {
  color: #dea34f;
}
.listing-horizontal .bookmark {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(0 0 0 /10%);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 9;
  cursor: pointer;
}
.listing-horizontal .bookmark span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #975054;
  font-weight: 300;
}
.listing-horizontal .bookmark.booked{
  background: rgba(0 0 0 /10%);
  cursor: not-allowed;
  pointer-events: none;
}
.listing-horizontal .bookmark.booked span {
  color: #975054;
  font-weight: 900!important;
}
.listing-horizontal .bookmark:hover {
  background: rgba(0 0 0 /10%); 
}
.listing-horizontal  .bookmark:hover span {
  color: #975054;
  font-weight: 900!important;
}

/* Events details */
.listing-horizontal.event-details {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 0;
  background: #fff;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .listing-horizontal.event-details {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  } 
}
.listing-horizontal.event-details .img img{
  opacity: 0;
  width: 100%
}
.listing-horizontal.event-details .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 230px;
  flex: auto;
/*  height: 350px;*/
  height: 500px;
  overflow: hidden;
}

.listing-horizontal.event-details .img .category {
  font-size: 12px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 30px;
  background: #ffffff;
  border-radius: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  text-transform: uppercase;
}
.listing-horizontal.event-details .lh-content {
  padding: 30px;
  position: relative;
  width: 100%; 
}
.listing-horizontal.event-details .lh-content h3 {
  color: #395c71;
  font-size: 18px;
}
.listing-horizontal.event-details .bookmark {
  position: absolute;
  right: 81px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 9;
}
.listing-horizontal.event-details .bookmark span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #975054;
}
.listing-horizontal.event-details .bookmark.booked{
  background: rgba(255, 255, 255, 1);
  cursor: not-allowed;
  pointer-events: none;
}
.listing-horizontal.event-details .bookmark.booked span {
  color: #975054;
}
.listing-horizontal.event-details .bookmark:hover {
  background: #fff; 
}
.listing-horizontal.event-details  .bookmark:hover span {
  color: #975054;
}

.listing-horizontal.event-details .lh-content .contact-info a{
  color: #4d4d4d;
  border-bottom: 1px dotted;
}

.listing-horizontal.event-details .lh-content .contact-info a:hover{
  color: #4CAF50;
}

.listing-horizontal.event-details .lh-content .contact-info .social-media a,
.listing-horizontal.event-details .lh-content .contact-info .visit-website a{
  border-bottom: 0;
}


/* pagination */
.pagination-custom {
  margin-top: 35px;
}
.pagination-custom li.page-item {
  margin: 0 5px;
}

.pagination-custom a.page-link,
.pagination-custom span.page-link {
  width: 40px;
  height: 40px;
  line-height: 23px;
  border-radius: 50% !important;
  border: 1px solid #ddd;
  color: #555;
  text-align: center;
}

.pagination-custom a.page-link:hover,
.pagination-custom span.page-link.active {
  background: #395c71;
  color: #fff;
}

/* parks details */
.widget.location .contact-text {
  padding: 13px 20px 0 20px;
  margin-top: 0;
}

.widget.location .contact-text h4 {
  color: #395c71;
  /* font-weight: 700; */
  /* margin-bottom: 22px; */
}

.widget.location .contact-text span {
  color: #395c71;
  font-weight: 700;
  display: inline-block;
  margin: 14px 0 6px 0;
}

.widget.location .contact-text ul {
  padding-left: 0;
}

.widget.location .contact-text ul li {
  list-style: none;
  letter-spacing: 0.2px;
  line-height: 28px;
  font-weight: 700;
  color: #395c71;
}
.widget.location .contact-text hr{
  margin-top: 10px;
  margin-bottom: 10px;
}
.widget.location .contact-text span i {
  font-size: 25px;
  padding-top: 4px;
}


.widget.location .social-media  {
  margin-top: 0;
  text-align: left;
}

.widget.location .social-media  a {
  color: #4d4d4d;
  font-size: 20px;
  padding-right: 10px;
  display: inline-block;
}

.widget.location .social-media  a:hover {
  color: #395c71;
}

.widget.location .social-media  span {
  font-weight: 600;
  color: #111;
}


.list2 {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.list2 li {
  font-size: 14px;
  line-height: 1.428571429;
  margin-bottom: 45px;
  padding-bottom: 45px;
  background: url(../images/dotted.png) 0 bottom repeat-x;
}
.list2 li .badge {
  width: 70px;
  margin: 0 20px 0 0;
  background: none;
  padding: 0;
  border-radius: 0;
  float: left;
  font: 300 36px/36px 'Roboto Slab';
  color: #35a0bb;
  letter-spacing: 1px;
}
.list2 li p {
  margin-bottom: 0;
}
.list2 li:last-child {
  background: none;
  padding-bottom: 0;
  margin-bottom: 0;
}


.breadcumb-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.place-group-info-area {
  position: relative;
  z-index: 999;
}

.place-group-info-area > div {
  padding: 0 30px;
  height: 70px;
  color: #fff;
  font-size: 20px;
  background-color: #678f8a;
  width: 100%;
  text-align: center;
}

.place-group-info-area > div:nth-child(2) {
  background-color: #675b56;
}

.place-group-info-area > div:nth-child(3){
  background-color: #b12028;
}

.place-group-info-area > div:last-child {
  background-color: #395c71;
  color: #ffffff;
}

.widget.camping {
  padding: 0;
  border: 0;
}
.widget.camping .item {
  color: #678f8a;
}
.widget.camping .item span {
  color: #678f8a;
}

.camping .features .icon {
  font-size: 25px;
  padding: 10px;
  border: 1px solid;
  color: #fff;
  display: inline-block;
}


.parks .parks-inner {
  background:#fff;
  padding: 30px;
  border: 1px solid #eee;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  }

.parks.parks-details h1,
.parks.parks-details h2,
.parks.parks-details h3,
.parks.parks-details h4,
.parks.parks-details h5,
.parks.parks-details h6 {
  color: #395c71;
}

.parks .parks-inner .camping h2.header {
  background: #ffffff;
  padding: 9px 0;
  margin-top: 15px;
  margin-bottom: 10px;
  border: 0;
  font-size: 2.5rem;
  color: #395c71;
  text-transform: uppercase;
}



.listing-horizontal.parks-details {
  margin-bottom: 0;
  border-radius: 7px;
  background: #fff;
  position: relative; 
  width: 100%;
}
@media (min-width: 992px) {
  .listing-horizontal.parks-details {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px; 
  } 
}
.listing-horizontal.parks-details .img img{
  opacity: 0;
}
.listing-horizontal.parks-details .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 10px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  -webkit-box-flex: 0;
  -ms-flex: auto;
  flex: auto;
  width: 100%;
  height: 350px; 
}

.listing-horizontal.parks-details .img .category {
  font-size: 12px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 30px;
  background: #ffffff;
  border-radius: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  text-transform: uppercase;
}
.listing-horizontal.parks-details .lh-content {
  padding: 30px;
  position: relative;
  width: 100%; 
}
.listing-horizontal.parks-details .lh-content h3 a {
  color: #395c71;
  font-size: 18px;
}

.listing-horizontal.parks-details .contact-info a {
  color: #4d4d4d;
  border-bottom: 1px dotted;
}
.listing-horizontal.parks-details .contact-info a:hover {
  color: #4CAF50;
}

.listing-horizontal.parks-details .contact-info .social-media a  {
  border-bottom: 0;
}

.listing-horizontal.parks-details .contact-info .booknow a {
   border-bottom: 2px solid #395c71;
   color: #395c71;
}

.listing-horizontal.parks-details .contact-info .booknow a:hover{
   border-bottom: 2px solid #395c71;
   color: #fff!important;
}

.related-block .stories .stories-inner {
  position: relative;
  margin-top: -70px; 
}

/* owl slider */
#owl-demo .owl-item div{
  padding:0;
}
#owl-demo .owl-item img{
  display: block;
  width: 100%;
  height: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.owl-nav {
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 20px;
  right: 0;
  text-align: center;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 700;
  padding-top: 8px;
  height: 35px;
  width: 35px;
  border-radius: 25px;
  text-align: center;
  color: #395c71;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: rgba(255,255,255,1);
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: rgba(255,255,255,0.8); 
}

.owl-nav .owl-prev i {
  margin-right: 5px;
}

.owl-nav .owl-next {
  margin-right: 0px;
}

.owl-nav .owl-next i {
  margin-left: 5px;
}


.add-border {
  border: 2px solid #eee;
}

.no-shadow {
  box-shadow:none;
  -webkit-box-shadow:none;
}
.no-radius {
  border-radius: 0!important;
  border-top-left-radius: 0!important;
  border-bottom-left-radius: 0!important;
}



/* horzintal cart parks details*/
.card-horizontal {
  /*-webkit-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);*/
  /*box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);*/
  margin-bottom: 30px;
  border-radius: 7px;
  background: #fff;
  position: relative; 
  width: 100%;
}
@media (min-width: 992px) {
  .card-horizontal {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
  } 
}
.card-horizontal .img img{
  opacity: 0;
}
.card-horizontal .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 10px;
  height: auto!important;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  -webkit-box-flex: 0!important;
  -ms-flex: 0 0 230px!important;
  flex: 0 0 230px!important; 
}

.card-horizontal .img .category {
  font-size: 12px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 30px;
  background: #ffffff;
  border-radius: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  text-transform: uppercase;
}
.card-horizontal .lh-content {
  padding: 30px;
  position: relative;
  width: 100%; 
}
.card-horizontal .lh-content h3 a {
  color: #395c71;
  font-size: 18px;
}

.related-block h4 {
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin-bottom: 25px ;
}


/* photos */
.lg-toolbar{
  width: 90%;
}
.lg-toolbar .lg-icon.lg-download {
  display: none;
}
.gallery-thumnail {
    width: 100%;
    position: absolute;
    left: 0;
}
.gallery-thumnail img {
    overflow: hidden;
    max-width: fit-content;
    width: auto;
    height: 450px;
    padding-top: 60px;
    margin-left: 50px;
}
.listing-pro-gallery {
  margin-top: 0px
}
.single-listing-gallery {
  position: relative;
  z-index: 1;
  width: 18%;
  margin: 0.9%;
  margin-right: 1.9%;
  margin-left: 0;
  top: 0; 
}
li.single-listing-gallery {
    padding-left: 0!important;

}
li.single-listing-gallery:before {
  display: none;
}
.single-listing-gallery a img {
  width: 100%;
  /* width: 300px; */
  height: 100px;
  object-fit: cover;
  position: relative;
  top: 50%;
  padding: 0!important; 
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.single-listing-gallery {
    width: 22%; 
  } 
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
.single-listing-gallery {
    width: 48%; 
  } 
}
 
@media only screen and (min-width: 320px) and (max-width: 667px) {
.single-listing-gallery {
/*    width: 100%;*/ 
  } 
}
.single-listing-gallery a {
    display: block;
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 10;
}



/* footer */
.site-footer {
  background-color: rgba(255,255,255,1);
  margin-top: 0;
  padding: 1em 0 0em 0;
  background-size: unset;
  background-position: top;
  background-repeat: repeat-x;
}

.site-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.site-footer p {
  color: #395c71; 
}
.site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
  color: #395c71; 
}
.site-footer a {
  color: #395c71; 
  font-weight: 600;
}
.site-footer a:hover {
  color: #395c71;
}
.site-footer ul li {
  margin-bottom: 5px; 
}
.site-footer .footer-heading {
  font-size: 1.2rem; 
}

/*
  -- Update- 23-June 2020
*/
.cookiealert.alert {
  position: fixed;
}
.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
  position: fixed;
  border-radius: 0;
  padding: 2.5em 15px;
  background: #395c71;
}
.cookiealert.show p {
  color: #fff;
  padding: 0 0 0 0;
  font-weight: 400;
  font-size: 20px;
}
.cookiealert a {
  text-decoration: none;
  color: #fff;
}
.close-cookies{
  position: absolute;
  color: #fff;
  top: 10px;
  right: 10px;
  font-size: 20px;
}
.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #fff;
}
.cookiealert.show .btn.btn-secondary {
    background: #0c3880 !important;
    border: 1px solid #0c3880 !important;
    color: #fff !important;
}

.cookiealert.show .btn.btn-secondary:hover {
  background: #fff!important;
  color: #0c3880!important;
}

#map-div {
  width: 100%;
  height: 50vh;
  margin: auto;
}

#park-map-div {
  width: 100%;
  height: auto;
  margin: auto;
}

#event-map-div, #course-map-div {
  width: 100%;
  height: 250px;
  margin: auto;
}

/*.site-blocks-cover.overlay {
  background-image: url('');
}*/

#site-menu-toggle {
  position: relative;
  top: 3px;
  right: 15px
}

.tag-356f67 {
  background-color: #356f67 !important;
}
.tag-728437 {
  background-color: #728437 !important;
}
.tag-975054 {
  background-color: #975054 !important;
}
.tag-dea34f {
  background-color: #dea34f !important;
}
.tag-3a5249 {
  background-color: #3a5249 !important;
}
.tag-8aaac0 {
  background-color: #8aaac0 !important;
}
.tag-678f8a {
  background-color: #678f8a !important;
}
.tag-99b4af {
  background-color: #99b4af !important;
}
.tag-c59462 {
  background-color: #c59462 !important;
}
.tag-895b3e {
  background-color: #895b3e !important;
}
.tag-c15152 {
  background-color: #c15152 !important;
}
.tag-53525f {
  background-color: #53525f !important;
}
.tag-818385 {
  background-color: #818385 !important;
}
.tag-b2aaa4 {
  background-color: #b2aaa4 !important;
}
.tag-395c71 {
  background-color: #395c71 !important;
}
.tag-577654 {
  background-color: #577654 !important;
}


.reserve-p {
  font-size: 15px;
}

.reserve-button-index > a {
  white-space: inherit;
}


/* Covid-19 Alert */
.alert.alert-dark.covid19 {
  color: #000000;
  padding: 0.75rem 1.25rem 0;
  background-color: #fefdef;
  border-color: #fefdef;
}

.alert.alert-dark.covid19 a {
  color: #395c71;
  text-decoration: underline;
  opacity: 0.9;
  padding-top: 10px;
  font-size: 0.9rem;
} 

.alert.alert-dark.covid19 p {
  color: #395c71;
  font-size: 1rem;
  font-weight: 400
}

.alert.alert-dark.covid19 .header-txt span {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}


.sub-menu.navbar-light .navbar-nav .nav-link {
  color: #395c71;
  margin: 0 7px;
  border-bottom: 1px solid transparent;
    border-radius:0

}

.sub-menu.navbar-light .navbar-nav .nav-link:hover {
  color: #395c71;
  margin: 0 7px;
  border-bottom: 1px solid #395c71;
    border-radius: 0
}

.sub-menu.navbar-light .navbar-nav .active>.nav-link {
  color: #395c71;
  border: 1px solid #395c71;
  border-radius: 25px;
  padding: 0.3rem 1rem;
  font-weight: 600
}

.sub-menu.navbar-light .navbar-toggler {
  margin: 15px auto;
  padding: 15px;
  border-radius: 50px
}

.sub-menu.navbar-light .navbar-toggler:focus,
.sub-menu.navbar-light .navbar-toggler:active {
  outline: none!important
}

.block-image {
  width: 290px;
  height: 233px;
  text-align: left;
}

.owl-height {
  max-height: 500px;
}

.park-socials {
  gap: 1em;
}

#directions-panel {
  overflow: auto;
  max-height: 20em;
}

@media (max-width: 992px) {
  ul.navbar-nav {
    width: 100%;
  }
}

/* updated 26-may-2021 */
.container-fluid.park-page {
  width: 84%
}



/* updated 08-June-2021 */
.important-links table tr td a {
  width: 100%;
  background: #395c71;
  display: block;
  color: #ffffff;
  border-radius: 3px;
  padding: 5px;
  line-height: normal;
}

.important-links table tr td a:hover {
  width: 100%;
  background: #395c71;
  display: block;
  color: #ffffff;
  border-radius: 3px;
}

.important-links .table td, .table th {
  vertical-align: middle;
}

/** Update July 14th 2021 - LeafletJS */
.homepage-map {
  height: 600px;
}

.text-wrap {
  white-space: pre-wrap;      /* CSS3 */   
  white-space: -moz-pre-wrap; /* Firefox */    
  white-space: -pre-wrap;     /* Opera <7 */   
  white-space: -o-pre-wrap;   /* Opera 7 */    
  word-wrap: break-word;      /* IE */
}

/* Update July 27th 2021 - Tide Graphs */
#timeline-chart {
  height: 100px;
}

#timeline-legend {
  display: inline-flex;
  flex-direction: column;
  padding-bottom: 1rem;
  margin: 0 2.5rem;
}

.legend-color {
  border-radius: 100%;
  margin: 0.45rem 0.5rem 0 0;
  width: 15px;
  height: 15px;
}

.tides-disclaimer {
  margin: 0 2.5rem;
}

@media only screen and (min-width: 1501px) {
  #timeline-chart {
    margin-right: 2.5rem;
    margin-left: 0.8rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1500px) {
  #timeline-chart {
    margin-right: 1.9rem;
  }
}

@media only screen and (min-width: 501px) and (max-width: 767px) {
  #timeline-chart {
    margin-right: 1.2rem;
  }
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
  #timeline-chart {
    margin-right: 0.8rem;
  }
}

@media only screen and (max-width: 300px) {
  #timeline-chart {
    margin-right: 0.3rem;
  }
}

/* 2022-08-16 */
.event-message span.h4 {
  line-height: 1.5;
}

.category.event-location {
  bottom: 20px;
  right: 20px;
  top: unset !important;
}

#event-pagination {
  
}

.listing-horizontal .golf-logo {
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 1;
}
 
.listing-horizontal .img:hover .golf-logo {
  opacity: 1;
}

.listing-horizontal .golf-logo img {
  opacity: inherit !important;
  transition: opacity 0.2s;
}

.listing-horizontal.event-details .img .golf-logo {
  width: 75px;
}

.listing-horizontal.form-search-wrap {
  box-shadow: none;
  -webkit-box-shadow: none;
  border:  1px solid #eee;
  border-radius: 0;
}

.listing-horizontal:not(.event-details) .lh-content {
  border:  1px solid #eee;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

@media only screen and (max-width: 767px) {
  .listing-horizontal .lh-content {
    border-top-right-radius: 0;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
  }

  .listing-horizontal.parks-details .img {
      height: 250px;
      margin-right: 0;
      border-top-right-radius: 7px;
      border-bottom-left-radius: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .listing-horizontal.form-search-wrap {
    border: none;
    padding: 0;
  }
}

.listing-horizontal.parks-details .card-horizontal a.img {
  margin-right: 0;
  padding-right: 0;
}

.listing-horizontal.activity .img {
  flex: 0 0 250px;
}

.listing-horizontal .img .category.park-name {
  left: 15px;
  top: unset;
  bottom: 15px;
  margin-right: 15px;
  padding: 5px 15px;
}

.listing-horizontal .img .category.closed-season {
  right: 15px;
  left: unset;
  bottom: unset;
  top: 15px;
  background-color: #c15152 !important;
  color: #ffffff;
  margin-right: 0;
  padding: 5px 15px;
}
.listing-horizontal .img .category.closed-season.details {
  right: 50%;
  top: unset;
  bottom: 15px;
  transform: translateX(50%);
  font-size: 20px;
}

body:not(.offcanvas-menu) .site-mobile-menu {
  visibility: hidden;
}

.cookiealert:not(.show) {
  visibility: hidden;
}

button.bookmark, button.remove-bookmark {
  border: none;
}

.skip-link {
  background: #395c71;
  font-weight: bold;
  /*height: 30px;*/
  left: 0;
  padding-left: 5px;
  padding-right: 7px;
  border-radius: 0;
  border-bottom-right-radius: 10px;
  position: absolute;
  transform: translateY(-105%);
  transition: transform 0.3s;
  z-index: 9999;
}

.skip-link.alt {
  background: #dea34f;
}

.skip-link:focus {
  transform: translateY(0%);
  color: #fff!important;
}

.stories.item .add-to-bookmark {
  background: #fff;
}

.about-us-section {
  /*background: #fff;*/
  /*border: 1px solid #eee;*/
}

.about-us-section.section-policy, .about-us-section.section-mission {
  margin-top: 2em;
}

.about-us-section .about-us-inner {
  padding: 30px;
}
.about-us-section .about-us-inner p,
.about-us-section .about-us-inner ul li,
.about-us-section .about-us-inner ol li {
  font-size: 1.2rem;
}


 
/* Share buttons */
.c-share {
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  z-index: 99;
  right: 30px;
  top: 15px;
}
.event-details .c-share {
  right: 15px;
}

.c-share__input {
  display: none;
}
.c-share__input:checked ~ .c-share__toggler .c-share__icon {
  transition: 0s;
  width: 0;
  height: 0;
  color: #262626;
}
.c-share__input:checked ~ .c-share__toggler .c-share__icon::before {
  transform: rotate(-45deg);
}
.c-share__input:checked ~ .c-share__toggler .c-share__icon::after {
  transform: rotate(45deg);
}
.c-share__input:checked ~ .c-share_options {
  width: 11.0625em;
  height: 12.5em;
  border-radius: 0.3125em;
}
.c-share__input:checked ~ .c-share_options::before,
.c-share__input:checked ~ .c-share_options li {
  transition: 0.3s 0.15s;
  opacity: 1;
  transform: translateY(0);
}

.c-share__toggler,
.c-share_options {
  position: absolute;
  right: 0;
  width: inherit;
  height: inherit;
  border-radius: 4px;
  background-color: #fff;
}

.c-share__toggler {
  cursor: pointer;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-share__icon {
  position: relative;
  left: -0.3125em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  color: #395c71;
  background-color: currentColor;
  box-shadow: 0.625em -0.625em, 0.625em 0.625em;
  transition: 0.1s 0.05s;
}
.c-share__icon::before, .c-share__icon::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 0.125em;
  background-color: currentColor;
  transition: 0.1s;
}
.c-share__icon::before {
   top: 0.1875em; 
   left: 0.1875em; 
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.c-share__icon::after {
  top: -0.105em;
  left: 0;
  transform-origin: center;
  transform: rotate(-45deg);
}

.c-share_options {
  list-style: none;
  margin: 0;
  padding: 1.0625em 1.25em;
  box-sizing: border-box;
  overflow: hidden;
  transition: 0.2s;
/*  box-shadow: 0 0.125em 0.125em rgba(0, 0, 0, 0.3);*/
}
.c-share_options::before {
  content: attr(data-title);
  display: block;
  margin-bottom: 1.25em;
  font-weight: 700;
}
.c-share_options li {
  font-size: 0.875em;
  color: #464646;
}
.c-share_options li:not(:last-child) {
  margin-bottom: 0.75em;
}
.c-share_options::before,
.c-share_options li {
  opacity: 0;
  transform: translateY(0.625em);
  transition: 0s;
}

/* CROWDRIFF */
#cr__app .loadMore, #cr__app .ctaExpanded a {
  background-color: #395c71!important;
  font-weight: 600!important;
  color: #FFF!important;
}

.cr__gallery .ctaPanel a {
    color: #FFF!important;
}

.cr__gallery .ctaPanel .ctaPanel__button {
  background-color: #395c71!important;
}

.cr__gallery .infoUser__link, .cr__gallery .assetInfoDetail__readMore, .cr__gallery .locationPanel a {
  color: #4c8aaf!important;
}

/* DROPDOWN MENU */

.site-menu .dropdown-container:focus-within .menu-dropdown,
.site-menu .dropdown-container:hover .menu-dropdown {
  opacity: 1;
  transform: translateY(0);
  padding-top: 13px;
}

.menu-dropdown ul {
  list-style-type: none;
  padding: 0;
}

.site-menu .menu-dropdown {
  opacity: 0;
  transform: translateY(-1000%);
  position: absolute;
  background-color: white;
  border-radius: 0 0 15px 15px;
  padding: 1rem 0;
  min-width: 100px;
  text-align: left;
  padding-top: 0;
  transition: opacity 0.3s, padding 0.3s;
  box-sizing: border-box;
}

.site-menu .menu-dropdown a {
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: #2d2d2d;
    display: block !important;
    padding: 5px 1rem;
    /* margin-right: 7px; */
}

.site-menu .menu-dropdown a:hover,
.site-menu .menu-dropdown a:focus,
.site-menu .menu-dropdown a.active { 
    background: #395c71;
    color: white;
}

/* POLICY DROPDOWNS */
.section-policy .accordion .card-body {
  color: #2d2d2d;
}

.homepage-map .map-clickable-area div {
  border: 2px solid transparent;
  border-radius: 19px;
  transition: border-color 200ms;
}

.homepage-map .map-clickable-area div:hover, .homepage-map .map-clickable-area:focus div {
  border: 3px solid #dea34f;
}

ul.mobile-parks-list {
  text-align: left;
  position: relative;
  margin: 25px 5%;
}

ul.mobile-parks-list li a {
  text-decoration: underline;
  color: #395c71;
}
ul.mobile-parks-list li a:hover {
  text-decoration: underline;
  color: #dea34f;
}

ul.mobile-parks-list li::marker {
  color: #dea34f;
}

.subpages.search .listing-horizontal .category.closed-season {
  top: unset;
  left: 15px;
  bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .site-mobile-menu .site-nav-wrap li.active.no-mobile > a {
    font-weight: 400;
    color: #212529;
  }
}

.bookmark .listing-horizontal.event .img .category {
  margin: 0;
  top: unset;
  left: 15px;
  right: 15px;
  bottom: 15px;
}

/* Jobs Page Tweaks */

.listing-horizontal.jobs .lh-content {
  padding: 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  overflow: hidden;
}

.listing-horizontal.jobs .lh-content .job-image {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.listing-horizontal.jobs .lh-content .job-body {
  padding: 30px;
  width: 100%;
}
