/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  color: #555; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  clear: both; }

p {
  margin-bottom: 1.5em;
  font-size: 19px; }

dfn, cite, em, i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

blockquote, q {
  quotes: "" ""; }

blockquote:before, blockquote:after, q:before, q:after {
  content: ""; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul, ol {
  margin: 0 0 0.5em 1em;
  font-size: 19px; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: #FFF;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  background: #ee1c24;
  text-transform: uppercase;
  font-size: 17px;}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa; }

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111; }

select {
  border: 1px solid #ccc; }

textarea {
  width: 100%; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #0054a6; }

a:visited {
  color: #0054a6; }

a:hover, a:focus, a:active {
  color: midnightblue; }

a:focus {
  outline: thin dotted; }

a:hover, a:active {
  outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%; }

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0; }

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999; }

.main-navigation ul ul ul {
  left: -999em;
  top: 0; }

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%; }

.main-navigation ul ul a {
  width: 200px; }

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto; }

.main-navigation li {
  float: left;
  position: relative; }

.main-navigation a {
  display: block;
  text-decoration: none; }

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block; }

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none; }

  .main-navigation ul {
    display: block; } }
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }

.widget select {
  max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

.updated:not(.published) {
  display: none; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

.osans, body {
  font-family: 'Open Sans', sans-serif; }

.lato, .page-template-page-withslideshow .entry-title, .entry-title {
  font-family: 'Lato', sans-serif; }

body {
  background: #ebebeb; }

.sp-header {
  background: #ccc;
  height: 54px;
  clear: both;
  position: relative;
  z-index: 3; }

.sp-header .sp-container {
  max-width: 1035px; }

.sp-header .sp-left {
  float: left;
  margin-right: -100%;
  position: relative;
  z-index: 2; }

.sp-header .sp-middle {
  float: left;
  margin-right: -100%;
  width: 100%;
  text-align: center; }

.sp-header .sp-right {
  float: right;
  position: relative;
  z-index: 2; }

.sp-header {
  font-size: 15px;
  font-weight: bold;
  color: #252525;
  line-height: 54px; }

.sp-header p {
  margin: 0;
  font-size: 15px;
  color: #252525; }

.sp-header a {
  color: #252525;
  text-decoration: none; }

.sp-header a:hover {
  text-decoration: underline; }

.sp-header .sp-right {
  font-size: 0;
  line-height: normal; }

.sp-header .sp-right a {
  display: inline-block;
  padding-top: 11px;
  padding-left: 10px; }

.sp-header .sp-right img {
  margin: 0;
  display: inline-block; }

.sp-container {
  max-width: 1005px;
  margin-left: auto;
  margin-right: auto; }

.sp-nav {
  background: white;
  text-align: center;
  clear: both;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.47);
  -moz-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.47);
  box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.47);
}

.sp-nav .sp-container > ul {
  margin: 0;
  padding: 0;
  height: 50px; }

.sp-nav .sp-container > ul li {
  list-style: none;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 12px 4px;
  line-height: 50px; }

.sp-nav .sp-container > ul li ul {
  display: none;
  position: absolute;
  top: 54px;
  left: -35px;
  text-align: left;
  background: #f78f1e;
  margin: 0;
  padding: 0;
  min-width: 203px;
  border-radius: 8px;
  padding: 5px 10px 10px;
}

.sp-nav .sp-container > ul li ul:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #f78f1e;
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -12px; }

.sp-nav .sp-container > ul li ul li {
  display: block;
  line-height: 25px;
  padding: 0; }

.sp-nav .sp-container > ul li ul li a {
  color: white;
  font-size: 14px; }

.sp-nav .sp-container > ul li:hover ul {
  display: block; }

.sp-nav a {
  color: black;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none; }

