/* =========================================================
   Rock Ridge Resort at Royal Blue — Stylesheet
   Mobile-first, responsive
   ========================================================= */

html,
body {
    font-family: century-gothic-pro, sans-serif;
	font-size:20px;
	scroll-behavior: smooth;
}

:root {
  /* Brand palette pulled from the mockup */
  --rr-burgundy: #893935;          /* deep brand red */
  --rr-burgundy-deep: #893935;
  --rr-burgundy-dark: #893935;
  --rr-orange: #b8632d;            /* CTA on wildlife panel */
  --rr-cream: #f1ebdc;             /* page bg behind amenities */
  --rr-bone:  #f6f1e2;
  --rr-ink:   #2a1d18;
  --rr-text:  #3b2a23;
  --rr-muted: #7a675c;
  --rr-line:  #d9cfbe;
  --rr-white: #ffffff;

  /* Type */
  --f-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Lora", Georgia, serif;
  --f-script:  "Pacifico", "Brush Script MT", cursive;

  /* Layout */
  --container: 1280px;
  --container-narrow: 1080px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--rr-text);
  background: var(--rr-bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }


/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  border: 0;
}
.btn--book {
  background: var(--rr-burgundy);
  color: #fff;
  border: 0;
  outline: 1px solid #f0d9a8;
  outline-offset: -5px;
  padding: 14px 28px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.btn--book:hover { background: var(--rr-burgundy-deep); transform: translateY(-1px); }
.btn--sm {
  padding: 11px 20px;
  font-size: 12px;
}

.btn--ghost {
background: rgba(241, 235, 220, 0.85);
  color: var(--rr-orange);
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 30px;
  letter-spacing: 0.06em;
  padding: 16px 28px;
}
.btn--ghost:hover { background: var(--rr-cream); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(39, 16, 15, 0.60);
  color: #fff;
  padding: 14px var(--gutter);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 96px;
}
.site-header__book { justify-self: start; }

.site-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  
}
.site-header__logo {
  width: clamp(180px, 36vw, 320px);
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.45));
}

/* Hamburger */
.menu-toggle {
  justify-self: end;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Primary nav — mobile drawer */
.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(35, 18, 15, 0.96);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  z-index: 30;
}
.primary-nav.is-open { max-height: 480px; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px var(--gutter) 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.primary-nav a {
  display: block;
  padding: 14px 4px;
  color: #f6efde;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.primary-nav .btn { margin-top: 10px; align-self: flex-start; }

/* =========================================================
   HERO
   ========================================================= */
/* Hero sits at the very top; site-header absolute-positions over it */
.hero {
    background-image: url(../../images/hero-pool.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    position: relative;

}
.hero__img {
  width: 100%;
  height: clamp(420px, 78vh, 820px);
  object-fit: cover;
  display: block;
}

.hero__overlay {
    padding: 10em 1em 4em;
  text-align: center; 
  margin: 0 auto;
  position: relative;
  max-width: 888px;
}
.hero__overlay .btn{
    position:absolute;
    right: 0;
    bottom: 4em;
}

/* =========================================================
   STAY CARDS
   ========================================================= */
.stay {
  background: #fff;
  padding: 24px var(--gutter);
}
.stay__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stay-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
  isolation: isolate;
}
.stay-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.stay-card:hover .stay-card__img { transform: scale(1.04); }
.stay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .35s ease;
}
.stay-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  background: rgba(135, 54, 50, 0);
  opacity: 0;
  transition: opacity .35s ease, background-color .35s ease;
}
.stay-card:hover .stay-card__overlay,
.stay-card:focus-visible .stay-card__overlay {
  opacity: 1;
  background: rgba(135, 54, 50, 0.70);
}
.stay-card:hover::after,
.stay-card:focus-visible::after {
  opacity: 0;
}
.stay-card__script {
  font-family: var(--f-script);
  color: #fff;
  font-size: clamp(34px, 6vw, 56px);
  text-align: center;
  line-height: 1;
  text-shadow: 0 3px 10px rgba(0,0,0,.5);
  margin: 0;
  font-weight: 400;
}
.stay-card__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  text-align: center;
  background: #fff;
  color: var(--rr-burgundy);
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 31px;
  padding: 12px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* =========================================================
   WILDLIFE PANEL
   ========================================================= */
