/*--------------------------------------------------------------
 TABLE OF CONTENTS:
----------------------------------------------------------------
0. GLOBAL
    0.1 BUTTONS
    0.2 BANNERS
    0.3 COLOR BACKGROUND
    0.4 WAVE ON TOP
    0.5 WAVE ON BOTTOM
    0.6 CALLOUT
    0.7 SLICK SLIDER
1. HEADER
    1.1 TOOLBAR & SOCIAL LINKS
    1.2 LOGO & MAIN MENU
2. FOOTER
    2.1 INSTAGRAM FEED
    2.2 NEWSLETTER
    2.3 FOOTER SOCIAL
    2.4 FOOTER MENUS
3. HOMEPAGE
    3.1 CTA
    3.2 INTRO CONTENT
    3.3 AMENITIES GRID
    3.4 SLANTED WAYS TO STAY
    3.5 TESTIMONIALS
4. WAYS TO STAY
    4.1 INTRO CONTENT
    4.2 GRID
5. SINGLE CABIN
    5.1 INTRO AND CTA
    5.2 DETAILS
6. THINGS TO DO
    6.1 INTRO
    6.2 HIGHLIGHT
7. EVENTS
    7.1 INTRO
    7.2 EVENTS GRID
    7.3 EVENTS SINGLE
8. GENERAL
    8.1 INTRO
    8.2 CALLOUT SECTION
    8.3 WAVE SECTION
    8.4 HIGHLIGHT
    8.5 CUSTOM SETTING PER PAGE
9. AWSM TEAM
    9.1 STATIC
    9.2 HOVER
    9.3 CONTENT
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
0. GLOBAL START
--------------------------------------------------------------*/
@font-face {
  font-family: finkcas;
  src: url(fonts/FINKCASU.TTF);
}
*, html {}
body {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    color: #252525;
}
a {
    color: #252525;
    text-decoration: none;
}
a:visited,
a:hover,
a:focus,
a:active {
    color: #252525;
}
p a {
    color: #ee1d23;
    text-decoration: none;
    transition: color 250ms;
}
p a:visited,
p a:hover,
p a:focus,
p a:active {color: #AAAAAA;}
a, button, input[type=submit], input[type=button], input[type=reset], input[type=file], input[type=image], label[for] {
    cursor: pointer;
}
h1,h2,h3,h4,h5,h6 {font-weight: 500 !important;}

@media only screen and (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
}

@media only screen and (min-width: 1025px) {
    .mobile-only {
        display: none;
    }
}

.lt {float: left;}
.rt {float: right;}
.clr {clear: both;}

/*0.1 BUTTONS START*/
.btn {
    width: fit-content;
    width: -moz-fit-content;
    padding: 20px 50px;
    border: 2px solid #252525;
    border-top-width: 5px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #252525 50%);
    -webkit-transition: background-position ease 350ms;
    -moz-transition: background-position ease 350ms;
    transition: ease 350ms;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.btn:hover {
    background-position: 0 -100%;
    -moz-background-position: 0 -101%;
    color: #FFFFFF;
}
.btn-blue {
    border-color: #243f8e;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #243f8e 50%);
}
.btn-green {
    border-color: #08623f;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #08623f 50%);
}
.btn-red {
    border-color: #ee1d23;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #ee1d23 50%);
}
.btn-yellow {
    border-color: #edab1f;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #edab1f 50%);
}
.btn-yellow:hover {
    color: #252525;
}
@media (max-width: 1024px) {
    .btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}
/*BUTTONS END*/

/*0.2 BANNERS START*/
.banner {
    background-color: #252525;
    clip-path: polygon(0 0, 98% 12%, 100% 100%, 2% 82%);
    text-align: center;
    color: white;
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    padding: 25px 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.banner-blue {
    background-color: #243f8e;
}
.banner-green {
    background-color: #08623f;
}
.banner-red {
    background-color: #ee1d23;
}
.banner-yellow {
    background-color: #edab1f;
    color: #252525;
}
@media (max-width: 1024px) {
    .banner {
        padding: 25px;
    }
}
/*BANNERS END*/

/*0.3 COLOR BACKGROUND START*/
.color-bkgd {
    background-color: rgba(37,37,37,0.1);
    clip-path: polygon(0 0, 98% 12%, 100% 100%, 2% 82%);
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    padding: 25px 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.bkgd-blue {
    background-color: rgba(36,63,142,0.1);
}
.bkgd-green {
    background-color: rgba(8,98,63,0.1);
}
.bkgd-red {
    background-color: rgba(238,29,35,0.1);
}
.bkgd-yellow {
    background-color: rgba(237,171,31,0.1);
}
/*COLOR BACKGROUND END*/

/*0.4 WAVE ON TOP START*/
.wave-bkgd {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-black-top.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px;
}
.wave-bkgd-blue {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-blue-top.png);
}
.wave-bkgd-green {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-green-top.png);
}
.wave-bkgd-red {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-red-top.png);
}
.wave-bkgd-yellow {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-yellow-top.png);
}
.wave-grad-black {
    background-image: linear-gradient(rgb(213,213,213), #FFFFFF);
}
.wave-grad-blue {
    background-image: linear-gradient(rgb(214,219,234), #FFFFFF);
}
.wave-grad-green {
    background-image: linear-gradient(rgb(208,225,218), #FFFFFF);
}
.wave-grad-red {
    background-image: linear-gradient(rgb(251,212,213), #FFFFFF);
}
.wave-grad-yellow {
    background-image: linear-gradient(rgb(250,234,199), #FFFFFF);
}
@media (max-width: 767px) {
    .wave-bkgd {
        height: 100px;
    }
}
@media (max-width: 500px) {
    .wave-bkgd {
        height: 50px;
    }
}
/*WAVE ON TOP END*/

/*0.5 WAVE ON BOTTOM START*/
.wave-alt-bkgd {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-black-top.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    transform: rotate(180deg);
}
.wave-alt-bkgd-blue {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-blue-top.png);
}
.wave-alt-bkgd-green {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-green-top.png);
}
.wave-alt-bkgd-red {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-red-top.png);
}
.wave-alt-bkgd-yellow {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/wave-yellow-top.png);
}
.wave-alt-grad-black {
    background-image: linear-gradient(#FFFFFF, rgb(213,213,213));
}
.wave-alt-grad-blue {
    background-image: linear-gradient(#FFFFFF, rgb(214,219,234));
}
.wave-alt-grad-green {
    background-image: linear-gradient(#FFFFFF, rgb(208,225,218));
}
.wave-alt-grad-red {
    background-image: linear-gradient(#FFFFFF, rgb(251,212,213));
}
.wave-alt-grad-yellow {
    background-image: linear-gradient(#FFFFFF, rgb(250,234,199));
}
@media (max-width: 767px) {
    .wave-alt-bkgd {
        height: 100px;
    }
}
@media (max-width: 500px) {
    .wave-alt-bkgd {
        height: 50px;
    }
}
/*WAVE ON BOTTOM END*/

 /*0.6 CALLOUT SECTION START*/
.callout-section {
    background: #EBEEF5;
    position: relative;
    z-index: 99;
}
.callout-section .left-col {
    float: left;
    width: 40%;
    margin: 100px 50px 0px 50px;
}
.callout-section .left-col img {
    /*width: 100%;*/
}
.callout-section .right-col {
    float: left;
    width: 50%;
}
.callout-section h3 {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 45px;
    font-family: finkcas;
    margin: 0 auto;
}
.callout-section .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 25px;
}
.callout-top-slant {
    height: 178px;
    background: #EBEEF5;
    transform: skewY(-5deg);
    margin-bottom: -88px;
    position: relative;
    z-index: 9;
    margin-top: 100px;
}
.callout-bot-slant {
    height: 175px;
    background: #EBEEF5;
    transform: skewY(-5deg);
    margin-top: -84px;
    margin-bottom: 150px;
    position: relative;
    z-index: 9;
}
.callout-top-slant-down {
    height: 178px;
    background: #EBEEF5;
    transform: skewY(5deg);
    margin-bottom: -88px;
    position: relative;
    z-index: 9;
    margin-top: 100px;
}
.callout-bot-slant-down {
    height: 220px;
    background: #EBEEF5;
    transform: skewY(5deg);
    margin-top: -120px;
    margin-bottom: 150px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1366px) {

}
@media (max-width: 1024px) {
    .callout-section .left-col {
        float: none;
        width: 100%;
        margin: 0px;
    }
    .callout-section .right-col {
        float: none;
        width: 90%;
        margin: 55px auto 0;
    }
}
@media (max-width: 767px) {
    .callout-section h3 {
        font-size: 32px;
    }
    .callout-section .banner {
        font-size: 21px;
    }
    .callout-top-slant {
        margin-top: 50px;
        height: 148px;
    }
    .callout-bot-slant {
        height: 120px;
        margin-bottom: 50px;
    }
    .callout-bot-slant-down {
        margin-bottom: 50px;
    }
}
/*CALLOUT SECTION END*/

/*0.7 SLICK SLIDER START*/
.slick-slider {
    position: relative
}
.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    font-size: 0;
    background: 0 0;
    border: none;
    transition: all .5s;
    margin-top: -19px
}
.slick-arrow:before {
    content: 'v';
    font-size: 37px;
    color: #FFFFFF
}
.slick-prev {
    left: 3%;
    -webkit-transform: rotate(90deg) scale(2,1);
    -ms-transform: rotate(90deg) scale(2,1);
    transform: rotate(90deg) scale(2,1)
}
.slick-next {
    right: 3%;
    -webkit-transform: rotate(-90deg) scale(2,1);
    -ms-transform: rotate(-90deg) scale(2,1);
    transform: rotate(-90deg) scale(2,1)
}
/*SLICK SLIDER END*/

/*RED WIDGET START*/
.red-widget {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #ee1d23;
    z-index: 999999;
    text-align: center;
}
.red-widget p {
    color: white;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px;
    padding: 25px 15px;
}
.red-widget a {
    color: #FFFFFF;
    text-decoration: underline;
}
.red-widget a:hover {
    color: #252525;
}
.closebtn {
  margin-right: 15px;
  color: white;
  font-weight: 100;
  float: right;
  font-size: 26px;
  line-height: 50px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 16px;
}

.closebtn:hover {
  color: #252525;
}
@media (max-width: 767px) {
    .red-widget p {
        font-size: 16px;
    }
}
/*RED WIDGET END*/

/*SELECTION COLORS START*/
/*.select-black::selection {
    background-color: #252525;
}
.select-blue::selection {
    background-color: #243f8e;
}
.select-green p::selection {
    background-color: #08623f;
}
.select-red::selection {
    background-color: #ee1d23;
}
.select-yellow::selection {
    background-color: #edab1f;
}*/
/*SELECTION COLORS END*/

/*--------------------------------------------------------------
GLOBAL END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
1. HEADER START
--------------------------------------------------------------*/
/*1.1 TOOLBAR & SOCIAL LINKS START*/
#toolbar {
    width: 100%;
    background-color: #243f8e;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 9999;
    color: #FFFFFF;
}
#toolbar a {
    color: #FFFFFF;
}
#toolbar a:hover {
    color: #edab1f;
}
.toolbar-left {
    float: left;
}
.toolbar-right {
    float: right;
}
.toolbar-socials ul {
    margin: 0px;
    list-style: none;
}
.toolbar-socials ul li {
    float: left;
    padding: 15px 20px;
    font-size: 23px;
}
.toolbar-phone {
    float: left;
    margin: 18px 20px;
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/phone.png);
    background-repeat: no-repeat;
    padding: 2px 0px 2px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.toolbar-contact {
    float: left;
    margin: 20px 23px;
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/envelope.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
/*TOOLBAR & SOCIAL LINKS END*/

/*1.2 LOGO & MAIN MENU START*/
.site-branding {
    position: fixed;
    height: 175px;
    top: 70px;
    left: 50px;
    z-index: 9999;
    filter: drop-shadow(5px 20px 10px rgba(0,0,0,.12));
}
#header-logo {
    max-width: 225px;
}
#site-navigation {
    width: 100%;
    position: fixed;
    background-color: rgba(255,255,255,0.5);
    right: 0px;
    top: 62px;
    z-index: 9998;
    transition: 250ms;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}
