@charset "UTF-8";

/* GENERAL */

html {
    background-color: #29282e;
}

body {
    display: none;
    position: relative;
    background-color: #29282e;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 0;
    left: 0;
    z-index: 0;
}

body .wForm input {
    color: #000;
}

.rfpBackground {
    margin: 0px auto;b
}

a, a:hover, a:focus {
    color: #EB7231;
    text-decoration: none;
}

h1 {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    text-transform: uppercase;
    margin: 15px 0 5px 0;
}

h2 {
    color: #EB7231;
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 42px;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
}

h3 {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    margin: 20px 0 5px 0;
}

h4 {
    color: #75663F;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    margin: 15px 0 5px 0;
}

p {
    font-size: 16px;
    line-height: 26px;
    margin: 5px 0 20px 0;
}

ul {
    list-style-type: none;
    margin: 5px 0 20px 0;
    padding: 0;
}

ul li {
    background: url(templates/bullet.png) left 7px no-repeat;
    display: block;
    overflow: hidden;
    list-style-type: none;
    /* font-size: 15px; */
    line-height: 18px;
    margin: 5px 0;
    padding: 0 0 0 20px;
}

.text-center ul li, .sccenter li {
    background-image: none;
    padding: 0 20px;
    margin: 5px 0;
}
.text-right ul li {
    background: url(templates/bullet.png) right 7px no-repeat;
    padding: 0 20px 0 0;
}
@media only screen and (max-width: 767px) {
    .text-center { text-align: left; }
    .text-right { text-align: left; }
    .text-center ul li,
    .text-right ul li {
        background: url(templates/bullet.png) left 7px no-repeat;
        padding: 0 0 0 20px;
    }
}

ol {
    list-style-type: none;
    /* text-align: center; */
    margin: 0;
    padding: 0;
}

ol li {
    transition: all 500ms ease;
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ol li a {
    transition: all 200ms ease-out;
    background-color: #EB7231;
    border: 2px solid #EB7231;
    display: block;
    color: white;
    line-height: 35px;
    text-transform: uppercase;
    padding: 0 35px;
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape){
    ol li a{
        padding: 0px 25px;
    }
}


ol li a:hover, ol li a:focus {
    transition: all 300ms ease-in;
    background-color: transparent;
    color: #EB7231;
    outline: none;
    border: 2px solid #EB7231;
}

ol li:not(:first-child) {
    margin-left: 3%;
}

@media only screen and (max-width: 768px){
    ol li a{ margin-bottom: 10px; }
}

.sccenter ol li a {
    float: none;
    display: inline-block;
    margin-top: 10px;
}

.text-right ol{
  text-align: right;
}

.text-right ol li a{
  float: none;
  display: inline-block;
  text-align: right;

}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
p:first-child,
ul:first-child {
    margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, ul:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    h1 { font-size: 25px; line-height: 25px; }
    h2 { font-size: 22px; line-height: 22px; }
    h3 { font-size: 15px; line-height: 18px; }
    p { font-size: 12px; line-height: 18px; }
}

.tblc1 {
    display: table;
}

.tblc2 {
    display: table-cell;
    vertical-align: middle;
}

.headerspace {
    min-height: 200px;
}

.tblc1 {
    display: table;
}

.tblc2 {
    display: table-cell;
    vertical-align: middle;
}

.headerspace {
    min-height: 200px;
}

/* END GENERAL */


/* BOUNCE ANIMATION */

.bounce {
    -webkit-animation: bounce 1600ms ease-out;
    -moz-animation: bounce 1600ms ease-out;
    -o-animation: bounce 1600ms ease-out;
    animation: bounce 1600ms ease-out;
}
@-webkit-keyframes bounce {
    0% { -webkit-transform:translateY(-100%); opacity: 0; }
    5% { -webkit-transform:translateY(-100%); opacity: 0; }
    15% { -webkit-transform:translateY(0); }
    30% { -webkit-transform:translateY(-50%); }
    40% { -webkit-transform:translateY(0%); }
    50% { -webkit-transform:translateY(-30%); }
    70% { -webkit-transform:translateY(0%); }
    80% { -webkit-transform:translateY(-15%); }
    90% { -webkit-transform:translateY(0%); }
    95% { -webkit-transform:translateY(-10%); }
    97% { -webkit-transform:translateY(0%); }
    99% { -webkit-transform:translateY(-5%); }
    100% { -webkit-transform:translateY(0); opacity: 1; }
}
@-moz-keyframes bounce {
    0% { -moz-transform:translateY(-100%); opacity: 0; }
    5% { -moz-transform:translateY(-100%); opacity: 0; }
    15% { -moz-transform:translateY(0); }
    30% { -moz-transform:translateY(-50%); }
    40% { -moz-transform:translateY(0%); }
    50% { -moz-transform:translateY(-30%); }
    70% { -moz-transform:translateY(0%); }
    80% { -moz-transform:translateY(-15%); }
    90% { -moz-transform:translateY(0%); }
    95% { -moz-transform:translateY(-10%); }
    97% { -moz-transform:translateY(0%); }
    99% { -moz-transform:translateY(-5%); }
    100% { -moz-transform:translateY(0); opacity: 1; }
}
@-o-keyframes bounce {
    0% { -o-transform:translateY(-100%); opacity: 0; }
    5% { -o-transform:translateY(-100%); opacity: 0; }
    15% { -o-transform:translateY(0); }
    30% { -o-transform:translateY(-50%); }
    40% { -o-transform:translateY(0%); }
    50% { -o-transform:translateY(-30%); }
    70% { -o-transform:translateY(0%); }
    80% { -o-transform:translateY(-15%); }
    90% { -o-transform:translateY(0%); }
    95% { -o-transform:translateY(-10%); }
    97% { -o-transform:translateY(0%); }
    99% { -o-transform:translateY(-5%); }
    100% { -o-transform:translateY(0); opacity: 1; }
}
@keyframes bounce {
    0% { transform:translateY(-100%); opacity: 0; }
    5% { transform:translateY(-100%); opacity: 0; }
    15% { transform:translateY(0); }
    30% { transform:translateY(-50%); }
    40% { transform:translateY(0%); }
    50% { transform:translateY(-30%); }
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); opacity: 1; }
}

/* END BOUNCE ANIMATION */


/* FADE IN ANIMATION */

.blink {
    -webkit-animation: blink 1600ms;
    -moz-animation: blink 1600ms;
    -o-animation: blink 1600ms;
    animation: blink 1600ms;
}
@-webkit-keyframes blink {
    0% { opacity: 1; }
    35% { opacity: 0; }
    65% { opacity: 0; }
    100% { opacity: 1; }
}
@-moz-keyframes blink {
    0% { opacity: 1; }
    35% { opacity: 0; }
    65% { opacity: 0; }
    100% { opacity: 1; }
}
@-o-keyframes blink {
    0% { opacity: 1; }
    35% { opacity: 0; }
    65% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes blink {
    0% { opacity: 1; }
    35% { opacity: 0; }
    65% { opacity: 0; }
    100% { opacity: 1; }
}

/* END BLINK IN ANIMATION */



/* FADE IN ANIMATION */

.fadein {
    -webkit-animation: fadein 1600ms ease-out;
    -moz-animation: fadein 1600ms ease-out;
    -o-animation: fadein 1600ms ease-out;
    animation: fadein 1600ms ease-out;
}
@-webkit-keyframes fadein {
    0% { opacity: 0; }
    5% { opacity: 0; }
    100% { opacity: 1; }
}
@-moz-keyframes fadein {
    0% { opacity: 0; }
    5% { opacity: 0; }
    100% { opacity: 1; }
}
@-o-keyframes fadein {
    0% { opacity: 0; }
    5% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadein {
    0% { opacity: 0; }
    5% { opacity: 0; }
    100% { opacity: 1; }
}

/* END FADE IN ANIMATION */


/* BACK TO TOP */

#btt {
    transition: all 500ms ease;
    background-color: #dbd3c6;
    display: block;
    color: #29282e;
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height 18px;
    text-align: center;
    text-transform: uppercase;
    z-index: 999;
    animation: bttout 900ms ease-out;
}
#btt:hover {
    transition: all 500ms ease;
    color: #29282e;
    background-color: #e8eae9;
}
#btt.killanim {
    visibility: hidden;
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none
    -o-animation: none;
    animation: none;
}
#btt.active {
    visibility: visible;
    animation: bttin 1600ms ease-in;
}

#btt .bttarrow {
    display: block;
    overflow: hidden;
    font-size: 40px;
    width: 34px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    margin: 10px auto 0 auto;
}

@media only screen and (max-width: 1023px) {
    #btt {bottom: 70px;right: 10px;width: 55px;height: 55px;font-size: 13px;line-height: 14px;border-radius: 100%;font-weight: 600;}
    #btt .bttarrow {width: 55px;height: 20px;margin: 8px 0 0 0;font-size: 24px;line-height: 20px;}

}

@-webkit-keyframes bttin {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-moz-keyframes bttin {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-o-keyframes bttin {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@keyframes bttin {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-webkit-keyframes bttout {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-moz-keyframes bttout {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-o-keyframes bttout {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@keyframes bttout {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}

/* END BACK TO TOP */


/* FOOTER BRAND */

#brand {
    background: url(templates/footer-bg.jpg) center center no-repeat;
    background-size: 100% 100%;
    color: #9c958f;
    width: 100%;
    max-width: 1800px;
    color: white;
    margin: 0 auto;
    padding: 30px 0 20px;
}

@media only screen and (max-width: 767px) {
    #brand {background-size: cover;}
}

#brand p {
    font-size: 12px;
    line-height: 22px;
    margin: 2px 0 0 0;
    color: white!important;
}

#brand ul {
    list-style-type: none;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

#brand li {
    background-image: none;
    display: inline-block;
    vertical-align: text-top;
    list-style-type: none;
    font-size: 12px;
    line-height: 46px;
    text-align: left;
    margin: 0;
    padding: 0;
}

#brand .email {
    display: none;
}

#brand #foot1 {
    overflow: hidden;
    margin: 0 auto;
}

@media only screen and (max-width: 1365px) {
    #brand #foot1 {/* display: none; */}
}

#brand #foot1 a {
    display: block;
    color: #e8eae9;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 46px;
    padding: 0;
}

#brand #foot1 ul {
    overflow: hidden;
    margin: 5px 0;
}

#brand #foot1 .share a {
    background: url(templates/foot-share.png) 55px center no-repeat;
    border-right: 1px solid rgba(219, 211, 198,.5);
    margin-left: 35px;
    padding: 0 100px 0 0;
}

#brand #foot1 .like {
    overflow: hidden;
    width: 120px;
    height: 46px;
}

#brand #foot1 .like a {
    background: url(templates/foot-like.png) 30px center no-repeat;
    border-right: 1px solid rgba(219, 211, 198,.5);
    height: 46px;
    margin: 0;
    padding: 0 30px 0 60px;
}

#brand #foot1 a.button_facebook_like {
    background-image: none;
    background-color: #919191;
    display: block;
    height: 46px;
    line-height: 46px;
    margin: 0;
    padding: 0 16px;
}

#brand #foot1 .follow a {
    border-right: 1px solid rgba(219, 211, 198,.5);
    padding: 0 30px;
}

#brand #foot1 .email a {
    border-right: 1px solid rgba(219, 211, 198,.5);
    padding: 0 30px;
    /* display: none; */
}

#brand #foot1 .search {
    text-transform: uppercase;
    vertical-align: text-top;
    line-height: 46px;
    max-width: 250px;
    padding: 0 0 0 30px;
    box-sizing: content-box;
}

#brand #foot1 .search label {
    display: block;
    vertical-align: text-top;
    line-height: 46px;
    float: left;
    color: #e8eae9;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    padding: 0 10px 0 0;
}

#brand #foot1 #search {
    border: none;
    border: 0;
    border-radius: 0;
    background-color: #e8eae9;
    float: left;
    height: 19px;
    width: 120px;
    margin: 11px 0 0 0;
    color: #29282e !important;
}

#brand #foot1 #btnsearch {
    float: left;
    margin: 11px 0 0 0;
}

#brand #foot2 {
    overflow: hidden;
    color: #e8eae9;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#brand #foot2 ul {
    text-align: left;
}

#brand #foot2 a {
    display: block;
    font-size: 12px;
    line-height: 22px;
    text-decoration: none;
    color: #eee;
    padding: 0 16px 0 0;
}

#brand #foot2 .left {
    float: left;
    width: 47.5%;
    text-align: right;
    padding: 5px 0 0 0;
}

#brand #foot2 .right {
    float: right;
    width: 47.5%;
    padding: 5px 0 0 0;
}

@media only screen and (max-width: 1365px) {
    #brand #foot2 a { padding: 0 8px; }
    #brand #foot2 .left {
        float: none;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    #brand #foot2 .right {
        float: none;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    #brand #foot2 .right ul {
        text-align: center;
    }
}

#brand .mobilinks {
    display: none;
    color: #9c958f;
    text-align: center;
    padding: 10px 0;
}
@media only screen and (max-width: 1365px) {
    #brand .mobilinks { display: block; }
}

#brand .mobilinks ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

#brand .mobilinks li {
    background-image: none;
    list-style-type: none;
    display: inline-block;
    float: none;
    padding: 0;
    margin: 0;
}

#brand .mobilinks a {
    color: #9c958f;
    text-decoration: none;
    padding: 0 10px;
}

#brand .mobiweather {
    color: #9c958f;
    font-size: 12px;
    text-align: center;
}

#brand .lang {
    color: #9c958f;
    font-size: 18px;
    text-align: center;
    padding: 0 0 20px 0;
}

#brand .lang li {
    border-right: 1px solid #9c958f;
    line-height: 18px;
    padding: 0 15px;
}

#brand .lang li:last-child {
    border-right: none;
}

#brand .lang a {
    color: #9c958f;
    text-decoration: underline;
}

#brand .mobiweather {
    display: none;
}
@media only screen and (max-width: 1365px) {
    #brand .mobiweather { display: block; }
}

@media only screen and (max-width: 768px) {
    #brand #foot1 .search{
        max-width: 100%;
        text-align: center;
        margin: 0px auto;
        display: table;
        padding-top: 20px;
    }
}

@media only screen and (max-width: 613px) {
    #brand .mobilinks {display: block;padding: 0;}
}

@media only screen and (max-width: 1024px) {
    #brand #foot1 {/* display: none; */}
}


#brand #foot2 a.mobileShow {
    display: none!important;
}

@media only screen and (max-width: 768px){
    #brand span.mobiHide {
        display: none;
    }

    #brand #foot2 a.mobileShow{
        display: inline-block!important;
    }
}

/* END FOOTER BRAND */


/* BRAND STANDARD LOGOS */

#brslogos {
  overflow: hidden;
  width: 100%;
  margin: 40px 0 80px 0;
}

#brslogos p {
    color: #dbd3c6;
    text-align: center;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    line-height: 15px;
    text-transform: none;
    margin: 15px 0;
    display: none;
}

#brslogos p.tag {
    font-family: 'Arial Bold', Arial, sans-serif;
    color: #9c958f;
}

#brslogos ul {
  display: block;
  overflow: hidden;
  width: 95%;
  max-width: 920px;
  list-style-type: none;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

#brslogos li {
  background-image: none;
  display: block;
  float: left;
  list-style-type: none;
  width: 25%;
  margin: 0;
  padding: 0;
  max-width: 230px;
}

#brslogos li img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

#brslogos .curio {
  /* width: 26.255707762557%; */
}

#brslogos .hhonors {
  /* width: 26.598173515982%; */
}

#brslogos .hhonors img {
    max-width: 230px;
}

#brslogos .benchmark {
    width: 17.684932%;
    height: auto;
}

#brslogos .benchmark img {
    width: auto;
}

#brslogos .iacc {
  width: 21.461187214612%;
}
@media only screen and (max-width: 768px) and (min-width: 1px){

#brslogos .benchmark img {
    width: 100%;
    height: auto;
}

}
/* END BRAND STANDARD LOGOS */


/* MAIN */

#main {
    position: relative;
    width: 95%;
    max-width: 1700px;
    margin: 0 auto;
}
#home #main {
    background: url(templates/centerline.png) center center repeat-y;
}
#sub #main {
    background: url(templates/main-fade.png) center top repeat-x;
}
@media only screen and (max-width: 767px) {
    #main, #home #main { background-image: none; }
}

#main .sub-hamburger {
    transition: all 500ms ease;
    background: #dbd3c6 url(templates/hamburger-1.png) 15px center no-repeat;
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    width: 298px;
    color: #29282e;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    margin-left: -149px;
    padding: 10px 0 10px 0;
}

#main .sub-hamburger:hover {
    transition: all 300ms ease;
    background-color: #EB7231;
    box-shadow: 0 0 18px 1px rgba(177, 181, 200,0.5);
    background: #EB7231 url(templates/hamburger.png) 15px center no-repeat;
    color: #e8eae9;
}

#home #main .area01 {
    float: left;
    width: 50%;
}
#home #main .area02 {
    float: right;
    width: 50%;
}
@media only screen and (max-width: 767px) {
    #home #main .area01 { float: none; width: 100%; margin: 0; }
    #home #main .area02 { float: none; width: 100%; margin: 0; }
}

#home #main .area03 {
    clear: both;
    width: 100%;
}

#home #main .area04 {
    float: left;
    width: 50%;
}
#home #main .area05 {
    float: left;
    width: 50%;
}
@media only screen and (max-width: 767px) {
    #home #main .area04 { float: none; width: 100%; margin: 0 0 60px 0; }
    #home #main .area05 { float: none; width: 100%; margin: 60px 0 0 0; }
}

.areagroup {
    padding: 60px 0;
}

@media only screen and (max-width: 767px) {
    .areagroup { padding: 40px 0; }
}

.smarg {
    margin: 60px auto;
}
.smarg:first-child {
    margin-top: 0;
}
.smarg:last-child {
    margin-bottom: 0;
}

.scmarg {
    max-width: 1280px;
    margin: 60px auto;
}

/* END MAIN */

/* STICKY NAV */

@-webkit-keyframes stickynavin {
    0% { visibility: hidden; margin-top: -70px; }
    1% { visibility: visible; margin-top: -70px; }
    100% { visibility: visible; margin-top: 0; }
}
@-moz-keyframes stickynavin {
    0% { visibility: hidden; margin-top: -70px; }
    1% { visibility: visible; margin-top: -70px; }
    100% { visibility: visible; margin-top: 0; }
}
@keyframes stickynavin {
    0% { visibility: hidden; margin-top: -70px; }
    1% { visibility: visible; margin-top: -70px; }
    100% { visibility: visible; margin-top: 0; }
}
@-webkit-keyframes stickynavout {
    0% { visibility: visible; margin-top: 0; }
    1% { visibility: visible; margin-top: 0; }
    100% { visibility: hidden; margin-top: -70px; }
}
@-moz-keyframes stickynavout {
    0% { visibility: visible; margin-top: 0; }
    1% { visibility: visible; margin-top: 0; }
    100% { visibility: hidden; margin-top: -70px; }
}
@keyframes stickynavout {
    0% { visibility: visible; margin-top: 0; }
    1% { visibility: visible; margin-top: 0; }
    100% { visibility: hidden; margin-top: -70px; }
}

#stickynav {
    animation: stickynavout 500ms ease-out;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 70px;
    padding: 0 10px 0 0;
    background: #38373F;
    top: 0;
    left: 0;
    z-index: 9998;
    margin-top: -70px;
}
@media (min-width: 900px) {
    #stickynav.active { visibility: visible; animation: stickynavin 300ms ease-in; display: block; margin-top: 0; }

div#stickynav {}
}
@media (max-width: 899px) {
    #stickynav, #stickynav.active { display: none !important; }
}

#stickynav ul {
    left: 0;
    width: 100%;
    text-align: right;
    margin: 0;
    padding: 0 10px 0 0;
    font-size: 0;
}

#stickynav ul li {
    background-image: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    font-size: 15px;
    line-height: 18px;
}

#stickynav ul li a {
    transition: all 250ms ease-out;
    display: block;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 20px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 7px;
}
#stickynav li a:focus, #stickynav li a:hover {
    transition: all 500ms ease-in;
    background-color: #dbd3c6;
    color: #29282e;
}

#stickynav .left {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    vertical-align: middle;
    transform: translateY(-50%);
    z-index:  999;
}

#stickynav .right {
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 0;
    width: auto;
    padding: 0 0 0 240px;
    transform: translateY(-50%);
    z-index:  998;
}

