/* Styling Breck Cabin */

:root {
	--main-color: #294545;
  --transparent-bg-color: #294545b5;
  --shadowmain-color: #223a3a;
}
.theform-ct7 ::-webkit-input-placeholder {color: #888895; font-weight: 400; font-size: 16px;} /* Chrome/Opera/Safari */
.theform-ct7 ::-moz-placeholder { color: #888895; font-weight: 400; font-size: 16px;} /* Firefox 19+ */
.theform-ct7 :-ms-input-placeholder { color: #888895; font-weight: 400; font-size: 16px;} /* IE 10+ */
.theform-ct7 :-moz-placeholder {color: #888895; font-weight: 400; font-size: 16px;}  /* Firefox 18- */
html {
    scroll-behavior: smooth;
}
body, p, h1, h2, h3, h4, h5, h6, a , span, li, small, button, input, select, label, caption, td, th {
  font-family: 'Oswald', sans-serif;
  color: var(--main-color);
}
a:active, a:focus, a:target {
    outline: none;
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #397070;
}

::-webkit-scrollbar
{
    width: 6px;
    background-color: #397070;
}

::-webkit-scrollbar-thumb
{
    background-color: #1c3a3a;
}
div#access_container button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* width: 140px; */
}
button.close_container.wahout {
    margin: 10px !important;
}


@media screen and (max-width: 412px){
    .header-logo img {
        height: 47px;
        width: auto !important;
    }
}
/* HEADER */

.main-header {
	background-color: var(--main-color);
	position: relative;
  z-index: 700;
  box-shadow: 1px 1px 20px #0005;
}


input.sub-button {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background-color: #294545;
    border-color: #294545;
    transition: 0s ease-out;
}
input.sub-button:hover {
    background-color: #293030;
    border-color: #293030;
}
#menu-toggle:checked ~ nav input.sub-button{
    opacity:1;
    visibility:visible;
}
.header-container {
    padding: 10px 3px;
    margin: 0 auto;
    display: flex;
    width: 94%;
    column-gap: 18px;
    justify-content: space-between;
    align-items:center;
}
.header-logo h1 {
	margin: 0;
    display: flex;
}
.header-logo h1 a {
    display: flex;
}
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.header-nav a {
    color: #fff;
    font-weight: 400;
}
.nav-holder {
    display: flex;
    height: 100%;
}



.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: flex;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu {
  position: absolute;
  top: 0;
  margin-top: 88px;
  left: 0;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(135deg);
}
.sub-menu {
    width: 100%;
    background-color: var(--shadowmain-color);
}
.subpage-hero h1, .subpage-vrp-hero h1 {
  font-size: 2.75rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 7px #000a;
}
.list-w-b {
    padding: 10px;
    background-color: #f3f3f3;
    flex: 1;
}
.premium-hero-wrap.cabin-container.rtl {
  margin-bottom: 10px;
}
.guest-single {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #f2f2f2;
}
.guest-img img {
    margin: 0 auto;
    width: 100px;
    padding: 10px;
    display: block;
    border-radius: 999px;
    border: 1px solid #cecece;
}
.guest-img small {
    margin-bottom: 7px;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 17px;
}


@media (max-width: 1024px) {
  .menu {
    background-color: var(--main-color);
  }
  i.fa.fa-arrow-down.fa-dod {
      color: #efefef;
      position: absolute;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      right: 0;
      top: 0;
      width: 55px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  #menu-toggle:checked ~ nav .menu > li i.fa.fa-arrow-down.fa-dod {
    opacity: 1;
    visibility:visible;
  }
  #menu-toggle ~ nav .menu li .sub-menu {
    display: none;
    padding-left: 15px;
  }
  #menu-toggle ~ nav .menu > li {
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ nav .menu > li {
    /*border: 1px solid #333;*/
    min-height: 2.5em;
    max-height: 550px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ nav .menu > li a{
    padding: 0.5em 1em;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: var(--main-color);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  ul.sub-menu li {
      display: flex;
      text-align: left;
  }
  .menu-item-has-children > a {
      flex: 1 0 27%;
  }
  .menu > li a {
      transition: none;
  }
  .header-nav a {
    text-align: left;
  }
  /*
  .second-imageshow {
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
  }*/


 

}

@media screen and (min-width: 400px){
    .header-container {
        width: 91%;
    }
}

/* HEADER END */


/* HOMEPAGE*/

/* VIDEO - SLIDE */

.homepage-hero {
    width: 100%;
    height: 100vh;
    max-height: 89vh;
    display: flex;
    flex-direction: column;
}



.hero-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.herotile {
	position:absolute;
  z-index: 4;
  width: 90%;
  text-align: center;
}
div#slideshow {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slick-list {
    width: 100%;
    height: 100%;
}
.slick-track {
    height: 100%;
}
.homepage-hero-slider {
    background-size: cover;
    background-position: center;
}

/* HOMEPAGE CONTENT */

.vrpsearcher {
    padding: 8px 4px;
    width: 100%;
    min-height: 307px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--main-color);
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.vrpsearcher .abe form {
   margin-bottom: 0;
}
.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow:hidden;
    background-size: cover;
    background-position: center;
}
.video-container video {
    position: absolute;
    transform: scale(3.5);
    object-fit: initial;
}
.intro-content {
    margin: 50px;
    font-size: 24px;
}
.intro-content p {
    margin: 0;
}
.cabin-container {
    margin: 0 auto;
    max-width: 1500px;
    width: 95%;
}
.subheading h2 {
    text-align: center;
    /* font-size: 40px; */
    font-size: 2em;
}
.grid-flex3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}
.grid-flex3 > h3, .headline-blog.nounderline {
    font-size: 2em;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.grid-flex3 > h3:before {
    position: absolute;
    bottom: -15px;
    width: 100%;
    height: 2px;
    background-color: #a1a1a1;
    content: "";
}
.grid-post {
    flex: 1 0 100%;
    display: flex;
    height: 320px;
    transition: all 0.4s ease-out;
}
.grid-post a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}
.grid-flex3 > .grid-post:hover {
    transform: scale(1.02);
}
.grid-and-sidebar .displayflexposts a {
    text-align: left;
}
.headtile-bg {
    width: 100%;
    background: var(--transparent-bg-color);
}
.headtile-bg h3 {
    margin: 14px 0;
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
}
.slideshow-below-container {
    margin: 40px 0 30px 0;
    /* height: 100%; */
    position: relative;
}
.second-imageshow {
    background-size: cover;
    background-position: center;
}
#slideshowbelow {
  height: 100%;
}
.content-slideshowbelow {
    background-color: var(--transparent-bg-color);
    text-shadow: 0 0 14px #000c;
}
.content-slideshowbelow.withslideshow {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 50%;
}
.inner-content.slide-content {
    padding: 30px;
    height: 100%;
}
.content-slideshowbelow h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 2em;
    font-weight: 200;
}
.slideshow-content {
    margin: 15px 0;
    display: block;
}
.content-slideshowbelow p {
    color: #fff;
    font-size: 24px;
    line-height: 1.9em;
}
.content-slideshowbelow a {
    padding: 10px 65px;
    background-color: #000;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.content-slideshowbelow a:hover {
    background-color: #fff;
    color: #000;
    text-shadow: none;
}
.subheading h4 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 2em;
}
.custom-reviews {
    width: 100%;
    background-color: var(--transparent-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews-bg {
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
}
.reviews-bg .slick-list {
    margin: 0 auto !important;
    width: 80%;
}
.reviews-bg .slick-next {
    right: 0;
}
.reviews-bg .slick-prev {
    left: 0;
}
.reviews-container {
    margin: 50px auto;
    max-width: 1115px;
    width: 95%;
    text-shadow: 0 0 7px #000a;
}
.reviews-container h5 {
    font-size: 2em;
    color: #fff;
    text-align: center;
}
.reviews-container p {
    font-size: 24px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px #000;
}

.span-label {
    display: block;
    text-align: center;
    color: #fff;
}

/* BLOG */

.categories-flex {
    margin-bottom: 20px;
    display: flex;
    row-gap: 10px;
    flex-wrap: wrap;
    column-gap: 10px;
}
.categories-flex a {
    padding: 10px;
    background-color: #294545;
    color: #fff;
    font-size: 1.2em;
}



footer {
    background-color: var(--main-color);
    overflow: hidden;
}
.footer-main {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    justify-content: space-between;
}
.footer-part {
    margin-bottom: 30px;
    line-height: 1.6em;
}

.footer-part li, .footer-part p, .footer-part li a, .footer-part h4 {
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 10px #0009;
}
footer .menu > li{
    background: none;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 0 !important;
}
.footer-part h4 {
    margin-bottom: 15px;
    font-size: 30px;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
.socials a {
    width: 40px;
    height: 40px;
}
.socials a img {
    width: 100%;
    height: 100%;
}
.footer-part p {
    margin-bottom: 0;
}
.footer-part a {
    color: #fff;
}
footer .menu {
    position: static;
    margin-top: 0;
    display: block;
}
.footer-main address {
    font-style: normal;
}

.footer-bottom {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
}
.footer-bottom .cwleft {
    display: flex;
    flex-direction: column;
}
.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.footer-bottom ul.menu {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}
.footer-bottom .menu > li{
    margin: 0 0.35rem;
    background-color: #fff;
    color: #222;
    border: none;
    justify-content: center;
    align-items: center;

}
.copyright span {
    display: none;
}


/* SINGLE PAGE*/
.subpage-hero {
    width: 100%;
    height: 84vh;
    display: flex;
    flex-direction: column;
}
.featured-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.container-margintopbottom {
    margin-top: 30px;
    margin-bottom: 30px;
}
.cabin-container.container-margintopbottom p,  .cabin-container.container-margintopbottom li{
    font-size: 1.1em;
}
.content-offset-done p {
    font-size: 1.3em !important;
}
.container-margintopbottom ul {
    padding-left: 40px;
}
.container-margintopbottom li {
    list-style: disc;
}
.contact-us-row {
    display: flex;
    flex-direction: column;
}
.contact-us-column {
    margin-bottom: 40px;
}
.contact-info {
    padding: 30px 10px;
    background-color: #efefef;
}
.contact-info address {
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.8em;
}
.contact-info address p {
    margin: 0;
}
.contact-info address a {
    font-weight: 400;
}
.c-weather {
    margin-top: 10px;
}
.contact-us-row .contact-us-column > h2 {
    font-size: 2.2em;
}
.theform-ct7 label {
    font-size: 1.068em !important;
}
.theform-ct7 input, .theform-ct7 textarea {
    padding: 10px;
    background-color: #ededed;
    border: none;
}
.theform-ct7 input[type="submit"] {
    background-color: #000;
    border: 2px solid black;
}
.theform-ct7 span {
    color: #dc193e;
}


/* Property management */

.premium-hero-wrap {
    margin: 25px auto;
}
.premium-hero {
    background-image: url(https://breckcabin2.wpengine.com/wp-content/uploads/2022/06/slide1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    overflow: hidden;
}
.premium-content {
    padding: 10px;
    /*padding: 40px 30px 40px 0;
    margin: 100px 0 100px 0px;*/
    width: 100%;
    background-color: #fffd;
    /* line-height: 1.5em; */
}
.premium-content h1 {
    margin-bottom: 25px;
    font-size: 3em;
    /* font-weight: 400; */
}
.premium-content h2 {
    line-height: 1.3em;
    font-size: 2em;
}
.premium-content h3, .premium-content p {
    line-height: 1.6em;
    font-size: 1.3em;
}
.list-w-b h2 {
    line-height: 1.3em;
    font-size: 2em;
}
.banner {
    margin: 30px 0;
    padding: 0 20px;
}
.banner h4 {
    font-size: 1.8em;
}
.rtl .premium-hero {
    background-position: left;
}
.rtl .premium-content {
    padding: 10px;
    /*
    margin: 100px 0px 100px auto;
    padding: 40px 0 40px 40px;*/
}
.cabin-container.list-your-home .contact-us-row > div:first-of-type {
    display: flex;
}
.premium-hero-wrap.cabin-container.rtl {
    margin-bottom: 50px;
}


/* 404*/

.main404 {
    display: flex;
    flex-direction: column;
    background-image: url(/wp-content/uploads/2022/06/colorado-out-of-town.jpg);
}
.main404 .herotile {
    position: static;
}
.message404 {
    margin-top: -47px;
    padding: 30px;
    background-color: #294545e6;
    backdrop-filter: blur(1px);
}
.message404 p {
    color: #fff;
    margin: 0;
}


/* VRP */

.subpage-vrp-hero {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
}

.moreament-container {
  margin-bottom: 7px !important;
  display: flex !important;
  padding: 0 !important;
  column-gap: 5px;
  row-gap: 5px;
  flex-wrap: wrap;
}

.more-amenities-inner {
  padding: 10px;
  width: 110px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
}

.more-amenities svg {
  width: 35px;
  height: auto;
}

.more-amenities-txt {
  text-align: center;
  font-size: 14px;
}

.more-amenities-txt p {
  margin: 0 !important;
}
/* Things to do*/





.displayflexposts {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    flex: 1 0 100%;
}
.grid-post-bg {
    display: flex;
    background-position: center !important;
    background-size: cover !important;
    align-items: flex-end;
    overflow: hidden;
    width: 100%;
    position:relative;
    cursor: pointer;
}
.grid-post-bg:before {
    position: absolute;
    background-image: url(/wp-content/uploads/2022/06/background_repeat.png);
    width: 100%;
    height: 100%;
    content: "";
}
.grid-post.thingstodo-post .headtile-bg {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-height: 60px;
    transition: all 1s ease-in-out;
    /* align-items: flex-end; */
}
.grid-post.thingstodo-post .headtile-bg h3 {
    margin: 15px;
}
.blog-archive .grid-post.thingstodo-post .headtile-bg{
    max-height: 110px;
}
.blog-archive .grid-post.thingstodo-post .headtile-bg h3{
    margin: 15px 15px 0;
}

.blog-archive .headtile-bg small {
    margin: 0 15px 15px 15px;
    color: #fff;
}
.post-shortcontent {
    padding: 0 15px;
    /* color: #fff; */
    opacity: 0;
    width: 100%;
    max-height: 0;
    visibility: hidden;
    overflow: auto;
    transition: all 1s ease-in-out;
}
.post-shortcontent p {
    color: #fff;
}

.grid-post.thingstodo-post:hover .headtile-bg {
    max-height: 300px;
}
.grid-post.thingstodo-post.things-to-do-clicked .headtile-bg,
.grid-post.thingstodo-post.things-to-do-clicked {
    max-height: 350px;
}
.grid-post.thingstodo-post:hover .post-shortcontent {
    opacity: 1;
    max-height: 300px;
    visibility: visible;
}
.grid-post.thingstodo-post.things-to-do-clicked .post-shortcontent{
    visibility: visible;
    max-height: 300px;
    opacity: 1;
}

.content-offset {
    margin: 0 0 30px 0;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}
.content-offset-inner {
    background-color: #fff;
}
.content-offset h2 {
    font-size: 2.2em;
}
.nav-custom-post-cats {
    margin: 30px 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav-custom-post-cats h3 {
    margin-bottom: 15px;
    font-size: 2em;
}
.nav-custom-flex {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    column-gap: 24px;
}
.nav-custom-flex a {
    margin-bottom: 8px;
    display: block;
    width: 100%;
    font-size: 1.5em;
    background-color: #dedede;
    
}
.other-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
h4.other-info-h {
    margin: 20px 0;
    font-size: 2em;
    flex: 1 0 100%;
}
/* Maps page */

.map-wrapper {
    display: flex;
}
.map-wrapper iframe {
    min-height: 85vh;
}

/* contact us*/
.forminator-ui.forminator-design--flat .forminator-label{
    font-size: 1.06em !important;
    font-weight: 400 !important;
    color: #294545 !important;
}

.pagination-inner span {
    font-weight: 400;
    color: #B88B4A;
    background-color: #fff;
    padding: 0.25rem 1rem 0.2rem;
}
.pagination-inner a {
    font-weight: 400;
    color: #000;
    padding: 0.25rem 1rem 0.2rem;
    background: #8989892b;
}




@media screen and (min-width: 768px){
  
  .herotile {
    width:515px;
  }
  
  .grid-flex3 {
    margin: 0 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
  .other-info {
    margin: 0 30px;
  }

  .grid-post {
      flex: 1 0 30%;
      max-width: 50%;
  }
  .slideshow-below-container {
      margin: 70px 0 30px 0;
  }
  .footer-main {
    margin: 50px 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-part {
      flex: 0 0 49%;
      max-width: 49%;
      /* color: #fff; */
  }
  .subpage-hero {
    height: 71vh;
  }
  .contact-us-row {
    flex-direction: row;
    column-gap: 40px;
    justify-content: space-between;
  }
  .contact-us-column {
    flex: 1 0 47%;
    max-width: 49%;
  }
  .contact-info{
    padding: 30px;
  }
  .c-weather {
      margin-top: 30px;
  }
  .headline-blog.nounderline:before{
    position: absolute;
    bottom: -15px;
    height: 2px;
    background-color: #a1a1a1;
    content: "";
  }
  .grid-flex3 > h3:before {
      width: calc(100% + 50px);
  }
  .displayflexposts {
    row-gap: 30px;
  }
  .blog-sidebar {
    margin: 0 30px;
  }

  

  .subpage-vrp-hero{
    height: 45.8vh;
  }
  .subpage-hero h1, .subpage-vrp-hero h1 {
      font-size: 3.75rem;
  }

  .banner {
    padding: 0 25px;
  }

  


}
@media screen and (min-width: 960px){
  .vrpsearcher {
    min-height: 65px;
    justify-content: center;
  }
  
  .vrpsearcher .abe input, .vrpsearcher .abe select, .vrpsearcher .abe button {
      margin-bottom: 0;
  }
  .inner-content.slide-content {
      padding: 120px 80px;
  }
  .other-info {
    flex-direction: row;
  }
  .info-part {
      flex: 1 0 48%;
      max-width: 100%;
  }
  .info-part-small {
      flex: 0 0 20%;
  }
  .other-info {
      column-gap: 30px;
  }
  .subpage-hero {
    height: 53vh;
  }
  .footer-part {
      flex: 0 0 24%;
      max-width: 24%;
      /* color: #fff; */
  }
  .footer-part .menu > li {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: row;
  }
  .footer-bottom .cwleft {
    flex-direction: row;
    align-items: center;
  }
  .footer-bottom ul.menu {
    margin: 0;
  }
  .copyright span {
    margin-left: 5px;
    display: inline;
  }
  .footer-bottom .menu > li {

  }


}
@media screen and (max-width: 1024px) and (orientation:landscape){
    .subpage-hero{
        height: auto;
    }
}
@media screen and (min-width: 1025px){
  .menu-button-container {
    display: none;
  }
  .menu {
    position: static;
    top: 0;
    margin-top: 0;
    left: 0;
    flex-direction: initial;
    width: initial;
    justify-content: initial;
    align-items: initial;
  }
  .nav-custom-flex {
      flex-direction: row;
  }
    .nav-custom-flex a{
      width: initial;
      background-color: #fff;
  }
  .menu > li {
    overflow: visible;
  }
  .nav-holder nav {
    display: flex;
    align-items: center;
  }
  .menu-primary-menu-container > ul > li {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
  }
  .menu-primary-menu-container > ul > li:before {
      position: absolute;
      top: -5px;
      width: 0;
      height: 1px;
      background-color: #fff;
      content: "";
      transition: all 0.4s ease-in-out;
  }
  .menu-primary-menu-container > ul > li:hover:before {
    width: 100%;
  }
  .menu-primary-menu-container > ul > li.current-menu-item:before, .menu-primary-menu-container > ul > li.current-menu-ancestor:before {
    width: 100%;
  }
  .sub-menu {
      min-width: 160px;
      padding: 10px 0 0 0;
      opacity: 0;
      transform: translateY(-50px);
      visibility: hidden;
      position: absolute;
      top: 33px;
      /* text-align: center; */
      background-color: #294545;
      box-shadow: 0px 8px 9px #0004;
      z-index: -1;
      transition: all 0.4s ease-out;
  }
  .menu-primary-menu-container > ul > li:hover .sub-menu {
      transform: translateY(0px);
      opacity: 1;
      visibility: visible;
  }
  ul.sub-menu li {
      padding: 10px;
      display: flex;
      line-height: 1.2em;
      /* text-transform: uppercase; */
      transition: all 0.3s ease-out;
  }
  ul.sub-menu li:hover {
      background-color: #171717;
  }
  .header-nav ul.sub-menu a {
      font-weight: 400;
      font-size: 18px;
      width: 100%;
      height: 100%;
  }


  .video-container video {
    transform: scale(1.5);
  }
  .content-slideshowbelow {
      margin-left: auto;
      width: 50%;
  }
  .content-offset {
    margin: 0 30px 15px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .content-offset-inner {
      position: absolute;
      width: 57%;
      padding: 25px 25px 25px 0;
      background-color: #fff;
  }
  .image-offset {
      width: 48%;
      margin-left: auto;
  }

  .grid-and-sidebar {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      column-gap: 30px;
      row-gap: 30px;
  }
  .pagination {
      order: 3;
      flex: 1 0 100%;
  }
  .premium-hero {
    background-size: 85%;
  }
  .premium-content {
    padding: 40px 40px 40px 0;
    margin: 100px auto 100px 50px;
    width: 70%;
    background-color: #fff;
  }
  .premium-content h1 {
    font-size: 2.3em;
  }
  .banner {
      margin: 30px;
      text-align: center;
  }
  .banner h4 {
    margin-bottom: 0;
  }
  .rtl .premium-content {
      margin: 100px 0px 100px auto;
      padding: 40px 0 40px 40px;
  }
  .guest-single {
    flex-direction: row;
    flex: 1 0 48%;
    max-width: 50%;
  }
  .guest-img {
      flex: 0 0 20%;
      max-width: 20%;
  }
  .guest-img img {
      width: auto;
  }
  .guest-content {
      margin: 15px 15px 0 15px;
  }



}
@media screen and (min-width: 1025px) and (max-width: 1300px){
    .header-nav a {
        font-size: 1.15rem;
        text-align: center;
    }
    .header-nav .sub-menu a {
        text-align: left;
    }
    .homepage-hero {
        max-height: 86vh;
    }
    .sub-menu {
        top: 50px;
    }
}
@media screen and (min-width: 1200px){
  
  .vrp-container {
      margin: 0 auto;
      width: 1175px;
  }
  .reviews-container {
    width: 100%;
  }
  
  .grid-and-sidebar .blog-sidebar {
      order: 2;
      flex: 1 0 18%;
  }
  .grid-and-sidebar .grid-flex3, .single-post-content .grid-and-sidebar .grid-post-content-holder{
      flex: 1 0 74%;
      max-width: 80%;
  }

  .headline-blog.nounderline {
      margin-bottom: 50px;
  }
  .headline-blog.nounderline:before{
    width: 100%;
  }
  .grid-and-sidebar {
    flex-direction: row;
  }
  .grid-and-sidebar .grid-flex3 {
    flex: 1 0 74%;
    flex-direction: row;
    max-width: 80%;
  }
  .blog-sidebar {
    margin: 0;
  }
  .premium-content {
    width: 50%;
  }
  .list-w-b {
      padding: 20px 25px;
  }
}
@media screen and (min-width: 1350px){
  .video-container video {
    transform: scale(1);
  }
  .homepage-hero {
    max-height: 89vh;
  }

}
@media screen and (min-width: 1113px) and (max-width: 1450px){
    .banner {
        margin-top: 30px;
    }
}
@media screen and (min-width: 1450px){
    .premium-content {
        width: 30%;
    }
    .banner {
        margin-top: -10px;
    }
}
@media screen and (min-width: 1510px){

  .inner-content.slide-content {
      padding: 150px;
  }
  .content-offset {
    margin: 0;
  }

  .grid-flex3 {
      margin: 0;
  }
  .other-info {
    margin: 0;
  }
  .container-margintopbottom {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .footer-main {
    margin: 55px 0px;
  }
  .premium-content {
    margin: 70px auto 70px 0;
  }
  .premium-content h1 {
    font-size:3em;
  }
  .content-offset h2 {
        font-size: 3em;
  }
  .banner {
      margin: 35px 0 45px;
  }

  
}
@media screen and (min-width: 1610px){
    .cabin-container {
      width: 100%;
    }

}