.scrolling {
    background-color: rgba(255,255,255,1) !important;
}
.main-navigation li.btn {
    cursor: pointer;
    padding: 10px 30px;
    height: auto;
    margin-left: 20px;
}
.main-navigation li.btn a {
    transition: 250ms;
}
.main-navigation li.btn:hover a {
    color: #ffffff;
}
/** Push menu onto new line **/ 

/*LOGO & MAIN MENU END*/

@media only screen and (max-width: 1280px) {
    #header-logo {
        max-width: 175px;
    }
}

@media(max-width: 1024px) {
    .toolbar-socials {
        display: none;
    }
    .toolbar-phone {
        display: none;
    }
    .toolbar-contact {
        display: none;
    }
    #header-logo {
        max-width: 150px;
    }
}
/*--------------------------------------------------------------
HEADER END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
2. FOOTER START
--------------------------------------------------------------*/

/*2.1 INSTAGRAM FEED START*/
.instagram-section {
    margin-bottom: 50px;
    position: relative;
}
.insta-left {
    float: left;
    width: 30%;
}
.insta-heading {
    font-size: 35px;
    padding: 0px 0px 0px 85px;
}
.insta-heading {
    font-family: finkcas;
    font-weight: 400;
}
.insta-heading span {
    background-color: #ee1d23;
    clip-path: polygon(0 0, 98% 12%, 100% 100%, 0% 82%);
    color: white;
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    padding: 25px 50px 25px 85px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: absolute;
    left: 0;
    max-width: 30%;
}
.insta-right {
    float: right;
    width: 60%;
}
.sbi-owl-dots {
    display: none;
}
.insta-btn {
    margin: 150px auto 0px;
    width: fit-content;
    width: -moz-fit-content;
}
.insta-btn:after {
    content: '';
    width: 145px;
    height: 215px;
    display: block;
    position: absolute;
    left: calc(50% + 235px);
    bottom: 0;
    background-image: url(/wp-content/uploads/2021/02/insta-cindy.png);
}
@media (max-width: 1365px) {
    .insta-heading {
        font-size: 26px;
        padding: 0px 25px;
    }
}
@media (max-width: 1024px) {
    .insta-left {
        float: none;
        width: 100%;
    }
    .insta-right {
        float: none;
        width: 100%;
    }
    .insta-heading span {
        padding: 10px;
        max-width: 100%;
        position: inherit;
        margin-left: -25px;
    }
}
@media (max-width: 767px) {
    .insta-btn {
        margin: 50px auto;
    }
    .insta-btn:after {
        width: 0px;
    } 
}
/*INSTAGRAM FEED END*/

/*2.2 NEWSLETTER START*/
.form-sub {
    background-color: #243f8e;
}
.form-sub-container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 30px;
}
.form-sub-left {
    float: left;
    width: 20%;
}
.form-sub-left h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.form-sub-left h5 span {
    font-family: finkcas;
    font-weight: 400;
}
.form-sub-right {
    float: left;
    width: 80%;
}
#gform_wrapper_1 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    float: left;
    width: calc(100% - 275px);
    margin-top: 40px;
}
#gform_wrapper_1 .gform_footer {
    clear: none !important;
}
#gform_wrapper_1 #gform_1 #gform_fields_1 #field_1_1 #input_1_1 {
    font-size: 21px;
    line-height: 34px;
    text-align: center;
}
#gform_wrapper_1 .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
    width: fit-content;
    width: -moz-fit-content;
    float: right;
    padding: 20px 50px;
    margin-top: 10px !important;
    border: 2px solid #252525;
    border-top-width: 5px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #252525 50%);
    -webkit-transition: background-position ease 350ms;
    -moz-transition: background-position ease 350ms;
    transition: background-position ease 350ms;
    text-decoration: none;
    font-size: 21px !important;
    text-transform: uppercase;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
#gform_wrapper_1 .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover {
    background-position: 0 -100%;
    -moz-background-position: 0 -101%;
    color: #FFFFFF;
}
@media (max-width: 1024px) {
    .form-sub-left {
        float: none;
        width: 100%;
        padding-top: 1px;
    }
    .form-sub-right {
        float: none;
        width: 100%;
    }
    #gform_wrapper_1 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
        float: none;
        width: 100%;
        margin-top: 0px;
    }
    #gform_wrapper_1 .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
        float: none;
        padding: 20px 50px;
        margin-top: 10px !important;
        font-size: 21px !important;
        padding: 10px 25px;
        margin: 0 auto 25px;
    }
    #gform_wrapper_1.gform_wrapper {
        margin-bottom: 0px;
    }
}
@media (max-width: 767px) {
    .form-sub-left h5 {
        text-align: center;
    }
}
/*NEWSLETTER END*/