#stickynav .brand {
    display: inline-block;
    margin: 0 20px;
}

#stickynav .cta {
    display: inline-block;
    /* display: none; */
}

#stickynav .cta a {
    transition: all 250ms ease-out;
    background-color: #EB7231;
    display: block;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 22px;
}

#stickynav .cta a:hover {
    transition: all 500ms ease-in;
    background-color: #dbd3c6;
    color: #29282e;
}

#stickynav ul ul {
    display: none;
}

/* END STICKY NAV */

/* NAV 1 */

#nav1 {
    position: relative;
    width: 100%;
    height: 145px;
}
@media only screen and (max-width: 1135px) {
    #nav1 { display: none; }
}

#nav1 ul {
    font-size: 0;
    line-height: 1;
    margin: 0;
    padding: 0;
}

#nav1 ul li {
    background-image: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

#nav1 ul li a {
    display: block;
    color: #e8eae9;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 0 20px 2px 20px;
    transition: all 200ms ease-out;
    border-bottom: 2px solid transparent;
}

@media only screen and (max-width: 1545px) {
  #nav1 ul li a {
      padding: 0 10px 2px 10px;
  }
}

#nav1 ul li a:hover,
#nav1 ul li.active a {
    border-bottom: 2px solid #EB7231;
    color: #EB7231;
}

#nav1 .navleft {
    overflow: hidden;
    position: absolute;
    bottom: 28px;
    left: 0;
    text-align: right;
    width: 50%;
    min-width: 652px;
    padding: 0 140px 0 0;
}
@media only screen and (max-width: 1439px) {
    #nav1 .navleft {min-width: 512px;bottom: 20px;padding: 0;}
}

#nav1 .navright {
    overflow: hidden;
    position: absolute;
    bottom: 28px;
    right: 0;
    text-align: left;
    width: 50%;
    min-width: 652px;
    padding: 0 0 0 140px;
}
@media only screen and (max-width: 1439px) {
    #nav1 .navright {min-width: 512px;bottom: 20px;padding: 0;}
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape){
    #nav1 .navright, #nav1 .navleft{
        min-width: 365px;
        width: 34%;
    }
}


/* END NAV 1 */


/* MOBILE NAV 1 */

#mobinav1 {
    background: linear-gradient(to bottom, rgba(200, 192, 180, 1) 0%, rgba(200, 192, 180, 0.95) 75%, rgba(219, 211, 198, 0.95) 100%);
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 9999;
    -webkit-animation: mobinav1out 300ms ease-out;
    -moz-animation: mobinav1out 300ms ease-out;
    -o-animation: mobinav1out 300ms ease-out;
    animation: mobinav1out 300ms ease-out;
    padding: 60px 0 40px;
}
#mobinav1.active {
    visibility: visible;
    opacity: 1;
    -webkit-animation: mobinav1in 500ms ease-out;
    -moz-animation: mobinav1in 500ms ease-out;
    -o-animation: mobinav1in 500ms ease-out;
    animation: mobinav1in 500ms ease-out;
}
#mobinav1.killanim {
    visibility: hidden;
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none
    -o-animation: none;
    animation: none;
}
@-webkit-keyframes mobinav1in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-moz-keyframes mobinav1in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-o-keyframes mobinav1in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@keyframes mobinav1in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-webkit-keyframes mobinav1out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-moz-keyframes mobinav1out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-o-keyframes mobinav1out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@keyframes mobinav1out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}

#mobinav1 .close {
    background: url(templates/nav2-btn-close.png) center center no-repeat;
    display: block;
    opacity: .9;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: 0 0 0 -25px;
    z-index: 900;
}
@media (max-width: 767px), (max-height: 800px) {
    #mobinav1 .close {top: 20px;width: 20px;height: 20px;margin: 0 0 0 -10px;}
}

#mobinav1 .navcenter1 {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#mobinav1 .navcenter2 {
    display: table;
    width: 100%;
    height: 100%;
}

#mobinav1 ul {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

#mobinav1 ul ul {
    display: none;
    margin: -10px 0 0 0;
    padding: 0 0 20px 0;
}

#mobinav1 ul li.active ul {
    display: block;
}

#mobinav1 ul ul ul,
#mobinav1 ul li.active ul ul {
    display: none;
}

#mobinav1 li {
    background-image: none;
    border-bottom: 1px solid #56555E;
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0;
}
#mobinav1 li:first-child {
    border-top: 1px solid #56555E;
}

#mobinav1 li li {
    border-bottom: none;
}
#mobinav1 li li:first-child {
    border-top: none;
}

#mobinav1 li a {
    transition: all 250ms ease;
    display: block;
    color: #3d3d3d;
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    padding: 15px 40px;
}
@media (max-width: 767px), (max-height: 600px) {
    #mobinav1 li a {font-size: 17px;line-height: 17px;}
}
#mobinav1 li.active a {
    background-color: none;
    color: #EB7231;
}
#mobinav1 li a:hover,
#mobinav1 li.active a:hover {
    transition: all 500ms ease;
    background-color: rgba(255, 255, 255, 0.60);
    color: #EB7231;
}

#mobinav1 li.active li a {
    transition: all 250ms ease;
    display: block;
    background-color: none;
    color: #29282e;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 17px;
    font-weight: normal;
    line-height: 17px;
    text-transform: none;
    padding: 10px 60px;
}
#mobinav1 li li a:hover {
    transition: all 500ms ease;
    background-color: rgba(255, 255, 255, 0.10);
    color: white;
}

/* END MOBILE NAV 1 */


/* NAV 2 */

#nav2 {
    background: linear-gradient(to bottom, rgba(200, 192, 180, 1) 0%, rgba(200, 192, 180, 0.95) 75%, rgba(219, 211, 198, 0.95) 100%);
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 9999;
    -webkit-animation: nav2out 300ms ease-out;
    -moz-animation: nav2out 300ms ease-out;
    -o-animation: nav2out 300ms ease-out;
    animation: nav2out 300ms ease-out;
    padding: 90px 0 40px;
}
#nav2.active {
    visibility: visible;
    opacity: 1;
    -webkit-animation: nav2in 500ms ease-out;
    -moz-animation: nav2in 500ms ease-out;
    -o-animation: nav2in 500ms ease-out;
    animation: nav2in 500ms ease-out;
}
#nav2.killanim {
    visibility: hidden;
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none
    -o-animation: none;
    animation: none;
}
@-webkit-keyframes nav2in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-moz-keyframes nav2in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-o-keyframes nav2in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@keyframes nav2in {
    0% { opacity: 0; transform: scale(0.9, 0.9); }
    1% { opacity: 0; transform: scale(0.9, 0.9); }
    100% { opacity: 1; transform: scale(1, 1); }
}
@-webkit-keyframes nav2out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-moz-keyframes nav2out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@-o-keyframes nav2out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}
@keyframes nav2out {
    0% { visibility: visible; opacity: 1; transform: scale(1, 1); }
    99% { visibility: visible; opacity: 0; transform: scale(0.9, 0.9); }
    100% { visibility: hidden; opacity: 0; transform: scale(0.9, 0.9); }
}


#nav2 .close {
    background: url(templates/nav2-btn-close.png) center center no-repeat;
    display: block;
    position: absolute;
    top: 50px;
    right: 50%;
    margin-right: -25px;
    width: 50px;
    height: 50px;
    z-index: 900;
    opacity: .9;
}

@media (max-width: 767px), (max-height: 800px) {
    #nav2 .close {top: 20px;width: 100%;height: 20px;margin: 0px auto;right: auto;}
    #nav2{
       padding: 60px 0 40px;
    }
}



#nav2 .navcenter1 {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#nav2 .navcenter2 {
    display: table;
    width: 100%;
    height: 100%;
}

#nav2 ul {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

#nav2 li {
    background-image: none;
    border-bottom: 1px solid #56555E;
    width: 80%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0;
}
#nav2 li:first-child {
    border-top: 1px solid #56555E;
}

#nav2 li a {
    transition: all 250ms ease;
    display: block;
    color: #29282e;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 200;
    line-height: 60px;
    text-transform: uppercase;
    padding: 20px 50px;
}
#nav2 li.active a {
    transition: all 500ms ease;
    background-color: none;
    color: #EB7231;
}
#nav2 li.active a:hover,
#nav2 li a:hover {
    transition: all 500ms ease;
    background-color: rgba(255, 255, 255, 0.20);
    color: #EB7231;
}
@media only screen and (max-height: 1000px) {
    #nav2 li a { font-size: 25px; line-height: 40px; }
}
@media only screen and (max-width: 600px) {
    #nav2 li a {font-size: 17px;line-height: 20px;font-weight: 400;padding: 15px 10px;}
}

/* Children ul elements */
#nav2 ul ul {
    margin: -10px 0 0 0;
    padding: 0 0 20px 0;
    display: block;
}
#nav2 ul ul ul{
    display: none;
}
#nav2 li li {
    border-bottom: none;
}
#nav2 li li:first-child {
    border-top: none;
}
#nav2 li.ative li a,
#nav2 li li a {
    transition: all 250ms ease;
    background-color: none;
    display: block;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 17px;
    font-weight: normal;
    line-height: 17px;
    text-transform: none;
    padding: 10px 60px;
}
#nav2 li.active li a:hover,
#nav2 li li a:hover {
    transition: all 500ms ease;
    background-color: rgba(255, 255, 255, 0.10);
    color: white;
}

.sub-hamburger-nav {
    display: none;
}

/* END NAV 2 */


/* HM01 */

.hm01 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hm01 h1 {
    border-bottom: 1px solid rgba(219, 211, 198,.75);
    color: #EFF2F1;
    font-size: 76px;
    line-height: 76px;
    margin: 0;
    padding: 0;
}

.hm01 h2, .hm01 h3, .hm01 p {
    color: #EFF2F1;
    font-size: 24px;
    line-height: 40px;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 1365px), only screen and (max-height: 700px) {
    .hm01 h1 { font-size: 30px; line-height: 30px; }
    .hm01 h2, .hm01 h3, .hm01 p { font-size: 20px; line-height: 20px; margin: 10px auto; }
}

.hm01 #deskhead {
    background: url(templates/deskhead-bg2.png) center bottom no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 145px;
    z-index: 150;
}


@media only screen and (max-width: 767px) {
    .hm01 #deskhead {top: 40px;height: 125px;}
}

.hm01 #logo {
    background: url(templates/logo.png) center center no-repeat;
    position: absolute;
    top: 14px;
    left: 50%;
    width: 270px;
    height: 100px;
    margin: 0 0 0 -135px;
    z-index: 6;
}
@media only screen and (max-width: 1439px) {
    .hm01 #logo {top: 8px;background-size: auto 80px;height: 80px;}
}

@media only screen and (max-width: 767px) {
    .hm01 #logo {top: 14px;background-size: contain;height: 100px;}
}

@media only screen and (max-width: 320px) {
    .hm01 #deskhead{
        height: 100px;
    }
    .hm01 #logo {top: 10px;background-size: contain;height: 80px;}
}

.hm01 #mobihamburger {
    background: url(templates/hamburger.png) center center no-repeat;
    display: none;
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 50px;
    height: 35px;
    margin: 0 0 0 -25px;
    z-index: 6;
}
@media only screen and (max-width: 1135px) {
    .hm01 #mobihamburger { display: block; }
}

@media only screen and (max-width: 767px) {
    .hm01 #mobihamburger { display: none; }
}

.hm01 #reservations {
    transition: all 500ms ease;
    box-shadow: 0 0 10px 5px transparent;
    background: transparent url(templates/deskhead-res-btn.png) center center repeat-x;
    position: absolute;
    top: 130px;
    left: 50%;
    width: 210px;
    height: 40px;
    display: block;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 0 -105px;
    z-index: 7;
}

@media only screen and (max-width: 767px) {
    .hm01 #reservations { display: none; }
}

.hm01 #reservations:hover {
    transition: all 500ms ease;
    box-shadow: 0 0 10px 5px #F26623;
    background-color: #F26623;
}

.hm01 .txt {
    position: absolute;
    text-align: center;
    top: 45%;
    left: 10%;
    width: 80%;
    z-index: 4;
}
@media only screen and (max-width: 1023px), only screen and (max-height: 600px) {
    .hm01 .txt { top: auto; bottom: 100px; }
}
@media only screen and (max-width: 767px) {
    .hm01 .txt {top: auto;}
}

.hm01 .txt .lnk a {
    transition: all 200ms ease-out;
    background-color: #dbd3c6;
    display: inline-block;
    border: 1px solid #dbd3c6;
    color: #29282e;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    min-width: 210px;
    padding: 5px 10px;
}
.hm01 .txt .lnk a:hover {
    transition: all 300ms ease-in;
    background-color: #EB7231;
    color: white;
    border: 1px solid #EB7231;
}

.hm01 a.scrolldown {
    transition: all 100ms ease-in-out;
    background: url(templates/deskhead-scroll-arrows.png) center top no-repeat;
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 50px;
    margin: 0 0 0 -25px;
    padding: 0;
    z-index: 152;
    width: 50px;
    height: 50px;
}
@media only screen and (max-width: 767px), only screen and (max-height: 600px) {
    .hm01 a.scrolldown { display: none; }
}

.hm01 a.scrolldown:hover {
    transition: all 200ms ease-in-out;
    width: 50px;
    height: 60px;
    margin: 0 0 0 -25px;
}

.hm01 .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.hmglow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.hmglow.hmglow1 {
    background: url(templates/hm01-glow1.png) center center no-repeat;
}
.hmglow.hmglow2 {
    background: url(templates/hm01-glow2.png) center center no-repeat;
}
@media only screen and (max-width: 1023px), only screen and (max-height: 600px) {
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 30%;background-position: center bottom;}
}

@media only screen and (max-width: 767px){
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 65%;background-position: center bottom;}
}

@media only screen and (max-width: 320px){
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 67%;background-position: center bottom;}
}

@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : landscape) { 
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 60%;background-position: center bottom;}
    .hm01 .txt {
        top: auto;
        bottom: 50px;
    }
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) { 
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 60%;background-position: center bottom;}
    .hm01 .txt {
        top: auto;
        bottom: 50px;
    }
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape){ 
    .hmglow.hmglow1, .hmglow.hmglow2 {background-size: 100% 60%;background-position: center bottom;}
    .hm01 .txt {
        top: auto;
        bottom: 75px;
    }
    .hm01 h1 {font-size: 22px;line-height: 22px;font-weight: 300;}
    .hm01 h2, .hm01 h3, .hm01 p {font-size: 14px;line-height: 14px;margin: 10px auto;font-weight: 300;}
}

.hm01 .cycle-pager-container {
    display: table;
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
    z-index: 99998;
}
@media only screen and (max-width: 767px), only screen and (max-height: 600px) {
    .hm01 .cycle-pager-container { display: none; }
}

.hm01 .cycle-pager-container ul {
    display: table-cell;
    vertical-align: middle;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
}

.hm01 .cycle-pager-container li {
    transition: all 800ms ease;
    background-image: none;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    width: 21px;
    height: 21px;
    margin: 10px 0;
    padding: 7px;
}
.hm01 .cycle-pager-container li.cycle-pager-active {
    transition: all 800ms ease-in-out;
    background-color: rgba(255, 255, 255, .5);
}

.hm01 .cycle-pager-container li span {
    transition: all 800ms ease;
    background-color: white;
    border-radius: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    width: 7px;
    height: 7px;
    margin: 0;
    padding: 0;
}
.hm01 .cycle-pager-container li.cycle-pager-active span {
    transition: all 800ms ease;
    background-color: #EB7231;
}

/* END HM01 */


/* HM02 */

.hm02 {
    overflow: hidden;
}

.hm02 .box1 {
    float: left;
    width: 50%;
}
@media only screen and (max-width: 1000px) {
    .hm02 .box1 { float: none; width: 100%; margin: 0; padding: 0; }
}

.hm02 .box2 {
    float: right;
    width: 50%;
}
@media only screen and (max-width: 1000px) {
    .hm02 .box2 { float: none; width: 100%; margin: 20px 0 0 0; }
}

.hm02 .fit {
    position: relative;
    max-width: 383px;
    width: 90.117647058824%;
}
@media only screen and (max-width: 1000px) {
    .hm02 .fit { margin: 0 auto; }
}

.hm02 .img {
    width: 100%;
    padding: 35px 0 30px 0;
}

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

.hm02 .txt {
    text-align: center;
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
}

.hm02 ol li a {
    background: rgba(63, 62, 71, 0.6);
    border: 2px solid #dbd3c6;
    color: #dbd3c6;
}

.hm02 ol li a:hover{
    background: #EB7231;
    color: white;
    border: 2px solid #EB7231;
}

.hm02 .txt h1,
.hm02 .txt h2,
.hm02 .txt h3,
.hm02 .txt h4,
.hm02 .txt p {
    color: #e8eae9;
    font-size: 48px;
    line-height: 50px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 20px 0;
    text-shadow: 0px 0px 8px #000;
}
@media only screen and (min-width: 1000px) and (max-width: 1370px) {
    .hm02 .txt h1,
    .hm02 .txt h2,
    .hm02 .txt h3,
    .hm02 .txt h4,
    .hm02 .txt p {
        font-size: 36px;
        line-height: 38px;
    }
}

.hm02 .lnk {
    width: 100%;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .hm02 .txt h1,
    .hm02 .txt h2,
    .hm02 .txt h3,
    .hm02 .txt h4,
    .hm02 .txt p {
        font-size: 36px;
        line-height: 36px;
    }
    .hm02 ol li a{
        margin-bottom: 0;
    }
}

/* END HM02 */


/* HM03 */

.hm03 {
    overflow: hidden;
    position: relative;
}

.hm03 .text-center {
    text-align: center !important;
}

@media (max-width: 767px) {
    .hm03 .vcenter { margin-top: 20px !important; }
}

.hm03 .back {
    position: absolute;
    top: 97%;;
    right: 7%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 900;
}
@media only screen and (max-width: 1060px) { .hm03 .back { display: none; } }
.hm03 .back a {
    transition: all 250ms ease;
    background: url(templates/promo-back.png) center center no-repeat;
    display: block;
    opacity: .8;
    width: 40px;
    height: 40px;
}
.hm03 .back a:hover {
    transition: all 500ms ease;
    opacity: 1;
}

.hm03 .next {
    position: absolute;
    top: 97%;
    right: 2%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 900;
}
@media only screen and (max-width: 1060px) { .hm03 .next { display: none; } }
.hm03 .next a {
    transition: all 250ms ease;
    background: url(templates/promo-next.png) center center no-repeat;
    display: block;
    opacity: .8;
    width: 40px;
    height: 40px;
}
.hm03 .next a:hover {
    transition: all 500ms ease;
    opacity: 1;
}

.hm03 .box1 {
    position: absolute;
    top: 35px;
    right: 0;
    width: 50%;
}
.hm03 .box2 {
    display: table;
    border: 1px solid rgba(219, 211, 198,.5);
    width: 85%;
    height: 435px;
    padding: 0 37% 0 3.5%;
    margin-left: -1px;
}
@media only screen and (max-width: 1000px) {
    .hm03 .box1, .hm03 .box2 { border: none; position: relative; top: auto; left: auto; float: none; width: 100%; min-height: 1px; padding: 0; }
}
@media only screen and (max-width: 1000px) {
    .hm03 .box2 {height: auto;}
}

.hm03 .img {
    max-width: 385px;
    margin: 0 auto;
}

.hm03 .img .pad {
    width: 100%;
    height: 365px;

}
@media only screen and (max-width: 767px) {
    .hm03 .img .pad { height: 240px; }
}

.hm03 .txt {
    display: table-cell;
}
@media only screen and (max-width: 1000px) {
    .hm03 .txt { height: auto; padding: 15px; }
}

.hm03 .txt h1,
.hm03 .txt h2 {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 2.7vw;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    margin: 10px 0;
}
@media (min-width: 1800px) {
    .hm03 .txt h1, .hm03 .txt h2 { font-size: 48px; }
}

@media (max-width: 768px) {
    .hm03 .txt h1, .hm03 .txt h2 { font-size: 33px; }
}

