/* HELPERS */
.contain,
.row {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}

.row .row {
  margin-left: unset;
  margin-right: unset;
}

.button {
  font-size: 20px;
  display: inline-block;
  text-transform: uppercase;
  background: #E8BD4C;
  padding: 8px 16px;
  font-family: 'brandon-grotesque', sans-serif;
  border: none;
  color: white;
  margin: 0;
  transition: all 250ms;
}

.button:hover {
  background: #e8b731;
  color: white;
}

.signup-button {
  min-width: 200px;
  margin-top: 1rem;
}

.line {
  height: 2px;
  background: #E8BD4C;
  transition: all 1000ms;
  width: 0%;
}

.no-click {
  pointer-events: none;
}

.fa-info-circle {
  width: 32px !important;
  height: 32px !important;
  margin-left: 15px;
  position: relative;
  top: 8px;
  cursor: pointer;
  display: none;
}

/* GLOBAL */
body.home,
.home .off-canvas-wrapper,
.home #content {
  background: none !important;
}

body > img {
  position: fixed;
  left: 0;
  bottom: 0;
}

a {
  transition: all 250ms;
  color: #004953;
}

p:last-of-type {
  margin-bottom: 0;
}

p:last-of-type+* {
  margin-top: 15px;
}

.logged-in .header {
  margin-top: 32px;
}

/* HEADER */
.header {
  position: fixed;
  z-index: 8;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
  padding-bottom: 28px;
  transition: all 500ms;
}

.header.scroll {
  padding-bottom: 0;
  background: url(../images/header-bg.png) black no-repeat center center / cover;
}

.title-bar {
  background: none;
  padding: 16px 16px 8px;
}

.title-bar-title {
  float: left;
}

.title-bar-title a img {
  max-width: 305px;
}

.title-bar .menu-icon {
  color: white;
  display: inline-block;
  margin: 8px 0 0 15px;
}

.title-bar .menu-icon:hover .fa-bars {
  color: #E8BD4C;
}

.title-bar .menu-icon .fa-bars {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  position: relative;
  top: 8px;
  transition: all 250ms;
}

.menu-top-menu-container {
  display: inline-block;
  margin-top: 10px;
}

.header .menu>li>a {
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 1000ms;
}

.menu>li .line {
  margin-left: 16px;
}

.menu>li:hover .line {
  width: calc(100% - 32px);
}

#search-toggle {
  margin-top: 16px;
  margin-right: 16px;
  float: right;
}

#search-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

#search-bar .fa-window-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

#search-bar .fa-window-close path {
  fill: #e6e6e6;
}

#search {
  background: none;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: none;
  color: white;
}

#search::placeholder {
  color: #e6e6e6;
}

#search-bar .search-form {
  width: 50%;
  min-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#search-bar .search-form input {
  padding: 30px;
  margin: 0 !important;
}

#search-bar .search #post-not-found .search-form {
  display: none;
}

.header .search-icon {
  color: white;
  transition: all 250ms;
}

.header .search-icon:hover {
  color: #E8BD4C;
}

.header.move-right {
  transform: translateX(320px);
}

#offCanvasLeft {
  padding-top: 20px;
}

#menu-main-navigation li:last-of-type {
  border-bottom: none !important;
}

.off-canvas .close {
  float: right;
  cursor: pointer;
  display: none;
}

.off-canvas .close path {
  transition: all 250ms;
}

.off-canvas .close:hover path {
  fill: #E8BD4C;
}

/* CONTENT */
body {
  overflow-x: hidden;
}

.home-banner {
  height: 947px;
  overflow: hidden;
  position: relative;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
}

.banner-title {
  font-size: 66px;
  margin: 0;
}

.banner-text {
  font-size: 35px;
  text-shadow: 0 0 10px #0a0a0a;
}

.banner-map {
  position: absolute;
  left: 30px;
  bottom: 60px;
  background: url(../images/tiny-map-bg.png) no-repeat center center / 100%;
  transition: all 250ms;
}

.banner-map span {
  color: white;
}

.mouse-body {
  position: absolute;
  width: 28px;
  height: 42px;
  bottom: 80px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid white;
  -webkit-animation: intro 1s;
  animation: intro 1s;
}

.scroll-icon {
  display: block;
  width: 6px;
  height: 6px;
  margin: 6px auto;
  border-radius: 4px;
  background: white;
  -webkit-animation: finger 1s infinite;
  animation: finger 1s infinite;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.brush-stroke {
  position: absolute;
  left: 0;
  width: 100%;
  height: 280px;
  bottom: -140px;
  pointer-events: none;
}

.brush-stroke.lower {
  top: -100px;
  height: 180px;
}

.brush-stroke-image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  bottom: -100px;
}

.home-banner .flex-video {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intro,
.intro p {
  font-size: 27px;
}

.intro,
.cta {
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 15px !important;
  position: relative;
}

.intro-header {
  margin-bottom: 30px;
}

.intro-header,
.intro-header p {
  font-size: 32px;
  font-weight: bold;
  font-weight: 500;
  font-family: 'great-forest' !important;
}

.home .cta {
  border-top: 2px solid rgba(219, 221, 222, 0.5);
}

.cta span {
  font-size: 30px;
  margin-right: 60px;
}

.cta .button {
  vertical-align: top;
  border: 2px solid white;
  box-shadow: -4px 4px 0px #E8BD4C;
  position: relative;
  top: 0;
  right: 0;
  transition: all 100ms;
}

.cta .button:hover {
  box-shadow: none;
  color: white;
  right: 6px;
  top: 6px;
  background: #E8BD4C;
}

.tiles {
  height: 688px;
  padding-bottom: 60px;
}

.tile {
  float: left;
  width: calc(50% - 16px);
  position: relative;
  overflow: hidden;
}

.tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1500ms;
}

.tile .line {
  background: white;
  transition: all 1500ms;
  margin-top: 8px;
}

.tile:hover .line {
  width: 100px;
}

.tile:hover .tile-bg {
  transform: scale(1.075);
}

.tile.large {
  margin-right: 16px;
  height: 100%;
}

.tile.small.first {
  margin-bottom: 8px;
  height: calc(50% - 8px);
}

.tile.small.last {
  margin-top: 8px;
  height: calc(50% - 8px);
}

.tile h2 {
  margin: 0;
  font-size: 37px;
  font-family: 'great-forest';
  position: absolute;
  bottom: 25px;
  left: 30px;
  color: white;
  display: inline-block;
}

.slider {
  position: relative;
  height: 753px;
  cursor: default;
  margin: 0 !important;
}

.slider .slick-list,
.slider .slide,
.slider .slick-track {
  height: 100%;
}

.slider .slide .contain {
  position: relative;
  height: 100%;
}

.slider .slide .text {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 980px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  transition: all 1000ms;
}

.slider .slide .text p {
  font-size: 27px;
  color: white;
}