/*2.3 FOOTER SOCIAL*/
.footer-socials {
    background-color: #252525;
}
.footer-socials-container {
    width: fit-content;
    width: -moz-fit-content;
    color: #FFFFFF;
    margin: 0 auto;
}
.footer-socials ul {
    margin: 0px 0px 0px -40px;
    list-style: none;
}
.footer-socials ul li {
    float: left;
    padding: 20px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.footer-socials ul li a {
    color: #FFFFFF;
}
.footer-socials ul li a:hover {
    color: #edab1f;
}
@media (max-width: 767px) {
    .footer-socials ul li {
        padding: 20px 10px;
    }
}
/*FOOTER SOCIAL END*/

/*2.4 FOOTER MENUS START*/
.footer {
    font-size: 14px;
    background-color: #ebebeb;
}
.footer .footer-body {
    padding: 52px 0 40px;
}
.footer .footer-body .logo {
    /*width: 221px;
    height: 160px;*/
    width: 200px;
    height: auto;
    top: -24px;
    margin-bottom: -12px;
    position: relative
}
.footer .footer-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}
.footer .footer-col-size1 {
    width: 80%;
    padding: 0 0 0 10px;
}
.footer .footer-col-size2 {
    width: 20%;
    padding: 0 0 0 75px;
    margin-top: -80px;
}
.footer-address {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/pinpoint.png);
    background-repeat: no-repeat;
    padding: 0px 0px 0px 35px;
    margin-bottom: 10px;
}
.footer-phone {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/phone-black.png);
    background-repeat: no-repeat;
    padding: 3px 0px 3px 35px;
    margin-bottom: 10px;
}
.footer-fax {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/fax.png);
    background-repeat: no-repeat;
    padding: 3px 0px 3px 35px;
}
.footer-address a,
.footer-phone a,
.footer-fax a {
    color: #252525;
}

.footer .footer-col-size2:last-child {
    padding: 0;
    text-align: right
}
.footer .footer-nav {
    display: block;
    margin-bottom: 18px
}
.footer .footer-nav>ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}
.footer .footer-nav>ul>li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    z-index: 35%
}
.sub-menu {
    margin: 0px;
    padding: 0px;
}
.sub-menu li {
    list-style: none;
}
.footer .footer-nav>ul>li+li {
    margin-left: 15%;
}
.footer .footer-nav>ul>li>a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #252525;
}
.footer .footer-nav>ul>li>ul {
    line-height: 1.6
}
.footer .footer-nav>ul>li>ul>li>a {
    color: #252525;
}
.footer .footer-nav-secondary {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}
.footer .footer-nav-secondary>ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    font-size: 14px
}
.footer .footer-nav-secondary>ul>li {
    letter-spacing: .1px
}
.footer .footer-nav-secondary>ul>li:after {
    content: '|';
    padding: 0 5px
}
.footer .footer-nav-secondary>ul>li:last-child:after {
    display: none
}
.footer .footer-nav-secondary>ul:nth-child(2)>li {
    letter-spacing: -.3px
}
.footer .footer-nav-secondary>ul:nth-child(3)>li {
    letter-spacing: 0;
    font-weight: 600
}
.footer .footer-bar {
    padding: 12px 0px;
    font-size: 14px;
    letter-spacing: .2px;
    border-top: 2px solid #7c7c7c; 
}
.footer .footer-bar .shell {
    max-width: 90%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}
.footer .footer-bar p {
    width: 70%;
    margin: 0
}
.footer .footer-bar p:nth-child(2) {
    text-align: right;
    width: 30%
}
.footer .footer-bar p:nth-child(2) a {
    color: #7BB136;
}
@media (max-width: 1200px) {
    .footer .footer-col-size1 {
        width: 70%
    }
    .footer .footer-col-size2 {
        width: 30%
    }
    .footer .footer-nav>ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .footer .footer-nav>ul>li {
        width: 50%;
        margin-bottom: 10px
    }
    .footer .footer-nav>ul>li+li {
        margin-left: 0
    }
    .footer .footer-nav-secondary>ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}