.hm03 .txt h3,
.hm03 .txt h4 {
    color: #EB7231;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}

.hm03 .txt p {
    color: white;
}

/* END HM03 */


/* HM04 */

.hm04 {
    overflow: hidden;
    padding: 60px 0 0 0;
}
@media only screen and (max-width: 767px) {
    .hm04 { padding: 0; }
}

.hm04 .img {
    width: 98%;
    height: 420px;
}
@media only screen and (max-width: 767px) {
    .hm04 .img { width: 100%; height: 300px; }
}

.hm04 .txt {
    background-color: rgba(63, 62, 71, 0.85);
    position: relative;
    width: 60%;
    margin: -30px 0 0 40%;
    padding: 60px 5% 20px 5%;
    z-index: 3;
}
@media only screen and (max-width: 1000px) {
    .hm04 .txt { width: 96%; margin: -30px 0 0 0; }
}
@media only screen and (max-width: 767px) {
    .hm04 .txt {width: 100%;padding: 20px 5%;}
    .hm04 ol{
        text-align: left;
    }
    .hm04 ol li a {
        margin-bottom: 0px;
    }
}

.hm04 .txt h1,
.hm04 .txt h2,
.hm04 .txt h3 {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 46px;
    text-align: left;
    text-transform: uppercase;
    margin: 15px 0 5px 0;
}

@media only screen and (max-width: 768px) {
    .hm04 .txt h1,
    .hm04 .txt h2,
    .hm04 .txt h3 {
        font-size: 32px;
        line-height: 32px;
        font-weight: 300;
    }
}

.hm04 .lnk {
    position: absolute;
    top: 15px;
    right: 8%;
}
@media only screen and (max-width: 1000px) {
    .hm04 .lnk { position: relative; top: auto; right: auto; }
}

/* END HM04 */


/* HM05 */

.hm05 {
    overflow: hidden;
}

.hm05 .txt {
    background-color: rgba(63, 62, 71, 0.85);
    position: relative;
    width: 60%;
    margin: 0 0 -30px 0;
    padding: 1px 5% 20px 5%;
    z-index: 3;
}
@media only screen and (max-width: 1000px) {
    .hm05 .txt {width: 90%;max-width: 400px;margin: 0 auto;padding: 20px 5%;}
}
@media only screen and (max-width: 767px) {
    .hm05 .txt { width: 100%; max-width: 400px; margin: 0 auto; }
}

.hm05 .txt h1,
.hm05 .txt h2,
.hm05 .txt h3 {
    color: #EB7231;
    font-family: 'Raleway', sans-serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 46px;
    text-align: right;
    color: #dbd3c6;
    text-transform: uppercase;
    margin: 15px 0 5px 0;
}

.hm05 .txt .lnk {
    text-align: right;
}

.hm05 .txt ol {
    text-align: right;
}

.hm05 .box {
    float: left;
    width: 50%;
    text-align: right;
}
@media only screen and (max-width: 1000px) {
    .hm05 .box { float: none; text-align: center; width: 100%; }
    .hm05 .box2 { margin: 20px 0 0 0; }
}


@media only screen and (max-width: 767px) {
    .hm05 .box .pad { width: 100%; max-width: 400px; }
    .hm05 .txt ol{
        text-align: left;
    }
}

.hm05 .box .pad {
    display: inline-block;
    position: relative;
    width: 96%;
    padding: 0 0 30px 0;
}
@media only screen and (max-width: 1000px) {
    .hm05 .box .pad { width: 90%; max-width: 400px; }
}
@media only screen and (max-width: 767px) {
    .hm05 .box .pad { width: 100%; max-width: 400px; }
}

@media only screen and (max-width: 767px) {
    .hm05 .box .img { height: 240px; }
}

.hm05 .box .pad ol li a {
    background: rgba(63, 62, 71, 0.6);
    border: 2px solid #dbd3c6;
    color: #dbd3c6;
}

.hm05 .box .pad ol li a:hover{
    background: #EB7231;
    color: white;
    border: 2px solid #EB7231;
}

.hm05 .box .lnk {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .hm05 .txt h1,
    .hm05 .txt h2,
    .hm05 .txt h3{
        text-align: left;
        font-size: 32px;
        line-height: 32px;
        font-weight: 300;
    }
    .hm05 .box .pad ol li a{
        margin-bottom: 0;
    }
}

/* END HM05 */


/* HM06 */

.hm06 {
    overflow: hidden;
    width: 100%;
    max-width: 1510px;
}

.hm06 .txt {
    width: 45%;
    padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .hm06 .txt { width: 100%; padding-bottom: 0; }
}

.hm06 .txt h1,
.hm06 .txt h2,
.hm06 .txt h3,
.hm06 .txt h4,
.hm06 .txt p {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 38px;
    text-align: left;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .hm06 .txt h1,
    .hm06 .txt h2,
    .hm06 .txt h3,
    .hm06 .txt h4,
    .hm06 .txt p{
        font-size: 32px;
        line-height: 32px;
        padding-bottom: 10px;
        font-weight: 300;
    }
}

.hm06 .thumbs {
    background-image: url(templates/tx01.png);
    width: 100%;
    max-width: 1508px;
    padding: 0px;
    margin: 0 auto;
    border: 4px solid rgba(219, 211, 198,.5);
    color: black;
}
@media only screen and (max-width: 800px) {
    .hm06 .thumbs { max-width: 750px; }
}
@media only screen and (max-width: 600px) {
    .hm06 .thumbs { max-width: 510px; }
}
@media only screen and (max-width: 400px) {
    .hm06 .thumbs { max-width: 260px; }
}

.hm06 .thumbs ul {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hm06 .thumbs li {
    position: relative;
    background-image: none;
    float: left;
    width: 16.6666%;
    max-width: 250px;
    height: 0;
    font-size: 0;
    margin: 0;
    padding: 0 0 16.6666% 0;
}
@media only screen and (max-width: 800px) {
    .hm06 .thumbs li { width: 33.3333%; padding: 0 0 33.3333% 0; }
}
@media only screen and (max-width: 600px) {
    .hm06 .thumbs li { width: 50%; padding: 0 0 50% 0; }
}
@media only screen and (max-width: 400px) {
    .hm06 .thumbs li { width: 100%; padding: 0 0 100% 0; }
}

.hm06 .thumbs li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.hm06 .lnk {
    text-align: right;
}

.hm06 .lnk a {
    display: inline-block;
    font-size: 15px;
    line-height: 35px;
    text-transform: uppercase;
}

/* END HM06 */


/* HM07 */

.hm07 {
    background-color: #2E2E30;
    border: 1px solid #747578;
    max-width: 1700px;
    padding: 20px;
}

.hm07 .hmcol1 {
    float: left;
    width: 48%;
}

.hm07 .hmcol2 {
    float: right;
    width: 48%;
}

@media only screen and (max-width: 767px) {
    .hm07 .hmcol1 { float: none; width: 100%; }
    .hm07 .hmcol1.vcenter { margin-top: 0 !important; }
    .hm07 .hmcol2 { float: none; width: 100%; margin: 20px 0 0 0; }
}

.hm07 .hmtxt01 {
    text-align: right;
}
@media only screen and (max-width: 767px) {
    .hm07 .hmtxt01 {text-align: left;}
}

.hm07 .hmimg {
    float: left;
    width: 48%;
}

.hm07 .hmimg img {
    width: 100%;
    max-width: 385px;
    height: auto;
}

.hm07 .hmtxt02 {
    float: right;
    width: 48%;
}

@media only screen and (max-width: 480px), only screen and (min-width: 768px) and (max-width: 1200px) {
    .hm07 .hmimg { float: none; width: 100%; }
    .hm07 .hmtxt02 { float: none; width: 100%; }
    .hm07 .hmtxt02.vcenter { margin-top: 20px !important; }
}

/* END HM07 */


/* CC01 */

.cc01 {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
}

@media all and (max-width: 767px) {
    .cc01 {height: 350px;}
}
@media all and (max-width: 480px) {
    .cc01 { height: 200px; }
}

.cc01.cc01short {
    height: 300px;
}
@media all and (max-width: 767px) {
    .cc01.cc01short { height: 350px; }
}
@media all and (max-width: 480px) {
    .cc01.cc01short { height: 200px; }
}

.cc01fade {
    background: -moz-linear-gradient(top, rgba(41, 40, 46, 0) 0%, rgba(41, 40, 46, 0) 50%, rgba(41, 40, 46, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(41, 40, 46, 0) 0%, rgba(41, 40, 46, 0) 50%, rgba(41, 40, 46, 1) 100%);
    background: linear-gradient(to bottom, rgba(41, 40, 46, 0) 0%, rgba(41, 40, 46, 0) 50%, rgba(41, 40, 46, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    z-index: -1;
}
.cc01fade.cc01shortbg {
    height: 600px;
}
@media all and (max-width: 767px) {
    .cc01fade, .cc01fade.cc01shortbg { height: 400px; }
}
@media all and (max-width: 480px) {
    .cc01fade, .cc01fade.cc01shortbg { height: 300px; }
}

.cc01bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    z-index: -2;
}
.cc01bg.cc01shortbg {
    height: 600px;
}
@media all and (max-width: 767px) {
    .cc01bg, .cc01bg.cc01shortbg { height: 400px; }
}
@media all and (max-width: 480px) {
    .cc01bg, .cc01bg.cc01shortbg { height: 300px; }
}

.cc01 #deskhead {
    background: url(templates/deskhead-bg2.png) center bottom no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 145px;
    z-index: 150;
}

@media only screen and (max-width: 767px) {
    .cc01 #deskhead {top: 40px;height: 125px;}
}

.cc01 #logo {
    background: url(templates/logo.png) center center no-repeat;
    display: block;
    position: absolute;
    top: 15px;
    left: 50%;
    width: 270px;
    height: 100px;
    margin: 0 0 0 -135px;
    z-index: 6;
}
@media only screen and (max-width: 1439px) {
    .cc01 #logo {top: 8px;background-size: auto 80px;height: 80px;}
}

@media only screen and (max-width: 767px) {
    .cc01 #logo {top: 14px;background-size: contain;height: 100px;}
}

@media only screen and (max-width: 320px) {
    .cc01 #deskhead{
        height: 100px;
    }
    .cc01 #logo {top: 10px;background-size: contain;height: 80px;}
}

.cc01 #mobihamburger {
    background: url(templates/hamburger.png) center center no-repeat;
    display: none;
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 50px;
    height: 35px;
    margin: 0 0 0 -25px;
    z-index: 6;
}
@media only screen and (max-width: 1135px) {
    .cc01 #mobihamburger { display: block; }
}

@media only screen and (max-width: 767px) {
    .cc01 #mobihamburger { display: none; }
}

.cc01 #reservations {
    transition: all 500ms ease;
    box-shadow: 0 0 10px 5px transparent;
    background: transparent url(templates/deskhead-res-btn.png) center center repeat-x;
    display: block;
    position: absolute;
    top: 130px;
    left: 50%;
    width: 210px;
    height: 40px;
    color: #fff;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 0 -105px;
    z-index: 7;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .cc01 #reservations { display: none; }
}

.cc01 #reservations:hover {
    transition: all 500ms ease;
    box-shadow: 0 0 10px 5px #EB7231;
    background-color: #EB7231;
}

/* END CC01 */


/* CC02 */

.cc02 {
    overflow: hidden;
    margin: 25px auto;
    width: 95%;
}

.cc02 .cc02header {
    background: #EB7231 url(templates/cc02-arrow-down.png) center right no-repeat;
    overflow: hidden;
    cursor: pointer;
    padding: 8px 30px 8px 15px;
}

.cc02 .cc02header.active {
    background: rgba(86, 85, 94, 1) url(templates/cc02-arrow-up.png) center right no-repeat;
}

.cc02 .cc02header h2 {
    color: white;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
    margin: 0;
}

.cc02 .cc02hide {
    display: none;
    overflow: hidden;
    padding: 20px 0;
}

.cc02 .cc02img {
    float: left;
    width: 40%;
}

.cc02 .cc02img img {
    width: 100%;
    height: auto;
}

.cc02 .cc02txt {
    float: right;
    width: 57%;
}

@media only screen and (max-width: 767px) {
    .cc02 .cc02img { float: none; width: 100%; }
    .cc02 .cc02txt { float: none; width: 100%; margin: 20px 0 0 0; }
}

/* END CC02 */


/* CC03 */

.cc03 {
}

.cc03 .cycle-slideshow {
}

.cc03 .cycle-slideshow img {
    width: 100%;
    height: auto;
}

/* END CC03 */


/* CC04 */

.cc04.scmarg {
    text-align: center;
    margin-top: 15px;
}

.cc04 h1 {
    border-bottom: 1px solid rgba(219, 211, 198,.5);
    font-size: 76px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 76px;
}
@media only screen and (max-width: 1365px) {
    .cc04 h1 { font-size: 50px; line-height: 50px; }
}
@media only screen and (max-width: 768px) {
    .cc04 h1 { font-size: 30px; line-height: 30px; }
}

.cc04 h2, .cc04 h3 {
    color: #EB7231;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 18px;
}

/* END CC04 */


/* CC05 */

.cc05 {
    position: relative;
    max-width: 1600px;
    min-height: 570px;
    margin: 80px auto;
}

.cc05 .img {
    position: absolute;
    top: 50px;
    left: 0;
    width: 46.5%;
    height: 520px;
}
.cc05b .img {
    left: auto;
    right: 0;
}
@media only screen and (max-width: 767px) {
    .cc05 .img, .cc05b .img { position: relative; top: auto; left: auto; right: auto; width: 100%; height: auto; }
}

.cc05 .img .pad {
    background: rgba(86, 85, 94, .85);
    height: 520px;
    padding: 20px 0 0 20px;
}
.cc05b .img .pad {
    padding: 20px 20px 0 0;
}
@media only screen and (max-width: 767px) {
    .cc05 .img .pad, .cc05b .img .pad { background-color: #EB7231; height: auto; padding: 0; }
}

.cc05 .img .pad .scaleme {
    width: 100%;
    height: 500px;
}
@media only screen and (max-width: 767px) {
    .cc05 .img .pad .scaleme { height: 300px; }
}

.cc05 .txt {
    border: 1px solid rgba(86, 85, 94, .9);
    width: 60%;
    min-height: 570px;
    margin: 0 0 0 auto;
}
.cc05b .txt {
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .cc05 .txt, .cc05b .txt {
        background: linear-gradient(to bottom, rgba(86, 85, 94, 0) 0%, rgba(86, 85, 94, 0.9) 100%);
        border: none;
        width: 100%;
        min-height: 1px;
        margin: 0;
    }
}

.cc05 .txt .pad {
    padding: 40px 5% 40px 15%;
}
.cc05b .txt .pad {
    padding: 40px 15% 40px 5%;
}
@media only screen and (max-width: 767px) {
    .cc05 .txt .pad, .cc05b .txt .pad { padding: 30px; }
}

/* END CC05 */


/* CC06 */

.cc06 {
    position: relative;
    max-width: 1600px;
    min-height: 570px;
    margin: 80px auto;
    z-index: 1;
}

.cc06 .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 36.25%;
    padding: 0 0 36.25% 0;
    z-index: -1;
}
.cc06b .img {
    left: auto;
    right: 0;
}
@media only screen and (max-width: 1170px) {
    .cc06 .img, .cc06b .img { position: relative; top: auto; right: auto; left: auto; width: 50%; height: auto; padding: 0; }
    .cc06b .img { margin: 0 0 0 auto; }
}
@media only screen and (max-width: 700px) {
    .cc06 .img, .cc06b .img { width: 100%; margin: 0; }
}

.cc06 .img .pad {
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1170px) {
    .cc06 .img .pad { position: relative; top: auto; left: auto; }
}

.cc06 .img .pad img {
    width: 100%;
    height: auto;
}

.cc06 .group {
    border-bottom: 1px solid rgba(216, 216, 214,.8);
    width: 75%;
    margin: 50px 0 0 auto;
    padding: 0 0 10px 0;
}
.cc06b .group {
    margin: 50px 0 0 0;
}
@media only screen and (max-width: 1170px) {
    .cc06 .group, .cc06b .group { width: 100%; margin: 0; }
}

.cc06 .group .pad {
    background: linear-gradient(to bottom, rgba(86, 85, 94, 0) 0%, rgba(86, 85, 94, 1) 100%);
    padding: 40px;
}

.cc06 .txt1 {
    float: left;
    width: 37%;
}
.cc06b .txt1 {
    float: right;
}
@media only screen and (max-width: 700px) {
    .cc06 .txt1, .cc06b .txt1 { float: none; width: 100%; }
}

.cc06 .txt2 {
    float: right;
    width: 60%;
}
.cc06b .txt2 {
    float: left;
}
@media only screen and (max-width: 700px) {
    .cc06 .txt2, .cc06b .txt2 { float: none; width: 100%; }
    .cc06 .vcenter { margin-top: 0 !important; }
}

.cc06 .txt1 h1,
.cc06 .txt1 h2,
.cc06 .txt1 h3,
.cc06 .txt1 h4,
.cc06 .txt1 p {
    color: #dbd3c6;
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}
@media only screen and (max-width: 1200px) {
    .cc06 .txt1 h1, .cc06 .txt1 h2, .cc06 .txt1 h3, .cc06 .txt1 h4, .cc06 .txt1 p { font-size: 4vw; }
}
@media only screen and (max-width: 700px) {
    .cc06 .txt1 h1, .cc06 .txt1 h2, .cc06 .txt1 h3, .cc06 .txt1 h4, .cc06 .txt1 p { font-size: 38px; }
}

/* END CC06 */


/* SC02 */

.sc02 .sctxt {
    padding: 15px 0 0 0;
}

@media only screen and (max-width: 767px) {
    .sc02 .scimg2, .sc02 .scimg3, .sc02 .scimg4 { padding: 25px 0 0 0; }
}

/* END SC02 */


/* SC03 */

.sc03 a {
    transition: all 200ms ease-out;
    background-color: #EB7231;
    border: 2px solid #EB7231;
    display: block;
    color: white;
    line-height: 35px;
    text-transform: uppercase;
    padding: 0 35px;
    /* font-size: 15px; */
}
.sc03 a:hover {
    transition: all 300ms ease-in;
    background-color: #dbd3c6;
    border: 2px solid #dbd3c6;
    color: #29282e;
}

/* END SC03 */


/* SC04 */

@media only screen and (max-width: 767px) {
    .sc04 .sctxt { padding: 15px 0 0 0; }
    .sc04d .sctxt, .sc04e .sctxt, .sc04f .sctxt { padding: 0 0 15px 0; }
}

/* END SC04 */


/* SC05 */

@media only screen and (max-width: 767px) {
    .sc05 .sctxt { padding: 15px 0 0 0; }
    .sc05d .sctxt, .sc05e .sctxt, .sc05f .sctxt { padding: 0 0 15px 0; }
}

/* END SC05 */


/* SC06 */

@media only screen and (max-width: 767px) {
    .sc06 .vcenter { margin-top: 15px !important; }
}

/* END SC06 */


/* SC07 */

@media only screen and (max-width: 767px) {
    .sc07 { padding: 25px 0; }
    .sc07a .sctxt2 { padding: 15px 0 0 0; }
    .sc07b .sctxt1 { padding: 15px 10px 0 10px; }
    .sc07b .sctxt2 { padding: 15px 10px 0 10px; }
    .sc07c .sctxt1 { padding: 15px 0 0 0; border-bottom: none; }
    .sc07c .sctxt2 { padding: 15px 0 0 0; }
}

/* END SC07 */


#nav1 ul ul{
    display:none;
}

.filters ul.icons li{
    margin:0;
}

/* HOME ROTATOR */

@-webkit-keyframes kenBurnsEast {
    0% { -webkit-transform: scale(1, 1); -webkit-transform-origin: top left; }
    100% { -webkit-transform: scale(1.08, 1.08); -webkit-transform-origin: top left; }
}
@keyframes kenBurnsEast {
    0% { transform: scale(1, 1); transform-origin: top left; }
    100% { transform: scale(1.08, 1.08); transform-origin: top left; }
}
@-webkit-keyframes kenBurnsWest {
    0% { -webkit-transform: scale(1, 1); -webkit-transform-origin: top left; }
    100% { -webkit-transform: scale(1.08, 1.08); -webkit-transform-origin: top right; }
}
@keyframes kenBurnsWest {
    0% { transform: scale(1, 1); transform-origin: 100% 0%; }
    100% { transform: scale(1.08, 1.08); transform-origin: 100% 0%; }
}
.cycle-slideshow,.slide-container{
    width: 100%;
    height: 100%;
}
.slide-container:nth-of-type(2n+1) .img{
    -webkit-animation: kenBurnsEast 10s linear alternate infinite;
    animation: kenBurnsEast 10s linear alternate infinite;
}