.sp-nav a:hover {
  text-decoration: underline;
  font-weight: 300;
  color: #0054a6; }

.sp-slideshow {
  background: #f78f1e;
  min-height: 100px;
  position: relative;
  z-index: 1; }

.sp-big-logo {
  position: absolute;
  z-index: 999;
  top: 20px;
  left: 64px; }

.sp-buttons {
  position: absolute;
  bottom: 28px;
  right: 0;
  z-index: 99; }

.sp-buttons a:first-child {
  display: block;
  width: 174px;
  height: 55px;
  padding-left: 57px;
  color: white;
  text-decoration: none;
  background: url(../images/webcam.png);
  background-size: 100% 100%;
  padding-top: 13px;
  font-size: 19px; }

.sp-buttons a:last-child {
  margin-top: 7px;
  display: block;
  width: 174px;
  height: 55px;
  color: white;
  text-decoration: none;
  background: url(../images/rates.png);
  background-size: 100% 100%;
  padding-left: 68px;
  padding-top: 5px;
  font-size: 19px;
  line-height: 22px; }

.sp-row {
  display: flex;
  width: 100%; }

.sp-buy {
  width: 100%;
  background: #ee1c24;
  text-align: center;
  padding: 0 92px; }

.sp-buy a {
  line-height: 81px;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  position: relative;
  padding-left: 50px; }

  @media all and (max-width: 1200px) {
  .sp-buy a {
    line-height: 81px;
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    padding-left: 50px;
    border: 0px solid #000;
  }
  }

.sp-buy a:before {
  content: url(../images/ski.png);
  position: absolute;
  top: 8px;
  left: -24px; }

.sp-weather {
  min-width: 366px;
  max-width: 366px;
  background: #f78f1e;
  color: white;
  position: relative;
  display: none;
  }

.sp-sun {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/sun.png);
  position: absolute;
  top: 16px;
  left: 12px;
  border: 0px solid #000; }

.snow {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/snow.png);
  position: absolute;
  top: 16px;
  left: 12px; }

.sp-sun[class*=snow] {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/snow.png);
  position: absolute;
  top: 16px;
  left: 12px; }

.sp-sun[class*=cloudy] {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/partly-cloudy.png);
  position: absolute;
  top: 16px;
  left: 12px; }

.thundershowers {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/rain.png);
  position: absolute;
  top: 16px;
  left: 12px; }

.snow-showers {
  content: '';
  height: 54px;
  width: 54px;
  background: url(../images/rain-snow.png);
  position: absolute;
  top: 16px;
  left: 12px; }

.sp-temp {
  font-size: 48px;
  padding-left: 80px;
  line-height: 81px;
  display: inline-block; }

.sp-hilo {
  font-size: 29px;
  display: inline-block;
  float: right;
  padding-top: 12px;
  padding-right: 56px; }

.sp-front-text {
  background: url(../images/bg1.png), #ebebeb;
  background-position: center top;
  background-repeat: repeat-x;
  padding-top: 24px;
  padding-bottom: 60px; }

.sp-front-text p {
  margin: 0;
  font-size: 25px;
  color: #555; }

.sp-front-links {
  background: #ebebeb; }

.sp-boxes {
  display: flex;
  justify-content: space-between; }

.sp-box {
  position: relative;
  top: -8px;
  border-radius: 5px;
  flex: 1 1 30%;
  max-width: 300px;
  min-height: 300px; }

.sp-box h2 {
  margin: 0;
  color: white;
  font-size: 48px;
  line-height: 56px;
  margin-top: 7px;
  margin-left: 14px; }

.sp-box:nth-child(1) {
  background: url(http://springmountainadventures.com/wp-content/uploads/2022/11/lesson.png);
  background-size: 100% 100%; }

.sp-box:nth-child(3) {
  /* background: url(../images/zipline.png); */
  background-image: none;
  background-size: 100% 100%; }

.sp-box:nth-child(2) {
  background: url(../images/snowboard.png);
  background-size: 100% 100%; }

.sp-box a {
  background: #ee1c24;
  text-decoration: none;
  display: inline-block;
  line-height: 39px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  padding: 0 16px;
  position: absolute;
  bottom: 21px;
  left: 21px; }

.sp-box a:hover {
  text-decoration: underline; }

.sp-wood {
  background: url(../images/house.png);
  background-size: cover;
  min-height: 508px;
  margin-top: 38px;
  position: relative;
  border-radius: 5px; }

.sp-wood h2 {
  margin: 0;
  color: white;
  font-size: 55px;
  line-height: 56px;
  padding-top: 13px;
  margin-left: 14px; }

.sp-wood a {
  background: #ee1c24;
  text-decoration: none;
  display: inline-block;
  line-height: 39px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  padding: 0 16px;
  position: absolute;
  bottom: 21px;
  left: 27px; }

.sp-wood a:hover {
  text-decoration: underline; }

.sp-footer {
  background: #ebebeb; }

.sp-footer-row {
  display: flex; }

.sp-footer-logo {
  padding-top: 66px;
  max-width: 217px;
  min-width: 217px; }

.sp-footer-logo > a img {
  margin-left: 22px; }

.sp-footer-social {
  padding-top: 15px;
  padding-left: 15px; }

.sp-footer-social a {
  display: inline-block;
  margin-right: 6px; }

.sp-footer-menu {
  padding-top: 64px;
  flex: 1 1 auto; }

.sp-footer-menu ul {
  padding: 0;
  margin: 0; }

.sp-footer-menu li {
  list-style: none;
  font-size: 10px; }

.sp-footer-menu li a {
  color: #464646;
  text-decoration: none; }

.sp-footer-menu li a:hover {
  text-decoration: underline; }

#footer-menu > li {
  float: left;
  margin-right: -100%; }

#footer-menu > li > a {
  display: none; }

#footer-menu > li:nth-child(1) {
  width: 19%; }

#footer-menu > li:nth-child(2) {
  width: 14%;
  margin-left: 20.46%; }