.slider .slide .button {
  position: absolute;
  right: 30px;
  bottom: -20px;
}

.slider .slick-dots {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: auto;
  bottom: unset;
}

.slider .slick-dots li {
  display: block;
  margin: 0;
}

.slider .slick-dots li button {
  background: transparent;
  border-radius: 50%;
  border: 1px solid white;
  width: 10px;
  height: 10px;
}

.slick-dots li button::before {
  display: none;
}

.slider .slick-dots .slick-active button {
  background: white;
}

.slider .tiny-map {
  position: absolute;
  left: 0;
  bottom: 100px;
  background: url(../images/tiny-map-bg.png) no-repeat center center / 100%;
}

.slider .tiny-map span {
  color: white;
  font-size: 15px;
  padding-right: 30px;
}

.slider .tiny-map img {
  max-width: 96px;
  display: inline-block;
  margin-left: 30px;
}

.slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all 1000ms;
}

.slider .overlay.darken {
  background: rgba(0, 0, 0, 0.5);
}

.feeds {
  position: relative;
  padding: 60px 0;
}

.feeds .contain {
  position: relative;
  overflow: auto;
}

.feeds .instagram {
  width: 40%;
  float: left;
}

.feeds .blog-roll {
  width: 60%;
  padding: 60px;
  float: right;
}

.feeds .excerpt {
  position: relative;
  padding-bottom: 60px;
}

.feeds .excerpt-read-more {
  /*position: absolute;*/
  left: 0;
  bottom: 0;
  font-size: 16px;
}

.excerpt-read-more {
  color: #004953;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 2px;
}

.read-more {
  color: #004953;
  font-size: 16px !important;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 0px 2px 0px;
}

.read-more:after {
  content: '';
  display: block;
  width: 0px;
  height: 2px;
  background: #e8b731;
  transition: all 500ms;
}

.read-more:hover:after {
  width: 50px;
}

.blog-roll .post-header>a {
  text-transform: uppercase;
  font-size: 25px;
  color: #b1b1b1;
  vertical-align: middle;
}

.blog-roll .post-header h3 {
  margin: 15px 0;
}

.blog-roll .post-header h3:hover .line,
.excerpt-read-more:hover .line {
  width: 80px;
}

.blog-roll .post-header h3 a {
  text-transform: uppercase;
  font-size: 32px;
  color: #004953;
  width: 100%;
  display: block;
}

.blog-roll .post-date {
  text-transform: uppercase;
  color: #b1b1b1;
  font-size: 18px;
  margin: 20px 0;
  display: block;
}

.blog-roll .post-header img {
  position: relative;
  left: -15px;
}

.instagram .cr__gallery .fullscreenDetail__infoContainer {
  padding-top: 76px;
}

.logged-in .instagram .cr__gallery .fullscreen__close {
  top: 132px;
}

.instagram .cr__gallery .fullscreen__close {
  top: 100px;
}

.banner {
  height: 615px;
  position: relative;
}

.banner-content h1 {
  text-shadow: 1px 1px #0a0a0a;
  font-family: "great-forest", sans-serif;
  font-size: 60px;
}

.element-tile {
  display: block;
  float: left;
  width: calc(25% - 10px);
  margin: 5px;
  position: relative;
  overflow: hidden;
  height: 390px;
}

.elements-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1500ms;
}

.element-tile:hover .elements-bg {
  transform: scale(1.075);
}

.element-tile h2 {
  margin: 0;
}

.element-tile.large {
  width: calc(50% - 10px);
}

.element-tile:nth-of-type(4) {
  float: right;
}

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

.element-content h2,
.tile-title {
  position: absolute;
  left: 30px;
  bottom: 15px;
  color: white;
  font-size: 25px;
  z-index: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.element-content>img {
  width: 150px;
  margin: 15px;
}

.element-snippet,
.tile-description {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  transform: translateY(100%);
  padding: 30px;
  transition: all 500ms;
  pointer-events: none;
}

.entry-content .tile-image.medium .tile-description {
  font-size: 20px;
}

.entry-content .tile-image.small .tile-description {
  font-size: 18px;
}

.element-content:hover .element-snippet,
.tile-image:hover .tile-description {
  transform: translateY(0);
}

.element-tile .line,
.tile-title .line {
  background: #E8BD4C;
  margin-top: 8px;
}

.element-tile:hover .line,
.tile-image:hover .line {
  width: 100px;
}

.element-tile .gradient,
.tile-image .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

#breadcrumbs {
  position: relative;
  z-index: 1;
  text-align: center;
  clear: both;
  padding: 30px 0 0;
  margin-bottom: 15px;
}

#breadcrumbs span,
#breadcrumbs a {
  padding: 0 5px;
}

.cat-filter {
  position: relative;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.cat-filter+p {
  display: none;
}

.archive .cat-filter+h2 {
  font-size: 30px;
  font-family: "great-forest", sans-serif;
}

.listings {
  float: left;
  clear: both;
  width: 100%;
}

.listing {
  transition: all 250ms;
}

.listing-logo {
  overflow: auto;
  float: left;
  margin: 0 30px 30px 0;
}

.listing-title {
  margin-bottom: 30px;
}

.listing-contact {
  clear: both;
  overflow: auto;
  border-top: 1px solid #DBDDDE;
  padding: 15px 0;
}

.listing-contact>div {
  float: left;
}

.listing-contact .phone {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #DBDDDE;
  color: #004953;
  font-size: 20px;
}

.listing h3 {
  margin: 0 0 15px 0;
}

.listing h3 a {
  color: #004953;
  font-family: 'brandon-grotesque', sans-serif;
  font-size: 24px;
}

.listing .web a {
  color: #004953;
  font-size: 20px;
}

.listing .excerpt {
  padding: 30px 0;
  font-size: 20px;
  font-family: 'brandon-grotesque', sans-serif;
  line-height: 1.2;
}

.listing .links {
  text-align: right;
  padding-right: 0;
}

.listing .links a {
  color: #004953;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 5px 0;
}

.listing .links a img {
  margin-left: 15px;
  padding-left: 0px !important;
}

.listing .links .social-media-links a img {
  margin: 0;
}

.listing>.row>.large-3.columns {
  padding-left: 0;
}

.listing>.row>.large-9.columns {
  padding-right: 0;
}

.listing .social-media-links a.social-media {
  background-size: 100%;
}

.content-area {
  position: relative;
  z-index: 10;
  padding: 0 10px;
}

.region-map {
  margin-bottom: 1rem;
}

.regions-map-legend {
  position: relative;
}

.legend-content {
  padding: 60px 0 0 60px;
}

.regions-map-legend h3 {
  font-family: 'great-forest-small', sans-serif;
  font-size: 36px;
  margin-bottom: 0;
  color: #818181;
}

.regions-map-legend h4 {
  font-size: 30px;
  color: #004953;
}

.regions-map-legend li {
  list-style: none;
}

.regions-map-legend li:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

.regions-map-legend .south-island:before {
  background: #6E4850;
}

.regions-map-legend .gulf-islands:before {
  background: #586946;
}

.regions-map-legend .cowichan:before {
  background: #8B9F63;
}

.regions-map-legend .central-island:before {
  background: #4D4531;
}

.regions-map-legend .pacific-rim:before {
  background: #004A54;
}

.regions-map-legend .north-central-island:before {
  background: #76ACA9;
}

.regions-map-legend .north-island:before {
  background: #927048;
}

.regions-map-legend li a {
  color: #818181;
  font-size: 24px;
}

.regions-map-legend li a:hover {
  color: #E8BD4C;
}

.regions-map-legend ul {
  margin: 0;
}

.region-information p {
  margin: 0;
}

.region-information h3 {
  font-family: 'great-forest', sans-serif;
  font-size: 24px;
}

.region-information h4 {
  color: #004953;
  font-size: 27px;
  font-weight: 600;
  margin: 30px 0 15px;
  transition: all 250ms;
}

.region-information h4:hover {
  color: #E8BD4C;
}

.region-information ul {
  margin-left: 0;
  list-style: none;
}

#powerTip {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  border-radius: 0;
}