.wildlife {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.wildlife__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wildlife::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.wildlife__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 10vw, 110px) var(--gutter);
}
.wildlife__title {
  font-family: var(--f-display);
  font-weight: 800;
  color: #f8ffcf;
  font-size: clamp(28px, 5.5vw, 56px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.wildlife__subtitle {
  display: block;
  font-size: 0.78em;
  color: #f8ffcf;
  letter-spacing: 0.04em;
}
.wildlife__copy {
  max-width: 700px;
  font-size: 24px;
  color: white;
  margin: 0 0 28px;
  font-family: century-gothic-pro, sans-serif;
}
.wildlife__cta { font-family: var(--f-display); }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities {
  padding: clamp(40px, 7vw, 80px) var(--gutter) clamp(40px, 7vw, 80px);
  margin: 0 auto;
  max-width: 1000px;
}
.amenities__title {
    margin: 0 auto clamp(24px, 4vw, 40px);
    text-transform: uppercase;
    color: var(--rr-burgundy);
    font-size: clamp(20px, 3.4vw, 32px);
    font-weight: normal;
    font-family: century-gothic-pro, sans-serif;
}

.amenities__mosaic {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
} 
.m-tile {
  position: relative;
  overflow: hidden;
  background: #ccc;
  grid-row: span 2;
}
.m-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.m-tile:hover img { transform: scale(1.04); }
/* Mobile: a few size variants */
.m-tile--tall { grid-row: span 3; }
.m-tile--wide { grid-row: span 2; }

.amenities__pool {
  max-width: var(--container);
  margin: 14px auto 0;
  overflow: hidden;
}
.amenities__pool img {
  width: 100%;
  height: clamp(180px, 38vw, 440px);
  object-fit: cover;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color:#893935;
  color: #f6e7c8;
  padding: clamp(48px, 7vw, 80px) var(--gutter) 24px;
}
.site-footer__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { width: clamp(260px, 80%, 420px); height: auto; }
.footer-phone {
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-top: 8px;
  color: #fff;

}
.footer-hours{
    color:white;
    text-align: center;
}

.footer-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-map__frame {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 10 / 7;
  background: #f3efe6;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.footer-map__frame svg { width: 100%; height: 100%; display: block; }
.footer-addr {
    font-style: normal;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
    font-size: 30px;
}
.footer-directions {
  display: inline-block;
  background: #fff;
  color: var(--rr-burgundy);
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 0;
  outline: 1px solid var(--rr-burgundy);
  outline-offset: -5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transition: background-color .2s ease, color .2s ease, transform .15s ease;
}
.footer-directions:hover {
  background: var(--rr-cream);
  color: var(--rr-burgundy-deep);
  transform: translateY(-1px);
}

.site-footer__legal {
  margin-top: 44px;
  text-align: center;
  font-size: 12px;
  color: rgba(246, 231, 200, 0.6);
  letter-spacing: 0.08em;
}

/* =========================================================
   BREAKPOINTS
   ========================================================= */

/* Small tablets */
@media (min-width: 600px) {
  .stay__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stay-card { aspect-ratio: 3 / 4; }

  .amenities__mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }
  .m-tile--tall { grid-row: span 3; }
  .m-tile--wide { grid-row: span 2; grid-column: span 1; }
}

/* Desktop nav */
@media (min-width: 900px) {
  .site-header { padding: 18px var(--gutter); }
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 110px;
  }
  .menu-toggle { display: none; }
  .primary-nav {
    position: static;
    background: transparent;
    max-height: none;
    overflow: visible;
  }
  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    justify-content: flex-end;
  }
  .primary-nav a {
    border: 0;
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: var(--f-display);
    color: #fff;
    position: relative;
  }
  .primary-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #f6e7c8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .primary-nav a:not(.btn):hover::after { transform: scaleX(1); }
  .primary-nav .btn { margin-top: 0; }

  /* Show the standalone left book button on desktop too */
  /* (left-aligned via grid) */

  .site-header__inner { grid-template-columns: 1fr auto 1fr; }
  .site-header__book { grid-column: 1; justify-self: start; }
  .site-header__brand { grid-column: 2; }
  .primary-nav { grid-column: 3; }

  /* Wildlife: more breathing room */
  .wildlife__content { padding-block: 140px; }
}