.slide-container:nth-of-type(2n) .img{
    -webkit-animation: kenBurnsWest 10s linear alternate infinite;
    animation: kenBurnsWest 10s linear alternate infinite;
}
.slide-container .img{
    background-position: center center;
    background-size: cover;
}
@media all and (max-width: 767px) {
    .slide-container .img{
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }
}
/* END HOME ROTATOR */


/* CUSTOM MAP */

.cmap {
    overflow: hidden;
    position: relative;
    max-width: 1280px;
    text-align: center;
    margin: 40px auto;
}

.cmap .bg {
    background-color: #e2eff7;
    float: right;
    width: 82%;
    height: 620px;
}
.cmap.map2 .bg {
    float: left;
}
@media only screen and (max-width: 1100px) {
    .cmap .bg { display: none; }
}

.cmap .map {
    background: url(templates/map1.jpg) center center no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 956px;
    height: 579px;
}

@media only screen and (max-width: 1100px) {
    .cmap .map { display: none; }
}

.cmap .plot-point {
    background: url(templates/map-point.png) center top no-repeat;
    position: absolute;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    z-index: 60;
}

.cmap .plot-point:hover,
.cmap .plot-point.active {
    background: url(templates/map-point.png) center bottom no-repeat;
    cursor: pointer;
}

.cmap .details {
    background-image: url(templates/tx01.png);
    display: none;
    position: absolute;
    bottom: 0;
    left: 700px;
    width: 300px;
    text-align: left;
    padding: 256px 30px 30px 30px;
    z-index: 55;
}
.cmap.map2 .details {
    left: auto;
    right: 700px;
}
.cmap .details.active {
    display: block;
}
@media only screen and (max-width: 1100px) {
    .cmap .details,
    .cmap .details.active,
    .cmap.map2 .details,
    .cmap.map2 .details.active {
        display: inline-block;
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        padding: 30px;
        margin: 7px 15px;
    }
}

.cmap .details .img {
    background-color: white;
    position: absolute;
    top: -30px;
    left: -30px;
    padding: 4px;
    z-index: 70;
}
.cmap.map2 .details .img {
    left: auto;
    right: -30px;
}
@media only screen and (max-width: 1100px) {
    .cmap .details .img,
    .cmap.map2 .details .img {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 0 0 30px 0;
        z-index: auto;
    }
    .cmap .details .img img {
        width: 100%;
        height: auto;
    }
}

.cmap .details h1,
.cmap .details h2,
.cmap .details h3,
.cmap .details h4 {
    color: white;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 20px;
    margin: 4px 0;
}

.cmap .details p {
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin: 4px 0;
}

.cmap .button {
    overflow: hidden;
    margin: 20px 0 0 0;
}

.cmap .button a {
    border: 1px solid white;
    display: block;
    float: right;
    color: white;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    padding: 0 30px;
}

.cmap.map2 .button a {
    float: left;
}

.cmap .category {
    margin: 20px 0;
}

.cat-label{
    background: #d4c393 url(templates/cc02-arrows.png) bottom right no-repeat;
    display: none;
    overflow: hidden;
    cursor: pointer;
    color: #212121;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
    text-transform: uppercase;
    margin: 0;
    padding: 8px 30px 8px 15px;
}
.cat-label.active-cat {
    background: #dacaa4 url(templates/cc02-arrows.png) top right no-repeat;
}

@media only screen and (max-width: 1100px){
    .cat-label{
        display:block;
    }
    .cat-items{
        display:none;
    }
}

/* END CUSTOM MAP */


/* SEO MAP */

#seo {
    position: relative;
    text-align: left;
    z-index: 1;
    display: none;
}
@media only screen and (max-width: 767px) {
    #seo, .seo-toggle {display: none!important;margin-top:  0!important;}
}

#seo .seolist li {
    display: block;
    background: url(propMap/bench_prop_arrow.png) no-repeat 18px center!important;
}

#seo .seolist li.personal {
    background-image: url(propMap/person_prop_arrow.png)!important;
}

#seo .seolist li a {
    color: #EB7231;
}

#seo .seolist .seodiv {
    background-color: #bababc !important;
}

#seo .seolist h3 {
    color: #005fd2! important;
}

#seo .seoheader nav .seobench a {
    color: #005fd2! important;
    background: url(propMap/dot_orange.png) left bottom no-repeat!important;
}

#seo .seoheader nav .seoplux a {
    color: #005fd2! important;
    background: url(propMap/dot_green.png) left bottom no-repeat!important;
}

#seo .seoheader nav .seogem a {
    color: white ! important;
}

#seoBtn {
    height: 97px!important;
}

#brand {
    color: #003852 !important;
}

#seo .buttons a {
    transition: all 250ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212121+0,212121+100&0+0,0.3+100 */
     /* FF3.6-15 */
     /* Chrome10-25,Safari5.1-6 */
     /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
     /* IE6-9 */
    border: 1px solid #EB7231 !important;
    color: #fff !important;
    background: #005fd2! important;
}

#seo .buttons a:hover {
    transition: all 500ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212121+0,eeddb4+100&0+0,0.3+100 */
     /* Chrome10-25,Safari5.1-6 */
     /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
     /* IE6-9 */
    color: #005fd2! important;
    background: #fff!important;
}

#seo .text h2 {
    color: #005fd2! important;
}

#seo .text h3 {
    color: #005fd2! important;
}

#seo .text p {
    color: #212121 !important;
}

.seo-item-desktop a {
    color: #fff;
}

#seo .seo-content .seo-header ul li a{
    color: #fff;
}

/* END SEO MAP */


/* BANNER */

.banner {
    max-width: 960px;
    margin: 30px auto;
}

.banner img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/* END BANNER */


/* PHOTO GALLERY */

.photoGallery {
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 20px auto;
}

.photoGallery .photoGallery-desc {
    padding: 20px 0;
}

.photoGallery .photoGallery-desc p {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.photoGallery .photoGallery-pager img {
    cursor: pointer;
    margin: 3px;
}

.photoGallery .cycle-slideshow {
    max-width: none !important;
    max-height: none !important;
}

/* END PHOTO GALLERY */


/* AP01 */


.packages-title {
    text-align: center;
}

.packages-title h1 {
    font-size: 42px;
    line-height: 42px;
}

.ap01 {
    border-bottom: 1px solid #EB7231;
    position: relative;
    min-height: 220px;
    max-width: 1024px;
    margin: 40px auto;
    padding: 0 0 40px 0;
}

.ap01 .ap01img {
    position: absolute;
    top: 0;
    left: 0;
}

.ap01 .ap01img .ap01pad {
    border: 1px solid #EB7231;
    padding: 4px;
}

.ap01 .ap01txt {
    padding: 0 0 0 300px;
}

.ap01 .ap01addthis {
    max-width: 335px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .ap01 .ap01img { position: relative; top: auto; left: auto; width: 277px; margin: 0; }
    .ap01 .ap01txt { padding: 20px 0 0 0; }
}

/* END AP01 */

/* PRESS APP */

.pressapp {
    width: 90%;
    max-width: 1000px;
    margin: 70px auto;
}

.pressapp tr:nth-child(even) {
    background-color: rgba(255, 255, 255, .05);
}

/* END PRESS APP */

/* RFP FORM */

.rfpForm {
    display: block;
    text-align: center;
}
.rfpForm .wForm {
    width: 100%;
}
.rfpForm .wForm form {
    display: inline-block;
}
.rfpForm .wForm input, .rfpForm .wForm select {
    float: left;
}

/* END RFP FORM */


/* UNLABELED ENGINEERING STUFF */

.jsSpecial{
    width: 100%;
}

/* END UNLABELED ENGINEERING STUFF */


/* WED GUIDE */

.wedguide {
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    margin: 50px auto;
}

.wedguide .wgleft {
    float: left;
    width: 48%;
}

.wedguide .wgright {
    float: right;
    width: 48%;
    padding: 40px 0 0 0;
}

.wedguide .wgright img {
    width: auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .wedguide .wgleft, .wedguide .wgright { float: none; width: 95%; margin: 0 auto; padding: 0; }
}

/* END WED GUIDE */



/* UNIVERSAL PACKAGES APP */

.upa {
    color: #333;
    position: relative;
    z-index: 1;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 15px;
}

.upa * {
    box-sizing: border-box;
}

.upa h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 900px) {
    .upa h1 { font-size: 5vw; }
}

.upa h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .upa h2 { font-size: 4vw; }
}
@media (max-width: 600px) {
    .upa h2 { font-size: 5vw; }
}

.upa h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.upa p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: white;
}

.upa ul li {
    background: url(templates/bullet.png) left 4px no-repeat;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    margin: 14px 0;
    padding: 0 0 0 20px;
    color: white;
}

.upa a,
.upa a:visited,
.upa a:hover,
.upa a:active,
.upa a:focus {
    color: #dbd3c6;
    text-decoration: none;
}

.upa .header-text {
    text-align: center;
    max-width: 1250px;
    margin: 60px auto;
    /* width: 80%; */
    padding: 0 15px;
}


.upa .header-text h1 {
    border-bottom: 1px solid rgba(219, 211, 198,.5);
    margin: 0 auto;
    color: #dbd3c6;
    font-size: 76px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
    /* width: 80%; */
    margin: 0 auto;
}
@media (max-width: 1365px) {
    .upa .header-text h1 {font-size: 50px;line-height: 50px;}
}
@media (max-width: 768px) {
    .upa .header-text h1 {font-size: 30px;line-height: 30px;}
}

.upa .header-text p {
    text-transform: uppercase;
    padding-top: 20px;
}

/* END UNIVERSAL PACKAGES APP */


/* UPA PACKAGE LIST */

.upacat {
    display: block;
    overflow: hidden;
    text-align: center;
    width: 100%;
    font-size: 0;
}

.upapack {
    background-color: rgba(63, 62, 71, 0.7);
    display: inline-block;
    vertical-align: top;
    width: 95%;
    max-width: 380px;
    font-size: 15px;
    padding: 40px 15px 30px 15px;
    margin: 15px;
}

@media (max-width: 768px) {
    .upapack {
        width: 100%;
        margin: 15px 0;
    }
}

.upapack .group {
    position: relative;
    width: 100%;
    padding: 0 0 30px 0;
    z-index: 1;
}

.upapack .grad {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#353535+0,212121+100&0+0,0+50,1+100 */
    background: -moz-linear-gradient(top, rgba(53, 53, 53, 0) 0%, rgba(43, 43, 43, 0) 50%, rgba(33, 33, 33, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(53, 53, 53, 0) 0%, rgba(43, 43, 43, 0) 50%, rgba(33, 33, 33, 1) 100%);
    background: linear-gradient(to bottom, rgba(53, 53, 53, 0) 0%, rgba(43, 43, 43, 0) 50%, rgba(33, 33, 33, 1) 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 2;
}

.upapack .img {
    position: relative;
    width: 100%;
    z-index: 1;
}

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

.upapack .lnk {
    position: absolute;
    text-align: center;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
}

.upapack .lnk a {
    transition: all 250ms ease;
    display: inline-block;
    background-color: #EB7231;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 12px 24px;
}

.upapack .lnk a:hover {
    transition: all 250ms ease;
    background-color: #dbd3c6;
    color: #29282e;
}

.upapack .txt {
    min-height: 160px;
    padding: 20px 0 0 0;
}

@media (max-width: 863px) {
    .upapack .txt {
        min-height: auto;
    }
}

/* END UPA PACKAGE LIST */


/* UPA DETAILS */

.upadets {
    width: 95%;
    max-width: 1375px;
    margin: 60px auto;
    text-align: center;
}
@media (max-width: 1024px) {
    .upadets { background-color: rgba(255, 255, 255, .05); }
}
@media (max-width: 768px) {
    .packages-page .upadets { margin: 30px auto; }
}

.upadets .mediabg {
    background-color: rgba(63, 62, 71, 0.85);
    overflow: visible;
    width: 73%;
    padding: 40px 0 20px 0;
}
@media (max-width: 1024px) {
    .upadets .mediabg { background-color: transparent; width: 100%; padding: 20px 0; }
}

.upadets .media {
    overflow: visible;
    width: 120%;
    margin: 0 0 0 8%;
}
@media (max-width: 1024px) {
    .upadets .media { width: 90%; margin: 0 auto; }
}

.upadets .media img {
    width: 100%;
    height: auto;
}

.upadets .media .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.upadets .media .video iframe,
.upadets .media .video object,
.upadets .media .video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.upadets .media .prev {
    transition: opacity 300ms ease;
    background: url(../../flashcab/benchmark/upa/upa-arrows.png) left center no-repeat;
    opacity: 0.8;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: -40px;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    z-index: 900;
}

.upadets .media .prev:hover {
    transition: opacity 300ms ease;
    opacity: 1;
}

.upadets .media .next {
    transition: all 300ms ease;
    background: url(../../flashcab/benchmark/upa/upa-arrows.png) right center no-repeat;
    opacity: .8;
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: -40px;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    z-index: 900;
}

.upadets .media .next:hover {
    transition: all 300ms ease;
    opacity: 1;
}

.upadets .group {
    position: relative;
    width: 100%;
}

.upadets .booknow {
    background: url(../../flashcab/benchmark/upa/upa-bookbg.png) center 24px repeat-x;
    position: absolute;
    left: 2.5%;
    top: 0;
    width: 97.5%;
    z-index: 3;
}
@media (max-width: 1024px) {
    .upadets .booknow {
        background-image: none;
        float: none;
        position: relative;
        left: auto;
        top: auto;
        width: 90%;
        max-width: 400px;
        z-index: auto;
        margin: 0 auto;
        text-align: center;
    }
}

.upadets .booknow a {
    transition: all 250ms ease;
    background-color: #EB7231;
    color: #fff;
    display: block;
    float: right;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    padding: 10px 20px;
}
@media (max-width: 1024px) {
    .upadets .booknow a {
        width: 100%;
        float: none;
        font-size: 18px;
        line-height: 20px;
        padding: 10px 0;
    }
}

.upadets .booknow a:hover {
    transition: all 500ms ease;
    background-color: #dbd3c6;
    color: #29282e;
}

.upadets .call {
    background: url(../../flashcab/benchmark/upa/upa-call.png) left center no-repeat;
    position: absolute;
    right: 0;
    top: 80px;
    z-index: 2;
    text-align: left;
    padding: 10px 0 10px 40px;
}
@media (max-width: 1024px) {
    .upadets .call {
        clear: both;
        display: inline-block;
        position: relative;
        right: auto;
        top: auto;
        z-index: auto;
        width: auto;
        float: none;
        margin: 20px auto 0 auto;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .upadets .call {
        background-image: none;
        padding: 10px 0;
        text-align: center;
    }
}

.upadets .call h2 {
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: white;
}

.upadets .call h3 {
    font-size: 12px;
    line-height: 13px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: white;
}
@media (max-width: 1024px) {
    .upadets .call h2 { font-size: 18px; }
    .upadets .call h3 { font-size: 11px; }
}

.upadets .property {
    background-color: rgba(255, 255, 255, .05);
    overflow: visible;
    width: 70%;
    padding: 20px 10% 10px 2.5%;
    text-align: left;
}
@media (max-width: 1024px) {
    .upadets .property {
        background-color: transparent;
        clear: both;
        width: 90%;
        padding: 20px 0;
        margin: 0 auto;
        text-align: center;
    }
}

.upadets .tease {
    background-color: rgba(63, 62, 71, 0.85);
    overflow: visible;
    width: 73%;
    padding: 50px 10% 30px 2.5%;
    text-align: left;
}
@media (max-width: 1024px) {
    .upadets .tease {
        background-color: transparent;
        clear: both;
        width: 90%;
        padding: 20px 0 0 0;
        margin: 0 auto;
        text-align: center;
    }
}


.upadets .addthis_toolbox {
    margin: 20px 0 0;
}

.upadets .tease p:last-of-type {
    margin: 0;
}

.upadets .expand {
    display: none;
    text-align: left;
    padding: 15px 0 0 0;
}

.upadets .seeit {
    background: url(../../flashcab/benchmark/upa/upa-tog.png) left bottom no-repeat;
    display: block;
    float: left;
    color: white;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    text-transform: uppercase;
    width: 67.5%;
    padding: 0 20px 0 40px;
    margin: 10px 0 0 2.5%;
}
@media (max-width: 1024px) {
    .upadets .seeit {
        clear: both;
        float: none;
        display: inline-block;
        width: auto;
        font-size: 13px;
        margin: 10px auto;
    }
}
.upadets .seeit:before {
    content: "See Complete Package Details";
}
.upadets .seeit.active {
    background: url(../../flashcab/benchmark/upa/upa-tog.png) left top no-repeat;
    color: white;
}
.upadets .seeit.active:before {
    content: "Hide Package Details";
}

/* END UPA DETAILS */


/* CAP01 */

.cap01 {
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 15px;
    width: 95%;
    margin: 0 auto;
}

.cap01 #headerspace {}

@media (max-width: 767px) {
    .cap01 #headerspace { padding: 200px 0 40px 0; }
    .cap01 #headerspace { padding: 100px 0 0 0; }
}

.cap01 h1 {
    border-bottom: 1px solid white;
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 62px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.cap01 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    margin: 60px 0 0 0;
}

.cap01 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.cap01 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 15px 0;
}

.cap01 ul li {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 767px) {
    .cap01 h1 {
        font-size: 34px;
        line-height: 34px;
    }
    .cap01 h2 {
        font-size: 17px;
    }
    .cap01 h3 {
        font-size: 16px;
    }
    .cap01 p {
        font-size: 14px;
    }
    .cap01 ul li {
        font-size: 14px;
    }
}

.cap01fade {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212121+0,212121+100&0+50,1+100 */
    background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 50%, rgba(33, 33, 33, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 50%, rgba(33, 33, 33, 1) 100%);
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0) 50%, rgba(33, 33, 33, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    z-index: -1;
}
@media (max-width: 767px) {
    .cap01fade { height: 210px; }
}


.cap01bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    z-index: -2;
}
@media (max-width: 767px) {
    .cap01bg { height: 210px; }
}


.cap01top {
    background: url(../../flashcab/benchmark/gpca/gpca-glow.png) center center no-repeat;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 740px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .cap01top { background-image: none; height: 320px; }
}
@media (max-width: 480px) {
    .cap01top { height: 200px; }
}
.packages-page .cap01top { height: 320px; }
@media (max-width: 767px) {
    .packages-page .cap01top { height: 210px; }
}

.cap01 .txt1 {
    text-align: center;
}

.cap01 .txt1Pad {
    width: 95%;
    max-width: 1124px;
    margin: 0 auto;
}

.cap01 .txt1 h1 {
    border-bottom: 1px solid white;
    font-family: 'Raleway', sans-serif;
    font-size: 76px;
    font-weight: 700;
    line-height: .9;
    text-transform: uppercase;
    margin: 15px 0;
    padding: 0 0 12px 0;
}

.cap01 .txt1 h2,
.cap01 .txt1 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    margin: 10px 0;
}

.cap01 .txt1 p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
    margin: 10px 0;
}

@media (max-width: 1280px) {
    .cap01 .txt1 h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .cap01 .txt1 h2,
    .cap01 .txt1 h3 {
        font-size: 18px;
        line-height: 18px
    }
}

@media (max-width: 1100px) {
    .cap01 .txt1 h1 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .cap01 .txt1 h1 {
        font-size: 36px;
        line-height: 36px;
    }
}