.box_view_html h4,
.box_view_html p {
  color: #707070;
}

.box_view_html img {
  width: 100%;
}

#powerTip.n:before {
  border-top: 10px solid #fff;
}

#powerTip.s:before {
  border-bottom: 10px solid #fff;
}

#powerTip.e:before {
  border-right: 10px solid #fff;
}

#powerTip.w:before {
  border-left: 10px solid #fff;
  right: -10px
}

#powerTip.ne:before,
#powerTip.nw:before {
  border-top: 10px solid #fff;
  border-top: 10px solid rgba(255, 255, 255, 1);
}

#powerTip.se:before,
#powerTip.sw:before {
  border-bottom: 10px solid #fff;
  border-bottom: 10px solid rgba(255, 255, 255, 1);
}

#powerTip.nw-alt:before,
#powerTip.ne-alt:before,
#powerTip.sw-alt:before,
#powerTip.se-alt:before {
  border-top: 10px solid #fff;
  border-top: 10px solid rgba(255, 255, 255, 1);
}

#powerTip.sw-alt:before,
#powerTip.se-alt:before {
  border-bottom: 10px solid #fff;
  border-bottom: 10px solid rgba(255, 255, 255, 1);
}

.pins_image {
  cursor: pointer;
  transition: all 500ms;
}

.pins_image:hover {
  filter: invert(100%);
}

.cat-filter select {
  width: 260px;
  margin-bottom: 0;
  padding: 0 15px;
  text-transform: uppercase;
  border-color: #E8BD4C;
}

#select-categories {
  margin-right: 30px;
}

.listing-filters {
  padding: 30px 0 15px;
}

.listing .categories {
  margin: 0;
  padding: 15px 0;
}

.listing .categories a {
  margin-right: 10px;
}

.single .categories a {
  margin-right: 0;
}

.js-off-canvas-exit {
  z-index: 9;
}

.tab-nav a>img {
  width: 100%;
}

.tab-nav {
  margin-bottom: 1rem;
}

.page-template-template-island-moments .slick-slide img {
  margin: 0 auto;
}

.page-template-template-island-moments .content-area .island-moments-issue-information {
  padding-top: 32px;
}

.page-template-template-island-moments .content-area>.columns>.row>.island-moments-ad-space {
  padding-top: 61px;
}

.blog .post {
  overflow: auto;
}

.blog .post .excerpt-read-more,
.search article .excerpt-read-more {
  /*margin-top: 1rem;*/
  font-size: 16px;
}

.blog .article-header {
  margin-bottom: 1rem;
}

.search article {
  padding: 30px;
  border-top: 1px solid #DBDDDE;
  transition: all 250ms;
  overflow: auto;
}

.search article:hover {
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.search article .entry-content p {
  font-size: 20px;
}

.search .article-header h2 a {
  font-size: 32px;
}

.sidebar {
  padding-top: 44px;
  text-align: left;
}

.entry-content {
  padding-bottom: 30px;
}

/* FOOTER */
.footer {
  background: black;
  padding: 0 15px;
  position: relative;
}

.footer-main {
  padding: 30px 0;
  background: none;
}

.footer-main #menu-footer-links a {
  color: white;
  font-weight: normal;
  text-transform: uppercase;
}

.social-wrap .hello {
  display: block;
  margin-bottom: 15px;
}

.social-wrap {
  border-right: 1px solid #414141;
  float: left;
  margin-right: 60px;
  padding-right: 60px;
  text-align: center;
}

.footer-links {
  float: left;
  padding-right: 60px;
  font-size: 16px;
}

.footer-links a {
  color: #FFFFFF;
}

.footer-links a:hover {
  color: #E8BD4C;
}

.more-info {
  float: right;
}

.cta span {
  font-size: 20px;
  display: inline-block;
  margin-top: 6px;
}

.copyright-2 a {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer .social {
  float: none;
  margin: 0px auto;
}

.footer [class^="icon-"]::before,
[class*=" icon-"]::before {
  font-size: 30px;
}

.footer #menu-footer-links li {
  display: block;
  margin-bottom: 5px;
}

.footer .cta {
  border: none;
  text-align: right;
  padding: 0 !important;
}

.footer .cta span {
  display: block;
  margin: 0 0 10px 0;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: white;
}

.footer-main #menu-footer-links a:hover,
.footer-bottom .copyright-2 a:hover {
  color: #E8BD4C;
}

.footer .button {
  background: #707070;
  border: 2px solid black;
  box-shadow: -4px 4px 0px #707070;
  position: relative;
  top: 0;
  right: 0;
  transition: all 100ms;
}

.footer .button:hover {
  box-shadow: none;
  color: white;
  right: 6px;
  top: 6px;
  background: #707070;
}

#itinerary-instructions-empty {
  float: none;
  clear: both;
}

.island-moments-elements-image-section {
  margin-bottom: 30px;
}

/* BLOG UPDATES - OCT 2018 */
.blog-new .right,
.single .right,
.category .right {
  padding-left: 30px;
}

.blog .content-area,
.single .content-area,
.category .content-area {
  background: none;
}

.masonry article {
  width: 50%;
  padding: 0 60px 60px 0;
  box-shadow: none !important;
}

.masonry article:last-of-type {
  padding: 0 60px 0 0;
}

.single article.post {
  padding: 0 30px 0 0;
}

.post-slider {
  padding-right: 45px;
  margin-top: 30px;
}

.blog-new .post-slider {
  margin: 0;
  padding: 0;
}

.blog-new .post-slider .slick-track {
  width: 100% !important;
}

.post-slider .post-image {
  height: 430px;
}

.post-images {
  position: relative;
}