/* Larger desktop — refine amenities mosaic to match the design */
@media (min-width: 900px) {
  .amenities__mosaic {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 110px;
    gap: 14px;
  }
  /* Recreate the editorial collage seen in the mockup
     Rows × cols on a 12-col grid */
  .m-tile:nth-child(1) { grid-column: span 4; grid-row: span 4; } /* roses (tall left) */
  .m-tile:nth-child(2) { grid-column: span 4; grid-row: span 2; } /* playground */
  .m-tile:nth-child(3) { grid-column: span 4; grid-row: span 2; } /* firepit */
  .m-tile:nth-child(4) { grid-column: span 4; grid-row: span 2; } /* helmets */
  .m-tile:nth-child(5) { grid-column: span 4; grid-row: span 5; } /* pavilion (tall right) */
  .m-tile:nth-child(6) { grid-column: span 4; grid-row: span 3; } /* rockers */
  .m-tile:nth-child(7) { grid-column: span 4; grid-row: span 3; } /* trail post */
  .m-tile:nth-child(8) { grid-column: span 4; grid-row: span 3; } /* camp host */
}

/* Footer two-column on tablet+ */
@media (min-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 64px;
  }
  .footer-brand { align-items: center; }
  .footer-map { align-items: center; }
}

@media (min-width: 1100px) {
  .site-footer__inner { gap: 100px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}


p{
	padding:.5em 0;
}

.nav__list__level-1 {
}

main .module {
	max-width: 1200px;
	margin: 0 auto;
}

h1{
	font-family: bello-script-pro, sans-serif;
    font-size: 70px;
}
.cms-content h1, .news-view h1, .events-view h1{
	font-size:60px;
}
.cms-content a,
.cms-content a:visited{
	color:#e0162b;
}
.cms-content a:hover{
	color:#273f5e;
}
h2 {
    font-size: 40px;
	color:#0052a5;
	padding-bottom: 0.5em;
}
h3{
	    color: #e0162b;
    font-size: 28px;
    padding-bottom: 24px;
}

.generic__1up, 
.generic__2up, 
.generic__3up, 
.generic__4up{
	display:flex;
	flex-wrap:wrap;
    justify-content: center;
    align-items: center;
}

.generic__inner{
	padding:4em 1em;
	max-width:1000px;
	margin:0 auto;
}
.generic__part{
	padding:1em;
}

nav {
    position: absolute;
    top: 0;
    right: 0;
	z-index: 2;
}
nav a,
nav a:visited{
	color:white;
}
.nav__link {
    background-color: transparent;
}
.nav__item-action {
    color: white;
	font-size: 30px;
}
#primary-nav-toggle .material-icons{
    color: white;
    position: absolute;
    top: 37px;
    right: 37px;
    z-index: 2;
    font-size: 52px;
}
.nav__item__current > .nav__item-actions .nav__link {
    background-color: #033262;
	color: white;
}
.nav__item:hover > .nav__item-actions .nav__link {
    background-color: #7d2a26;
	color:white;
}
.open .nav__menu {
    background-color: rgba(0, 0, 0, 0.5);
	padding: 3em 1em;
}

a.generic__link-button,
a.generic__link-button:visited,
.fb3__button,
.fb3__button:visited,
a.ctaphone,
a.ctaphone:visited{
	font-size:25px;
	color:white;
	background-color: #893935;
    padding: 0.4em 1.5em .5em;
    text-transform: uppercase;
	text-align: center;
	margin: 1em;
	font-weight:bold;
	transition: 0.3s;
	border: 0;
}
a.generic__link-button:hover,
.fb3__button:hover,
a.ctaphone:hover{
	background-color:#033262;
	color:white;
}

.services a.generic__link-button{
	margin: 1em 0 0 0;
}
.services a.generic__link-button:hover{
	background-color:white;
	color:#e0162b;
}


a.ctaphone,
a.ctaphone:visited {
	position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
}