.cap01 .img1 {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

.cap01 .img1 img {
    width: 100%;
    height: auto;
}

.cap01 .txt2 {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
}

.cap01 .img2 {
    float: left;
    max-width: 400px;
    width: 30%;
}

.cap01 .img2 img {
    width: 100%;
    height: auto;
}

.cap01 .txt3 {
    float: right;
    text-align: left;
    width: 67.5%;
}

@media (max-width: 768px) {
    .cap01 .img2 {
        float: none;
        width: 100%;
        margin: auto;
    }
    .cap01 .txt3 {
        float: none;
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.cap01 .img3 {
    float: right;
    max-width: 400px;
    width: 30%;
}

.cap01 .img3 img {
    width: 100%;
    height: auto;
}

.cap01 .txt4 {
    float: left;
    width: 67.5%;
}

@media (max-width: 768px) {
    .cap01 .img3 {
        float: none;
        width: 100%;
        margin: auto;
    }
    .cap01 .txt4 {
        float: none;
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.cap01 .vdo .vdopad {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 56.25% 0;
}

.cap01 .vdo .vdopad iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cap01 .vdo .vdopad video {
    width: 100% !important;
    height: auto !important;
}

.cap01 .area01 .vtbl1 {
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .cap01 .area01 .vtbl1 {
        display: block !important;
    }
}

.cap01 .spcr {
    width: 3%;
}

@media (max-width: 767px) {
    .cap01 .spcr {
        display: none;
    }
}

.cap01 .txt5 {
    width: 48.5%;
}

@media (max-width: 767px) {
    .cap01 .txt5 {
        display: block !important;
        width: 100%;
        text-align: left;
    }
}

.cap01 .txt5 h1,
.cap01 .txt5 h2,
.cap01 .txt5 h3,
.cap01 .txt5 p {
    border: none;
    color: white;
    font-family: 'Cardo', serif;
    font-size: 64px;
    font-style: italic;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 60px;
    margin: 0;
    padding: 0;
}

@media (max-width: 1280px) {
    .cap01 .txt5 h1,
    .cap01 .txt5 h2,
    .cap01 .txt5 h3,
    .cap01 .txt5 p {
        font-size: 4vw;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .cap01 .txt5 h1,
    .cap01 .txt5 h2,
    .cap01 .txt5 h3,
    .cap01 .txt5 p {
        font-size: 9vw;
        line-height: 1;
    }
}

.cap01 .txt6 {
    width: 48.5%;
}

@media (max-width: 767px) {
    .cap01 .txt6 {
        display: block !important;
        width: 100%;
    }
}

.cap01 .txt6 h1,
.cap01 .txt6 h2,
.cap01 .txt6 h3 {
    border: none;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 22px;
    margin: 25px 0;
    padding: 0;
}

.cap01 .txt6 p {
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    line-height: 26px;
    margin: 25px 0;
    padding: 0;
}

.cap01 .img4 {
    background-color: white;
    max-width: 1176px;
    padding: 3px;
    margin: 40px auto;
}

.cap01 .img4 img {
    width: 100%;
    height: auto;
}


/* END CAP01 */


/* CAP02 */

.cap02 {
    position: relative;
    overflow: visible;
    width: 95%;
    min-height: 100px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .cap02 { margin: 150px auto 0 auto; }
}
@media (min-width: 700px) and (max-width: 767px) {
    .cap02 { margin: 90px auto 0 auto; }
}

.cap02 .cap02div {
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    width: 95%;
    height: 1px;
    margin: 0 auto;
}

@media (max-width: 699px) {
    .cap02 .cap02div { display: none; }
}

.cap02 .cap02icon {
    background: white url(../../flashcab/benchmark/cap/cap02-icon.png) center center no-repeat;
    box-shadow: 0 0 20px black;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: -150px;
    left: 0;
    width: 350px;
    height: 350px;
    z-index: 100;
}

@media (max-width: 699px) {
    .cap02 .cap02icon {
        background-size: 200px 200px;
        width: 200px;
        height: 200px;
        margin: 0 auto;
        position: relative;
        top: auto;
        left: auto;
        z-index: auto;
    }
}

.cap02 ul {
    background-image: none;
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0 0 0 360px;
}

@media (max-width: 699px) {
    .cap02 ul {
        display: none;
    }
}

.cap02 ul li {
    background-image: none;
    display: inline-block;
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.cap02 ul li a {
    display: block;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 46px;
    text-transform: uppercase;
    padding: 0 25px;
    white-space: nowrap;
}


/* END CAP02 */


/* CAP03 */

.cap03 {
    text-align: center;
    width: 95%;
    margin: 30px auto;
}

.cap03 p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0;
}

.cap03 p.brand-cap {
    font-size: 13px;
    margin: 0;
}

.cap03 .logo {
    position: relative;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.cap03 .logo .logo-pad {
    /*background: #212121 url(https://www.amesbostonhotel.com/i/SITE_150904_12094595_5NG1K/templates/logo-willows-lodge.png) center center no-repeat;*/
    background-size: 280px auto;
    position: relative;
    width: 300px;
    height: 120px;
    margin: 0 auto;
    z-index: 3;
}
@media only screen and (max-width: 767px) {
    .cap03 .logo .logo-pad { width: 280px; }
}

.cap03 .logo .logo-div-left {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+20,1+50,1+80,0+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    width: 80%;
    height: 1px;
    margin: -60px auto 0 auto;
    z-index: 2;
}
@media only screen and (max-width: 767px) {
    .cap03 .logo .logo-div-left { display: none; }
}
.cap03 .logo .logo-div-right {
    display: none;
}

.cap03 ul {
    background-image: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cap03 ul li {
    background-image: none;
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0 15px;
}

@media (max-width: 767px) {
    .cap03 ul li {
        display: block;
    }
}

.cap03 ul.hotlinks li a {
    background-color: #2b2b2b;
    display: block;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 15px;
    line-height: 33px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 200px;
    margin: 10px auto;
    padding: 0;
}

.cap03 ul.hotlinks li.weblink a {
    background-color: #ac6534;
    width: 160px;
}

@media (max-width: 767px) {
    .cap03 ul.hotlinks li.weblink a {
        width: 200px;
    }
}

.cap03 ul.brand-standards-icons li {
    display: inline-block;
    width: 120px;
    height: 90px;
}

.cap03 ul.brand-standards-icons li.brs1 {
    background: url(../../flashcab/brslogos/brslogos-inv-ctr-aaa.png) center center no-repeat;
}

.cap03 ul.brand-standards-icons li.brs2 {
    background: url(../../flashcab/brslogos/brslogos-inv-ctr-bhi.png) center center no-repeat;
}

.cap03 ul.brand-standards-icons li.brs3 {
    background: url(../../flashcab/brslogos/brslogos-inv-ctr-iacc.png) center center no-repeat;
}

.cap03 ul.brand-standards-icons li.brs4 {
    background: url(../../flashcab/brslogos/brslogos-inv-ctr-lifestyle.png) center center no-repeat;
}

.cap03 ul.brand-standards-icons li.brs5 {
    background: url(../../flashcab/brslogos/brslogos-inv-ctr-lvx.png) center center no-repeat;
}

/* END CAP03 */


/* CAP04 */

.cap04 {
    position: relative;
    overflow: visible;
    width: 95%;
    min-height: 250px;
    margin: 30px auto;
}

@media (max-width: 1000px) {
    .cap04 {
        min-height: 200px;
    }
}

.cap04 .cap04icon {
    background: white url(https://www.amesbostonhotel.com/i/SITE_150904_12094595_5NG1K/templates/cap04-icon.png) center center no-repeat;
    background-size: 200px 200px;
    box-shadow: 0 0 20px black;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-left: -100px;
}

.cap04 .cap04div1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+20,1+50,1+80,0+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    width: 80%;
    height: 1px;
    margin: 95px auto 0 auto;
}

.cap04 .cap04div2 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.5+20,0.5+50,0.5+80,0+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
    width: 80%;
    height: 1px;
    margin: 10px auto 0 auto;
}

@media (max-width: 1000px) {
    .cap04 .cap04div2 {
        margin-bottom: 125px;
    }
}

.cap04 ul {
    background-image: none;
    list-style-type: none;
    float: left;
    width: 50%;
    margin: 0;
    padding: 40px 120px 0 0;
}

.cap04 ul.right {
    float: right;
    padding: 40px 0 0 120px;
}

@media (max-width: 1000px) {
    .cap04 ul,
    .cap04 ul.right {
        float: none;
        width: 100%;
        padding: 0;
    }
}

.cap04 ul li {
    background-image: none;
    list-style-type: none;
    float: left;
    width: 50%;
    max-width: 320px;
    margin: 0;
    padding: 0;
}

.cap04 ul.right li {
    float: left;
}

@media (max-width: 1000px) {
    .cap04 ul li,
    .cap04 ul.right li {
        float: none;
        width: 100%;
        margin: 25px auto;
    }
}

.cap04 ul li a {
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

.cap04 ul li a span {
    display: block;
}

.cap04 .cap04group {
    background: url(https://www.amesbostonhotel.com/i/SITE_150904_12094595_5NG1K/templates/cap04-grad1.png) center bottom no-repeat;
    background-size: 75% 100%;
}

.cap04 .cap04name {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 20px;
    padding: 0 10%;
}

.cap04 .cap04tag {
    overflow: hidden;
    width: 100%;
    min-height: 75px;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10%;
}

@media (max-width: 1000px) {
    .cap04 .cap04tag {
        display: none;
    }
}

.cap04 .cap04action {
    background: url(https://www.amesbostonhotel.com/i/SITE_150904_12094595_5NG1K/templates/cap04-grad2.png) center top no-repeat;
    background-size: 75% 100%;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 5px 10%;
}


/* END CAP04 */


/* GPCA STRUCTURE */

.gpca {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 16px;
    line-height: 1.5;
    width: 95%;
    padding: 0;
    margin: 0 auto;
}

.gpca h1 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-weight: bold;
    font-size: 40px;
    font-style: italic;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    padding: 0;
}

.gpca h2 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-weight: bold;
    font-size: 28px;
    font-style: italic;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    padding: 0;
}

.gpca h3 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-weight: bold;
    font-size: 24px;
    font-style: italic;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    padding: 0;
}

.gpca p {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 16px;
    font-style: normal;
    line-height: 1.6;
    text-transform: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.gpca h1:first-child,
.gpca h2:first-child,
.gpca h3:first-child,
.gpca p:first-child,
.gpca ul:first-child {
    margin-top: 0;
}

.gpca h1:last-child,
.gpca h2:last-child,
.gpca h3:last-child,
.gpca p:last-child,
.gpca ul:last-child {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .gpca h2 { font-size: 1.5vw; }
}

@media (max-width: 1000px) {
    .gpca h1 { font-size: 26px; }
    .gpca h2 { font-size: 22px; }
    .gpca h3 { font-size: 18px; }
    .gpca p { font-size: 15px; }
}

.gpca .header h1 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 82px;
    font-style: italic;
    font-weight: bold;
    line-height: .9;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.gpca .header h2 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 82px;
    font-style: italic;
    font-weight: bold;
    line-height: .9;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.gpca .header h3 {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.gpca .header p {
    color: white;
    font-family: TimesNewRoman, 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.gpca .header h1:first-child,
.gpca .header h2:first-child,
.gpca .header h3:first-child,
.gpca .header p:first-child,
.gpca .header ul:first-child {
    margin-top: 0;
}

.gpca .header h1:last-child,
.gpca .header h2:last-child,
.gpca .header h3:last-child,
.gpca .header p:last-child,
.gpca .header ul:last-child {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .gpca .header h1 {
        font-size: 38px;
    }
    .gpca .header h2 {
        font-size: 38px;
    }
    .gpca .header h3 {
        font-size: 17px;
    }
    .gpca .header p {
        font-size: 17px;
    }
}

.gpca b {
    font-weight: bold;
    text-transform: uppercase;
}

.gpca a,
.gpca a:hover {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.gpca-menu {
    transition: all 200ms ease;
    background: white url(../../flashcab/benchmark/gpca/gpca-menu-btn.png) left center no-repeat;
    cursor: pointer;
    display: block;
    width: 228px;
    color: #212121;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 33px;
    text-align: center;
    text-transform: uppercase;
    margin: 40px auto 0 auto;
    padding: 0 0 0 40px;
}

.gpca-menu:hover {
    transition: all 300ms ease;
    background-color: #212121;
    color: white;
}

#nav2 ul.gpca-nav {
    position: relative;
    overflow: hidden;
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 0 0 0;
}

#nav2 ul.gpca-nav li {
    display: block;
    float: left;
    width: 48.5%;
    line-height: 34px;
    margin: 5px 0;
}

#nav2 ul.gpca-nav li:nth-child(odd) {
    clear: both;
}

#nav2 ul.gpca-nav li:nth-child(even) {
    float: right;
}

@media (max-width: 500px) {
    #nav2 ul.gpca-nav li,
    #nav2 ul.gpca-nav li:nth-child(odd),
    #nav2 ul.gpca-nav li:nth-child(even) {
        float: none;
        width: 100%;
    }
}

#nav2 ul.gpca-nav li a {
    background-color: white;
    color: #414141;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
}

#nav2 ul.gpca-nav li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
}


/* END GPCA STRUCTURE */


/* GPCA MOBILE HIDE */

@media (max-width: 1000px) {
    .gpca .content {
        height: 600px;
        min-height: 600px;
        margin-bottom: 40px;
    }
    .gpca.mobishow .content {
        height: auto;
    }
}

.gpca .mobifade {
    transition: all 900ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 1) 100%);
    border-bottom: 60px solid #313131;
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 400px;
    z-index: 50;
}

@media (max-width: 1000px) {
    .gpca .mobifade {
        display: block;
    }
}

.gpca.mobishow .mobifade {
    transition: all 900ms ease;
    height: 0;
}

.gpca .mobishowbtn,
.gpca .mobishowbtn:hover {
    display: none;
    text-align: center;
    font-weight: normal;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 0;
}

.gpca .mobishowbtn:before {
    content: 'Show More';
}

@media (max-width: 1000px) {
    .gpca .mobishowbtn,
    .gpca .mobishowbtn:hover {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 51;
    }
}

.gpca.mobishow .mobishowbtn:before {
    content: 'Show Less';
}


/* END GPCA MOBILE HIDE */


/* GPCA 01 */

.gpca01 {
    background-color: #313131;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
    padding: 60px 5%;
    z-index: 1;
}

@media (max-width: 1000px) {
    .gpca01 {
        padding: 150px 20px 20px 20px;
    }
}

.gpca01 .bg1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
    background: -moz-linear-gradient(left, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to right, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    position: absolute;
    top: 10px;
    right: 25%;
    bottom: 10px;
    left: 10px;
    z-index: -1;
}

@media (max-width: 1000px) {
    .gpca01 .bg1 {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
        background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        right: 10px;
        bottom: auto;
        height: 100%;
        max-height: 600px;
    }
}

.gpca01 .bg2 {
    position: absolute;
    top: 10px;
    right: 25%;
    bottom: 10px;
    left: 10px;
    z-index: -2;
}

@media (max-width: 1000px) {
    .gpca01 .bg2 {
        right: 10px;
        bottom: auto;
        height: 100%;
        max-height: 600px;
    }
}

.gpca01 .content {
    display: table;
    overflow: hidden;
}

@media (max-width: 1000px) {
    .gpca01 .content {
        display: block;
    }
}

.gpca01 .header {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 25%;
}

@media (max-width: 1000px) {
    .gpca01 .header {
        display: block;
        text-align: left;
        width: 100%;
        margin: 20px auto;
    }
}

.gpca01 .spacer {
    display: table-cell;
    vertical-align: middle;
    width: 5%;
}

@media (max-width: 1000px) {
    .gpca01 .spacer {
        display: none;
    }
}

.gpca01 .txt {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
}

@media (max-width: 1000px) {
    .gpca01 .txt {
        display: block;
        width: 100%;
    }
}


/* END GPCA 01 */


/* GPCA 02 */

.gpca02 {
    background-color: #313131;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
    padding: 20px 5%;
    z-index: 1;
}

@media (max-width: 1000px) {
    .gpca02 {
        padding: 150px 20px 20px 20px;
    }
}

.gpca02 .bg1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
    background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -1;
}

@media (max-width: 1000px) {
    .gpca02 .bg1 {
        max-height: 500px;
    }
}

.gpca02 .bg2 {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -2;
}

@media (max-width: 1000px) {
    .gpca02 .bg2 {
        max-height: 500px;
    }
}

.gpca02 .content {
    position: relative;
    overflow: hidden;
}

.gpca02 .vdo {
    box-shadow: 0 0 20px black;
    width: 95%;
    max-width: 980px;
    margin: 20px auto;
}

.gpca02 .vdo .vdopad {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 56.25% 0;
}

.gpca02 .vdo .vdopad iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gpca02 .vdo .vdopad video {
    width: 100% !important;
    height: auto !important;
}

.gpca02 .header {
    text-align: center;
    width: 95%;
    max-width: 980px;
    margin: 20px auto;
}

@media (max-width: 1000px) {
    .gpca02 .header {
        text-align: left;
    }
}

.gpca02 .group {}

.gpca02 .col1 {
    width: 23%;
    float: left;
    margin: 0 2% 0 0;
}

.gpca02 .col2 {
    width: 46%;
    float: left;
    margin: 0 2%;
}

.gpca02 .col3 {
    width: 23%;
    float: left;
    margin: 0 0 0 2%;
}

@media (max-width: 1000px) {
    .gpca02 .col1,
    .gpca02 .col2,
    .gpca02 .col3 {
        width: 100%;
        float: none;
        margin: 20px 0;
    }
}


/* END GPCA 02 */


/* GPCA 03 */

.gpca03 {
    background-color: #313131;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
    padding: 20px 5%;
    z-index: 1;
}

@media (max-width: 1000px) {
    .gpca03 {
        padding: 150px 20px 20px 20px;
    }
}

.gpca03 .bg1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
    background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -1;
}

@media (max-width: 1000px) {
    .gpca03 .bg1 {
        max-height: 500px;
    }
}

.gpca03 .bg2 {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -2;
}

@media (max-width: 1000px) {
    .gpca03 .bg2 {
        max-height: 500px;
    }
}

.gpca03 .header {
    text-align: center;
}

.gpca03 .content {
    position: relative;
}

.gpca03 .gal {
    width: 95%;
    max-width: 980px;
    margin: 20px auto;
}

.gpca03 .gal .pad {
    box-shadow: 0 0 20px black;
    width: 100%;
}

.gpca03 .gal img {
    width: 100%;
    height: auto;
}

.gpca03 .gal .caption,
.gpca03 .gal .caption p {
    color: #ccc;
    font-size: 12px;
    text-align: right;
    margin: 0;
    padding: 0;
}

.gpca03 .galpager {
    list-style-type: none;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}

.gpca03 .galpager li {
    transition: all 500ms ease;
    background-color: white;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 2px;
    margin: 0 5px;
}

.gpca03 .galpager li.active {
    transition: all 500ms ease;
    height: 8px;
}

.gpca03 .group {
    margin: 40px auto 0 auto;
}

.gpca03 .col {
    float: left;
    width: 18%;
    margin: 0 1%;
}

@media (max-width: 1280px) {
    .gpca03 .col {
        float: none;
        width: 100%;
        margin: 50px auto;
    }
}

@media (max-width: 600px) {
    .gpca03 .col {
        margin: 20px auto;
    }
}

.gpca03 .img {
    width: 100%;
}