@media (max-width: 767px) {
    .footer .footer-body {
        padding: 50px 0px 20px;
    }
    .footer .footer-body .logo {
        width: 100px;
        height: 70px;
        margin-bottom: -11px;
    }
    .footer .footer-col-size2 {
        margin-top: 0px;
    }
    .footer .footer-nav {
        display: none;
    }
    .footer .footer-nav-secondary {
        font-size: 10px;
        text-align: center;
        padding: 25px 0px 15px;
    }
    .footer .footer-nav-secondary ul {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 12px;
        padding: 0px;
    }
    .footer .footer-nav-secondary ul li:after {
        padding: 0 2px 0 1px
    }
    .footer .footer-cols {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .footer .footer-col-size1 {
        width: 90%;
        padding: 0px;
        margin: 0 auto;
    }
    .footer .footer-col-size2 {
        width: 60%;
        padding: 0px;
        margin: 0 auto;
        text-align: center;
    }
    .footer-address,
    .footer-phone,
    .footer-fax {
        text-align: left;
        margin-left: 30px;
    }
    .footer .shell {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .footer .footer-bar p,.footer .footer-bar p:last-child {
        width: 100%;
        text-align: center;
        font-size: 10px
    }
    div#TA_certificateOfExcellence378 {
        display: none;
    }
    .footer-nav-secondary ul {
        padding-bottom: 15px;
    }
}
/*FOOTER MENUS END*/
/*--------------------------------------------------------------
FOOTER END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
3. HOMEPAGE START
--------------------------------------------------------------*/

/*3.1 CTA START*/
.desktop-vid {
    display: block;
}  
.mobile-vid {
    display: none;
}
.intro-primary {
    height: 105vh;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10
}
.intro-primary .slide, .section .section-madia {
    background-position: top;
}
.intro-primary .slide .shell {
    position: relative;
    z-index: 5;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}
.intro-primary .slide {
    height: 102vh;
    position: relative;
}
.intro .slide-content {
    text-align: center;
    color: white;
}
.intro .slide-content h2 {
    font-size: 95px;
    font-family: finkcas;
}
.intro .slide-content h2 span {
    font-size: 65px;
    font-family: finkcas;
}
.intro .slide-content a {
    color: #FFFFFF;
}
.intro {
    overflow: hidden;
}
.nk-awb {
    overflow: hidden;
}
.nk-awb .nk-awb-wrap {
    transform: scale(1.15);
    transform: none !important;
    margin-top: -10vh;
    margin-bottom: -10vh;
}
.home-cta-down-arrow-desktop {
    position: absolute;
    bottom: 50px;
    left: 48%;
}
.home-cta-down-arrow-mobile {
    position: absolute;
    bottom: 50px;
    left: 50%;
}
.form-subscribe h5 {
    cursor: default !important;
}
@media (max-width: 1365px){
    .intro .slide-content h2 {
        font-size: 80px;
    }
}
@media (max-width: 1024px){
    .intro .slide-content h2 {
        font-size: 72px;
    }
    .intro-primary, .intro-primary .slide {
        min-height: 0;
    }
    .nk-awb .nk-awb-wrap {
        transform: scale(1.3); 
        transform: none !important;
        margin-top: -20vh;
        margin-bottom: -20vh;
    }
    .home .container {
        margin-top: 0;
    }
    .home-cta-down-arrow-desktop {
        bottom: 25px;
    }
}
@media(max-width: 767px){
    .header .logo {
        height: 80px;
    }
    .desktop-vid {
        display: none;
    } 
    .mobile-vid {
        display: block;
    }
    .intro-primary {
        height: 77vh;
    }
    .intro-primary .slide .shell {
        height: 35vh;
    }
    .intro-primary, .intro-primary .slide {
        min-height: 0;
    }
    .intro-primary .slide {
        height: 70vh;
    }
    .nk-awb .nk-awb-wrap {
        transform: none !important;
        margin: 0 !important;
    }
    .intro .slide-content h2 {
        font-size: 60px;
    }
    .slide-content h3 {
        font-size: 24px;
    }
    .home-cta-down-arrow-mobile {
        position: inherit;
    }
}
@media (max-width: 414px){
    .intro .slide-content h2 {
        font-size: 42px;
    }
    .slide-content h3 {
        font-size: 18px;
    }
    .slick-track {
        /*height: 70vh;*/
    }
    .slick-list.draggable {
        /*margin-top: 200px;*/
    }
    .section.section-two-cols > .section-content.jelly, .section-content {
        margin-top: 50px;
    }
    .intro-primary .slide {
        height: 70vh;
        padding: 0;
        min-height: 0;
    }
    .slide-content {margin-top: 75px;}
    #desktop-slides {display: none;}
    #mobile-slides {display:block}
}
/*CTA END*/

/*3.2 INTRO CONTENT START*/
.intro-content{
    position: relative;
}
.ic-left-col{
    width: 60%;
    margin: 50px 0px 100px 5%;
}
.ic-left-col h3 {
    font-size: 45px;
    font-family: 'finkcas';
}
.ic-left-col h3 span {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 15px -50px;
}
.ic-right-image{
    position: absolute;
    right: 0;
    top: 0;
}
@media (max-width: 1680px) {
    .ic-left-col {
        width: 50%;
    }
    .ic-right-image {
        width: 40%;
    }
}
@media (max-width: 1366px) {

}
@media (max-width: 1024px) {
    .ic-left-col{
        width: 90%;
        margin: 50px auto 100px;
    }
    .ic-left-col h3 {
        font-size: 32px;
    }
    .ic-left-col h3 span {
        font-size: 21px;
        margin: 15px 0px;
        text-align: left;
    }
    .ic-right-image {
        display: none;
    }
}
@media (max-width: 750px) {

}
/*INTRO CONTENT END*/

/*3.3 AMENITIES GRID START*/
.amenities-section {
    background-color: #EBEEF5;
    position: relative;
    z-index: 999;
}
.amenities-section h3 {
    font-family: finkcas;
    font-size: 45px;
    text-align: center;
}
.amenities-section h3:after {
    content: '';
    width: 221px;
    height: 229px;
    display: block;
    position: absolute;
    left: calc(50% + 250px);
    top: -69px;
}
.amenities-section .top-row {
    max-width: 1000px;
    margin: 150px auto 50px;
    width: 90%;
}
.amenities-section .bottom-row {
    max-width: 1366px;
    margin: 50px auto;
    width: 90%;
}
.amenities-section .col-3 {
    width: 33%;
    float: left;
    text-align: center;
    padding: 25px;
}
.amenities-section .col-4 {
    width: 25%;
    float: left;
    text-align: center;
    padding: 25px;
}
.amen-icon {
    margin-bottom: 15px;
}
.amenities-section .btn {
    margin: 0 auto;
}
.amen-top-slant {
    height: 180px;
    background: #EBEEF5;
    transform: skewY(5deg);
    margin-bottom: -129px;
}
.amen-bot-slant {
    height: 195px;
    background: #EBEEF5;
    border-bottom: 25px solid #FFFFFF;
    transform: skewY(5deg);
    margin-top: -85px;
    position: relative;
    z-index: 99;
}
@media (max-width: 767px) {
    .amenities-section .amen-top-image {
        display: none;
    }
    .amenities-section h3 {
        font-size: 32px;
    }
    .amenities-section h3:after {
        width: 0px;
    }
    .amenities-section .top-row {
        margin: 0px auto;
    }
    .amenities-section .bottom-row {
        margin: 0px auto;
    }
    .amenities-section .col-3 {
        width: 100%;
        float: none;
    }
    .amenities-section .col-4 {
        width: 100%;
        float: none;
    }
    .amenities-section .btn {
        margin: 35px auto 0;
    }
}
/*AMENITIES GRID END*/

/*3.4 SLANTED WAYS TO STAY START*/
.hp-wts-section {
    margin-top: -100px;
    position: relative;
    z-index: 98;
}
.hp-wts-col-5 {
    width: 18.5%;
    float: left;
    margin: 0px 0px 20px 25px;
    position: relative;
    min-height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hp-wts-col-5:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(37,37,37,0.15);
    position: absolute;
    top: 0px;
    z-index: 99;
}
.hp-wts-title {
    margin: 25px auto;
    color: #FFFFFF;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    z-index: 999;
    text-transform: uppercase;
}
.hp-wts-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(37,37,37,0.9);
    z-index: 999;
}
.hp-wts-col-5:hover .hp-wts-overlay {
    opacity: 1;
}
.hp-wts-col-5:hover .hp-wts-title {
    opacity: 0;
}
.hp-wts-hover-title {
    color: white;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.hp-wts-details {
    padding: 180px 25px 0px;
}
.hp-wts-hover-content {
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}
.hp-wts-hover-img {
    position: absolute;
    bottom: 0;
    left: 25px;
    height: 150px;
}
@media (max-width: 1700px) {
    .hp-wts-col-5 {
        width: 18.1%;
    }
}
@media (max-width: 1365px) {
    .hp-wts-col-5 {
        width: 17.3%;
    }
}
@media (max-width: 1024px) {
    .hp-wts-col-5 {
        width: 96%;
        float: none;
        margin: 0 auto 25px;
        position: relative;
        min-height: 400px;
    }
    .hp-wts-details {
        padding: 135px 25px 0px;
    }
}
/*WAYS TO STAY END*/

/*3.5 TESTIMONIAL START*/
.testimonial-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.testimonial-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.64);
    position: absolute;
    top: 0px;
    z-index: 99;
}
.testimonials {
    position: relative;
    z-index: 999;
}
.testimonial-title {
    font-size: 45px;
    font-family: finkcas;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    margin: 0px;
    padding: 50px;
    font-weight: 500;
}
.testimonial-title span {
    font-size: 35px; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #252525;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
}
.testimonials .start-quote {
    position: absolute;
}
.testimonials .stars-con {
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
}
.testimonials .white {
    padding: 0px 0px 80px 0px !important;
    color: #FFFFFF !important;
    text-align: center;
}
.sa_owl_theme .owl-item .sa_vert_center_wrap .sa_vert_center {
    padding: 0px 200px;
}
#slider_559 .sa_owl_theme .owl-dots .owl-dot span {
    background-color: rgba(255,255,255,0.8) !important;
    margin: 0px 25px!important;
}
.testimonials .end-quote {
    position: absolute;
    right: 2%;
    bottom: 0;
    margin-bottom: 80px;
}
@media (max-width: 1024px){
    .testimonials .container {
        margin: 0 auto;
        max-width: 90%;
    }
    .sa_owl_theme .owl-item .sa_vert_center_wrap .sa_vert_center {
        padding: 0px 100px;
    }
    .testimonials .start-quote,
    .testimonials .end-quote {
        width: 75px;
    }
    .stars-con .stars {
        width: 300px;
    }
}
@media (max-width: 767px) {
    .testimonial-title {
        font-size: 32px;
        padding: 50px 0px;
    }
    .testimonial-title span {
        font-size: 21px;
    }
    #slider_559_slide01,
    #slider_559_slide02,
    #slider_559_slide03,
    #slider_559_slide04,
    #slider_559_slide05 {
        min-height: 500px !important;
    }
    .sa_owl_theme .owl-item .sa_vert_center_wrap .sa_vert_center {
        padding: 0px 25px;
    }
    .testimonials .start-quote,
    .testimonials .end-quote {
        width: 50px;
    }
    .stars-con .stars {
        width: 200px;
    }
}
/*TESTIMONIAL END*/

/*--------------------------------------------------------------
HOMEPAGE END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
4. WAYS TO STAY START
--------------------------------------------------------------*/
/*4.1 INTRO START*/
.wts-landing h1 {
    margin: 300px auto 0px;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 64px;
    font-family: finkcas;
}
.wts-landing h1:after {
    content: '';
    width: 334px;
    height: 303px;
    display: block;
    position: absolute;
    left: calc(50% + 400px);
    top: 250px;
}
.wts-landing .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 25px;
}
.wts-landing .wts-abso-img {
    position: absolute;
    right: 0;
    top: 250px;
}
.wts-landing .left-col {
    float: left;
    width: 40%;
    margin: 0px 50px 0px 100px;
}
.wts-landing .left-col img {
    width: 100%;
}
.wts-landing .right-col {
    float: left;
    width: 48%;
}
.wts-landing .right-col .color-bkgd {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .wts-landing h1 {
        margin-top: 150px;
        font-size: 32px;
    }
    .wts-landing h1:after {
        display: none;
    }
    .wts-landing .banner {
        font-size: 21px;
        width: 90%;
    }
}
/*INTRO END*/