.post-images .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  background: url(/wp-content/themes/elements/assets/images/slick-arrow.png) no-repeat center center / cover;
  display: block;
  width: 28px;
  height: 28px;
  z-index: 1;
  color: transparent;
  overflow: hidden;
}

.post-images .slick-prev {
  transform: translateY(-50%) rotate(180deg) !important;
  left: 15px;
}

.post-images .slick-next {
  right: 15px;
}

.featured-post {
  clear: both;
}

.social-links {
  clear: both;
  padding: 15px 0;
}

.blog-filters {
  border-bottom: 1px solid #DBDDDE;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.blog-filters div,
.blog-filters select {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
  color: #818181;
  margin: 0;
}

.blog-filters div {
  width: 100px;
}

.blog-filters select {
  border-color: #E8BD4C;
  width: 280px;
}

.right .text-center {
  padding-bottom: 15px;
  color: #818181;
}

.recent-posts-widget-with-thumbnails li {
  border-bottom: 1px solid #DBDDDE;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.recent-posts-widget-with-thumbnails li img {
  margin: 0 15px 5px 0;
}

.recent-posts-widget-with-thumbnails li span {
  float: right;
  width: calc(100% - 90px);
}

.recent-posts-widget-with-thumbnails h4 {
  text-align: center;
  font-size: 26px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #818181;
}

.widget_recent_entries a {
  font-size: 24px;
  line-height: 1.1;
}

.recent-posts-widget-with-thumbnails .rpwwt-post-date {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #818181;
  display: block;
  clear: both;
}

.widget_recent_entries li {
  margin-bottom: 15px;
}

.blog-new .featured-post {
  margin-top: 30px;
  margin-bottom: 60px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DBDDDE;
}

.blog-new .featured-post .featured-content {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.blog-new .featured-post h3 {
  font-size: 28px;
  text-transform: uppercase;
  padding: 15px 0 30px 0;
}

.blog-new .sidebar h3,
.archive .sidebar h3,
.single .sidebar h3,
.related-post h3 {
  font-size: 30px;
  font-weight: 300;
  color: #004953;
}

.single .featured-cat a {
  display: inline-block;
  font-size: 15px;
  color: #818181;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single .featured-cat a:first-of-type {
  margin: 0;
}

.blog-new .featured-date,
.category .featured-date {
  font-size: 15px;
  text-transform: uppercase;
  color: #818181;
  font-weight: bold;
}

.related-posts .related-date {
  margin-bottom: 1rem;
}

.archive .featured-date {
  padding-bottom: 15px;
}

.blog-new .featured-excerpt {
  font-size: 24px;
  padding: 15px 0 30px;
}

.blog-new .article-header h2,
.category .article-header h2 {
  font-size: 26px;
  text-transform: uppercase;
}

.blog-new .featured-cat,
.category .featured-cat {
  font-size: 27px;
  color: #004953;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.blog-new .featured-cat a {
  font-size: 15px;
  text-transform: uppercase;
  color: #818181;
  font-weight: bold;
}

.category .featured-cat a {
  color: #004953;
  font-size: 24px;
}

.featimage {
  padding: 0;
}

.postcontent {
  padding: 0 0 30px 0;
}

.entry-content * {
  font-size: 24px;
}

.blog-new .social-links,
.archive .social-links,
.single-post .social-links {
  text-align: center;
  border-top: 1px solid #DBDDDE;
}

.blog-new .social-links *,
.archive .social-links *,
.single-post .social-links * {
  font-size: 34px;
  font-family: 'great-forest', sans-serif !important;
}

.single-post .right #text-2 {
  display: none;
}

.single-post .article-footer {
  margin-bottom: 15px;
}

.single-title {
  font-size: 32px;
  margin: 0;
  font-family: 'great-forest', sans-serif !important;
  color: #004953;
}

.single .featured-date {
  clear: both;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
  margin-top: 15px;
  border-top: 1px solid #DBDDDE;
  border-bottom: 1px solid #DBDDDE;
}

.single .entry-content {
  padding: 30px 0;
  clear: both;
}

.single .entry-content p {
  font-size: 24px;
}

.single div[id^="cr"] {
  padding: 15px 0;
}

.single .crowdriff div[id^="cr"] {
  padding: 0;
}

.crowdriff {
  padding: 30px 0;
  margin-top: 30px;
}

.single blockquote {
  font-size: 34px;
  border-left: 2px solid #E8BD4C;
  padding-top: 30px;
}

.single .entry-content blockquote * {
  font-size: 28px;
}

.single .featured-date span {
  float: right;
}

.single .featured-date span div {
  float: right;
  margin-left: 10px;
  position: relative;
  top: -4px;
}

.related-posts {
  padding: 30px 0px 0px 0px;
  overflow: auto;
  width: 100%;
}

.related-posts h2 {
  font-size: 34px;
  text-transform: uppercase;
  color: #818181;
  text-align: center;
}

.related-post {
  padding: 30px;
  width: 33.3%;
  float: left;
}

.related-thumbnail {
  display: block;
  width: 100%;
  transition: all 250ms;
}

.related-thumbnail:hover,
.related-thumbnail:focus {
  opacity: 0.7;
}

.related-post .cat-date {
  padding: 15px 0;
  border-bottom: 1px solid #DBDDDE;
  overflow: auto;
}

.related-post .featured-cat {
  color: #818181;
  float: left;
  width: 70%;
}

.related-post .related-date {
  color: #818181;
  float: left;
  width: 30%;
}

.related-post .featured-cat {
  text-transform: uppercase;
  font-size: 15px;
}

.related-post .related-date {
  float: right;
  text-align: right;
  font-size: 15px;
}

.related-post h3 {
  clear: both;
  padding-top: 15px;
}

.related-excerpt {
  font-size: 18px;
}

.texture {
  background: url(../images/topographic.png) no-repeat center bottom / 100%;
}

.blog-new .pagination,
.archive .pagination {
  margin: 0;
}

.blog-new .pagination li,
.archive .pagination li {
  display: inline-block !important;
}

.blog-new .page-navigation,
.archive .page-navigation {
  margin: 0;
}

.blog-new .pagination .pagination,
.archive .pagination .pagination {
  padding: 15px;
}

.blog-new .pagination a,
.archive .pagination a,
.blog-new .pagination .current,
.archive .pagination .current {
  font-size: 24px;
  color: #004953;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px;
  line-height: 1;
}

.blog-new .pagination a:hover,
.blog-new .pagination a:focus,
.archive .pagination a:hover,
.archive .pagination a:focus,
.blog-new .pagination .current:hover,
.blog-new .pagination .current:focus,
.archive .pagination .current:hover,
.archive .pagination .current:focus {
  background: none;
  color: #818181;
}

.blog-new .pagination svg,
.archive .pagination svg {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0 10px -5px;
}

.blog h3,
.single h3,
.archive h3,
.blog h2,
.single h2,
.archive h2,
.social-links p {
  font-size: 30px;
  font-weight: 300;
  color: #004953;
  font-family: 'brandon-grotesque', sans-serif !important;
  line-height: 1.4;
}

.blog-new .left,
.archive .left,
.single .left {
  padding-left: 0;
}

.sidebar-blog-posts {
  padding: 30px 0px;
}

.sidebar-blog-posts h3 {
  text-align: center;
  font-family: 'great-forest', sans-serif !important;
  font-size: 32px;
  color: #333333;
  padding: 0px 0px 20px 0px;
}

.sidebar-blog-posts a {
  font-size: 24px;
  font-family: 'great-forest-small', sans-serif;
  display: block;
  padding: 0px 0 0px 0px;
  color: #818181;
  transform-origin: left;
  line-height: 1;
}

.sidebar-blog-post-image img {
  max-width: 100px;
  float: left;
  margin: 0px 10px 10px 0px;
  transition: all .25s ease-in-out;
}

.sidebar-blog-posts a:hover .sidebar-blog-post-image img {
  margin: 0px 20px 10px 0px;
  transition: all .25s ease-in-out;
}

.sidebar-categories {
  padding: 30px 0;
}

.sidebar-categories h3 {
  text-align: center;
  font-family: 'great-forest', sans-serif !important;
  font-size: 32px;
  color: #333333;
  margin-bottom: 30px;
}

.sidebar-categories a {
  font-size: 24px;
  font-family: 'great-forest-small', sans-serif;
  display: block;
  padding: 50px 0 15px 90px;
  color: #818181;
  transform-origin: left;
  line-height: 1;
}

.sidebar-categories a:hover {
  padding-left: 100px;
}

.sidebar-ad {
  margin-bottom: 30px;
}
/* END BLOG UPDATES - OCT 2018 */

/* THINGS TO DO UPDATES */
.teasers {
  padding: 120px 120px 60px;
  background: #f4f4f4 url(../images/topographic.png) no-repeat center bottom / 100%;
  position: relative;
  clear: both;
}

.teasers::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: -60px;
  width: 100%;
  height: 150px;
  background: url(../images/intro-bottom.png) no-repeat center center / cover;
}