#footer-menu > li:nth-child(3) {
  width: 20%;
  margin-left: 35.9335%; }

#footer-menu > li:nth-child(4) {
  width: 21%;
  margin-left: 59.59%; }

#footer-menu > li:nth-child(5) {
  width: 17%;
  margin-left: 80.4347%; }

#footer-menu > li > ul > li > a {
  font-weight: bold;
  text-transform: uppercase; }

#footer-menu > li > ul > li {
  margin-bottom: 10px; }

.sp-copyright {
  padding: 40px 0 20px; }

.sp-copyright p {
  color: #464646;
  margin: 0;
  text-align: center;
  font-size: 11px;
  line-height: 18px; }

.sp-header.with-logo .sp-container {
  max-width: 1100px;
  padding-left: 154px;
  position: relative; }

.sp-header.with-logo .sp-header-logo {
  position: absolute;
  top: 14px;
  left: 10px;
  z-index: 999999; }

.sp-header.with-logo .sp-container {
  max-width: 1100px; }

.sp-nav.with-logo .sp-container {
  padding-left: 85px; }

.sp-slideshow.inner .sp-buttons {
  bottom: 178px; }

.sp-slideshow.inner .sp-weather {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  z-index: 999;
  max-width: 99999999px;
  min-width: 0px;
  width: 232px; }

.sp-slideshow.inner .sp-weather .sp-sun {
  height: 34px;
  width: 34px;
  left: 8px;
  top: 6px;
  background-size: 100% 100%; }

.sp-slideshow.inner .sp-temp {
  font-size: 30px;
  padding-left: 52px;
  line-height: 46px; }

.sp-slideshow.inner .sp-hilo {
  font-size: 18px;
  display: inline-block;
  float: right;
  padding-top: 3px;
  padding-right: 36px; }

.content-area {
  background: url(../images/bg2.png), #ebebeb;
  background-position: center top;
  background-repeat: repeat-x; }

.page-template-page-withslideshow .entry-title {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
  color: #0054a6;
  line-height: 75px; }

h2 {
  font-size: 1.5em;
  margin: 0.67em 0;
  color: #f78f1e; }

h3 {
  font-size: 1.2em;
  margin: 0.67em 0;
  color: #048eca; }

.site-main {
  padding-top: 44px; }

.entry-content {
  font-size: 25px;
  color: #555;
  margin: 7px 0; }

  /*
  .entry-content img {
    float: left;
    margin-right: 15px; }
*/
.content-area {
  min-height: 500px; }

.content-area .sp-left {
  float: left;
  width: 70%; }

.content-area .sp-right {
  float: right;
  width: 25%; }

.entry-title {
  margin: 0;
  font-weight: bold;
  color: #0054a6;
  font-size: 50px;
  line-height: 56px; }

.posted-on {
  display: inline-block;
  padding-top: 10px; }

.comments-link {
  display: block; }

.widget-title {
  margin-top: 10px; }

.widget-area ul {
  margin: 0 0 0.5em 0em;
  padding: 0 0 0 1.5em; }

.widget_search .search-submit {
  display: none; }

.sp-header-img img {
  display: block;
  width: 100%; }

@media all and (max-width: 1065px) {
  .sp-container {
    margin-left: 30px;
    margin-right: 30px; } }
@media all and (max-width: 1170px) {
  .sp-nav a {
    font-size: 14px;}

  .sp-header.with-logo .sp-container {
    margin-left: 30px;
    margin-right: 30px; }

  .sp-nav.with-logo .sp-container {
    padding-left: 135px; }

  .sp-nav.with-logo .sp-container > ul {
    text-align: left; }

  .sp-header p {
    font-size: 1.3vw; } }
#mean-container {
  overflow-x: hidden;
  position: relative;
  clear: both; }

.sp-mean-logo {
  position: absolute;
  z-index: 999999999;
  width: 68px;
  left: 28px;
  top: 3px; }

.mean-container .mean-bar {
  min-height: 54px; }

.mean-container a.meanmenu-reveal {
  top: 8px; }

.mean-container .mean-nav {
  margin-top: 58px; }

@media all and (min-width: 1001px) {
  #mean-container,
  #mobile-menu {
    display: none !important; } }