/*4.2 GRID START*/
.cabin-wave {
    position: relative;
}
.cabin-wave .bot-right-img {
    position: absolute;
    bottom: 50px;
    right: 250px;
}
h2.cabin-section-title  {
    text-align: center;
    font-size: 45px;
    font-family: finkcas;
}
.cabin-section {
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 50px 0px 0px;
}
.cabin-item {
    width: 31%;
    margin-right: 3%;
    float: left;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25) !important;
    margin-bottom: 50px;
    background-color: #FFFFFF;
    transition: 250ms;
}
.cabin-item:nth-child(3n) {
    margin-right: 0px;
}
.cabin-title {
    font-size: 20px;
    padding-left: 25px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.cabin-amenity {
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
    padding: 0px;
}
.cabin-amenity li {
    list-style: none;
    float: left;
    width: 50%;
    padding: 10px;
    /*min-height: 60px;*/
}
.cabin-amenity img {
    width: 25px;
    float: left;
    margin: 0px 10px 15px 0px;
}
.price {
    font-weight: 700;
    font-size: 16px;
    background-color: #243f8e;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 250ms;
}
.cabin-item:hover {
    background-color: #f2f2f2;
}
.price:hover {
    background-color: #FFFFFF;
    color: #243f8e;
}
@media (max-width: 1200px) {

}
@media (max-width: 1024px) {
    .wts-landing .left-col {
        float: none;
        width: 90%;
        max-width: 500px;
        margin: 0px auto;
    }
    .wts-landing .right-col {
        float: none;
        width: 90%;
        margin: 0 auto;
    }
    .cabin-item {
        width: 48%;
        margin-right: 3% !important;
    }
    .cabin-item:nth-child(2n) {
        margin-right: 0px !important;
    }
    .cabin-wave .bot-right-img {
        display: none;
    }
}
@media (max-width: 768px) {
    h2.cabin-section-title  {
        font-size: 32px;
        margin-top: 65px;
        margin-bottom: 5px;
    }
    .cabin-item {
        width: 100%;
        margin-right: 0px;
    }
    .cabin-title {
        font-size: 18px;
    }
    .cabin-amenity {
        font-size: 14px;
    }
    .cabin-amenity img {
        width: 20px;
    }
}
@media (max-width: 501px) {

}
/*GRID END*/
/*--------------------------------------------------------------
WAYS TO STAY END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
5. SINGLE CABIN START
--------------------------------------------------------------*/
/*5.1 INTRO AND CTA START*/
.sc-intro-section h1 {
    margin: 300px auto 0px;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 64px;
    font-family: finkcas;
    clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
    background-color: #FFFFFF;
    padding: 15px 50px;
    text-align: center;
}
.sc-intro-section .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-top: -10px;
}
.sc-intro-section .sc-cta {
    background-position: top center;
    background-repeat: no-repeat;
    width: 90%;
    margin: 0 auto;
    background-size: cover;
    padding: 0px 0px 700px 0px;
}
.sc-intro-section {
    position: relative;
}
.sc-left-col {
    width: 50%;
    margin: 50px 5% 100px 5%;
    float: left;
}
.sc-left-col h3 {
    font-size: 45px;
    font-family: 'finkcas';
}
.sc-right-col{
    width: 40%;
    padding: 100px 0px 0px 0px;
    float: left;
}
@media (max-width: 1680px) {
    .sc-intro-section .sc-cta {
        padding: 0px 0px 500px 0px;
    }
}
@media (max-width: 1440px) {
    .sc-intro-section .sc-cta {
        padding: 0px 0px 400px 0px;
    }
}
@media (max-width: 1365px) {
    .sc-intro-section .sc-cta {
        padding: 0px 0px 300px 0px;
    }
}
@media (max-width: 1024px) {
    .sc-intro-section h1 {
        margin: 150px auto 0px;
        font-size: 32px;
    }
    .sc-intro-section .banner {
        font-size: 21px;
        width: 90%;
    }
    .sc-left-col {
        width: 90%;
        margin: 0 auto;
        float: none;
    }
    .sc-right-col {
        width: 60%;
        padding: 100px 0px 0px 0px;
        float: none;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .sc-left-col h3 {
        font-size: 32px;
    }
    .sc-left-col .btn {
        margin-top: 50px;
    }
}
/*INTRO AND CTA END*/

/*5.2 DETAILS START*/
.sc-details {
    position: relative;
    margin-top: -37px;
    margin-bottom: 100px;
}
.dets-top .dets-top-img {
    position: absolute;
    left: 25%;
}
.dets-top h2 {
    font-size: 45px;
    text-align: center;
    font-family: finkcas;
    margin-bottom: 10px;
}
.dets-top h2:after {
    content: '';
    width: 142px;
    height: 191px;
    display: block;
    position: absolute;
    left: calc(50% - 400px);
    top: 0px;
}
.dets-top .banner {
    font-size: 35px;
    margin: 0 auto;
    color: #252525;
    font-weight: 500;
}
.dets-left-col {
    width: 50%;
    margin: 50px 5% 100px 5%;
    float: left;
}
.dets-right-col {
    width: 40%;
    padding: 100px 0px 0px 0px;
    float: left;
}
.dets-right-col h3 {
    color: #FFFFFF;
    background: #252525;
    padding: 15px 25px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.dets-icon {
    width: 25px;
    float: left;
    margin-right: 10px;
}
.dets-bot-btn {
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .dets-left-col {
        width: 90%;
        margin: 0 auto;
        float: none;
    }
    .dets-right-col {
        width: 90%;
        padding: 0px;
        margin: 0 auto;
        float: none;
    }
}
@media (max-width: 767px) {
    .sc-details {
        margin-bottom: 0px;
    }
    .dets-top h2 {
        font-size: 32px;
        margin-top: 35px;
    }
    .dets-top .banner {
        font-size: 21px;
    }
    .dets-right-col h3 {
        margin-top: 45px;
    }
}
/*DETAILS END*/
/*--------------------------------------------------------------
SINGLE CABIN END
--------------------------------------------------------------*/



/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*--------------------------------------------------------------
6. THINGS TO DO START
--------------------------------------------------------------*/
/*6.1 INTRO START*/
.things-to-do-landing h1 {
    margin: 300px auto 0px;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 64px;
    font-family: finkcas;
}
.things-to-do-landing h1:after {
    content: '';
    width: 152px;
    height: 239px;
    display: block;
    position: absolute;
    left: calc(50% + 455px);
    top: 300px;
}
.things-to-do-landing .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 25px;
    color: #252525;
}
.things-to-do-landing .ttd-abso-img {
    position: absolute;
    right: 10%;
    top: 300px;
}
.things-to-do-landing .left-col {
    float: left;
    width: 40%;
    margin: 0px 50px;
}
.things-to-do-landing .left-col img {
    width: 100%;
}
.things-to-do-landing .right-col {
    float: left;
    width: 48%;
}
.things-to-do-landing .right-col .color-bkgd {
    font-weight: 500;
}
.activities-section {
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
}
.activities-section h2 {
    font-size: 45px;
    font-family: finkcas;
}
.activities-section h2:after {
    content: '';
    width: 158px;
    height: 156px;
    display: block;
    position: absolute;
    top: -50px;
    left: 550px;
    background-image: url(/wp-content/uploads/2021/02/happy-sitting-boo-boo.png);
}
.act-title {
    background-color: #243f8e;
    clip-path: polygon(0 0, 98% 12%, 100% 100%, 2% 82%);
    text-align: center;
    color: white !important;
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    padding: 25px 50px !important;
    margin: 25px auto !important;
    font-size: 22px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
@media (max-width: 1365px) {

}
@media (max-width: 1024px) {
    .things-to-do-landing h1 {
        margin: 150px auto 0px;
        font-size: 32px;
    }
    .things-to-do-landing h1:after {
        display: none;
    }
    .things-to-do-landing .banner {
        font-size: 21px;
        width: 90%;
    }
    .activities-section h2 {
        font-size: 32px;
    }
    .activities-section h2:after {
        display: none;
    }
    .things-to-do-landing .left-col {
        float: none;
        width: 90%;
        margin: 0px auto;
    }
    .things-to-do-landing .right-col {
        float: none;
        width: 90%;
        margin: 0 auto;
        padding: 0px 0px 20px;
    }
}
/*INTRO END*/

/*6.2HIGHLIGHT START*/
.highlight-section {
    position: relative;
}
.highlight-section .left-col,
.highlight-section .right-col {
    float: left;
    width: 46%;
    margin: 0px 2%;
    position: relative;
}
.highlight-section h4 {
    font-size: 45px;
    font-family: finkcas;
}
.highlight-box {
    background-size: cover;
    min-height: 400px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25) !important;
}
.highlight-text {
    position: absolute;
    bottom: 0;
    color: #243f8e;
    background: #FFFFFF;
    width: 100%;
    padding: 25px 47px 25px 15px;
    font-size: 18px;
    text-transform: uppercase;
    transition: 250ms;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.highlight-box:hover .highlight-text {
    color: #FFFFFF;
    background: #243f8e;
}
.highlight-text:after {
    content: '';
    width: 13px;
    height: 22px;
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 250ms;
    position: absolute;
    right: 25px;
}
.highlight-box:hover .highlight-text:after {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow-wht.png);
}
@media (max-width: 1024px) {
    .gen-highlight-section {
        width: 90%;
        margin: 0px auto 36px;
    }
    .highlight-section .left-col,
    .highlight-section .right-col {
        float: none;
        width: 90%;
        margin: 0px auto;
    }
    .highlight-text {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .highlight-section h4 {
        font-size: 32px;
    }
    .page-id-271 .insta-btn {
        margin: 0 auto;
    }
}
/*HIGHLIGHT END*/

/*--------------------------------------------------------------
THINGS TO DO END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
7. EVENTS START
--------------------------------------------------------------*/

/*7.1 INTRO START*/
.events-landing h1 {
    margin: 300px auto 0px;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 64px;
    font-family: finkcas;
}
.events-landing h1:after {
    content: '';
    width: 152px;
    height: 239px;
    display: block;
    position: absolute;
    left: calc(50% + 550px);
    top: 300px;
    background-image: url(/wp-content/uploads/2021/02/pointing-ranger.png);
}
.events-landing .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 25px;
    color: #252525;
}
.events-banner-img {
    width: fit-content;
    width: -moz-fit-content;
    margin: 80px auto 0px;
}
.events-intro {
    max-width: 1200px;
    margin: 25px auto 0;
}
.events-landing .left-col {
    float: left;
    width: 30%;
    margin: 0px;
}
.events-landing .left-col img {
    max-width: 400px;
}
.events-landing .right-col {
    float: left;
    width: 70%;
}
@media (max-width: 1024px) {
    .events-landing h1:after {
        display: none;
    }
    .events-landing .left-col {
        float: none;
        width: 90%;
        margin: 0px auto;
    }
    .events-landing .right-col {
        float: none;
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .events-landing h1 {
        margin: 150px auto 0px;
        font-size: 32px;
        font-family: finkcas;
    }
    .events-landing .banner {
        font-size: 21px;
    }
}
/*INTRO END*/

/*7.2 EVENTS GRID START*/
.events-landing {
    margin-bottom: 30px;
}
h2.events-section-title  {
    text-align: center;
    font-size: 45px;
    font-family: finkcas;
    margin: 0px;
    padding: 30px 0px 0px;
}
.events-section {
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 50px 0px 0px;
}
.events-grid-main-title {
    font-size: 45px;
    font-family: finkcas;
    margin: 30px 0px 60px;

}
div.css-search {
    background-color: rgba(0,0,0,0) !important;
}
div.em-search.css-search div {
    text-align: center;
}
div.css-search div.em-search-advanced > div {
    display: inline-block;
}
div.css-search div.em-search-advanced label > span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 0px 15px;
}
div.em-search.css-search label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
div.em-search.css-search label input {
    margin: 0px 15px;
}
.em-search-wrapper {
    border-bottom: 1px solid #252525;
}
div.css-search div.em-search-advanced .em-search-submit {
    width: fit-content;
    width: -moz-fit-content;
    padding: 20px 50px;
    border: 2px solid #08623f;
    border-top-width: 5px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #FFFFFF 50%, #08623f 50%);
    -webkit-transition: background-position ease 350ms;
    -moz-transition: background-position ease 350ms;
    transition: background-position ease 350ms;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 0px;
    display: inline-block;
}
div.css-search div.em-search-advanced .em-search-submit:hover {
    background-position: 0 -100%;
    -moz-background-position: 0 -101%;
    color: #FFFFFF;
    border-radius: 0px;
}
.events-grid-card {
    width: 32.1%;
    margin: 0 1.33% 25px 0px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    display: inline-block;
    vertical-align: top;
}
.events-grid-card:nth-child(3n + 1) {
    margin: 0px 0px 25px 0px;
}
.events-grid-img {}
.events-grid-date {
    font-size: 16px;
    font-style: italic;
    color: #08623f;
    border-bottom: 3px solid #08623f;
    text-align: center;
    padding: 10px 0px;
    margin-top: -6px;
}
.events-grid-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 10px 25px;
}
.events-grid-time {
    font-size: 16px;
    font-style: italic;
    padding: 0px 25px;
}
.events-grid-excerpt {
    font-size: 16px;
    padding: 25px 25px;
}
.events-grid-card:hover {
    background-color: #e6e6e6;
}
.events-grid-card:hover .events-grid-date {
    color: #FFFFFF;
    background-color: #08623f;
}
@media (max-width: 1024px) {
    .events-grid-card {
        width: 48%;
        margin: 0 1.33% 25px 0px;
    }
    .events-grid-card:nth-child(3n + 1) {
        margin: 0 1.33% 25px 0px;
    }
}
@media (max-width: 767px) {
    h2.events-section-title  {
        font-size: 32px;
    }
    .events-grid-main-title {
        font-size: 32px;
    }
    div.css-search div.em-search-advanced label > span {
        float: none !important;
    }
    div.em-search.css-search label input {
        width: 100%;
        margin: 10px 0px;
    }
    div.css-search div.em-search-advanced .em-search-submit {
        padding: 10px 25px;
        font-size: 16px;
    }
    .events-grid-card {
        width: 100%;
        margin: 0 1.33% 25px 0px;
    }
    .events-grid-card:nth-child(3n + 1) {
        margin: 0 1.33% 25px 0px;
    }
}
/*EVENTS GRID END*/