.teaser-slide .left,
.teaser-slide .right {
  width: 50%;
  float: left;
}

.teaser-slide h3 {
  font-size: 22px;
  font-family: 'brandon-grotesque', sans-serif;
  text-transform: uppercase;
  color: #818181;
  font-weight: bold;
}

.teaser-slide h4 {
  font-size: 32px;
  font-family: 'great-forest';
  color: #004953;
  margin-bottom: 30px;
}

.teaser-slide .left {
  padding-right: 60px;
  transform: translateX(-100%);
}

.teaser-slide .right {
  transform: translateX(100%);
}

.teaser-slide .slide-image {
  height: 100%;
}

.teaser-slide .content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 60px 0;
}

.teaser-slide .content p {
  font-size: 22px;
}

.teaser-slide .sharethis-inline-share-buttons {
  padding-top: 15px;
  clear: both;
}

.teaser-slider .slick-arrow,
.summer-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 9;
}

.summer-slider .slick-arrow {
  top: 45%;
}

.teaser-slider .prev {
  left: -60px;
  transform: translateY(-50%) rotate(180deg);
}

.summer-slider .prev {
  transform: translateY(-50%) rotate(180deg);
  left: -45px;
}

.teaser-slider .next {
  right: -60px;
}

.summer-slider .next {
  right: -45px;
}

.teaser-slider .slick-dots {
  left: 0;
  bottom: -30px;
}

.summer-slider .slick-dots {
  left: 0;
  bottom: -90px;
}

.teaser-slider .slick-dots li,
.summer-slider .slick-dots li {
  width: auto;
  height: auto;
}

.teaser-slider .slick-dots li button,
.summer-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #004953;
}

.summer-slider .slick-dots li button {
  border-color: #fff;
}

.teaser-slider .slick-dots li.slick-active button {
  background: #004953;
}

.teaser-slider .read-more {
  display: block;
}

.summer-slider .slick-dots li.slick-active button {
  background: #fff;
}

.summer-flings {
  padding: 60px 90px 180px;
  background: #323232 url(../images/topographic.png) no-repeat center bottom / 100%;
  position: relative;
}

.summer-flings::after {
  content: '';
  position: absolute;
  display: block;
  background: url(../images/brush-stroke.png) no-repeat center center / cover;
  width: 100%;
  height: 300px;
  left: 0;
  bottom: -140px;
  z-index: 9;
  pointer-events: none;
}

.things-grid {
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.gradient-left,
.gradient-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 8;
}