@media all and (max-width: 1000px) {
  .sp-nav {
    display: none; }

  .sp-header-logo {
    display: none; }

  .sp-header.with-logo .sp-container {
    padding-left: 0; } }
@media all and (max-width: 760px) {
  .sp-header {
    height: auto;
    padding-bottom: 10px; }

  .sp-header p {
    font-size: 13px;
    line-height: 22px;
    padding: 10px 0; }

  .sp-header .sp-right,
  .sp-header .sp-middle,
  .sp-header .sp-left {
    float: none;
    margin: 0 auto;
    text-align: center; } }
@media all and (max-width: 550px) {
  .sp-buttons {
    position: static;
    background: #3a8bc8;
    padding: 8px;
    text-align: center; }

  .sp-buttons a:nth-child(n) {
    vertical-align: top;
    margin-top: 0; }

  .sp-buttons a:first-child {
    display: inline-block; }

  .sp-buttons a:last-child {
    display: inline-block; } }
@media all and (max-width: 400px) {
  .sp-buttons a:first-child {
    display: block;
    margin: 7px auto; }

  .sp-buttons a:last-child {
    margin: 7px auto;
    display: block; } }
@media all and (max-width: 1110px) {
  .sp-buy a {
    font-size: 2.5vw; }

  .sp-buy a:before {
    top: 18px; } }
@media all and (max-width: 960px) {
  .sp-buy {
    padding: 0 20px; }

  .sp-buy a {
    font-size: 2.2vw; } }
@media all and (max-width: 700px) {
  .sp-row {
    display: block;
    background: #f78f1e; }

  .sp-buy a {
    font-size: 3.2vw; }

  .sp-weather {
    margin: 0 auto; } }
@media all and (max-width: 450px) {
  .sp-hilo {
    padding-right: 80px; }

  .sp-temp {
    font-size: 35px; }

  .sp-weather {
    position: relative;
    left: 30px; } }
@media all and (max-width: 1000px) {
  .sp-box:nth-child(n) {
    background-position: 50% 50%;
    background-size: cover;
    max-width: 31%; }

  .sp-box:nth-child(n) h2 {
    font-size: 5vw; } }
@media all and (max-width: 800px) {
  .sp-boxes {
    display: block; }

  .sp-box:nth-child(n) {
    margin: 0 auto 20px;
    max-width: 300px; }

  .sp-box:nth-child(n) h2 {
    font-size: 3em; } }
@media all and (max-width: 500px) {
  .sp-wood h2 {
    font-size: 3em; } }
@media all and (max-width: 1000px) {
  .sp-footer-row {
    display: block; }

  .sp-footer-logo {
    padding-top: 66px;
    margin: 0 auto;
    text-align: center; }

  .sp-footer-logo > a img {
    margin-left: 0px; }

  .sp-footer-social {
    padding-left: 0px; } }
@media all and (max-width: 700px) {
  #footer-menu {
    display: flex;
    flex-wrap: wrap; }

  #footer-menu > li:nth-child(n) {
    float: none;
    margin: 0 auto 30px;
    flex: 1 1 32%;
    max-width: 32%;
    width: 33%; } }
@media all and (max-width: 450px) {
  #footer-menu > li:nth-child(n) {
    min-width: 100%;
    margin-bottom: 0; }

  .sp-footer-menu {
    text-align: center; }

  .sp-slideshow.inner .sp-weather {
    position: static; } }
@media all and (max-width: 800px) {
  .sp-slideshow.inner .sp-buttons {
    bottom: 58px; }

  .page-template-page-withslideshow .entry-title {
    font-size: 6vw; } }
@media all and (max-width: 600px) {
  .entry-content img {
    margin: 0 auto 10px;
    float: none;
    display: block; }

  .sp-big-logo {
    display: none; } }
@media all and (max-width: 800px) {
  .content-area .sp-right,
  .content-area .sp-left {
    float: none;
    width: 100%;
    margin: 0 auto 30px; } }





    .subPhotos {
      border: 4px solid #ebebeb;
      -webkit-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.47);
-moz-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.47);
box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.47);
    }


.btn {
    background: #ee1c24;
text-decoration: none;
display: inline-block;
line-height: 39px;
font-size: 17px;
font-weight: 600;
color: white;
padding: 0 16px;
}

.btn a {
  color: #FFF;
  text-decoration: none;
}

.page-title {
  display: none;
}