/*7.3 EVENTS SINGLE START*/


/*EVENTS SINGLE END*/

/*7.4 AREA ATTRACTIONS START*/
.area-attractions-section {
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
}
.area-attractions-section h2 {
    font-size: 45px;
    font-family: finkcas;
}
.area-attractions-section h2:after {
    content: '';
    width: 210px;
    height: 165px;
    display: block;
    position: absolute;
    top: -75px;
    left: 450px;
    background-image: url(/wp-content/uploads/2021/02/cart-boo-boo.png);
}
.area-attractions-section .act-card-front h3 {
    color: #08623f !important;
}
.area-attractions-section .awsm-grid-card:hover h3 {
    background: #08623f;
}
.area-attractions-section .act-card-front h3:after {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/area-att-arrow.png);
}
.area-attractions-section .act-title {
    background-color: #08623f;
}
.area-attractions-section .btn {
    margin: 0 auto 50px;
}
@media (max-width: 1024px) {
    .area-attractions-section h2 {
        font-size: 32px;
    }
    .area-attractions-section h2:after {
        display: none;
    }
}
/*AREA ATTRACTIONS END*/
/*--------------------------------------------------------------
EVENTS START
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*--------------------------------------------------------------
8. GENERAL START
--------------------------------------------------------------*/
/*8.1 INTRO START*/
.gen-intro-section {
    width: 90%;
    margin: 300px auto 200px;
}
.gen-intro-section img {
    position: absolute;
    right: 5%;
    /*max-height: 200px;*/
}
.gen-intro-section h1 {
    font-family: 'finkcas';
    font-size: 64px;
    margin: 0px;
    padding: 0px 200px 0px 0px;
}
.gen-intro-section h1:after {
    content: '';
    width: 152px;
    height: 239px;
    display: block;
    position: absolute;
    left: calc(50% + 550px);
    top: 300px;
}
.gen-intro-section .banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .gen-intro-section {
        margin: 150px auto 0px; 
    }
    .gen-intro-section h1 {
        font-size: 32px;
        text-align: center;
        padding: 0px;
    }
    .gen-intro-section h1:after {
        display: none;
    }
    .gen-intro-section .banner {
        font-size: 21px;
        width: 90%;
        margin: 0 auto;
    }
    .gen-intro-section .btn {
        margin-top: 10px; 
    }
}
/*INTRO END*/

/*8.2 CALLOUT SECTION START*/
.gen-callout-section {
    margin: 0px auto;
    padding: 0px 5%;
}
.gen-callout-bold-title {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 45px;
    font-family: finkcas;
    margin: 70px auto 50px;
}
.gen-callout-color-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 25px;
    margin: 0px auto;
    max-width: 650px;
    text-align: center;
    color: #243f8e;
}
.gen-callout-section h3 {
    margin: 0 auto 97px;
}
h3.gen-callout-con-h3 {
    margin: 50px 0px 20px 70px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #243f8e;
}
.gen-callout-section .abso-img {
    position: absolute;
    right: 5%;
    bottom: 0%;
}
@media (max-width: 1024px) {
    .gen-callout-section .abso-img {
        display: none;
    }
}
@media (max-width: 767px) {
    .gen-callout-section h3 {
        margin: 0 auto 50px;
    }
    .gen-callout-bold-title {
        font-size: 32px;
    }
    .gen-callout-color-title {
        font-size: 21px;
    }
}
/*CALLOUT SECTION END*/