.gradient-left {
  left: 0;
  background: linear-gradient(to right, #313131, transparent);
}

.gradient-right {
  right: 0;
  background: linear-gradient(to left, #313131, transparent);
}

.summer-flings h2 {
  color: white;
  font-size: 33px;
  font-family: 'great-forest' !important;
  margin-bottom: 15px;
}

.summer-slider {
  padding: 0 0 45px 15px;
}

.summer-slider .slick-list {
  overflow: unset;
}

.summer-slide {
  height: 250px;
  margin-right: 15px;
  position: relative;
  transition: all 500ms;
}

.summer-slide:hover {
  filter: saturate(1.8);
}

.summer-slide .slick-active:last-of-type {
  margin-right: 0;
}

.summer-slide h3 {
  font-size: 22px;
  color: white;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  transition: all 500ms;
  position: absolute;
  left: 0;
  bottom: -15px;
  transform: translateY(100%);
}

.summer-slide:hover h3 {
  color: #E8BD4C;
}

.amp-travel {
  position: relative;
  padding: 180px 0;
  background: #f4f4f4 url(../images/topographic.png) no-repeat center bottom / 100%;
}

.amp-travel::before,
.amp-travel::after,
.interesting-articles-section::before,
.interesting-articles-section::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 160px;
  background: url(../images/amp-graphic.png) no-repeat center center / cover;
  left: 0;
}

.amp-travel::before,
.interesting-articles-section::before {
  top: 0;
}

.amp-travel::after,
.interesting-articles-section::after {
  bottom: -60px;
  transform: rotate(-180deg);
}

.amp-travel .side-image {
  position: absolute;
  z-index: 1;
}

.amp-travel .left {
  top: 100px;
  left: 0;
  transform: translate(-30%, -15%);
}

.amp-travel .right {
  bottom: 0;
  right: 0;
  transform: translate(30%, 15%);
}

.amp-travel h3 {
  text-align: center;
  font-size: 33px;
  font-family: 'great-forest' !important;
  margin-bottom: 30px;
}

div[id^="story"] {
  position: relative;
  z-index: 2;
}

.home div[id^="story"] {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.embed {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}

.embed h2,
.embed h2 a {
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
  color: black;
  font-family: 'great-forest';
}

.embed h2:hover,
.embed h2 a:hover {
  color: #E8BD4C;
}

.tax-listing-cats .cat-filter {
  text-align: center;
  margin: 0;
  padding: 30px 0;
}

.tax-listing-cats .cat-filter span {
  font-size: 32px;
  font-family: 'great-forest';
  text-transform: lowercase;
}

.tax-listing-cats .cat-filter #select-categories {
  margin: 5px 15px 0;
  vertical-align: top;
  font-weight: 600;
  font-size: 12px;
}

.filter-buttons-widget {
  text-align: center;
  margin-bottom: 30px;
}

.filter-button-community,
.filter-button {
  margin-top: 0;
  float: none;
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
}

.filter-button-community:hover,
.filter-button-community:focus,
.filter-button:hover,
.filter-button:focus {
  color: white;
  background: #004953;
}

.listing {
  min-height: unset !important;
}

.listing .photo {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.listing .photo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.listing .photo>div:not(.listing-add-itinerary-button):not(.remove-itinerary-button) {
  position: absolute;
  transition: all 500ms;
  z-index: 1;
}

.listing-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  padding: 90px 30px 30px;
  background: rgba(0, 0, 0, 0.8);
}

.listing .photo:hover .listing-overlay {
  transform: translateY(0);
}

.listing-info {
  bottom: 30px;
  left: 30px;
  z-index: 2 !important;
  transition: all 500ms;
}

.listing-links {
  position: absolute;
  bottom: 30px;
  left: 30px;
  opacity: 0;
  z-index: 3 !important;
}

.listing-links * {
  color: #E8BD4C !important;
  font-weight: bold !important;
  text-transform: uppercase;
}
    
.listing-links .booking p{
  font-size: 0.8em;
}

.listing-info .booking p {
  color: #E8BD4C !important;
  font-weight: bold !important;
  text-transform: uppercase;
}

.listing-info .booking p a {
  color: #E8BD4C !important;
}

.listing-links .phone {
  float: left;
  padding-right: 15px;
}

.listing-links .phone::after {
  content: '|';
  margin-left: 15px;
  font-size: 18px;
  vertical-align: top;
}

.listing-links .website:hover {
  color: white !important;
}

.listing-sidebar > .row > div, 
.listing-sidebar > .row > span {
  margin-bottom: 10px;
}

.listing-sidebar .booking {
  display: block;
  max-width: 350px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid#E8BD4C; 
  padding: 1em;
}

.listing-sidebar .booking p {
  color: #E8BD4C;
}

.listing-add-itinerary-button,
.remove-itinerary-button {
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.photo .listing-add-itinerary-button a,
.photo .remove-itinerary-button a {
  color: white;
  font-size: 18px;
}

.listing-add-itinerary-button a:hover,
.remove-itinerary-button a:hover {
  color: #E8BD4C;
}

.photo .listing-add-itinerary-button span,
.photo .remove-itinerary-button span {
  position: relative;
  transition: all 500ms;
  display: inline-block;
  transform: translateX(150%);
}

.listing .photo:hover .listing-add-itinerary-button span,
.listing .photo:hover .remove-itinerary-button span {
  transform: translateX(0);
}

.listing-add-itinerary-button img,
.remove-itinerary-button img {
  position: relative;
  z-index: 3;
}

.listing-info h3 {
  color: white;
  font-size: 25px;
  font-weight: bold;
  transition: all 500ms;
  padding-right: 30px;
  display: inline-block;
}

.listing-info h3::after {
  content: '';
  height: 2px;
  background: #E8BD4C;
  width: 0;
  transition: all 500ms;
  display: block;
}

.listing .photo:hover h3::after {
  width: 80%;
  margin: 5px 0 15px;
}

.listing .excerpt {
  color: white;
  font-size: 22px !important;
}

.listing .read-more {
  color: white;
}

.post-type-archive-listings .listing-info h3 {
  font-size: 20px;
}

.post-type-archive-listings .listing-links,
.post-type-archive-listings .listing-links .phone::after {
  font-size: 16px;
}

.section-accomms {
  padding: 4em 0;
  clear: both;  
}

.section-accomms h3 {
  padding-bottom: 1em;
}

.section-accomms .button {
  width: 100%;
  padding: 10px 0;
  margin-top: 5px;
}

.section-accomms .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* END THINGS TO DO UPDATES */

/* MASONRY TILES */
.tile-link:nth-of-type(10n+6) .tile-image {
  float: right;
}

.tiles-section {
  overflow: auto;
  padding: 60px 0;
  margin: 0;
}

.tile-image {
  overflow: hidden;
}

.tiles-section h2,
.crowdriff h2 {
  font-family: "great-forest", sans-serif;
  font-size: 30px;
  text-align: center;
  color: #004953;
  margin-bottom: 30px;
}
/* END MASONRY TILES */

/* CITY PAGES */
.listing-main-title {
  margin-bottom: 30px;
}

.interesting-articles-section {
  padding: 150px 75px;
  background: #f4f4f4 url(../images/topographic.png) no-repeat center bottom / 100%;
  position: relative;
}

.interesting-articles-title {
  padding-top: 0;
}

.article-container {
  height: 410px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
  transition: all 250ms;
}

.article-container:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.article-slide:hover .article-container {
  margin-top: 0;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2);
  transform: translateY(-6px);
}

.article-info {
  border-radius: 0;
  background: none;
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 0;
}

.article-title {
  font-size: 18px;
  color: white;
  font-family: 'brandon-grotesque', sans-serif;
  padding-right: 15px;
}

.interesting-articles-section ~ .tiles-section {
  padding-top: 0;
}

.interesting-articles-section .slick-track {
  margin: 0 auto;
}

.location-features {
  max-width: 1100px;
  margin: 0 auto;
}

.location-features li {
  margin-bottom: 15px;
}
/* END CITY PAGES */

/* MOBILE */
@media only screen and (max-width: 1500px) {

  .blog-new .featured-post h3,
  .blog h3,
  .blog-new .article-header h2,
  .category .article-header h2,
  .blog-new .social-links *,
  .archive .social-links *,
  .single-post .social-links *,
  .single h3,
  .category h3,
  .blog h2,
  .single h2,
  .category h2 {
    font-size: 24px;
  }

  .title-bar-right .itinerary-image,
  .menu-top-menu-container,
  .title-bar-title,
  #itinerary-div .line {
    display: none !important;
  }

  .title-bar {
    padding: 0 16px 16px;
  }

  .itinerary-text {
    margin-top: 20px;
    font-size: 14px;
  }

}