@media (max-width: 1280px) {
    .gpca03 .img {
        float: left;
        width: 25%;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .gpca03 .img {
        float: none;
        width: auto;
        max-width: 255px;
        margin: 20px auto 0 auto;
    }
}

.gpca03 .img .pad {
    box-shadow: 0 0 20px black;
}

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

.gpca03 .img .caption,
.gpca03 .img .caption p {
    color: #ccc;
    font-size: 12px;
    text-align: right;
    margin: 0;
    padding: 0;
}

.gpca03 .txt {
    padding: 20px 0 0 0;
}

@media (max-width: 1280px) {
    .gpca03 .txt {
        float: right;
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .gpca03 .txt {
        float: none;
        width: 100%;
        max-width: 350px;
    }
}


/* END GPCA 03 */


/* GPCA 04 */

.gpca04 {
    background-color: #313131;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
    padding: 60px 5%;
    z-index: 1;
}

@media (max-width: 1000px) {
    .gpca04 {
        padding: 150px 20px 20px 20px;
    }
}

.gpca04 .bg1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
    background: -moz-linear-gradient(left, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to right, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    position: absolute;
    top: 10px;
    right: 25%;
    bottom: 10px;
    left: 10px;
    z-index: -1;
}

@media (max-width: 1000px) {
    .gpca04 .bg1 {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
        background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
        right: 10px;
        bottom: auto;
        height: 100%;
        max-height: 600px;
    }
}

.gpca04 .bg2 {
    position: absolute;
    top: 10px;
    right: 25%;
    bottom: 10px;
    left: 10px;
    z-index: -2;
}

@media (max-width: 1000px) {
    .gpca04 .bg2 {
        right: 10px;
        bottom: auto;
        height: 100%;
        max-height: 600px;
    }
}

.gpca04 .header {}

@media (max-width: 1000px) {
    .gpca04 .header {
        text-align: center;
        width: 95%;
        margin: 20px auto;
    }
}

.gpca04 .group {
    width: 95%;
    max-width: 1250px;
    margin: 40px 0 40px auto;
}

@media (max-width: 1000px) {
    .gpca04 .group {
        width: 95%;
        margin: 20px auto;
    }
}

.gpca04 .img {
    float: left;
    width: 33.6%;
}

@media (max-width: 1000px) {
    .gpca04 .img {
        float: none;
        width: 100%;
        margin: 20px 0 0 0;
    }
}

.gpca04 .img .pad {
    box-shadow: 0 0 20px black;
}

.gpca04 .img .caption,
.gpca04 .img .caption p {
    color: #ccc;
    font-size: 12px;
    text-align: right;
    margin: 0;
    padding: 0;
}

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

.gpca04 .txt {
    float: right;
    width: 62%;
}

@media (max-width: 1000px) {
    .gpca04 .txt {
        float: none;
        width: 100%;
        padding: 20px 0 0 0;
    }
}


/* END GPCA 04 */


/* GPCA 05 */

.gpca05 {
    background-color: #313131;
    overflow: hidden;
    position: relative;
    margin: 60px auto;
    padding: 20px 5%;
    z-index: 1;
}

@media (max-width: 1000px) {
    .gpca05 {
        padding: 150px 20px 20px 20px;
    }
}

.gpca05 .bg1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#313131+0,313131+100&0+0,0.5+25,1+100 */
    background: -moz-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    background: linear-gradient(to bottom, rgba(49, 49, 49, 0) 0%, rgba(49, 49, 49, 0.5) 25%, rgba(49, 49, 49, 1) 100%);
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -1;
}

@media (max-width: 1000px) {
    .gpca05 .bg1 {
        max-height: 500px;
    }
}

.gpca05 .bg2 {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    height: 100%;
    max-height: 1400px;
    z-index: -2;
}

@media (max-width: 1000px) {
    .gpca05 .bg2 {
        max-height: 500px;
    }
}

.gpca05 .header {
    text-align: center;
}

.gpca05 .content {
    position: relative;
}

.gpca05 .gal {
    width: 95%;
    max-width: 980px;
    margin: 20px auto;
}

.gpca05 .gal .pad {
    box-shadow: 0 0 20px black;
    width: 100%;
}

.gpca05 .gal img {
    width: 100%;
    height: auto;
}

.gpca05 .gal .caption,
.gpca05 .gal .caption p {
    color: #ccc;
    font-size: 12px;
    text-align: right;
    margin: 0;
    padding: 0;
}

.gpca05 .galpager {
    list-style-type: none;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}

.gpca05 .galpager li {
    transition: all 500ms ease;
    background-color: white;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 2px;
    margin: 0 5px;
}

.gpca05 .galpager li.active {
    transition: all 500ms ease;
    height: 8px;
}

.gpca05 .group {
    max-width: 1120px;
    margin: 40px auto 0 auto;
}

.gpca05 .col {
    float: left;
    width: 23%;
    margin: 0 1%;
}

@media (max-width: 1280px) {
    .gpca05 .col {
        float: none;
        width: 100%;
        margin: 50px auto;
    }
}

@media (max-width: 600px) {
    .gpca05 .col {
        margin: 20px auto;
    }
}

.gpca05 .img {
    width: 100%;
}

@media (max-width: 1280px) {
    .gpca05 .img {
        float: left;
        width: 25%;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .gpca05 .img {
        float: none;
        width: auto;
        max-width: 255px;
        margin: 20px auto 0 auto;
    }
}

.gpca05 .img .pad {
    box-shadow: 0 0 20px black;
    width: 100%;
}

.gpca05 .img .caption,
.gpca05 .img .caption p {
    color: #ccc;
    font-size: 12px;
    text-align: right;
    margin: 0;
    padding: 0;
}

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

.gpca05 .txt {
    padding: 20px 0 0 0;
}

@media (max-width: 1280px) {
    .gpca05 .txt {
        float: right;
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .gpca05 .txt {
        float: none;
        width: 100%;
        max-width: 350px;
    }
}

/*MEETINGS PAGE STYLES*/

#sub #main .area01 .area01 {
    padding: 0px 5%;
}

.area01 .cap02.meetings {
    display: none;
}

.area01 .cap01 {
    display: none; 
}

.cap02.meetings{
    top: 0px;
    margin: 40px auto 30px!important;
    height: 351px;
}

.cap02.meetings .cap02icon {
    background: white url(../../flashcab/benchmark/cap/MeetingsApp-Cap-Icon2.png) center center no-repeat!important;
    position: relative!important;
    margin: 0px auto!important;
    width: 350px!important;
    height: 350px!important;
    top: 0;
}

.gpca h2{
    /* word-wrap: break-word; */
    /*font-size: 17px;*/
}

.gpca03.meetings1 ,.gpca04.meetings2, .gpca04.meetings3, .gpca04.meetings4, .gpca04.meetings5{margin: 30px auto 0px!important;}

#sub #main .area01 {
    padding: 0px 5% 15px!important;
}


@media (max-width: 699px){
    .cap02.meetings .cap02icon {
        background-size: 200px 200px!important;
        width: 200px!important;
        height: 200px!important;
        top: auto!important;
    }
    .cap02.meetings{
        height: 200px;
        margin: 20px auto!important;
        top: auto;
    }
    #sub #main .areagroup .area01.clearfix {padding: 0px}
    .gpca03.meetings1 ,.gpca04.meetings2, .gpca04.meetings3, .gpca04.meetings4, .gpca04.meetings5{
        padding: 60px 30px;
    }
}


/*END MEETINGS PAGE STYLES*/

/* OPEN TABLE*/

#opentablebox {
    padding: 35px 0 30px 0;
    margin: 25px auto;
    width: 80%;
    border-top: 1px solid rgba(219, 211, 198,.3);
    border-bottom: 1px solid rgba(219, 211, 198,.3);
    background-color: rgba(86, 85, 94, 1);
    text-align: center;
    color: white;
}

#opentablebox p {
    font-size: 22px;
    line-height: 20px;
    margin: 5px 0 5px 0;
    text-transform: uppercase;
    font-weight: bold;
}

#opentablebox select {
    width: 100%;
    height: 20px;
    padding-right: 5px;
    padding-left: 0px;
}

#opentablebox select,
#opentablebox input {
    -webkit-appearance: none;
    background-color: #fff;
    border: none;
    border-radius: 0;
    color: #333;
    font-size: 14px;
    line-height: 16px;
    max-width: 80%;
    height: 26px;
    padding: 5px 15px;
}

#opentablebox .OT_TableButton {
    background-color: transparent;
    width: 239px;
    height: auto;
    padding: 0;
    max-width: 100%;
    color: #fff;
}

#opentablebox .col-sm-3 {
    height: 50px;
}

#opentablebox .col-md-8 {
    padding-right: 5px;
    padding-left: 5px;
}

#opentablebox .OT_button {
    text-align: center;
}

@media only screen and (max-width: 990px) {
    #opentablebox .OT_button {
        padding: 25px 0 0 0;
    }
}

@media only screen and (max-width: 768px) {
#opentablebox .col-md-8, #opentablebox .col-md-4, #opentablebox .col-sm-6 {
    width: 100%;
}
}

#opentablebox row {}

/*END OPEN TABLE*/
/* END GPCA 05 */

#loaderoverlay {
    background: rgba(0, 0, 0, .9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
     z-index: 1000;
}

#loaderanimate {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 180px;
    width: 290px;
    margin: -90px 0 0 -145px;
    display: block;
    overflow: hidden;
    background: url(../../flashcab/respond/001e.gif) no-repeat;
}
@media (max-width: 1163px){
    .col-sm-3{
        width: 50%;
        text-align: center;
        margin: 0px auto;
        padding-bottom: 20px;
    }
    .col-sm-4{
        width: 100%;
        padding-bottom: 40px;
    }
    .col-sm-6{width: 100%; padding-bottom: 40px;}
}
@media (max-width: 768px){
    .col-sm-3 {
        width: 100%;
        float: none;
        margin: 0px auto;
        position: relative;
        display: block;
        text-align: center;
    }
}

/* BOILERPLATE OVERRIDES */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
.nobr { white-space: nowrap; }
.nobr a { display: inline !important; white-space: nowrap; }
.scaleme { overflow: hidden; }
/* END BOILERPLATE OVERRIDES */

.eSuite_inline_iFrame {margin: 0 3.4%;}


/* FIXED MENU BUTTON */

#fixmenu {
    transition: all 500ms ease;
    background-color: #EB7231;
    border-radius: 100%;
    display: none;
    overflow: Hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    z-index: 9998;
    color: #fff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
    #fixmenu { display: block; bottom: 10px; right: 10px; width: 55px; height: 55px; font-size: 12px; line-height: 12px; }
}
#fixmenu:hover {
    transition: all 500ms ease;
    color: #EB7231;
    background-color: white;
}

#fixmenu .fixmenubars {
    display: block;
    overflow: hidden;
    width: 65px;
    height: 24px;
    padding: 0;
    margin: 12px 0 0 0;
    font-size: 30px;
    line-height: 24px;
    text-align: center;
}
@media only screen and (max-width: 1023px) {
    #fixmenu .fixmenubars { width: 55px; height: 17px; margin: 13px 0 0 0; font-size: 17px; line-height: 14px; }
}

/* END FIXED MENU BUTTON */

/*MOBI TOP BAR*/
.mobiTopBar{
    display: none;
    width: 100%;
    min-height: 40px;
    position: relative;
    font-weight: normal;
    top: 0px;
}

@media only screen and (max-width: 767px){
    .mobiTopBar{
        display: block;
    }
}

.phoneBtn{
    width: 50%;
    background-color: rgba(63, 62, 71, 0.85);
    float: left;
    color: white!important;
    height: 40px;
    text-align: center;
    line-height: 41px;
    font-size: 18px;
    padding: 0;
}
.phoneBtn:before{
    content: "\A";
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    background: rgba(56, 55, 63, .7) url(templates/Phone-Icon.png) center center no-repeat;
}

@media only screen and (max-width: 414px){
    .phoneBtn{
        text-align: left;
        padding: 0px 0px 0 14%;
    }   
}
@media only screen and (max-width: 345px){
    .phoneBtn:before{
        content: "\A";
        position: absolute;
        width: 30px;
        height: 40px;
        left: 0;
        background: rgba(56, 55, 63, .7) url(templates/Phone-Icon.png) center center no-repeat;
        background-size: 20px 20px;
    }
    .phoneBtn{
        padding: 0px 0px 0 12%;
    }
}

.resBtn, .resBtn:hover, .resBtn:active, .resBtn:focus{
    width: 50%;
    background-color: #EB7231;
    color: white;
    height: 40px;
    text-align: center;
    line-height: 41px;
    font-size: 18px;
    float: left;
    text-transform: uppercase;
    text-decoration: none;
}

@media only screen and (max-width: 320px){
    .phoneBtn:before{display: none;}
    .phoneBtn{
        text-align: center;
        padding: 0;
        font-size: 16px;
    }
    .resBtn{
        font-size: 16px;
    }   
}

/*END MOBI TOP BAR*/

/*DESKTOP CALENDAR OF EVENTS*/
.calendar-of-events {
    margin: 50px auto;
    text-align: center;
    max-width: 1700px;
}

.calendar-of-events .month-name{
    font-size: 48px;
    padding-bottom: 35px;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    line-height: 34px;
}

.calendar-of-events div.month-name > span:nth-child(1) {
    float: left;
    margin-left: 5%;
    font-size: 32px;
    border: 1px solid rgba(216, 216, 214,1);
    border-radius: 50px;
    height: 50px;
    width: 50px;
    line-height: 48px;
}

.calendar-of-events div.month-name .fa-angle-left:before{
    margin-left: -4px;
}

.calendar-of-events div.month-name .fa-angle-right:before{
    margin-right: -2px;
}

.calendar-of-events div.month-name > span:nth-child(2) {
    float: right;
    margin-right: 5%;
    font-size: 32px;
    border: 1px solid #BABABE;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    line-height: 46px;
}

.calendar-of-events div.month-name > span:hover{
    background: #56555e;
    /* color: #29282e; */
    transition: all 250ms ease;
    border: 1px solid #56555e;
}