/*8.3 WAVE SECTION START*/
.gen-wave-section h3 {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 45px;
    font-family: finkcas;
}
.gen-wave-section .banner {
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 25px;
}
.gen-wave-section .left-col {
    float: left;
    width: 40%;
    margin: 0px 50px;
}
.gen-wave-section .left-col img {
    width: 90%;
    margin-left: 5%;
    margin-top: 50px;
}
.gen-wave-section .right-col {
    float: left;
    width: 50%;
}
.gen-wave-section .mar-bot {
    margin-bottom: 20px;
    font-weight: 600;
}
.gen-wave-section .right-col .color-bkgd {
    font-weight: 500;
    background-color: #edab1f;
    margin-bottom: 50px;
}
.bottom-section {
    margin: 70px 0px 0px;
}
.gen-wave-section .bottom-section h3 {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 45px;
    font-family: finkcas;
    margin: 25px auto;
}
.gen-bot-content {
    width: 90%;
    text-align: center;
    padding-bottom: 25px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .gen-wave-section .left-col {
        width: 90%;
        margin: 0 auto;
        float: none;
    }
    .gen-wave-section .right-col {
        width: 90%;
        margin: 0 auto;
        float: none;
    }
    .bottom-section {
        width: 90%
        margin: 0px auto;
    }
    .gen-bot-content {
        text-align: left;
    }
}
@media (max-width: 767px) {
    .gen-wave-section h3 {
        font-size: 32px;
    }
    .gen-wave-section .bottom-section h3 {
        font-size: 32px;
    }
}
/*WAVE SECTION END*/

/*8.4 HIGHLIGHT START*/
.gen-highlight-section {
    position: relative;
    margin: 50px 0px 80px;
}
.gen-highlight-section h3 {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 45px;
    font-family: finkcas;
    margin: 0 auto;
}
.gen-highlight-section h3:after {
    content: '';
    width: 180px;
    height: 264px;
    display: block;
    position: absolute;
    left: calc(50% - 600px);
    top: -50px;
    background-image: url(/wp-content/uploads/2021/02/searching-yogi.png);
}
.gen-highlight-section .banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 35px;
    margin: 0px auto;
    text-align: center;
    padding: 25px 200px;
}
.gen-highlight-section .abso-img {
    position: absolute;
    left: 5%;
}
.gen-highlight-section .left-col,
.gen-highlight-section .right-col {
    float: left;
    width: 46%;
    margin: 0px 2%;
    position: relative;
}
.gen-highlight-section h4 {
    font-size: 45px;
    font-family: finkcas;
}
.gen-highlight-box {
    background-size: cover;
    min-height: 400px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25) !important;
}
.gen-highlight-text {
    position: absolute;
    bottom: 0;
    color: #243f8e;
    background: #FFFFFF;
    width: 100%;
    padding: 25px 15px;
    font-size: 18px;
    text-transform: uppercase;
    transition: 250ms;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.gen-highlight-box:hover .gen-highlight-text {
    color: #FFFFFF;
    background: #243f8e;
}
.gen-highlight-text:after {
    content: '';
    width: 13px;
    height: 22px;
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 250ms;
    position: absolute;
    right: 25px;
}
.gen-highlight-box:hover .gen-highlight-text:after {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow-wht.png);
}
@media (max-width: 1024px) {
    .gen-highlight-section {
        width: 90%;
        margin: 0px auto 36px;
    }
    .gen-highlight-section .left-col,
    .gen-highlight-section .right-col {
        float: none;
        width: 100%;
        margin: 0px auto;
    }
    .gen-highlight-text {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .gen-highlight-section h3 {
        font-size: 32px;
        margin: 25px 0px;
        text-align: center;
        padding: 0px 25px;
    }
    .gen-highlight-section .banner {
        padding: 25px;
        font-size: 21px;
    }
    .gen-highlight-section h4 {
        font-size: 32px;
    }
}
/*HIGHLIGHT END*/

/*8.5 CUSTOM SETTING PER PAGE*/
/*AMENITIES START*/
.gen-amen-callout {
    margin-left: 200px;
    text-align: left;
}
.gen-amen-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #243f8e;
    text-transform: uppercase;
    margin-top: 47px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .gen-amen-callout {
        margin-left: 0px;
    }
    .gen-amen-callout ul {
        margin: 0px;
        padding: 0px 0px 0px 20px;
    }
    .gen-amen-bold {
        font-size: 18px;
    }
}
/*AMENITIES END*/

/*PHOTO GALLERY START*/
@media (max-width: 767px) {
    .page-it-529 .gen-intro-section .white {
        margin: 42px 0px;
    }
}
/*PHOTO GALLERY END*/


/*CONTACT US START*/
.page-id-591 .gen-intro-section h1 {
    text-align: center;
    padding: 0px;
}
.page-id-591 .gen-intro-section .banner {
    text-align: center;
    margin: 0px auto 70px;
}
#gform_wrapper_2 label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
/*CONTACT US END*/

/*COVID START*/
@media (max-width: 767px) {
    .page-id-518 .gen-callout-section ul {
        margin: 0px 0px 50px 0px;
        padding: 0px 0px 0px 20px;
    }
    .page-id-518 .gen-callout-section h3 {
        margin: 0px 0px 50px;
    }
    .page-id-518 .gen-callout-bold-title {
        text-align: center;
    }
}
/*COVID END*/

/*POLICIES START*/
@media (max-width: 1024px) {
    .page-id-530 .gen-intro-section {
        margin-bottom: 75px;
    }
}
/*POLICIES END*/
/*--------------------------------------------------------------
GENERAL END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
9. DEALS START
--------------------------------------------------------------*/
/*9.1 INTRO START*/
.deal-intro-section {
    width: 90%;
    margin: 300px auto 200px;
}
.deal-intro-section img {
    position: absolute;
    right: 5%;
    /*max-height: 200px;*/
}
.deal-intro-section h1 {
    font-family: 'finkcas';
    font-size: 64px;
    margin: 0px;
    padding: 0px 200px 0px 0px;
}
.deal-intro-section h1:after {
    content: '';
    width: 152px;
    height: 239px;
    display: block;
    position: absolute;
    left: calc(50% + 550px);
    top: 300px;
}
.deal-intro-section .banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .deal-intro-section {
        margin: 150px auto 0px; 
    }
    .deal-intro-section h1 {
        font-size: 32px;
        text-align: center;
        padding: 0px;
    }
    .deal-intro-section h1:after {
        display: none;
    }
    .deal-intro-section .banner {
        font-size: 21px;
        width: 90%;
        margin: 0 auto;
    }
    .deal-intro-section .btn {
        margin-top: 10px; 
    }
}
/*INTRO END*/
.package-shell {
    max-width: 1366px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    width: 100%;
}
.packages {
    list-style: none;
    padding: 50px 0
}

.packages .package {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.35;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.packages .package+.package:before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(imgs/border-yellow.png);
    margin: 65px 0
}

.packages .package-media {
    width: calc(50% - 20px)
}

.packages .package-media img {
    width: 100%
}

.packages .package-content {
    width: calc(50% - 20px)
}

.packages .package-content h5 {
    font-size: 24px;
    color: #d31145;
    margin-bottom: .6em;
    line-height: 1
}

.packages .package-content p {
    margin-bottom: 1.3em
}