@media only screen and (max-width: 1300px) {

  .blog-new .left,
  .blog-new .right,
  .single .right,
  .single .left,
  .category .left,
  .category .right,
  .archive:not(.tax-listing-cats) .left,
  .archive:not(.tax-listing-cats) .right,
  .archive .content-area>.columns {
    width: 100%;
    padding: 0 15px;
  }

  .post-slider {
    padding-right: 0;
  }

  .postcontent,
  .featimage {
    padding: 0 15px 0 0 !important;
  }

  .blog-new .featured-post,
  .blog-new article.post,
  .archive .masonry .post,
  .category .masonry .post {
    padding: 15px;
  }

  .textwidget .text-center {
    border-top: 1px solid #DBDDDE;
    padding-top: 30px;
    margin-top: 15px;
  }

  .blog-new .social-links,
  .archive .social-links,
  .single-post .social-links {
    border: none;
  }

  .related-posts {
    padding-top: 0px;
  }

  .home-banner {
    height: 600px;
  }

  .more-info {
    width: 100%;
    clear: both;
  }

  .more-info .cta {
    text-align: center;
    padding-top: 30px;
  }

  .feeds .instagram,
  .feeds .blog-roll {
    width: 100%;
    float: none;
  }

  .intro {
    padding: 30px 60px 60px !important;
  }

  .footer-main {
    text-align: center;
  }

  .feeds .blog-roll {
    padding-bottom: 0px;
  }

  .social-wrap,
  .footer-links {
    float: none;
    display: inline-block;
  }

  .footer-links {
    text-align: left;
  }

  .header .title-bar .title-bar-title {
    margin: 4px 0;
  }

  #search-toggle {
    margin: 10px 10px 0 0;
  }

  .regions-map-legend,
  .regions-map {
    width: 100%;
    height: auto !important;
    text-align: center;
  }

  .legend-content {
    padding: 0;
  }

  .legend-content ul {
    margin-bottom: 30px;
  }

  .legend-content li {
    display: inline-block;
    margin-left: 15px;
  }

  .legend-content li a {
    font-size: 24px;
  }

  .listing {
    padding: 15px 0;
  }

  .listing>.row>.large-3.columns {
    width: 25%;
    min-width: 125px;
  }

  .listing>.row>.large-9.columns {
    width: 75%;
  }

  .listing .links {
    text-align: left;
  }

  .listing .links a,
  .add-itinerary-button,
  .remove-itinerary-button {
    display: inline-block;
    width: auto;
    margin-right: 0px;
    font-size: 16px;
  }

  .more-info {
    float: none;
  }

  .sidebar-categories {
    text-align: center;
  }

  .sidebar-categories a {
    display: inline-block;
    margin-right: 15px;
    background-size: 32px !important;
    padding: 15px 15px 15px 40px !important;
    font-size: 20px;
  }

  .sidebar-categories a:hover {
    transform: scale(1.05);
  }

  .recent-posts-widget-with-thumbnails {
    text-align: center;
  }

  .recent-posts-widget-with-thumbnails img {
    display: none;
  }

  .recent-posts-widget-with-thumbnails a {
    font-size: 24px;
    line-height: 1.1;
  }

  .recent-posts-widget-with-thumbnails li span {
    float: none;
    width: 100%;
  }

  .amp-travel .side-image {
    max-width: 400px;
  }

  .listing-links {
    font-size: 16px;
  }

  .listing .excerpt {
    font-size: 18px !important;
  }

}

@media only screen and (max-width: 1030px) {

  .banner-content h1 {
    font-size: 40px;
  }

  .banner-text {
    font-size: 26px;
  }

  .intro,
  .intro p,
  p,
  .slider .slide .text p {
    font-size: 18px;
  }

  .slider {
    height: 500px;
  }

  .menu-top-menu-container {
    display: none;
  }

  .title-bar-title {
    float: none;
  }

  .menu-icon[aria-controls="offCanvasLeft"] {
    top: 0;
    left: 0;
  }

  .header .title-bar .title-bar-left {
    width: auto;
    display: inline-block;
  }

  .add-itinerary-button,
  .remove-itinerary-button {
    margin: 0;
  }

  .listing .logo {
    text-align: left;
  }

  .teasers {
    padding: 60px 30px;
  }

  .teaser-slider .slick-arrow {
    display: none !important;
  }

  .teaser-slider .left,
  .teaser-slider .right {
    width: 100%;
    height: auto !important;
    transform: none;
    padding-right: 0;
  }

  .teaser-slider .slide-image {
    min-height: 400px;
  }

  .teaser-slide .content {
    position: static;
    transform: none;
    padding: 30px 0 0;
  }

  .teaser-slide .sharethis-inline-share-buttons {
    text-align: left !important;
  }

  .amp-travel .side-image {
    max-width: 300px;
  }

  .listing-overlay {
    transform: translateY(100%) !important;
  }

  .listing-add-itinerary-button span,
  .remove-itinerary-button span {
    transform: translate(0);
  }

  .listing .photo {
    background-color: rgba(0, 0, 0, 0.3) !important;
    background-blend-mode: darken;
  }

}

@media only screen and (max-width: 1023px) {

  .home-banner.video .flex-video {
    display: none;
  }

  .cta span {
    font-size: 22px;
    margin: 0 0 15px;
    display: block;
  }

  .tile {
    width: 100% !important;
    margin: 0 0 15px !important;
    height: 50% !important;
  }

  .slick-slider {
    clear: both;
  }

  .slider .slide .text {
    width: 80%;
  }

  .feeds {
    padding-top: 30px;
  }

  .slider .tiny-map {
    bottom: 60px;
  }

  .social-wrap {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 30px;
    border: none;
  }

  .footer-links {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }

  .pins_image {
    width: 30px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }

  .listing .links a,
  .add-itinerary-button,
  .remove-itinerary-button {
    display: block;
  }

  .listing>.row>.large-3.columns {
    display: block;
    float: none;
    width: 50%;
  }

  .listing>.row>.large-9.columns {
    display: block;
    float: none;
    width: 100%;
  }

  .listing .row .columns {
    padding-left: 0;
  }

  .element-tile {
    width: calc(50% - 10px) !important;
  }

  #breadcrumbs {
    padding-bottom: 0;
  }

  .sidebar {
    padding-top: 0;
  }

  .related-post {
    width: 100%;
  }

  .related-thumbnail {
    max-height: 500px;
  }

  .single article.post {
    padding: 0;
  }

}

@media (max-width: 800px) {

  .amp-travel .side-image,
  .cat-filter span,
  .tile-description {
    display: none;
  }

  .tax-listing-cats .cat-filter #select-categories {
    margin: 0;
  }

}