.body__layout__default a.ctaphone,
.body__layout__default a.ctaphone:visited {
    position: absolute;
    top: 34px;
}

.body__layout__default .site-header{
	padding: 1em;
    position:initial;
    background-image: url(../../images/headerbg.jpg);
	background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
	color:white;
	position:relative;
}

.home-header{
	background-image: url(../../images/headerbg.jpg);
	background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
	color:white;
	position:relative;
}

.home-header h1,
.home-header h2{
	color:white;
	filter: drop-shadow(0 0 0.75rem black);
}
.header__inner {
	padding: 1.5em;
    position: relative;
    z-index: 1;
}
.heading-video-wrap {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
    height: 100%;
}
.video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    height: auto;
}
.video-wrap {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
    height: 100%;
}
.heading_video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    height: auto;
}



img.home-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 0;
}
a.header__logo-link {
    max-width: 200px;
    padding-bottom: 0.3em;
}
.body__layout__home a.header__logo-link {
    top: -114px;
}
.heading_splash {
    padding: 6em 0px;
	text-align:center;
	max-width:1045px;
	margin:0 auto;
}
.heading_splash h2{
	font-weight:normal;
    font-size: 46px;
	color:white;
}
a.phonenumber {
    font-size: 24px;
} 

.testimonial{
	background-color:#081740;
}
.testimonial .generic_inner{
	padding: 4em 1em 0;
	margin:0 auto;
	max-width: 855px;
}
.testimonial .generic__inner{
	padding:3em 1em;
}
.testimonial h2{
	color:#e0162b;
	padding-bottom:0;
}
.testimonials__quote,
.testimonials__citation-person,
.testimonial .material-icons{
	color:white;
}
.testimonials__citation-person{
	font-size: 25px;
    text-align: right;
}
.testimonials__quote::before {
    content: "\201C";
    display: inline;
    font-size: 140px;
    position: absolute;
    top: -43px;
    left: 0;
}

.contact {
	background-image: url(../../images/footerbg.jpg);
	background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}
.module.forms{
    color: white;
	max-width:100%;
}
form.fb3__form {
    text-align: left;
}
.body__layout__default .module.forms{
	background-color: #273f5e;
    color: white;
	max-width:100%;
}
.body__layout__default .module.forms .generic__inner{
	max-width:800px;
	margin:0 auto;
}
.contact h2{
	color:white;
	font-size: 70px;
	line-height:76px;
}
.contact .generic__2up{
	max-width: 1200px;
    margin: 0 auto;
}
.contact .generic__2up{
	align-items: center;
}
.contact p {
    max-width: 440px;
    margin: 0 auto;
    padding-bottom: 1em;
    font-size: 23px;
}
.forms__form-item-header{
	display:none;
}
.fb3__field-input, 
.fb3__field-select{
	color:black;
}
.fb3__field-heading-text {
    padding-bottom: 0.3em;
}
.contact .generic__2up .generic__part:nth-child(odd){
	text-align: center;
}
.contact a.phonenumber {
    font-size: 35px;
    color:white;
}
.contact a.phonenumber:hover {
    font-size: 35px;
    color:white;
}
.address {
    padding: 1em 0;
    font-size: 27px;
}
.body__layout__home .module.forms .generic__inner{
	padding:0;
}

.brands{
	text-align:center;
}
.brands .generic__inner{
	max-width:1000px;
	margin:0 auto;
}
.brands .brand-contain{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}
.brands img.logos {
	max-height: 54px;
    margin: 1em;

}

footer.footer{
	background-color:#893935;
	color:white;
}
a.footer{
	color:white;
}


.events__block{
	text-align: center;
}
.events__block .generic__inner{
	max-width:1200px;
	margin:0 auto;
}
.news__list .news__item {
    display: none;
}
.news__list .news__item:nth-child(1),
.news__list .news__item:nth-child(2),
.news__list .news__item:nth-child(3){
    display: block;
    max-width: 31.37%;
    text-align: center;
    background-color: white;
    border-radius: 12px;
    margin: .5em;
	min-width:300px;
}
.module.feeds.feeds__type__news .generic__inner{
	padding:0;
}
.news__short-description{
	display:none;
}
.home .news__list {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}
a.news__link.news__link__title {
    font-size: 26px;
}
.news__posted {
    padding-bottom: 1em;
}
li.news__item {
    padding-bottom: 1.5em;
    border-bottom: 1px solid #36c2df;
}