.packages .package-content p:last-child {
    margin-bottom: 0
}
.packages-content-section {
    max-width: 1200px;
    margin: 0 auto;
}
ul.packages {
    margin: 0px;
}
@media (max-width: 1200px) {
    .packages-page-title h1 {
        font-size: 72px;
    }
}
@media (max-width: 1024px) {
    .packages-cta-container {
        padding: 150px 0px;
    }
    .packages-page-title h1 {
        font-size: 60px;
    }
    .packages-page-title span {
        font-size: 38px;
    }
    .packages-page-symbol::before,
    .packages-page-symbol::after {
        width: 50px;
    }
}
@media (max-width: 768px) {
    #packages-cta-full-width {
        /*height: 500px;*/
    }
    .packages-cta-container {
        /*padding: 100px 0px;*/
    }
    .packages-page-title h1 {
        font-size: 42px;
        line-height: 0.75em;
    }
    .packages-page-title span {
        font-size: 24px;
        letter-spacing: 7px;
    }
    .packages-italic-content {
        font-size: 18px;
        padding: 0px 25px;
    }
    .packages-checkmark-text {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
DEALS END
--------------------------------------------------------------*/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*--------------------------------------------------------------
9. AWSM TEAM START
--------------------------------------------------------------*/
.awsm-filter-btn {
    text-transform: uppercase;
    font-size: 18px !important;
}
.awsm-filter-btn:hover {
    color: #ce1141;
    opacity: 1 !important;
}
.awsm-active-filter {
    color: #ce1141 !important;
}
.awsm-filter-btn::after {
    background: #ce1141 !important;
}
/*------------- Custom Drawer 1 -----------*/
/*9.1 STATIC*/
.drawer-style.style-1>.awsm-grid-card {
    padding: 0px 15px !important;
    margin-bottom: 25px !important;
}
.drawer-style.style-1>.awsm-grid-card .awsm-grid-list-item {
    box-shadow: 0px 0px 20px rgba(0,0,0,0.25) !important;
}
.drawer-style.style-1 .awsm-grid-card.awsm-expanded .awsm-grid-list-item::after {
    display: none;
}
.checkmark-icon {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 9 !important;
}
.act-card-front {
    background: white !important;
    position: absolute !important;
    width: 100% !important;
    z-index: 99 !important;
    bottom: 0 !important;
    /*left: 2.5% !important;*/
    /*text-align: center !important;*/
    /*border-bottom: 2px solid #13abd2 !important;*/
    /*margin-bottom: -56px !important;*/
}
.act-card-front h3 {
    position: absolute;
    bottom: 0;
    color: #243f8e !important;
    background: #FFFFFF;
    width: 100%;
    padding: 15px 47px 15px 15px !important;
    font-size: 18px!important;
    text-transform: uppercase;
    transition: 250ms;
    margin: 0px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.awsm-grid-card:hover h3 {
    color: #FFFFFF !important;
    background: #243f8e;
}
.act-card-front h3:after {
    content: '';
    width: 13px;
    height: 22px;
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 250ms;
    position: absolute;
    right: 25px;
}
.awsm-grid-card:hover h3:after {
    background-image: url(/wp-content/themes/blue-water-jellystone/imgs/highlight-arrow-wht.png);
}

/*9.2 HOVER*/
.drawer-style.style-1 > .awsm-grid-card .awsm-grid-list-item::before {
    border: none !important;
}
.drawer-style.style-1 figcaption {
    position: absolute !important;
    left: 0px !important;
    right: 0px !important;
    top: 0px !important;
    bottom: 0px !important;
}
.drawer-style.style-1 figcaption .hov-text {
    font-size: 23px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    border-bottom: 2px solid white !important;
    width: 165px !important;
    margin: 0 auto !important;
}

/*9.3 CONTENT*/
.drawer-style.style-1 .awsm-grid-show {
    box-shadow: 0px 0px 20px rgba(0,0,0,0.25) !important;
    margin-bottom: 50px;
}
.drawer-style.style-1 .awsm-grid-padding {
    padding: 0px !important;
    max-width: 1366px !important;
}
.drawer-style.style-1 .awsm-details {
    width: 100% !important;
    padding: 0px !important;
}
.awsm-personal-details {
    max-height: 750px !important;
}
.awsm-personal-details .lt-half {
    float: left !important;
    width: 50% !important;
}
.awsm-personal-details .lt-half .drawer-lt-bk-img img {
/*    position: absolute;*/
    width: 100%;
}
.awsm-grid-wrapper ul {
    position: absolute;
    left: 45%;
    bottom: 20px;
}
.awsm-personal-details .rt-half {
    float: right !important;
    width: 50% !important;
}
.rt-half h2 {
    padding: 90px 100px 40px 50px !important;
}
.rt-half p {
    margin-left: 50px;
    margin-right: 25px;
}
.details-row {
    padding-left: 50px !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
.grey-row {
    background: #f2f2f2 !important;
    padding: 5px 0px;
}
.details-row img {
    margin-right: 10px !important;
    width: 25px;
}
@media (max-width: 1024px) {
    .awsm-filter-btn {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .act-card-front h3:after {
        bottom: 36%;
    }
    .rt-half h2 {
        padding: 15px 25px 0px !important;
        font-size: 24px !important;
    }
    .rt-half p {
        margin: 0px 25px 15px;
    }
    .details-row {
        padding-left: 25px !important;
    }
}
@media (max-width: 678px) {
    .awsm-personal-details {
        max-height: 100% !important;
    }
    .awsm-personal-details .lt-half {
        width: 100% !important;
    }
    .awsm-personal-details .rt-half {
        width: 100% !important;
    }
}
/*--------------------------------------------------------------
AWSM TEAM END
--------------------------------------------------------------*/

/* Gs Code */

section.error-404.not-found {
    margin-top: 235px;
}

.error-404.not-found img {
    width: 90%;
    max-width: 850px;
}

.cabin-title {
    padding-left: 25px;
    padding-right: 25px;
}

.styled-header {
    font-size: 45px;
    font-family: finkcas;
}

.tablepress tfoot th,
.tablepress thead th {
    background-color: #edab1f!important;
}

.main-navigation ul {
    font-size: 16px;
    justify-content: flex-end;
    padding: 0px 50px;
    align-items: center;
    height: 72px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.main-navigation li:not(.btn) {
    height: 100%;
}

.main-navigation li:not(.btn) a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    width: 100%;
}

#toolbar a {
    transition: 250ms;
}

.main-navigation ul .sub-menu {
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 5%);
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 99999;
    background-color: #ffffff;
    visibility: hidden;
    padding: 20px;
    transition: 250ms;
    opacity: 0;
    display: block;
    height: auto;
    min-width: 300px;
}

.main-navigation ul .sub-menu li {
    width: 100%;
    height: auto;
}

.main-navigation li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

.main-navigation ul .sub-menu li a {
    padding: 15px;
    line-height: 1.4em;
    background-color: transparent;
    transition: 250ms;
}

.main-navigation ul .sub-menu li a:hover {
    background-color: #EBEEF5;
}

.main-navigation .menu-item-has-children > a::after {
    content: "\f0dd";
    font-family: 'FontAwesome';
    align-items: center;
    line-height: 1em;
    position: relative;
    margin-left: 10px;
    top: -0.25em;
}

.gform_wrapper input[type=submit] {
    border-radius: 0px;
}

.main-navigation li.new a::before {
    content: "New!";
    padding: 5px;
    border-radius: 5px;
    background-color: #ee1d23;
    margin-right: 10px;
    line-height: 1em;
    color: #ffffff;
    font-size: 14px;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 1600px) {
    .main-navigation ul {
        padding: 0px 25px;
    }
    .main-navigation li.btn {
        padding: 10px 20px;
    }
    .main-navigation li.btn a {
        font-size: 14px;
    }
    .main-navigation li:not(.btn) a {
        padding: 0px 10px;
        font-size: 14px;
    }
    .main-navigation ul .sub-menu {
        padding: 15px;
    }
    .main-navigation .menu-item-has-children > a::after {
        margin-left: 5px;
    }
}

@media only screen and (max-width: 1024px) {
    section.error-404.not-found {
        margin-top: 150px;
    }
    .menu-toggle {
        display: block!important;
        background-color: transparent;
        border: none;
        padding: 20px;
        margin: 0px 0px 0px auto;
        font-size: 22px;
    }
    .main-navigation.toggled ul {
        display: block!important;
        width: 100%;
        padding: 20px;
    }
    .main-navigation ul {
        display: none!important;
        height: auto;
        padding: 0px;
    }
    #site-navigation {
        top: 0px;
        position: initial;
        box-shadow: none;
    }
    .site-branding {
        top: 5px;
        position: absolute;
        height: auto;
        left: 10px;
    }
    .main-navigation ul .sub-menu {
        position: initial;
        visibility: visible;
        display: block;
        opacity: 1;
        padding: 0px 20px;
        box-shadow: none;
    }
    .main-navigation li:not(.btn) a,
    .main-navigation ul .sub-menu li a {
        padding: 12px;
    }
    .main-navigation li {
        padding: 0px;
        height: auto!important;
        width: 100%;
        position: initial!important;
    }
    #primary-menu {
        border-top: 3px solid #ee1d23;
        margin-top: 60px;
    }
    .menu-main-menu-container {
        visibility: hidden;
        opacity: 0;
        transition: 250ms;
    }
    .main-navigation.toggled .menu-main-menu-container{
        visibility: visible;
        opacity: 1;
    }
    .main-navigation li.btn {
        margin: 12px 0px 0px 0px;
        display: inline-flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .styled-header {
        font-size: 32px;
    }
}