@media only screen and (max-width: 640px) {

  .postcontent,
  .featimage {
    padding: 0 !important;
  }

  .header .title-bar .title-bar-title,
  .mouse-body,
  .tiny-map,
  .banner-map,
  span.close_ihp,
  .element-snippet {
    display: none !important;
  }

  .filter-button {
    /* display: block; */
    margin-bottom: 4px;
  }
  
  .section-accomms .row {
    display: block;
  }
  
  .single .featured-date span {
    display: block;
    padding-top: 15px;
    float: none;
  }

  .related-posts {
    padding-bottom: 0;
  }

  .post-slider .post-image {
    height: 260px;
  }

  .blog-new article.post,
  .archive .masonry .post,
  .category .masonry .post {
    width: 100%;
  }

  .blog-new .featured-post h3,
  .blog h3,
  .blog-new .article-header h2,
  .category .article-header h2,
  .blog-new .social-links *,
  .archive .social-links *,
  .single-post .social-links *,
  .single h3,
  .category h3,
  .blog h2,
  .single h2,
  .category h2 {
    font-size: 20px;
  }

  .banner-text,
  p {
    font-size: 16px;
  }

  .intro {
    padding: 30px 15px !important;
  }

  .tile h2 {
    font-size: 26px;
  }

  .slider .slide .text {
    width: 90%;
  }

  .slider .slide .text p {
    font-size: 16px;
    line-height: 1.4;
  }

  .slider .slide .button {
    font-size: 14px;
  }

  .feeds {
    padding-top: 0;
  }

  .feeds .blog-roll {
    padding: 15px 15px 0 15px;
  }

  .blog-roll .post-header img {
    display: block;
  }

  .home .cta {
    padding: 30px 10px 40px !important;
  }

  .home .footer .cta {
    padding: 30px 0 0 0;
  }

  .legend-content li {
    display: block;
    margin: 0;
  }

  .listing>.row>.large-3.columns {
    width: 100%;
  }

  .listing-logo {
    width: 100%;
    margin: 0 0 15px;
  }

  .listing-title {
    width: 100%;
    clear: both;
  }

  .listing h3 a {
    font-size: 24px;
  }

  .listing-contact .phone {
    border: none;
    margin-right: 0;
    padding-right: 0;
  }

  .listing .web a {
    font-size: 16px;
  }

  .element-tile {
    width: 100% !important;
    margin: 0 0 15px;
  }

  .events .event h2 {
    font-size: 14px;
  }

  .info .dates,
  .info .location {
    font-size: 14px;
  }

  .blog .post .medium-2.small-2 {
    display: none;
  }

  .blog .post .medium-10.small-10 {
    width: 100%;
    padding: 0;
  }

  .blog-roll .post-header h3 a {
    font-size: 24px;
  }

  .feeds .brush-stroke {
    display: none;
  }

  .off-canvas .close {
    display: inline-block;
  }

  .cr__gallery .mobileFullscreen__close {
    top: unset;
    bottom: 8px
  }

  .regions-map-legend {
    text-align: left;
    padding-left: 15px;
  }

  div#powerTip {
    top: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    height: auto !important;
  }

  .blog-new .island-moments-elements,
  .archive .island-moments-elements,
  .single-post .island-moments-elements {
    padding-left: 15px;
  }

  .blog-new .island-moments-elements-image-section a,
  .archive .island-moments-elements-image-section a,
  .single-post .island-moments-elements-image-section a {
    height: auto;
    display: block;
    text-align: left !important;
    margin-bottom: 15px;
  }

  .blog-new .sidebar h3,
  .archive .sidebar h3,
  .single-post .sidebar h3,
  .related-post h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .blog-new .featured-post,
  .blog-new article.post,
  .archive .masonry .post,
  .category .masonry .post {
    padding: 15px 0;
  }

  .blog-new .island-moments-elements-image-section,
  .blog-new .island-moments-elements-image-section a:last-of-type,
  .archive .island-moments-elements-image-section,
  .archive .island-moments-elements-image-section a:last-of-type {
    margin-bottom: 0;
  }

  .single-title {
    font-size: 22px;
  }

  .single .entry-content p,
  .entry-content *,
  .archive .cat-filter+h2 {
    font-size: 18px;
  }

  .featured-excerpt .read-more::after {
    width: 102px;
  }

  .related-post {
    padding: 15px 0;
  }

  .blog-new .left,
  .blog-new .right,
  .single .right,
  .single .left,
  .archive .left,
  .archive .right {
    padding: 0;
  }

  .blog-new .island-moments-elements-image-section a,
  .archive .island-moments-elements-image-section a,
  .single-post .island-moments-elements-image-section a {
    width: 25%;
  }

  .blog-new .island-moments-elements-image-section a,
  .archive .island-moments-elements-image-section a,
  .single-post .island-moments-elements-image-section a {
    width: 20%;
    height: 160px;
    margin-right: 0px;
    margin-top: 0px;
  }

  .teaser-slide h4 {
    font-size: 26px;
  }

  .summer-flings {
    padding: 60px 30px 120px;
  }

  .summer-flings .slick-arrow {
    display: none !important;
  }

  .summer-flings h2,
  .amp-travel h3,
  .embed h2,
  .embed h2 a {
    text-align: center;
    font-size: 26px !important;
  }

  .gradient-left,
  .gradient-right {
    width: 30px;
  }

  .filter-buttons-widget a {
    display: block;
    margin-bottom: 5px;
  }

  .listing-info h3 {
    font-size: 20px;
  }

  .listing .excerpt {
    font-size: 14px !important;
  }

  .listing-info h3 {
    font-size: 16px;
  }

  .listing-links,
  .listing-links .phone::after {
    font-size: 12px;
  }

  .tiles-section {
    padding: 30px 0;
  }

  .interesting-articles-section {
    padding: 120px 30px;
  }

  .interesting-articles-title,
  .tiles-section h2,
  .crowdriff h2 {
    font-size: 24px;
  }

  .crowdriff-title {
    font-size: 20px;
  }

  .amp-travel {
    padding: 120px 0;
  }

  .amp-travel::before,
  .amp-travel::after,
  .interesting-articles-section::before,
  .interesting-articles-section::after {
    height: 120px;
  }

  footer.footer {
    margin-top: 30px !important;
  }

  .summer-slider .slick-dots {
    bottom: -30px;
  }

}

@media (max-width: 480px) {

  .blog-new .island-moments-elements-image-section a,
  .archive .island-moments-elements-image-section a,
  .single-post .island-moments-elements-image-section a {
    height: 120px;
  }

  .teaser-slider .slide-image {
    min-height: 250px;
  }

  #content .embed h2,
  #content .embed h2 a {
    font-size: 16px !important;
  }

  .listing-info h3 {
    font-size: 14px;
  }

  .listing-links,
  .listing-links .phone::after {
    font-size: 10px;
  }

  .summer-slide h3 {
    font-size: 14px;
  }

}

@media (max-width: 430px) {

  .single .featured-date {
    display: none;
  }

  .summer-flings h2 {
    font-size: 22px;
  }

  .single-title {
    font-size: 18px;
  }

}

@media (min-width: 2000px) {

  .interesting-articles-section {
    padding: 200px 75px;
  }

  .teasers {
    padding-top: 150px;
  }

  .amp-travel {
    padding: 220px 0;
  }

  .teasers::before {
    height: 180px;
  }

  .summer-slider .slick-dots {
    bottom: -60px;
  }
}