.calendar-of-events div.month-name > span > a:hover{
    color: white!important;
    transition: all 250ms ease;
}
.calendar-of-events div.month-name > span:nth-child(1) > a, .calendar-of-events div.month-name > span:nth-child(2) > a {
    color: #BABABE;
    padding: 8px 19px;
    text-align: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

.calendar-of-events .filter {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: bold;
}

.calendar-of-events select.categoryFilter{
    background: url(../../flashcab/calendar/arrow-down-dark.png) right center no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-attachment: scroll;
    border-radius: 4px;
    background-position: right 8px center;
    background-repeat: no-repeat;
    padding: 5px 10px;
    background-color: rgba(117, 114, 113,.05);
    border: 1px solid rgba(216, 216, 214,1);
    width: 200px;
    font-size: 15px;
    font-weight: normal;
}

.calendar-of-events select:focus, .calendar-of-events select:active{
    outline: none;
    box-shadow: none;
}

.calendar-of-events td, .calendar-of-events table, .calendar-of-events tr, .calendar-of-events tbody{
    border-color: rgba(216, 216, 214,1);
    font-size: 15px;
    text-align: left;
    border: 1px solid #96959E;
}

.calendar-of-events tr{
    box-sizing: border-box;
    color: #fff;
    font-size: 12px;
    padding: 0 0 .5em;
    vertical-align: top;
    width: 14.28%;
}

.calendar-of-events table{
    border: none;
    width: 90%;
    margin: 0 auto!important;
}

@media only screen and (max-width: 767px){
    .calendar-of-events table{width: 100%;}
}

.calendar-of-events .weekday-header td{
        background-color: #56555e;
        height: 10px;
        letter-spacing: 1px;
        padding: 4px 0;
        text-align: center;
        text-transform: uppercase;
        width: 14.28%;
        font-weight: bold;
        color: white;
        border-color: #96959E;
}

.calendar-of-events .day-number{
    background: rgba(86, 85, 94, .5);
    padding: 4px 9px 6px;
    text-align: left;
    font-weight: 600;
}

.calendar-of-events td.date{
    height: 140px;
    -webkit-transition: all .2s cubic-bezier(.55,.085,.68,.53);
    transition: all .2s cubic-bezier(.55,.085,.68,.53);
}

.calendar-of-events td.date:hover{
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.calendar-of-events .date-event{
    margin: 2%;
    padding: 6px 8px;
    border-radius: 4px;
}

.calendar-of-events .date-event:last-child{
    border-bottom: none;
}

.calendar-of-events .date-event-title {
    font-weight: bold;
    color: white;
}

.calendar-of-events .date-event-time{
    color: white;
    font-weight: bold;
}

.calendar-of-events td.non-date {
    background: rgba(117, 114, 113,.05);
}

.modal-footer.text-center{
    border: none;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0px;
}

.modal-content .event-image{
    float: left;
    padding-right: 20px;
}

.modal-content .event-details {
    margin-right: 22px;
    min-height: 249px;
}

.modal-content .event-title{
    margin: 0px 0px 10px;
}

.modal-content .event-title h3{
    color: #EB7231;
}
.modal-content, .event-image img{
    border-radius: 4px;
    color: #29282e;
}

.event-description p{
    margin: 15px 0px;
}

.event-description ol {
    text-align: left;
}

.event-description ol a {
    padding: 0px 15px;
    font-weight: bold;
    border-radius: 4px;
}

button.btn.btn-secondary {
    background-color: transparent;
    color: transparent;
    background: url(../../flashcab/calendar/close.png) no-repeat;
    line-height: 0;
    width: 24px;
    height: 24px;
    border: none;
}

button.btn.btn-secondary:hover{
    background-color: transparent;
    color: transparent;
}

button.btn.btn-secondary:focus, button.btn.btn-secondary:active{
    outline: none;
    box-shadow: none;
}

td.date.date-past .day-number {
    /* background: rgba(216, 215, 216,.2); */
    /* color: #999; */
    opacity: .2;
}

.calendar-of-events td.date.date-past:hover{
    box-shadow: none;
}

.calendar-of-events td.date.date-past .date-event{
    opacity: .2;
}

td.date.date-present{
    background: rgba(117, 114, 113,.05);
}

td.date.date-present .day-number {
    background: rgba(219, 211, 198,.8);
    color: #29282e;
}

.calendar-list-content .event-image {
    float: left;
    margin-right: 20px;
}

.calendar-list-content .event-details {
    text-align: left;
}

.calendar-list-content .content-list-event {
    min-height: 290px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(86, 85, 94, 1);
    padding-bottom: 40px;
}

.calendar-list-content .content-list-event:last-child{
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
    min-height: 250px;
}

.calendar-list-content {
    max-width: 1400px;
    margin: 0px auto;
    clear: both;
}

.calendar-list-content h3{
    margin-bottom: 15px;
}

.filter-calendar.input-daterange {
    max-width: 1000px;
    margin: 0px auto;
}

.filter-calendar-search {
    border-radius: 4px;
    color: #dbd3c6;
    background-color: transparent;
    border: 2px solid #dbd3c6;
    font-weight: bold;
    text-align: center;
    max-width: 150px;
    text-transform: uppercase;
    padding: 10px 13px;
    margin: 0px auto;
    clear: both;
}

.filter-calendar-search ol a:hover {
    background: #dbd3c6;
    color: #29282e;
    border: #dbd3c6;
}

.calendar-list-filter {
    margin-bottom: 30px;
}

/*END DESKTOP CALENDAR OF EVENTS*/

/*MOBILE CALENDAR OF EVENTS*/

.calendar-of-events .filter-title, .content-none p {
    font-weight: bold;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 2%;
}
.calendar-of-events .filter-item.event-today, .calendar-of-events .filter-item.event-week, .calendar-of-events .filter-item.event-date, .calendar-of-events .filter-new-button {
    transition: all 250ms ease;
    background-color: #EB7231;
    display: inline-block;
    color: #fff;
    line-height: 35px;
    text-transform: uppercase;
    padding: 0px 15px;
    border: 2px solid #EB7231;
    font-weight: bold;
    border-radius: 4px;
    max-width: 300px;
    margin: 0px 10px 30px;
}
@media only screen and (max-width: 767px){
.calendar-of-events .filter-item.event-today, .calendar-of-events .filter-item.event-week, .calendar-of-events .filter-item.event-date, .calendar-of-events .filter-new-button {
    max-width: 300px;
    margin: 0px auto 15px;
    display: block;
}
}
.calendar-of-events .filter-item.event-today:hover, .calendar-of-events .filter-item.event-week:hover, .calendar-of-events .filter-item.event-date:hover{
    background-color: transparent;
    color: #EB7231;
}


.mobile-content-category-title {
    line-height: 50px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    clear: both;
}

.mobile-content-category{border-bottom: 1px solid #d8d7d8;}
.mobile-content-category:last-child{border-bottom: none;}

.calendar-of-events .mobile-event-details {
    max-width: 300px;
    margin: 0px auto;
    text-align: justify;
}

.calendar-of-events .mobile-event-content{
    display: block;
    background: rgba(63, 62, 71, 0.7);
    padding: 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
}
.calendar-of-events .mobile-event-title {
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin: 0px;
    border-top: 1px dashed rgba(219, 211, 198,.3);
    background: rgba(86, 85, 94, 1);
    font-size: 20px;
    line-height: 35px;
    font-weight: 600;
}

.calendar-of-events .mobile-event-title:last-child{
    border-bottom: none;
}

.calendar-of-events .mobile-event-image {
    margin: 1% 0 15px 0;
}

.mobile-event-image img{
    border-radius: 4px;
    width: 300px;
    max-width: 100%;
}


.calendar-of-events .mobile-event-description p {
    font-size: 15px;
    line-height: 22px;
    margin: 15px 0px;
}

.calendar-of-events .mobile-event-description ol a {
    width: 300px;
    border-radius: 4px;
    color: #dbd3c6;
    background-color: transparent;
    border: 2px solid #dbd3c6;
    font-weight: bold;
    max-width: 300px;
    text-align: center;
}

 .calendar-of-events .mobile-event-description ol a:hover {
    background: #dbd3c6;
    color: #29282e;
    border: 2px solid #dbd3c6;
}

@media only screen and (max-width: 350px){
    .calendar-of-events .mobile-event-description ol a{
        width: 100%;
    }
}

@media only screen and (max-height: 414px){
    .calendar-of-events .mobile-event-description p{
        margin: 0px 0px 15px;
    }
    .mobile-event-image img{
        width: auto;
        float: left;
        margin-right: 20px;
    }
    .calendar-of-events .mobile-event-details {
        max-width: 100%;
        margin: 0px auto;
        text-align: justify;
    }
    .calendar-of-events .mobile-event-image{
        margin: 0px;
    }   
    .calendar-of-events .mobile-event-description ol{
        text-align: left;
    }
}

 .calendar-of-events .select-item {
    transition: all 250ms ease;
    background-color: #EB7231;
    display: block;
    color: #fff;
    line-height: 35px;
    text-transform: uppercase;
    padding: 0px 15px;
    border: 2px solid #EB7231;
    font-weight: bold;
    border-radius: 4px;
    width: 40%;
    float: left;
    margin: 0% 5% 5%;
}

.select-item.active{
    background-color: #9E9E9E;
    border: #9E9E9E 2px solid;
}

 .calendar-of-events .datepicker.datepicker-inline {
    width: 50%;
    margin: 0px auto;
    float: left;
    text-align: center;
    position: relative;
}

@media only screen and (max-width: 768px){
    .calendar-of-events .datepicker.datepicker-inline {
        width: 90%;
        float: none;
        position: relative;
    }
}

 .calendar-of-events th.datepicker-switch {
    font-size: 24px;
    padding: 6px;
    margin: 0px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.filter-calendar th.prev, .filter-calendar th.next {
    font-size: 30px;
    border: 1px solid rgba(216, 216, 214,1);
    border-radius: 45px;
    height: 45px;
    width: 45px;
    position: absolute;
    line-height: 32px;
}

.filter-calendar th.prev{left: 6%;}

.filter-calendar th.next{
    right: 6%;
}

@media only screen and (max-width: 768px){
    .filter-calendar th.prev{left: 1%;}

    .filter-calendar th.next{
        right: 1%;
    }
}

.filter-calendar thead tr:nth-child(2) {
    background: transparent;
    border: none;
    padding: 0;
    height: 55px;
    border-radius: 50%;
}

.filter-calendar thead tr:nth-child(3){
    margin-top: 20px;
    position: relative;
    border-bottom: 1px solid rgba(216, 216, 214,1);
}

.filter-calendar thead tr:nth-child(3) th {
    /* background: rgba(216, 215, 216,.6); */
    border-radius: 0px;
    font-size: 16px;
    padding: 14px 0px;
}


.filter-calendar .datepicker table tr td.new, .filter-calendar .datepicker table tr td.old {
    color: rgba(216, 215, 216,.99);
}

.calendar-of-events .filter-calendar td, .calendar-of-events .filter-calendar table, .calendar-of-events .filter-calendar tr, .calendar-of-events .filter-calendar tbody{
    border: none;
    font-weight: normal;
    transition: all 250ms ease;
    font-size: 16px;
}

.filter-calendar tbody {
    font-weight: bold;
    border: none;
    border-top: 1px solid rgba(216, 216, 214,1);
}

.filter-calendar tbody td{
    height: 42px;
}

.filter-calendar td.active.selected.range-start.day, td.selected.range-end.day, .datepicker table tr td.selected, td.selected.range-start.day, .datepicker table tr td span.active, .datepicker table tr td.range:hover {
    border-radius: 0;
    text-shadow: none!important;
    font-weight: bold;
    line-height: 32px;
    background: #9E9E9E;
    font-size: 18px;
    background-color: #757271!important;
    color: white;
}

td.selected.range-end.day:hover{
    background-image: none;
}
.datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover {
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
    background: rgba(216, 215, 216,.6);
}
.datepicker tfoot tr th:hover, span.month.focused.active{
    background: #757271!important;
    box-shadow: none;
    border: none!important;
    border-color: transparent!important;
    line-height: 50px;
}

.datepicker .datepicker-switch:hover{
    background: white!important;
    line-height: auto;
}

.mobile-content-events {
    display: none;
}

/*END MOBILE CALENDAR OF EVENTS*/

.scaleme img{
    object-fit: cover;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.compact-object-fit{
    background-size: cover;
    background-position: center center;
}

.compact-object-fit img{
    visibility:hidden;
}

/* CMS Component Font Color Overide For Dark Sites*/
table.CmsAreaToolbar {
    /* margin-top: 40px; */
    background: #ccc;
}

.CmsComponentToolbar tbody {
    background: #eee;
    font-weight: 600;
    line-height: 1.5;
}
/* END CMS Component Font Color Overide */

/* ALERT BANNER */
.banner-container {
    position:  relative;
    width:  100%;
    font-family:  'Raleway', sans-serif;
    font-size: 14px;
    line-height:  1;
    transition: all 200ms ease;
}

.banner-container.red {
    background: #e50000;
    border-bottom: 2px solid red;
    background: rgba(229, 0, 0,.95);

}

.banner-container.red:hover {
    background: red;
}

.banner-container.yellow {
    background: #FEDA73;
    background: rgba(254, 218, 115,.95);
    border-bottom: 2px solid #FEDE81;
}

.banner-container.yellow:hover {
    background: #FEDE81;
}

.banner-container.white {
    background: rgba(255,255,255,.95);
    border-bottom: 2px solid white;
}

.banner-container.white:hover {
    background: white;
}

.banner-link {
    display:  block;
    padding: 10px 28px 8px 15px;
    z-index:  1;
    text-decoration:  none;
}

.banner-container.red .banner-link {
    color:  white;
}

.banner-container.yellow .banner-link {
    color: #252525;
}


.banner-container.yellow .banner-link .banner-subtitle {
    color: #454545;
}

.banner-container.white .banner-link{
    color: #657679;
}

.banner-container.white .banner-link .banner-subtitle {
    color: #454545;
}

.banner-title {
    font-weight:  bold;
    font-size: 15px;
    text-transform:  uppercase;
    margin-bottom: 2.5px;
    max-width: 1300px;
    margin: 0px auto 5px;
}

.banner-subtitle {
    font-weight: 500;
    max-width: 1300px;
    margin:  0px auto;
}

.banner-container .banner-close {
    background:  url(templates/alert-close.png) center center no-repeat;
    position:  absolute;
    z-index:  999;
    width: 32px;
    height: 32px;
    top: 5px;
    right: 15px;
    cursor:  pointer;
}

.banner-container.red .banner-close {
    background:  url(templates/alert-close-inv.png) center center no-repeat;
}

@media only screen and (max-width: 767px){
    .banner-container .banner-close {
        right: 0;
        top: 0;
    }
}

/* END ALERT BANNER */

/* COUNTDOWN WIDGET */
#countdownholder{
    position: relative;
}

.countdown {
    position: relative;
    top:0px;
    margin: 0 auto;
    width: 100%;
}

.countdown {

    line-height: .8em;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

.countdown {
    color: #ebad4c;
    line-height: 1.4;
    padding: 8px 0 0;
}

.countDownHolder {
    text-align:  center;
}

.countDownHolder label {
    font-weight: 300;
    line-height: 42px;
    text-align:  center;
    color: white;
    font-size: 56px;
    margin: 10px 0 20px;
    line-height: 56px;
    border-bottom: none;
    padding: 0;
}

.countdown .ce-days,
.countdown .ce-hours,
.countdown .ce-minutes,
.countdown .ce-seconds,
.countdown .ce-dseconds,
.countdown .ce-mseconds {
    font-size: 45px;
    text-shadow: 1px 1px 3px #000;
    text-align: center;
    letter-spacing: 0.05em;
    font-family: 'Quattrocento Sans', sans-serif;
    line-height:  1;
}

.countdown .ce-days-label,
.countdown .ce-hours-label,
.countdown .ce-minutes-label,
.countdown .ce-seconds-label,
.countdown .ce-dseconds-label,
.countdown .ce-mseconds-label {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    text-shadow: 1px 1px 2px #333;
    color: white;
    font-family: 'Quattrocento Sans', sans-serif;
    text-transform: uppercase;
    margin: 5px 0;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
}

.countdown .ce-dseconds {
    display: inline-block;
    width: 50px;
}

.countdown .ce-mseconds {
    display: inline-block;
    width: 50px;
}

.countdown .col {
    padding: 20px 20px;
    margin: 0 10px;
    display: inline-block;
    min-width: 58px;
    background: rgba(50, 50, 50,.9);
    box-shadow: 1px 1px 10px #000;
}

@media only screen and (min-width: 1px) and (max-width: 767px) {
    .countdown .ce-days,
    .countdown .ce-hours,
    .countdown .ce-minutes,
    .countdown .ce-seconds,
    .countdown .ce-dseconds,
    .countdown .ce-mseconds {
        font-size: 30px;
        text-align: center;
        letter-spacing: 0.05em;
    }

    .countdown .ce-days-label,
    .countdown .ce-hours-label,
    .countdown .ce-minutes-label,
    .countdown .ce-seconds-label,
    .countdown .ce-dseconds-label,
    .countdown .ce-mseconds-label {
        display: block;
        font-size: 12px;
        text-align: center;
    }

    .countdown .col {
        display: block;
        padding: 10px;
        margin: 5px;
        display: inline-block;
        min-width: 58px;
        background: rgb(0, 0, 0);
        background: rgba(50, 50, 50,.9);
    }

    .countDownHolder label{
        font-size: 32px;
        line-height: 1;
        margin:  10px 0;
    }
    
    .countDownHolder + .spacerAfter {
        display:  none;
    }
}

/* COUNTDOWN WIDGET */

/*PACKAGES APP ENHANCEMENT*/

.upaNew {
    margin: 65px auto;
    width: 100%;
    max-width: 1560px;
    text-align: left;
}

.upaNew .header-text {
    text-align:  center;
    max-width: 1360px;
    margin: 0 auto 20px;
}

.upaNew .upa h1 {
    font-size: 46px;
    font-weight: 200;
    border-bottom: 1px solid #a8a8a8;
    padding-bottom: 15px;
    margin: 0 0 15px;
}

.upaNew .header-text p {
    text-transform:  uppercase;
    margin: 0;
}

@media (max-width: 1024px) {
    .upaNew {
        text-align: center;
    }
    .upaNew .upadets{
        margin: 30px auto;
        background: rgba(63, 62, 71, 0.85);
    }
}

.upaNew .upaButton-wrap {
    position:  absolute;
    right: 0;
    max-width:  490px;
    z-index:  9;
}

@media (max-width: 1024px) {
    .upaNew .upaButton-wrap  {
        max-width: none;
        position: relative;
        width: 90%;
        right: auto;
        margin:  0 auto;
    }
}

.upaNew .upaButtons .booknow {
    height: 40px;
}

@media (max-width: 1024px) {
    .upaNew .upaButtons .booknow {
        display: none;
    }
}

.upaNew .upaButton-wrap a {
    transition: all 250ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f09869+0,d6682d+100 */
    background: rgb(240,152,105); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(240,152,105,1) 0%, rgba(214,104,45,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(240,152,105,1) 0%,rgba(214,104,45,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(240,152,105,1) 0%,rgba(214,104,45,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09869', endColorstr='#d6682d',GradientType=0 ); /* IE6-9 */
    color: white;
    display: block;
    float: right;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    padding: 10px;
    min-width: 240px;
    border: 1px solid #F2A57B;
    border-bottom: 4px solid #F2A57B;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
}

.upaNew .upaButton-wrap a:hover {
    transition: all 500ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6682d+0,f09869+100 */
    background: rgb(214,104,45); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(214,104,45,1) 0%, rgba(240,152,105,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(214,104,45,1) 0%,rgba(240,152,105,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(214,104,45,1) 0%,rgba(240,152,105,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6682d', endColorstr='#f09869',GradientType=0 ); /* IE6-9 */
    color: white;
}

.upaNew .upaButton-wrap a:nth-child(2){
    margin: 0 10px 0 0;
}

.upaNew .upaButton-wrap a:nth-child(3) {
    margin: 10px 0 0 0;
}

.upaNew .upaButton-wrap a:nth-child(4) {
    margin: 10px 10px 0 0;
}

@media (max-width: 1024px) {
    .upaNew .upaButton-wrap a, .upaNew .upaButton-wrap a:nth-child(2), .upaNew .upaButton-wrap a:nth-child(3), .upaNew .upaButton-wrap a:nth-child(4) {
        width: 47%;
        display: inline-block;
        font-size: 17px;
        line-height: 20px;
        padding: 10px 0;
        margin: 5px 1%;
        float: none;
    }
}

@media (max-width: 767px) {
    .upaNew .upaButton-wrap a, .upaNew .upaButton-wrap a:nth-child(2), .upaNew .upaButton-wrap a:nth-child(3), .upaNew .upaButton-wrap a:nth-child(4) {
        width: 100%;
        margin: 5px auto;
    }
}

.upaNew .upaButtons + .tease {
    padding: 45px 10% 30px 2.5%;
}

.upaNew .tease {
    padding:  0 10% 30px 2.5%;
}


@media (max-width: 1024px) {
    .upaNew .upaButtons + .tease, .upaNew .tease  {
        padding: 0 0 20px;
     }
}

.upaNew .expand {
    padding: 10px 0 0;
}

.upaNew .seeit {
    margin: 5px auto 0;
    cursor:  pointer;
}

.upaNew .seeitMobile {
    background: url(../../flashcab/benchmark/upa/upa-tog.png) left bottom no-repeat;
    display: none;
    float: left;
    color: white;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    text-transform: uppercase;
    width: 67.5%;
    padding: 0 20px 0 40px;
    margin: 10px 0 0 2.5%;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .upaNew .seeitMobile {
        clear: both;
        float: none;
        display: inline-block;
        width: auto;
        font-size: 13px;
        margin: 10px auto;
    }
    
    .upaNew .seeitDesktop  {
        display: none;
     }
}

.upaNew .seeitMobile:before {
    content: "See Complete Package Details";
}

.upaNew .seeitMobile.active {
    background: url(../../flashcab/benchmark/upa/upa-tog.png) left top no-repeat;
}

.upaNew .seeitMobile.active:before {
    content: "Hide Package Details";
}

.upaNew .titleShortdescription {
    padding: 0 2.5% 0 2.5%;
    text-align: left;
}

@media (max-width: 1024px) {
    .upaNew .titleShortdescription  {
        text-align: center;
     }
}

.upaNew .titleShortdescription h2 {
    margin:  0 0 15px;
}

@media (max-width: 1024px) {
    .upaNew .titleShortdescription h2{
        font-size: 4vw;
    }
}


.upaNew .titleShortdescription p {
    margin:  0 0 15px;
}

.upaNew .titleShortdescription .details {
    background: url(../../flashcab/benchmark/upa/upa-tog.png) left bottom no-repeat;
    display: block;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    text-transform: uppercase;
    width: 67.5%;
    padding: 0 20px 0 40px;
    margin: 0 0 15px;
    color: white;
}

@media (max-width: 1024px) {
    .upaNew .titleShortdescription .details {
        margin: auto;
        padding: 0 0 0 40px;
        width:  auto;
        max-width: 175px;
    }
}

.upaNew .titleShortdescription .details:before {
    content: "See Offer Details";
}

.upaNew .packageDisclaimer {
    margin: 0 0 19px;
}

.upaNew .giftShare {
    margin: 0 0 15px;
}

.upaNew ul li {
    text-transform: none;
    font-size: 15px;
}

.upaNew .property h2 {
    font-size: 26px;
    line-height:  1;
}

.upaNew .property {
    padding: 0 13% 0px 2.5%;
}

.upaNew .property + .seeitMobile + .group .upaButton-wrap {
    margin-top:  -30px;
}

@media (max-width: 1989px) {
    .upaNew .property {
        padding: 0 3% 0px 2.5%;
    }
    
    .upaNew .property + .seeitMobile + .group .upaButton-wrap {
        margin-top:  0px;
    }
}

@media (max-width: 1024px) {
    .upaNew .property h2 {
        font-size: 18px;
    }

    .upaNew .property {
        padding: 0;
        margin: 15px auto 10px;
    }
    
    .upaNew .property + .seeitMobile + .group .upaButton-wrap {
        margin-top:  0px;
    }
}


.upaNew .giftShare > div {
    display:  inline-block;
    vertical-align: middle;
}

.upaNew .giftPackage a {
    transition: all 250ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f09869+0,d6682d+100 */
    background: rgb(240,152,105); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(240,152,105,1) 0%, rgba(214,104,45,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(240,152,105,1) 0%,rgba(214,104,45,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(240,152,105,1) 0%,rgba(214,104,45,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09869', endColorstr='#d6682d',GradientType=0 ); /* IE6-9 */
    color: white;
    display: block;
    float: right;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    padding: 9px 14px;
    border: 1px solid #F2A57B;
    border-bottom: 4px solid #F2A57B;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
}

.upaNew .giftPackage a:hover {
    transition: all 500ms ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6682d+0,f09869+100 */
    background: rgb(214,104,45); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(214,104,45,1) 0%, rgba(240,152,105,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(214,104,45,1) 0%,rgba(240,152,105,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(214,104,45,1) 0%,rgba(240,152,105,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6682d', endColorstr='#f09869',GradientType=0 ); /* IE6-9 */
    color: white;
}

.upaNew .giftPackage a:before{
   font-family: FontAwesome;
   display: inline-block;
   margin-right: 7px;
   vertical-align: middle;
    content:"\f06b";
   font-size: 17px;
}

.upaNew .giftPackage {
    margin-right: 15px;
}

.upaNew .addthis_toolbox {
    margin-top: 5px;
}

.upaNew .upadets .mediabg {
    padding: 30px 0 35px 0;
}

@media (max-width: 1024px) {
    .upaNew .upadets .mediabg {
        padding: 20px 0 0 0;
     }
     
     .upaNew .arrows {
        display:  none;
    }
}

.upaNew .upadets .call {
    right: 9%;
    top: 30px;
}

.upaNew .upadets .call a{
    color: #333333;
}

@media (max-width: 1024px) {
    .upaNew .upadets .call {
        right: auto;
        position: relative;
        margin: 15px auto;
        top: auto;
        background: url(../../flashcab/benchmark/upa/upa-call.png) left center no-repeat;
        padding: 10px 0 10px 40px;
        text-align: left;
    }
}

.upaNew .call h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.upaNew .media {
    position: relative;
}

@media (max-width: 767px) {
    .upaNew .media {
        width:  95%;
    }
}

.upaNew .packagesCountdown {
    position:  absolute;
    right: 0;
    bottom: 15px;
    z-index: 999;
    margin-right: -10.5%;
}

@media (max-width: 1024px) {
    .upaNew .packagesCountdown {
        right: auto;
        position: relative;
        margin: 15px auto;
        top: auto;
        bottom: auto;
     }
}

.upaNew .countdown{
    padding: 0;
}

.upaNew .countdown .col {
    background: rgba(48, 48, 48, .85);
    box-shadow:  none;
    margin:  0 5px;
    padding: 20px 15px;
    min-width: 80px;
}

.upaNew .countdown .col:first-child {
    margin-left: 0;
}

.upaNew .countdown .col:last-child {
    margin-right:  0;
}

.upaNew .countdown .ce-days, .upaNew .countdown .ce-hours, .upaNew .countdown .ce-minutes, .upaNew .countdown .ce-seconds, .upaNew .countdown .ce-dseconds, .upaNew .countdown .ce-mseconds {
    font-size: 30px;
    color: white;
    text-shadow:  1px 1px 3px rgba(0,0,0,.4);
    font-weight:  600;
}

.upaNew .countdown .ce-days-label, .upaNew .countdown .ce-hours-label, .upaNew .countdown .ce-minutes-label, .upaNew .countdown .ce-seconds-label, .upaNew .countdown .ce-dseconds-label, .upaNew .countdown .ce-mseconds-label{
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    text-shadow: 1px 1px 3px rgba(0,0,0,.4);
}

@media (max-width: 1024px) {
    .upaNew .countdown .col {
        padding: 15px 10px;
        min-width:  auto;
        background: rgba(33, 33, 33,.8);
        margin: 0 5px 5px;
    }
    
    .upaNew .countdown .ce-days, .upaNew .countdown .ce-hours, .upaNew .countdown .ce-minutes, .upaNew .countdown .ce-seconds, .upaNew .countdown .ce-dseconds, .upaNew .countdown .ce-mseconds {
        font-size: 25px;
    }
    
    .upaNew .countdown .ce-days-label, .upaNew .countdown .ce-hours-label, .upaNew .countdown .ce-minutes-label, .upaNew .countdown .ce-seconds-label, .upaNew .countdown .ce-dseconds-label, .upaNew .countdown .ce-mseconds-label{
        font-size: 12px;
    }
}

/* UPA GRID VIEW */

.upaNew.gridLayout {
    width: 100%;
    max-width: 1560px;
    text-align: center;
}

.upaNew.gridLayout .upaWrap  {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    margin: 40px 0;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    padding: 0 15px;
}

@media only screen and (max-width: 1189px){
    .upaNew.gridLayout .upaWrap {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 30px;
        column-gap: 30px;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 767px){
    .upaNew.gridLayout .upaWrap {
        -moz-column-count: initial;
        -webkit-column-count: initial;
        column-count: initial;
        -webkit-column-gap: initial;
        column-gap: initial;
        padding: 0;
        margin:  0 auto;
    }
}

.upaNew.gridLayout .expand {
    padding: 0;
}

@media (max-width: 767px) {
    .upaNew.gridLayout .expand {
        padding: 10px 0 0;
    }
}

.upaNew.gridLayout .upadets {
    display:  block;
    position:  relative;
    margin: 15px 0;
    padding: 0;
    vertical-align:  top;
    background: rgba(63, 62, 71, 0.85);
    text-align: center;
    width: 100%;
     -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;

}

_:-ms-lang(x), .upaNew.gridLayout .upadets {

	display: inline-block;
}


@media (max-width: 767px) {
    .upaNew.gridLayout .upadets{
        margin: 30px auto;
        width: 95%;
        display:  block;
    }

    .upaNew .changeView {
        display: none;
    }


}

.upaNew.gridLayout .upadets .mediabg {
    width:  100%;
    padding: 25px 15px 5px;
    background:  transparent;
}

@media (max-width: 1024px) {
    .upaNew.gridLayout .upadets .mediabg{
        padding: 20px 2.5% 0;
    }
}

.upaNew.gridLayout .upadets .call {
    background: url(../../flashcab/benchmark/upa/upa-call.png) left center no-repeat;
    padding: 10px 0 10px 40px;
    clear: both;
    display: inline-block;
    position: relative;
    right: auto;
    top: auto;
    z-index: auto;
    width: auto;
    float: none;
    margin: 0 auto 10px;
    text-align: left;
}

.upaNew.gridLayout .titleShortdescription .details {
    margin: 0 auto 10px;
    padding: 0 0 0 40px;
    width: auto;
    max-width: 175px;
}

.upaNew.gridLayout .titleShortdescription {
    text-align:  center;
    padding:  0;
}

.upaNew.gridLayout .media {
    width:  100%;
    margin: 0 auto;
}

.upaNew.gridLayout .titleShortdescription h2 {
    font-size: 25px;
}

@media (max-width: 767px) {
    .upaNew.gridLayout .titleShortdescription h2{
        font-size: 4vw;
     }
}

.upaNew.gridLayout .packagesCountdown {
    position:  relative;
    margin-right:  0;
    right: auto;
    bottom: auto;
    margin: 15px auto 0;
}

@media (max-width: 1024px) {
    .upaNew.gridLayout .packagesCountdown {
        margin: 15px auto;
     }
}

.upaNew.gridLayout .countdown .col {
    padding: 15px 10px;
    min-width: 77px;
    background: rgba(33, 33, 33,.8);
    margin: 0 5px 8px;
}
     
.upaNew.gridLayout .countdown .ce-days, .upaNew.gridLayout .countdown .ce-hours, .upaNew.gridLayout .countdown .ce-minutes, .upaNew.gridLayout .countdown .ce-seconds, .upaNew.gridLayout .countdown .ce-dseconds, .upaNew.gridLayout .countdown .ce-mseconds {
    font-size: 25px;
}
    
.upaNew.gridLayout .countdown .ce-days-label, .upaNew.gridLayout .countdown .ce-hours-label, .upaNew.gridLayout .countdown .ce-minutes-label, .upaNew.gridLayout .countdown .ce-seconds-label, .upaNew.gridLayout .countdown .ce-dseconds-label, .upaNew.gridLayout .countdown .ce-mseconds-label{
    font-size: 12px;
}

@media only screen and (max-width: 1290px){
    .upaNew.gridLayout .countdown .col{
        min-width: auto;
        margin: 0 5px 5px;
    }
}

.upaNew.gridLayout .property {
    width: 100%;
    padding: 0 5%;
    text-align:  center;
    background-color: transparent;
    margin: 15px 0;
}

@media only screen and (max-width: 1000px){
    .upaNew.gridLayout .property {
        margin: 10px 0 5px;
    }
}

@media only screen and (max-width: 767px){
    .upaNew.gridLayout .property {
        margin: 15px auto 10px;
    }
}

.upaNew.gridLayout .property h2 {
    font-size: 18px;
}

.upaNew.gridLayout .tease {
    width:  100%;
    padding: 0 5%;
    background:  transparent;
}

@media (max-width: 767px) {
    .upaNew.gridLayout .upaButtons + .tease, .upaNew .tease  {
        padding: 0 5% 20px;
     }
}

.upaNew.gridLayout .seeit {
    clear: both;
    margin: 10px auto;
    float:  none;
    text-align:  center;
    width: 290px;
    display:  none;
}

.upaNew.gridLayout .upaButton-wrap {
    position:  relative;
    max-width: none;
    margin-top:  0;
    padding: 0 15px 25px;
    right: auto;
}

@media only screen and (max-width: 767px){
    .upaNew.gridLayout .upaButton-wrap {
        margin: 0 auto;
        padding: 0;
    }
}

.upaNew.gridLayout .property + .seeitMobile + .group .upaButton-wrap {
    margin-top:  0;
}

.upaNew.gridLayout .upaButtons .booknow {
    display:  none;
}

.upaNew.gridLayout .upaButton-wrap a {
    width: 48%;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 0;
    margin: 0 1% 1% 0;
    float: none;
    min-width:  auto;
}

.upaNew.gridLayout .upaButton-wrap a:nth-child(2){
    margin: 0 0 1% 1%;
}

.upaNew.gridLayout .upaButton-wrap a:nth-child(3) {
    margin: 1% 1% 0 0;
}

.upaNew.gridLayout .upaButton-wrap a:nth-child(4) {
    margin: 1% 0 0 1%;
}

.upaNew.gridLayout .upaButton-wrap a:only-child {
    margin: 1% 0 0 0;
    width:  60%;
}


@media only screen and (max-width: 1290px){
    .upaNew.gridLayout .upaButton-wrap a{
        font-size: 15px;
    }
}

@media only screen and (max-width: 1050px){
    .upaNew.gridLayout .upaButton-wrap a, .upaNew.gridLayout .upaButton-wrap a:nth-child(2), .upaNew.gridLayout .upaButton-wrap a:nth-child(3), .upaNew.gridLayout .upaButton-wrap a:nth-child(4), .upaNew.gridLayout .upaButton-wrap a:only-child {
        margin: 5px  auto;
        width: 100%;
        font-size: 17px;
    }
}

.upaNew.gridLayout .upadets .media .arrows{
    display: none;
}

.upaNew.gridLayout .seeitMobile {
    display:  block;
    clear: both;
    margin: 0px auto 15px;
    float: none;
    text-align: center;
    width: 290px;
}

@media (max-width: 1024px) {
    .upaNew.gridLayout .seeitMobile {
        clear: both;
        float: none;
        display: inline-block;
        width: unset;
        font-size: 13px;
        margin: 10px auto;
    }
}

/* END UPA GRID VIEW */

/* UPA CHANGE VIEW BUTTONS */

.upaNew .changeView {
    width: 95%;
    max-width: 1375px;
    margin:  0 auto;
}

.upaNew .viewWrap {
    position: relative;
    height:  50px;
}

.upaNew .viewWrap > div {
    display:  inline-block;
    padding: 0px 15px;
    background:  #eee;
    color: #000;
    margin:  0;
    transition: all 250ms ease;
    cursor:  pointer;
    font-size: 25px;
    float: right;
    line-height: 50px;
    border: 1px solid rgba(48, 48, 48, .15);
}

.upaNew .viewWrap > div:hover {
    background:  #555555;
    color: white;
}

.upaNew .viewWrap .listView {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.upaNew .viewWrap .gridView {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.upaNew .viewWrap > div i {
    vertical-align:  middle;
}

/* END UPA CHANGE VIEW BUTTONS */

/* END PACKAGES APP ENHANCEMENT */


/* ADA BAR */

.adaLink{
    background-color: #EB7231; /* USE PRIMARY BUTTON BACKGROUND COLOR */
    color: white;
    float: right;
    padding: 0 10px;
    display:  inline-block;
}

.adaBar {
    position: relative;
    text-align: right;
    font-size: 13px;
    height: 32px;
    background-color: #F0EFEB;
    box-shadow: inset 0 0.5px 2px 0 rgba(0,0,0,0.1);
    line-height: 32px;
    position: relative;
    z-index: 1;
    color: #111;
    /* position:  fixed; */
    /* width:  100%; */
}


.adaLink:hover, .adaLink:active, .adaLink:focus{
    color: white;
    text-decoration: underline; /* << required for accessibility*/
}

.adaDescription {
    padding-right: 20px;
}

@media only screen and (max-width: 767px) {
    .adaBar {
        height: auto;
        text-align: center;
        line-height: 1.1;
        padding: 0;
    }

    .adaLink{
        text-align: center;
        margin:  0px auto;
        display:  block;
        width:  100%;
        padding:  10px 0;
    }

    .adaDescription, .adaBar span{
        display:  block;
    }

    .adaBar span{
        min-height: 35px;
    }

    .adaBar .adaDescription{
        padding-right: 0;
        padding: 5px 5px 10px;
        display:  block;
        min-height: auto;
        display: none;
    }
}

/* END ADA BAR */

/* HM001A */
.cc00a .countdown .col {
    display: inline-block;
    min-width: 58px;
    background: rgba(122, 10, 41,0);
    box-shadow: none;
    border: 8px solid #dbd3c6;
    padding: 0px;
}

.cc00a .pause .fa.fa-pause.fa-2x {
    z-index: 99999;
    right: 1%;
    position: absolute;
    top: 56%;
    font-size: 25px;
}

@media only screen and (max-width: 767px) {
    .cc00a .pause {
        display:none;
    }
}

.cc00a .countdown {
    margin-top: 10px;
    margin-bottom: 20px;
}

.cc00a .countdown .col .cd-days{
    padding: 15px 25px;
    border: 2px solid #29282e;
    background: #dbd3c6 !important;
}

.cc00a .countdown .col .cd-hours{
    padding: 15px 25px;
    border: 2px solid #29282e;
    background: #dbd3c6 !important;
}

.cc00a .countdown .col .cd-minutes{
    padding: 15px 25px;
    border: 2px solid #29282e;
    background: #dbd3c6 !important;
}

.cc00a .countdown .col .cd-seconds{
    padding: 15px 25px;
    border: 2px solid #29282e;
    background: #dbd3c6 !important;
}

.cc00a .countdown .ce-days,
.cc00a .countdown .ce-hours, 
.cc00a .countdown .ce-minutes, 
.cc00a .countdown .ce-seconds, 
.cc00a .countdown .ce-dseconds, 
.cc00a .countdown .ce-mseconds {
    font-size: 45px;
    text-shadow: none;
    text-align: center;
    letter-spacing: 0.05em;
    line-height:  1;
    color: #29282e;
}

.cc00a .countdown .ce-days-label,
.cc00a .countdown .ce-hours-label,
.cc00a .countdown .ce-minutes-label,
.cc00a .countdown .ce-seconds-label,
.cc00a .countdown .ce-dseconds-label,
.cc00a .countdown .ce-mseconds-label {
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    text-shadow: none;
    color: #29282e;
    text-transform: uppercase;
    margin: 5px 0;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
}

.cc00a .txt .lnk a {
    font-size: 20px;
    min-width: 270px;
    padding: 15px 33px;
}

@media (max-width:1024px){
                .cc00a .txt {
position: absolute;
text-align: center;
top: 40%;
left: 12%;
width: 80%;
z-index: 4;
}
}

@media (max-width:768px){
            .cc00a .txt {
position: absolute;
text-align: center;
top: 40%;
left: 25%;
width: 50%;
z-index: 4;
}
}

@media (max-width: 700px) {
    .cc00a .countdown .col {
        width: 100px;
        height: 100px;
        margin: 5px;
    }

    .cc00a .countdown .col .cd-days, .cc00a .countdown .col .cd-hours, .cc00a .countdown .col .cd-minutes, .cc00a .countdown .col .cd-seconds {
        width: 85px;
        height: 85px;
        padding: 0;
        padding-top: 6px;
    }
   
        .cc00a .txt {
position: absolute;
text-align: center;
top: 40%;
left: 25%;
width: 50%;
z-index: 4;
}

}

@media (max-width: 450px) {
    .cc00a .countdown .col {
        width: 100px;
        height: 100px;
        margin: 5px;
    }
    .cc00a .txt {
position: absolute;
text-align: center;
top: 40%;
left: 15%;
width: 70%;
z-index: 4;
}
}

@media (max-width: 400px) {
    /*.hm01 {
        overflow: visible;
    }*/
    .cc00a .lnk {
position:relative;
top:0%;
left:-20px;
}
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
      .cc00a .txt {
position: absolute;
text-align: center;
top: 20%;
left: 15%;
width: 70%;
z-index: 4;
}

.cc00a {
    min-height:610px;
}

}


/* BENC146 */
.specials {
    margin-bottom: 100px;
}

.specials .spec_pack_2 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.spec_pack_2 .countdown {
    color: white;
}

.spec_pack_2 .spec_countdown {
    position: absolute;
    right: -146px;
    bottom: 57px;
}

.spec_pack_2 .spec_countdown .countdown .col {
    background: rgba(48,48,48,0.8);
    box-shadow: none;
}

.spec_pack_2 .box1 h2 {
    font-size: 48px;
    color: #EB7231;
    text-transform: uppercase;
}

.spec_pack_2 .box1 h3 {
    font-size: 24px;
    text-transform: uppercase;
}

.spec_pack_2 .box1 p {
    font-size: 18px;
}

.spec_pack_2 .box1 ol li a {
    background-color: #EB7231;
    color: white;
}

.spec_pack_2 .back .fa-angle-double-left {
    content: "\f100";
    font-size:50px;
    color: #EB7231;
    position: absolute;
    bottom: -15%;
    right: 10%;
    z-index: 100;
}

.spec_pack_2 .next .fa-angle-double-right {
    content: "\f101";
    color: #EB7231;
    position: absolute;
    bottom: -15%;
    right: 2%;
    font-size: 50px;
    z-index: 100;
}

.cc20-border {
    z-index: -99999999;
    border: 1px solid #EB7231;
    height: 530px;
    width: 88%;
    position: absolute;
    top: 0;
    left: -100px;
}

.cc20-content-wrapper {
    margin: top;
    margin-top: 30px;

}

.spec_pack_2 .box1 {
    height: 100%;
}

.cc20 .vcenter {
    margin-top: 6% important!;
}

.cc20 .txt.clearfix {
    margin-right: 56px;
    margin-top: 15px;
}

@media (max-width: 1400px) {

    .spec_pack_2 .spec_countdown {
        right: -10px;
        bottom: 30px;
    }
}

@media (max-width: 1199px) {

    .cc20-border {
        border: none;
    }
    .spec_pack_2 .spec_countdown {
        right: -70px;
    }
    .spec_pack_2 .next .fa-angle-double-right, .spec_pack_2 .back .fa-angle-double-left {
        bottom: -15%;
    }

}

@media (max-width: 1050px) {

    .cc20-border {
        border: none;
    }
    .spec_pack_2 .spec_countdown {
        right: 0px;
    }
    .spec_pack_2 .next .fa-angle-double-right, .spec_pack_2 .back .fa-angle-double-left {
        bottom: -12%;
    }

}

@media (max-width: 991px) {

    .spec_pack_2 .next .fa-angle-double-right, .spec_pack_2 .back .fa-angle-double-left {
        bottom: -12%;
    }

    .cc20 .txt.clearfix {
        
    }

    .spec_pack_2 .spec_countdown {
        right: 0px;
        bottom: 0px;
    }

    .cc20 .vcenter {
        width: 300px;
    }
    .spec_pack_2 .countdown .col {
        display: block;
        padding: 10px;
        margin: 5px;
        display: inline-block;
        min-width: 58px;
        background: rgb(0, 0, 0);
        background: rgba(50, 50, 50,.9);
    }

}

@media (max-width: 767px) {

    .spec_pack_2 .spec_countdown {
        bottom: 0%;
        left: 25%;
    }
    .spec_pack_2 .double-arrows{
        display: none;
    }
    .cc20 .txt.clearfix {
     width: 90%;
     min-width: 350px !important;
    }
    .cc20 .vcenter {
        width:100%;
        margin-bottom:20px;
        text-align:center;
    }
    .spec_pack_2 .box1 h2 {
        line-height:50px;
    }
    .spec_pack_2 .box1 p {
        line-height:24px;
    }
    .spec_pack_2 .box1 h3 {
        line-height: 28px;
    }
    .box2.img-countdown-right.col-xs-12 {
        width: 93%;
    }
}

@media (max-width: 500px) {

    .spec_pack_2 .spec_countdown {
        bottom: 0%;
        left: 5%;
    }
}

@media (max-width: 375px) { 
.cc20 .txt.clearfix {
     width: 80%;
     min-width: 315px !important;
    }

    .cc20 .txt.clearfix .text-center ol li a {
        padding: 10px 20px !important;
    }    
    .box2.img-countdown-right.col-xs-12 {
        width: 100% !important;
    }
    .cc20 .vcenter {
        text-align: left;
        width: 90%;
    }
    .spec_pack_2 .spec_countdown {
        bottom: -50%;
        left: -3%;
        min-width: 325px;
    }
}

.spec_pack_2 .pause .fa-pause {
    content: "\f04c";
    font-size:30px;
    color: #EB7231 !important;
    position: absolute;
    bottom: -13% !important;
    right: 6.25%;
    z-index: 100;
}

@media only screen and (max-width:768px) {
    .spec_pack_2 .pause .fa-pause {
        bottom: -10% !important;
        right: 7.5%;
    }
    .spec_pack_2 .back .fa-angle-double-left{
        right: 13%;
    }
}

@media only screen and (max-width:1024px) {
    .spec_pack_2 .pause .fa-pause {
        bottom: -10% !important;
        right: 7.75%;
    }
    .spec_pack_2 .back .fa-angle-double-left{
        right: 13%;
    }
}

@media only screen and (max-width:900px) {
    .spec_pack_2 .pause .fa-pause {
        bottom: -10% !important;
    }
}

@media only screen and (max-width:1200px) {
    .spec_pack_2 .pause .fa-pause {
        bottom: -33%;
    }
}

@media only screen and (max-width:1150px) {
    .spec_pack_2 .pause .fa-pause {
        bottom: -13.25% !important;
    }
}

.specials .spec_pack_2 {
    z-index: 999;
}

/* Experiential Map White */

.newMap h3.poi_subtitle {
    color: White;
}


.newMap h3:before {
    border-color: White;
}


.fa-list:before {
    color: White !important;
}

.fa-list:before {
    color: White !important;
}

.newMap h1 {
    color: White !important;
}

h1.poi_title {
    color: White !important;
}

h3.poi_subtitle {
    color: White !important;
}

.expMapTxt h1 {
    color: black !important;
}

.map-btn::before {
    color: White !important;
    border-color: White !important;
}

.list-only-container h3:before, .newMap h3:before {
    content:'';
    position:absolute;
    width:100%;
    height:2px;
    background:linear-gradient(to right, White, transparent) !important;
    top:0px;
    left:0px;
    width: 90%;
    margin: 0 auto;
}

.list-only-container h3, .newMap h3 {
    border-left: 2px solid White !important;
}

.closeMap {
    color: White !important;
}

@media only screen and (max-width:768px) {
    h1.poi_title {
        color: black !important;
    }
    h3.poi_subtitle {
        color: black !important;
    }
    .MapCollapsable {
        height: 233px !important;
        margin-top: 0px !important;
    }
    .newMap h3:before {
        background:linear-gradient(to right, black, transparent) !important;
    }
    .newMap h3 {
        border-left: 2px solid black !important;
    }
    .newMap .MapDisplayHeader1 h3 {
        line-height: 34px;
    }
}
/* END Experiential Map White */