.news__item,
.news__item + .news__item{
	margin:1em;
}
.news__link.news__link__title {
    font-size: 20px;
    font-weight: bold;
	padding: 20px 20px;
    display:inline-block;
}
.news__short-description{
	font-size:16px;
	margin-top:1em;
}
.news__thumbnail {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    margin: 0;
    border-radius: 12px 12px 0 0;
}
div#News{
	text-align: center;
	position:relative;
}
div#News a.generic__link-button{
	position:absolute;
	left: 50%;
	margin-left: -100px
}

.feeds .feed_container:nth-child(1),
#footer-feed-4 {
	background-color:#f6f6f6;
	border-bottom: solid;
	border-color: #4bd28b;
	border-width: 6px;
}
.feeds .feed_container:nth-child(1) h2,
#footer-feed-4 h2 {
	font-size: 42px;
	text-align: center;
	font-weight: bold;
	color: #36c2df;
}

.feeds .feed_container:nth-child(2) h2,
#footer-feed-3 h2 {
	padding-bottom:1em;
}
.feeds .feed_container:nth-child(2),
.feeds .feed_container:nth-child(2) a,
#footer-feed-3,
#footer-feed-3 a {
		color:white;
}
.feeds .feed_container:nth-child(2) .events__date,
#footer-feed-3 .events__date {
	color: #454545;
}

.feeds .feed_container:nth-child(2),
#footer-feed-3 {
	background-image: url("../../images/footercontact.png");
  	background-repeat: no-repeat;
  	background-size: cover;
}
ul.events__list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.feeds {
	max-width:100%;
	margin:0 auto;
	position:relative;
}

.feeds .generic__inner,
.footer__feed .generic__inner {
	max-width: 855px;
	margin:0 auto;
	position:relative;
}

.module-gallery__item {
  padding: .2em;
}

img.icon {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


@media screen and (max-width: 1239px) {
    .heading_video {
        height: 100%;
        width: auto;
    }
}
@media screen and (max-width: 959px){
	.contact .generic__2up,
	.cost .generic__2up{
		flex-direction: column;
	}
	.value .generic__2up{
		flex-direction:column-reverse;
	}
	.contact .generic__part,
	.value .generic__part,
	.cost .generic__part{
		width:100%;
	}
	.brandscript .generic__inner {
		margin: 0 auto;
	}
}
@media (max-width:824px){
	.process .generic__part {
		width:100%;
		max-width: 100%;
	}
}
@media (max-width: 767px){
	.nav {
		max-height: initial;
		overflow-y: initial;
	}
	h1 {
		font-size: 48px;
		line-height: 56px;
	}
	.heading_splash h2 {
		font-size: 34px;
	}
	.home-header {
		background-position: 23% center;
	}

}
@media (max-width: 600px){
    .m-tile--tall {
  display: none;
    }
}
@media (max-width: 570px){
	a.header__logo-link {
		    max-width: 200px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.header__logo-image {
    display: block;
    max-width: 100%;
    height: auto;
    padding-top: 1.5em;
	}
	
	a.generic__link-button, a.generic__link-button:visited, a.fb3__button, a.fb3__button:visited {
		font-size: 20px;
		line-height: 31px;
	}
	a.ctaphone, a.ctaphone:visited {
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 0.5em 1em;
		z-index: -1;
		text-align: center;
	}
	.heading_splash {
    padding: 1em 0px;
	}
    .site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  min-height: 96px;
    }
    .hero__overlay .btn {
  bottom: 12px;
    }
}

@media screen and (max-width: 450px){
	h2, 
	.contact h2 {
		font-size: 32px;
		line-height: 35px;
	}
	h1 {
		font-size: 37px;
	}
	.heading_splash h2 {
		font-size: 28px;
	}
	.header__inner {
		padding: 1em;
	}
	.generic__link-button,
	.fb3__button {
		font-size: 20px;
	}
	
	
}