/*-----------------------------------------------------------------------------
author:    www.visityakima.com
-----------------------------------------------------------------------------*/


/* =Yakima Valley Tourism Global
-----------------------------------------------------------------------------*/
* {
  	margin: 0;
  	padding: 0;
	}
	  
body {
  	background:#ffffff;
	font-family:Arial, sans-serif; 
	font-size:100%;
	color:#000;
	position: relative;
	}

/* Default State: Visually Hidden */
.skip-link {
  position: absolute;
  top: -100px; /* Moves the link out of the visible area */
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100; /* Ensures it sits on top of other elements */
  transition: top 0.3s;
}

/* The "Only Show When Focused" part */
.skip-link:focus {
  top: 0; /* Moves the link into view */
}
	
.container {
	background:#ffffff;
	max-width:2200px;
	margin:66px auto 0 auto;
	padding:0 0 0 0;
    position: relative;
	}

.mc-layout__modalContent {
	background: #fff;
	}

/* =eblast pop-up
-----------------------------------------------------------------------------*/

#overlayPop {
            display: none; /* Initially hidden */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent background */
            justify-content: center;
            align-items: center;
            z-index: 9500;
        }

        #popup {
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            overflow: hidden; /* To contain the image */
            position: relative; /* For positioning the close button */
            /* Initial size for larger screens */
            width: 400px;
            height: 400px;
        }

        #popup img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensure the image covers the entire popup */
        }

        #close-btnPOP {
            position: absolute;
            top: 0px;
            right: 0px;
            background: none;
            border: none;
            font-size: 35px;
            cursor: pointer;
            color: #fff;
            padding: 0;
            line-height: 1;
			background: #000;
			padding:5px 10px;
			-webkit-transition: all 0.4s ease-in-out;
			-moz-transition: all 0.4s ease-in-out;
			-o-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out; 
        }
	  
	  #close-btnPOP:hover {
            color: #000;
			background: #8c182d;
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {
            #popup {
                width: 75%;
                height: auto; /* Adjust height based on image aspect ratio */
            }
        }
	
/* =travel Blog Btn
-----------------------------------------------------------------------------*/
.travelBlogFloatingBtn {
	position: fixed;
    bottom: 20px;
    left: 20px;
    display: block;
    width: 150px;
    text-decoration: none;
    color: white;
    font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;    
    transition: background 0.4s ease, transform 0.4s ease;
	background:url(../img/topo-bg-orange.gif) #eb6d24;
  	background-size: cover;
  	background-position: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
	z-index:9996;
    }

/* Hover effects */
.travelBlogFloatingBtn:hover {
	background-image:none;
    background: #8c182d;
    transform: translateY(-5px);
    }

.travelBlogFloatingBtn span {
	display:block;
    }

/* Text area */
.link-text i {
    display:block;
	}

.link-text {
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
	}

/* Optional subtle pulse animation for life */
.travelBlogFloatingBtn {
	animation: floatPulse 4s ease-in-out infinite;
    }
@keyframes floatPulse {
      0%, 100% {
transform: translateY(0);
      }
50% {
        transform: translateY(-3px);
      }
	}
	
@media screen and (max-width: 970px) {

.travelBlogFloatingBtn {
    width: 100px;
    font-size: 1rem;
    text-align: center;    
    }
	
.link-text {
    padding: 10px;
	}
	
}
	

	
/* =header navigation
-----------------------------------------------------------------------------*/
header, 
header * {
  box-sizing: border-box;
}

header {
	padding: 0;
	margin:0;
	}
	  
nav {
	position: fixed;
	z-index: 9997;
 	width: 100%;
  	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
  	background: #8c182d;
  	background:url(../img/nav-bg-topo-3.jpg);
  	background-size: cover;
  	background-position: center;
	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
	top:0;
	}
	
nav .wrapperNav {
  	position: relative;
  	max-width: 2200px;
  	width:92%;
  	padding: 0 0;
  	height: 85px;
  	line-height: 85px;
  	margin: auto;
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
	}
	
.wrapperNav .logo a img {
	position:absolute;
	top:15px;
	left:0;
	height:100px;
	z-index:9999;
	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
	}
	  
.wrapperNav .nav-links{
 	display: inline-flex;
	display: flex;
  	justify-content: flex-start;
  	flex-grow: 1;
	padding-left:300px;
	}
	  
.nav-links li {
  	list-style: none;
	}
	  
.nav-links>li>a {
  	color: #ffffff;
  	text-decoration: none;
  	font-size: 22px;
  	padding: 9px 15px;
 	border-radius: 5px;
  	transition: all 0.5s ease;
	}
	  
.nav-links li a.navImage {
  	text-decoration: none;
  	padding:0;
	}
	  
.nav-links li a.navImage img {
 	border-radius: 5px;
	}
	  
.nav-links>li:hover > a {
   	background:#68091a;
   	color:#fff;
	}
	  
.nav-links li a.navImage:hover {
  	background:none;
	}
	  
.wrapperNav .nav-links li a.travelGuideBtnNav {
	background: #eb6d24;
	background:url(../img/topo-bg-orange.gif) #eb6d24;
	}
	
.travelGuideBtnNav:hover i {
  animation: pulse 2s infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
	  
.wrapperNav .nav-links li a.travelGuideBtnNav:hover {
	background: #0f3e52;
	}
	  
.nav-links .mobile-item, .nav-links .mobile-search {
  	display: none;
	}
	  
.wrapperNav .nav-links li:last-child {
	margin-left: auto; /* Push last item to the right */
	}
	  
.nav-links .drop-menu {
  	position: absolute;
  	background-color: #68091a;
  	background:url("../img/dropdown-bg-drk-red.gif");
  	background-size: cover;
  	background-position: center;
  	width: 200px;
  	line-height: 45px;
  	top: 85px;
  	opacity: 0;
  	visibility: hidden;
  	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
	border-radius: 0 10px 10px 10px;
	}
	  
.nav-links li:hover .drop-menu, .nav-links li:hover .mega-box {
  	transition: all 0.5s ease;
  	top: 60px;
  	opacity: 1;
  	visibility: visible;
	}
	  
.drop-menu li a {
  	width: 100%;
  	display: block;
  	padding: 0 0 0 15px;
  	border-radius: 0px;
	font-size: 16px;
	text-decoration: none;
	color:#fff;
	transition: all 0.5s ease;
	}
	
.drop-menu li a:hover {
  	background:#fff;
	color:#8c182d;
	}
	
.drop-menu li:first-child a:hover {
  	border-radius: 0 10px 0 0;
	}
	
.drop-menu li:last-child a:hover {
  	border-radius: 0 0 10px 10px;
	}
	
.drop-menu li {
  	border-bottom:1px #8c182d solid;
	}
	
.drop-menu li:last-child {
  	border-bottom:none;
	}
	  
.mega-box {
  	position: absolute;
  	left: 0;
  	width: 100%;
  	padding: 0 30px;
  	top: 85px;
  	opacity: 0;
  	visibility: hidden;
	}
	  
.mega-box .content {
	background-color: #68091a;
  	background:url("../img/dropdown-bg-drk-red.gif");
  	background-size: cover;
  	background-position: center;
  	padding: 25px 20px;
  	display: flex;
  	width: 100%;
  	justify-content: space-between;
 	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
	border-radius: 0 10px 10px 10px;
	}
	  
.mega-box .content .row {
  	width: calc(25% - 30px);
  	line-height: 35px;
	padding-left:25px;
	}
	
.mega-box .content .row:first-of-type {
	padding-left:0;
	}
	  
.content .row img {
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
	transition: all 0.5s ease;
	}
	
.content .row img:hover {
  	opacity: .75;
	}
	  
.content .row .dropHeader {
  	color: #fff0bf;
  	font-size: 22px;
	padding: 10px 0;
	font-style: italic;
	}
	  
.content .row .mega-links {
  	margin-left: -40px;
  	border-left: 1px solid #fff;
	}
	
.content .row .mega-links:last-child {
  	border-left: 0px;
	}
	
.row .mega-links li {
  	border-top:1px #8c182d solid;
	padding:5px;
	}
	  
.row .mega-links li a {
  	padding: 5px 20px;
  	color: #fff;
  	font-size: 16px;
  	display: block;
	text-decoration: none;
	transition: all 0.5s ease;
	border-radius:10px;
	}
	  
.row .mega-links li a:hover {
  	color: #8c182d;
	background:#fff;
	}
	  
.wrapperNav .btn {
  	color: #fff;
  	font-size: 22px;
  	cursor: pointer;
  	display: none;
	z-index: 9999;
	}
	  
.wrapperNav .btn.close-btn {
  	position: absolute;
  	right: 30px;
  	top: 10px;
	z-index: 10000;
	}
	  
@media screen and (max-width: 1500px) {

.nav-links>li>a {
  	font-size: 18px;
  	padding: 9px 10px;
	}
	
.drop-menu li a {
	font-size: 16px;
	}
	
.content .row .dropHeader {
  	font-size: 18px;
	}
	
.row .mega-links li a {
  	font-size: 16px;
	}
	
}
	  
@media screen and (max-width: 1350px) {

.nav-links>li>a {
  	font-size: 16px;
  	padding: 9px 10px;
	}
	
.mega-box .content .row {
  	line-height: 25px;
	}
	
.drop-menu li a {
	font-size: 14px;
	}
	
.content .row .dropHeader {
  	font-size: 16px;
	}
	
.row .mega-links li a {
  	font-size: 14px;
	}
	
}
	  
@media screen and (max-width: 1200px) {

.wrapperNav .logo a img{
	height:85px;
	}

.nav-links li a {
  	font-size: 13px;
  	padding: 9px 6px;
	}
	
}

@media screen and (max-width: 970px) {
	
nav {
  	background:url(../img/nav-bg-mobile.jpg) #8c182d;
  	background-size: cover;
  	background-position: center;
	}

.wrapperNav .btn {
    display: block;
	}
	
.wrapperNav .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 600px;
    top: 0;
    left: -100%;
    background: #8c182d;
    display: block;
	padding-left:0;
    padding: 50px 20px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.5s ease;
	z-index:1000;
  	}
	
.wrapperNav .logo a img {
	z-index:30;
	}
	
.wrapperNavnav-links li:last-child {
	margin-left: 0;           /* remove auto, it doesn’t work in column */
	}
	
  /* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
  	}
	
::-webkit-scrollbar-track {
    background: #000;
  	}
	
::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  	}
	
#menu-btn:checked ~ .nav-links {
    left: 0%;
  	}
	
#menu-btn:checked ~ .btn.menu-btn {
    display: none;
  	}
	
#close-btn:checked ~ .btn.menu-btn{
    display: block;
  	}
	
.nav-links li {
    margin: 0 0;
  	}
	
.nav-links>li {
    border-top:1px solid #68091a;
  	}
	
.nav-links>li:last-child {
    border-top:none;
  	}
	
.nav-links li a {
	padding: 0 20px;
    display: block;
    font-size: 20px;
	border-radius: 0;
  	}
	
.nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 0;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.5s ease;
	background-image:none;
	background:#68091a;
	border-radius: 0;
  	}
	
#showDrop:checked ~ .drop-menu, #showDropTwo:checked ~ .drop-menu, #showDropThree:checked ~ .drop-menu, #showMega:checked ~ .mega-box, #showMegaTwo:checked ~ .mega-box, #showMegaThree:checked ~ .mega-box, #showMegaFour:checked ~ .mega-box {
    max-height: 100%;
 	}
	
.nav-links .desktop-item {
    display: none;
  	}
	
.nav-links .mobile-search {
	display: inline-block;
 	}
	
.nav-links .mobile-item {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  	}
	
.nav-links .mobile-item:hover {
    background: #68091a;
  	}
.drop-menu li {
    margin: 0;
  	}
	
.drop-menu li a {
    font-size: 20px;
	border-radius: 0;
  	}
	
.drop-menu li:first-child a:hover, .drop-menu li:last-child a:hover {
  	border-radius: 0;
	}
	
.mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 0;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
 	}
	
/* default plus sign */
.toggle-icon::before {
  content: "+";
  font-size: 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* when the checkbox is checked, switch to minus */
#showMega:checked + label .toggle-icon::before {
  content: "−";
}
	
#showDrop:checked + label .toggle-icon::before {
  content: "−";
}
	
#showDropTwo:checked + label .toggle-icon::before {
  content: "−";
}
	
#showDropThree:checked + label .toggle-icon::before {
  content: "−";
}
	
#showDropFour:checked + label .toggle-icon::before {
  content: "−";
}
	
.mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
	background-image:none;
	border-radius: 0;
	background:#68091a;
  	}
	
.mega-box .content .row {
	width: 100%;
	margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  	}
	
.mega-box .content .row:nth-child(1), .mega-box .content .row:nth-child(2), .mega-box .content .row:last-child {
	border-top: 0px;
  	}
	
.mega-box .content .row:nth-child(2), .mega-box .content .row:nth-child(3) {
	margin-bottom: 0;
  	}
	
.content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  	}
	
.row .mega-links li {
    margin: 0;
  	}
	
.row .mega-links li a {
  	font-size: 20px;
	}
	
.content .row .dropHeader {
    font-size: 20px;
	}
	
.wrapperNav .nav-links li a.travelGuideBtnNav {
	border-radius:25px;
	padding:5px 20px;
	margin-top:10px;
	}
	
}
	  
nav input {
  	display: none;
	}

/* --- 2026 ADA COMPLIANCE OVERRIDES --- */

/* 1. Desktop Keyboard Logic: Open on Focus */
.nav-links li:focus-within .drop-menu, 
.nav-links li:focus-within .mega-box {
    opacity: 1 !important;
    visibility: visible !important;
    top: 60px !important;
    display: block !important;
}

/* 2. Mobile Logic Fix: Stop the menu from closing on sub-menu click */
@media screen and (max-width: 970px) {
    /* Ensure sub-menus expand when checked without breaking the main menu target */
    #showMega:checked ~ .mega-box,
    #showDrop:checked ~ .drop-menu,
    #showDropTwo:checked ~ .drop-menu,
    #showDropThree:checked ~ .drop-menu {
        max-height: 2000px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    /* Adjust the toggle transition for mobile smooth-opening */
    .mega-box, .drop-menu {
        transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
    }
}

/* 3. Global Focus Indicator (Mandatory for Title II) */
/* This makes it clear where the 'cursor' is when using a keyboard */
.nav-links a:focus, 
.wrapperNav .btn:focus,
.nav-links .mobile-item:focus {
    outline: 3px solid #eb6d24 !important; /* Yakima Orange */
    outline-offset: 2px;
    background: #68091a !important; /* Match your hover color */
    z-index: 10001;
}

/* 4. Screen Reader Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =sub-page banner
-----------------------------------------------------------------------------*/
.attractionBanner {
    position: relative;
    }

.banner {
	padding:4em 5% 5em 5%;
	background:#000000 center center;	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
	color:#ffffff;
    text-align:center;
    position: relative;
    background:url("../img/call-to-action-bg-blue.webp") center center fixed;
	background-position: fixed;
	}
	
.banner h1 {
	font-size:6em;
	line-height:90%;
	padding:0 1%;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-weight: normal;
    text-shadow:0 0 20px #000;
	}
    
.banner h2 {
	font-size:2em;
	line-height:90%;
	padding:0 1%;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-weight: normal;
    text-shadow:0 0 20px #000;
	}

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

.banner h1 {
	font-size:2.75em;
	}
    
.banner h2 {
	font-size:1em;
	}
	
}

/* =content structure
-----------------------------------------------------------------------------*/
.sectionWrapper {
	background:#fff url(../img/distressOverlay-tan.webp) bottom no-repeat;
	background-size: contain;
	z-index:1;
	position:relative;
	}   

	
.wrapperTan {
	background:#eee9e3 url(../img/distressOverlay.webp) bottom no-repeat;
	background-size: contain;
	}
    
.wrapperNoDistress {
	background-image: none;
	}

section {
	width:1700px;
	margin:0 auto;
	padding:3em 0 5em 0;
	position:relative;
    clear: both;
	}
    
.twoColFiftyFull {
	display: grid;
    grid-template-columns: 1fr 1fr;
	}
    
.twoColFifty {
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
	}
    
.twoColTwoThirds {
	display: grid;
    grid-template-columns: 2.5fr 1fr;
    column-gap: 2rem;
	}
    
.twoColThirtySeventy {
	display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
	}
    
.ThreeColumnGrid {    
    margin:0 0 0 0;
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;    
    column-gap: 2rem;
    row-gap: 2rem;
	}
    
.FourColumnGrid {    
    margin:0 0 0 0;
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;    
    column-gap: 2rem;
    row-gap: 2rem;
	}
    
.imgNoFloat {
    width:100%;
    margin:0 auto 2em auto;
    }
    
.imgFloatRight {
    float:right;
    margin:0 0 2em 2em;
    }
    
.imgFloatLeft {
    float:left;
    margin:0 2em 2em 0;
    }
    
.distressedTop {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:9000;
	}
    
.distressedBottom {
	position:absolute;
	bottom:-1px;
	left:0;
	width:100%;
	z-index:9000;
	}
    
.divider {
	margin:0 0 2em 0;
	border-top:rgba(140, 24, 45, 1.0) solid 2px;
	}
    
@media all and (max-width: 1775px) {
	
section {
	width:90%;
	padding:3em 5%;
	}
	
}

@media all and (max-width: 900px) {
	
section {
	padding:2em 5%;
	}
    
ul.FourColumnGrid, .FourColumnGrid { 
    grid-template-columns: 1fr 1fr;
	}
	
}

@media all and (max-width: 750px) {
    
.twoColFifty {
    display:block;
	}
    
.twoColTwoThirds {
    display:block;
	}
    
.twoColThirtySeventy {
    display:block;
	}
    
ul.ThreeColumnGrid,  .ThreeColumnGrid { 
    grid-template-columns:1fr; 
	}
    
ul.FourColumnGrid, .FourColumnGrid { 
    grid-template-columns: 1fr;
	column-gap: 0;
    row-gap: 0;
	}
    
.imgFloatRight {
    float:none;
    margin:0 auto 2em auto;
    }
    
.imgFloatLeft {
    float:none;
    margin:0 auto 2em auto;
    }
	
}


/* =sub Nav
-----------------------------------------------------------------------------*/

.subNav {
    background:rgba(238, 233, 227, 0.5);    
    padding:5%;
    }
    
.subNav ul li {
    padding:.5em 0;
    border-top:#8c182d solid 1px;
    }
    
.subNav ul li a {
    color:#8c182d;
    font-weight: bold;
    text-decoration: none;
    width:100%;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;    
    }
    
.subNav ul li a:hover {
    color:#000;
    }
    
.subNav a.wineBtn {
    margin:0 0 .5em 0;
	}

    
/* =wineBtn
-----------------------------------------------------------------------------*/
a.wineBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#8c182d;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    margin:0 0 2em 0;
    position:relative;
    z-index:5000;
	}
	
a.wineBtn:hover {
	color:#ffffff;
	background:#000000;
	}

a.wineBtn span {
  transition: transform 0.2s ease;
}

a.wineBtn:hover span {
  transform: translateX(4px);
}
    
/* =blueBtn
-----------------------------------------------------------------------------*/
a.blueBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#0f3e52;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:1.75em;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    margin:0 0 2em 0;
	}
	
a.blueBtn:hover {
	color:#ffffff;
	background:#000;
	}

a.blueBtn span {
  transition: transform 0.2s ease;
}

a.blueBtn:hover span {
  transform: translateX(4px);
}
    
/* =brownBtn
-----------------------------------------------------------------------------*/
a.brownBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#552d16;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.brownBtn:hover {
	color:#ffffff;
	background:#8c182d;
	}
    
/* =blackBtn
-----------------------------------------------------------------------------*/
a.blackBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#000;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.blackBtn:hover {
	color:#ffffff;
	background:#000;
	}
    
/* =orangeBtn
-----------------------------------------------------------------------------*/
a.orangeBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#eb6d24;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.orangeBtn:hover {
	color:#ffffff;
	background:#000000;
	}

a.orangeBtn span {
  transition: transform 0.2s ease;
}

a.orangeBtn:hover span {
  transform: translateX(4px);
}
    
/* =whiteBtn
-----------------------------------------------------------------------------*/
a.whiteBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#8c182d;
	background:#ffffff;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    margin:0 0 2em 0;
	}
	
a.whiteBtn:hover {
	color:#ffffff;
	background:#000000;
	}

a.whiteBtn span {
  transition: transform 0.2s ease;
}

a.whiteBtn:hover span {
  transform: translateX(4px);
}
    
/* =greenHopBtn
-----------------------------------------------------------------------------*/
a.greenHopBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#4a5b2d;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.greenHopBtn:hover {
	color:#ffffff;
	background:#000000;
	}

a.greenHopBtn span {
  transition: transform 0.2s ease;
}

a.greenHopBtn:hover span {
  transform: translateX(4px);
}
    
/* =greenFarmBtn
-----------------------------------------------------------------------------*/
a.greenFarmBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#146c37;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.greenFarmBtn:hover {
	color:#ffffff;
	background:#000000;
	}

a.greenFarmBtn span {
  transition: transform 0.2s ease;
}

a.greenFarmBtn:hover span {
  transform: translateX(4px);
}
    
/* =yellowBtn
-----------------------------------------------------------------------------*/
a.yellowBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#facc65;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.yellowBtn:hover {
	color:#ffffff;
	background:#000000;
	}
    
/* =lightGreenBtn
-----------------------------------------------------------------------------*/
a.lightGreenBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#77a55d;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.lightGreenBtn:hover {
	color:#ffffff;
	background:#000000;
	}
    
    
/* =purpleBtn
-----------------------------------------------------------------------------*/
a.purpleBtn {
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:15px 15px 15px 15px;
	color:#fff;
	background:#851695;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:1.75em;
    margin:0 0 2em 0;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
	}
	
a.purpleBtn:hover {
	color:#ffffff;
	background:#000000;
	}
	
@media all and (max-width: 750px) {
    
    a.wineBtn, a.blueBtn, a.brownBtn, a.blackBtn, a.orangeBtn, a.whiteBtn, a.greenHopBtn, a.greenFarmBtn, a.yellowBtn, a.lightGreenBtn, a.purpleBtn  {
	text-align:center;
    font-size:1.5em;
	}
	
}


/* passport btn --------------------------------------*/

.passportBtn {
    margin:0 0 3em 0;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: 15px;
    }
    
.passportBtn:hover {
    opacity:0.5;
    filter:alpha(opacity=50); /* For IE8 and earlier */
    }

@media all and (max-width: 750px) {
    
  .passportBtn {
    margin:0 0 2em 0;
	border-radius: 10px;
    }
	
}

/* video Thumb --------------------------------------*/

.videoThumb img {
    margin:0 auto 3em auto;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width:100%;
	max-width:1280px;
	display: block;
    }

.videoThumb img:hover {
    opacity:0.5;
    filter:alpha(opacity=50); /* For IE8 and earlier */
    }


/* featured communities --------------------------------------*/

section.communitiesSection {
	padding:3em 0 0 0;
	}

/* 5up with yakima feature ul.communities {
	list-style:none;
	display: grid;
    grid-template-columns: 40% 30% 30%;
    grid-template-rows: 20em 20em;
    margin:0 0 0 0;
	} */
    
ul.communities {
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    margin:0 0 0 0;
	}
	
ul.communities a {	
	text-decoration:none;
	color:#ffffff;
	}
	
ul.communities li {
	text-align:center;	
	margin:0 0 0 0;
    position: relative;
	}
	
/* 5up with yakima feature ul.communities li:nth-child(1) {
	grid-row-start:1;
    grid-row-end: 3;
	} */
	
.communityPhoto {
	padding:7em 2.5% 12em 2.5%;
    /* padding:5em 2.5%; */
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    width:95%;
    height:100%;
    z-index:1899;
	}
    
.communityOverlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(85, 45, 22, 0.65);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	z-index:1900;
	}
    
.communityTitle {
	position:relative;
	z-index:2500;
	}
	
ul.communities li h1 {
	text-align:center;
	padding: 0 0;
	font-size:3em;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	color:#ffffff;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-shadow:0 0 20px #552d16;
    font-weight:normal;
	}
	
ul.communities li h1 span {
	display:block;
	font-size:15px;
	line-height:90%;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding:5px 0 0 0;
	color:#fff;
	}
	
ul.communities li:hover h1 {
	text-shadow:none;
	}
	
ul.communities li:hover .communityTitle {
	opacity:0.00;
    filter:alpha(opacity=000); /* For IE8 and earlier */
	}
    
ul.communities li:hover .communityOverlay {
	opacity:0.00;
    filter:alpha(opacity=000); /* For IE8 and earlier */
	}
	
ul.communities li.yakima .communityPhoto {
	background:url(../img/home-communities/yakima.webp) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	}
    
ul.communities li.uniongap .communityPhoto {
	background:url(../img/home-communities/union-gap.webp) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	}
    
ul.communities li.selah .communityPhoto {
	background:url(../img/home-communities/selah.webp) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	}
    
ul.communities li.sunnyside .communityPhoto {
	background:url(../img/home-communities/sunnyside.webp) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	}
    
ul.communities li.prosser .communityPhoto {
	background:url(../img/home-communities/prosser.webp) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	}
    
@media all and (max-width: 1350px) {
	
    
/* 5up with yakima feature ul.communities {
    grid-template-rows: 15em 15em;
	} */
	
}

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

ul.communities {
    grid-template-columns: 1fr 1fr;
	}

/* 5up with yakima feature ul.communities {
    grid-template-rows: 10em 10em;
	} */
    
.communityPhoto {
	padding:4.5em 2.5%;
	}
    
ul.communities li h1 {
	font-size:2em;
	}
	
ul.communities li h1 span {
	padding:2px 0 0 0;
	}
	
}

@media all and (max-width: 750px) {

ul.communities {
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
	}
	
/* 5up with yakima feature ul.communities li:nth-child(1) {
	grid-column-start: 1;
    grid-column-end: 3;
	} */
    
.communityPhoto {
	padding:0 0 0 0;
    width:100%;
	}
    
ul.communities li h1 {
	padding:1em 0;
	}
	
}



/* blog feed for travel tips --------------------------------------*/
	
ul.blog {
	list-style:none;
	margin:0 0 4em 0;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;    
    grid-gap: 2rem;
	}
	
ul.blog a {
	text-decoration:none;
	}
	
ul.blog li { 
	position:relative;
	height:25em;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}    
	
ul.blog li:hover {
    opacity:0.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	}
	
.blogImage {
	width:100%;
	height:100%;
	}
	
ul.blog li:nth-child(4n+0) {
	margin:0 0 .5% 0;
	}
	
.blogTitle {
	position:absolute;
	z-index: 1300;
	left:0;
	bottom:4em;
	}
	
.blogTitle h2 {
	background: rgba(85, 45, 22, 0.75);
	padding:.5em .6em .4em .6em;
	font-size:1.25em;
	margin:0;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	color:#ffffff;
	display:inline-block;
	font-weight:normal;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}
	
ul.blog li:hover .blogTitle h2 {
	background: rgba(140, 24, 45, 0.75);
	}
    
.blogDetails {
    width:80%;
    padding:5%;
    background:#fff;
    color:#000;
    margin:-75px auto 0 auto;
    -webkit-box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.4);
    text-align:center;
    z-index:5000;
    height:5em;
    }
    
section .blogDetails h2 {
    font-size: 2em;
    color:#000;
    }

section .blogDetails p a {
    font-size: 1em;
    font-weight: normal;
    color:#000000;
    }
    
 a.view-article {
    display:none;
 }   

ul.blogNew {
	list-style:none;
	margin:0 0 2em 0;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;    
    grid-gap: 1rem;
	}
	
ul.blogNew a {
	text-decoration:none;
	}
	
ul.blogNew li { 
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}    
	
ul.blogNew li:hover {
    opacity:0.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	}
	
.blogNewImage {
	width:100%;
	height:13em;
	border-radius: 15px 15px 0 0;
	}

.blogNewDetails {
    padding:5%;
    background:#fff;
    color:#000;
    margin:0 auto 0 auto;
    -webkit-box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.4);
    text-align:center;
    }
    
section .blogNewDetails h2 {
    font-size: 2em;
    color:#8c182d;
    }

@media all and (max-width: 1350px) {

	
section .blogNewDetails h2 {
    font-size: 1.25em;
    color:#8c182d;
    }
	
}
   

@media all and (max-width: 1200px) {

.blogDetails {
    margin:-50px auto 0 auto;
    height:5em;
    }

ul.blog li {
	height:15em;
	}
    
section .blogDetails h2 {
    font-size: 1.5em;
    }
	
}

@media screen and (max-width: 900px) {	
	
ul.blogNew {
    grid-template-columns: 1fr 1fr;  
	}
	
.blogNewImage {
	height:8em;
	}
	
section .blogNewDetails h2 {
    font-size: 1em;
    }

ul.blog {
	margin:0 0 2em 0;
    grid-template-columns: 1fr 1fr;
    row-gap:4rem;
	}

ul.blog li {
	height:15em;
	}
	
.blogTitle {
	bottom:0;
	}
	
}

@media all and (max-width: 750px) {

.blogNewImage {
	border-radius: 10px 10px 0 0;
	}
	
}

@media all and (max-width: 675px) {
	        
ul.blog {
    row-gap: 1em;
	}
    
ul.blog li {
	height:10em;
	}
    
section .blogDetails h2 {
    font-size: 1em;
    }    
	
}
    
    
/* crowdriff feed --------------------------------------------------*/
	
.crowdRiff {
	position:relative;
	}
	
.crowdOverlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:9498;
	}
	
.hashtag {
	position:absolute;
	top:0;
	left:50%;
	margin-left:-100px;
    width:200px;
	display:inline-block;
	color:#fff;
	padding:.2em .25em .25em .25em;
	background:#000;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	text-align:center;
	font-size:2em;
	z-index:9499;
	}
	
.hashtag:hover {
	color:#8c182d;
	}
	
.hashtag a {
	text-decoration:none;
	color:#fff;
	}
	
.hashtag a:hover {
	color:#fff;
	}

/* Seasonal Promo --------------------------------------*/

.seasonalPromo {
    /*background:url(../img/seasonal/seasonal-summer.webp) center center no-repeat;*/
	/*background:url(../img/seasonal/seasonal-fall.webp) center center no-repeat;*/
	/*background:url(../img/seasonal/seasonal-winter.webp) center center no-repeat;*/
	background:#000000 center center;	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
	background:url(../img/seasonal/seasonal-spring.webp) center center fixed;
    position:relative;
    }
    
.seasonalText {
    width:85%;
    margin:0 auto;
    padding:6em 0;
    text-align: center;
    }
    
.seasonalText h2 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:6em;
	color:#ffffff;
	margin:0 0 0 0;
	line-height:90%;
    text-shadow:0 0 20px #000;
    font-weight: normal;
	}
	
.seasonalText h2 span {	
	font-family: 'bebasneuepro-italic', Arial, sans-serif;	
	color:#ffffff;
	}

.seasonalText h3 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:1em;
	color:#ffffff;
	margin:0 0 .5em 0;
	line-height:100%;
    text-shadow:0 0 20px #000;
    font-weight: normal;
	}
    
.seasonalText p {
	color:#ffffff;
    padding:0 0 1em 0;
    text-shadow:0 0 20px #000;
	}
    
.seasonalText a.whiteBtn {
    margin:0;
    }
    
@media all and (max-width: 1150px) {
	
.seasonalText h2 {
	font-size:5em;
	}
    
.seasonalText h2 span {	
	display:block;
	}
	
}

@media all and (max-width: 675px) {
	
.seasonalText h2 {
	font-size:3em;
	}
	
}


/* Featured Events --------------------------------------*/


ul.eventsFeaturedFourUp {
    list-style: none;
    margin:0 0 2em 0;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;    
    grid-gap: 2rem;
    }

ul.eventsFeaturedThreeUp {
    list-style: none;
    margin:0 0 2em 0;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;    
    grid-gap: 2rem;
    }
    
ul.eventsFeatured li {
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    }
    
ul.eventsFeatured li:hover {
    opacity:.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
    }
    
ul.eventsFeatured li a {
    text-decoration:none;    
    }
    
ul.eventsFeatured li img {
    width:100%;
    margin:0 auto .25em auto;
	border-radius: 15px;
    }
    
ul.eventsFeatured li a h2.eventText {
    font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: none;
    font-weight: normal;
    font-size:25px;
    color:#000;
    text-align:center;
    text-decoration:none;
    line-height: 90%;
    }
    
ul.eventsFeatured li a h2.featuredDate {
    font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size:20px;
    color:#8c182d;
    text-align:center;
    text-decoration:none;
    line-height: 90%;
    }
    
ul.eventsFeatured li a h2.location {    
    font-family: 'bebasneuepro-italic', Arial, sans-serif;
    font-weight: normal;
    text-transform: none;
    color:#c1b29f;
    font-size:1em;
    text-align:center;
    text-decoration:none;
    }
    


@media all and (max-width: 1775px) {
	
ul.eventsFeatured {
    margin:0 0 1em 0;
    }
	
}
	
@media all and (max-width: 1350px) {
    
	
}

@media all and (max-width: 750px) {
	
ul.eventsFeatured li img {
	border-radius: 10px;
    }
	
ul.eventsFeatured li a h2.eventText {
    font-size:17px;
    }
	
ul.eventsFeatured li a h2.featuredDate {
    font-size:14px;
    }
	
ul.eventsFeatured li a h2.location {   
    font-size:12px;
    }
	
ul.eventsFeaturedThreeUp {
    grid-template-columns: 1fr 1fr;    
    grid-gap: 1rem;
    }

ul.eventsFeaturedFourUp {
    grid-template-columns: 1fr 1fr;    
    grid-gap: 1rem;
    }
	
}

/* Featured Member Listings --------------------------------------*/

ul.featuredListings {
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2rem;
    margin:0 0 3em 0;
    text-align: center;
	}

ul.featuredListingsTwoUp {
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
    margin:0 0 3em 0;
    text-align: center;
	}

ul.featuredListingsTwoUp li:hover {
	opacity:0.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	}
    
.featuredPhoto {
    position:relative;
    -webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    }
    
.featuredPhoto:hover {
    opacity:0.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	}

.featuredPhoto h2 {
    position:absolute;
    bottom:0;
    left:0;
    color:#fff;
    padding: 3%;
    background: rgba(140, 24, 45, 0.75);
    text-align: center;
    width:94%;
    margin:0;
    }

.featuredPhoto h2 span {
    display:block;
	color:#fff;
    }

@media all and (max-width: 1400px) {
	
.featuredPhoto h2 {
    font-size: 1.5em;
    }
	
}

@media all and (max-width: 1000px) {
	
ul.featuredListingsTwoUp {
	grid-gap: 1rem;
	}
	
ul.featuredListings {
    grid-template-columns: repeat( 4, 1fr );
	grid-gap: 1rem;
	margin:0 0 2em 0;
	}
		
ul.featuredListings li {
    grid-column: span 2;
	}
	
ul.featuredListings li:nth-last-child(1):nth-child(odd) {
	grid-column: 2 / span 2;
	}
	
}
	
@media all and (max-width: 675px) {
	
ul.featuredListings {
    grid-template-columns: 1fr;
	}
	
ul.featuredListings li:nth-last-child(1):nth-child(odd) {
	grid-column: 1 / span 1;
	}
	
ul.featuredListings li {
    grid-column: span 1;
	}
	
ul.featuredListingsTwoUp {
    grid-template-columns: 1fr;
	}
	
ul.featuredListingsTwoUp li .featuredPhoto h2 {
    font-size: 1.5em;
    }
	
    
.featuredPhoto h2 {
    font-size: 1em;
    }
	
}

@media all and (max-width: 500px) {
	

ul.featuredListingsTwoUp li .featuredPhoto h2 {
    font-size: 1em;
    }
    
.featuredPhoto h2 {
    font-size: .75em;
    }
	
}


/* =Typography
-----------------------------------------------------------------------------*/	
	
section h1, .pillarFeatures h1, .darkBlueWrapper h1 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:3em;
	color:#000;
	margin:0 0 .25em 0;
	font-weight:400;
	line-height:90%;
	}
	
section h1 span, .pillarFeatures h1 span {	
	font-family: 'bebasneuepro-italic', Arial, sans-serif;
    text-transform: uppercase;
	color:#8c182d;
	}

section h2.likeH1, .pillarFeatures h2.likeH1, .darkBlueWrapper h2.likeH1, h2.likeH1 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:3em;
	color:#000;
	margin:0 0 .25em 0;
	font-weight:400;
	line-height:90%;
	}
	
section h2.likeH1 span, .pillarFeatures h2.likeH1 span, h2.likeH1 span {	
	font-family: 'bebasneuepro-italic', Arial, sans-serif;
    text-transform: uppercase;
	color:#8c182d;
	}

section h2, .pillarFeatures h2, .roadTripStop h2, .brewListings h2, .attractions h2, .pillarGrid h2, .articleGrid h2 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:2em;
	color:#8c182d;
	margin:0 0 .25em 0;
	font-weight:400;
	line-height:100%;
	}
    
section h2 span {	
	font-family: 'bebasneuepro-italic', Arial, sans-serif;
	color:#000;
	}
	
section h2 a {
	color:#8c182d;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
	padding:0;
	}

section h2 a:link, section h2 a:visited {
	text-decoration:underline;
	}

section h2 a:hover, section h2 a:active {
	text-decoration:none;
	color:#8c182d;
	background:none;
	text-shadow:none;
	}

section h2.greenHighlight {
	padding:1em;
	background:#77a55d;
	color:#fff;
	}
	
section .listing h2 a {
	color:#000;
	}
	
section .listing h2 a:hover, section .listing h2 a:active {
	text-decoration:none;
	color:#8c182d;
	background:none;
	text-shadow:none;
	}
	
section h3, .pillarFeatures h3 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.5em;
	margin:0 0 .25em 0;
	font-weight:normal;
	line-height:100%;
	}
	
section h3 a {
	color:#0f3e52;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
	padding:0;
	}

section h3 a:link, section h3 a:visited {
	text-decoration:underline;
	}

section h3 a:hover, section h3 a:active {
	text-decoration:none;
	color:#8c182d;
	}

section h4 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	font-size:1em;
	margin:0 0 0 0;
	font-weight:normal;
	line-height:100%;
	}

section h4 a {
	color:#0f3e52;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
	padding:0;
	}

section h4 a:link, section h4 a:visited {
	text-decoration:underline;
	}

section h4 a:hover, section h4 a:active {
	text-decoration:none;
	color:#8c182d;
	}
	
small {
	font-size:80%;
	}
	
section p, .pillarFeatures p, .darkBlueWrapper p, .pillarGrid p  {
	padding:0 0 2em 0;
	}
	
.contentOl {
	padding:.5em 0 2em 1.5em;
	}
	
.contentOl li {
	padding:0 0 .5em 0;
	}
	
.contentUl {
	padding:.5em 0 2em 1.5em;
	list-style: disc;
	}
	
.contentUl li {
	padding:0 0 .5em 0;
	}

.centeredUl {
	padding:.5em 0 2em 0;
	list-style: none;
	text-align:center;
	}
	
.centeredUl li {
	padding:.5em 0;
	border-top:#8c182d 1px solid;
	}

.centeredUlTwo {
	padding:.5em 0 2em 0;
	list-style: none;
	text-align:center;
	}
	
.centeredUlTwo li {
	padding:.5em 0;
	border-top:none;
	}
	
.center {
	text-align:center;
	}

	
/* Links */	
		
section p a, .pillarFeatures p a, .roadTripStop ul li p a, .attractions ul li p a, .darkBlueWrapper p a {
	color:#0f3e52;
	padding:1px 2px;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	font-weight:bold;
	}

section p a:link, section p a:visited, .pillarFeatures p a:link, .pillarFeatures p a:visited, .roadTripStop ul li p a:link, .roadTripStop ul li p a:visited, .attractions ul li p a:link, .attractions ul li p a:visited, .darkBlueWrapper p a:visited  {
	text-decoration:none;
	}

section p a:hover, section p a:active, .pillarFeatures p a:hover, .pillarFeatures p a:active, section p a:active, .roadTripStop ul li p a:hover, .roadTripStop ul li p a:active, .attractions ul li p a:hover, .attractions ul li p a:active, .darkBlueWrapper p a:active {
	color:#ffffff;
	background:#0f3e52;    
    -webkit-border-radius: 3px;
    border-radius: 3px;
	}
	
.contentUl a {
	color:#0f3e52;
	padding:1px 1px;
	font-weight:bold;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	}

.contentUl a:link, .contentUl a:visited {
	text-decoration:underline;
	}

.contentUl a:hover, .contentUl a:active {
	color:#ffffff;
	background:#0f3e52;
	}
	
.contentOl a {
	color:#0f3e52;
	padding:1px 1px;
	font-weight:bold;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	}

.contentOl a:link, .contentOl a:visited {
	text-decoration:underline;
	}

.contentOl a:hover, .contentOl a:active {
	color:#ffffff;
	background:#0f3e52;
	}

.centeredUl a, .centeredUlTwo a {
	color:#0f3e52;
	padding:1px 1px;
	font-weight:bold;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	}

.centeredUl a:link, .centeredUl a:visited, .centeredUTwol a:link, .centeredUlTwo a:visited {
	text-decoration:underline;
	}

.centeredUl a:hover, .centeredUl a:active, .centeredUlTwo a:hover, .centeredUlTwo a:active {
	color:#ffffff;
	background:#0f3e52;
	}
	
@media screen and (max-width: 700px) {
	
	
section h1, .pillarFeatures h1 {
	font-size:2em;
	}
	
section h1 span, .pillarFeatures h1 span {
	display:block;
	}
	
section h2.likeH1, .pillarFeatures h2.likeH1, .pillarGrid h2.likeH1 {
	font-size:2em;
	}
	
section h2.likeH1 span, .pillarFeatures h2.likeH1 span, .pillarGrid h2.likeH1 span {
	display:block;
	}
    
section h2, .pillarFeatures h2, .roadTripStop h2, .brewListings h2, .attractions h2, .pillarGrid h2 {
	font-size:1.5em;
	}
    
section h3, .pillarFeatures h3 {
	font-size:1em;
	}
	
section h4 {
	font-size:.75em;
	}
	
section .contentUl h2 {
	text-align:left;
	}
	
	
section p, .pillarFeatures p, .contentUl, .contentOl, .centeredUl, .centeredUlTwo, .pillarGrid p  {
	font-size:100%;
	}
	
}

/* =Ad butler Ads
-----------------------------------------------------------------------------*/
.bannerAd img {
    margin:0 auto;
    }

ul.ads {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    margin:0 auto;
    width:65%;
    max-width: 1100px;
	}
    
ul.ads li {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: 15px;
	}

ul.ads li img {
	border-radius: 15px;
	}
    
ul.ads li:hover {
	opacity:.5;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	}
    
@media screen and (max-width: 1100px) {
    
ul.ads {
    width:75%;
	}
    
}

@media screen and (max-width: 750px) {
    
ul.ads {
    width:100%;
    grid-gap: 1rem;
	}
	
ul.ads li img {
	border-radius: 10px;
	}
    
}
    

/* Call to Action Email Sign Up Form/Order Travel Guide -----------------------------------*/

.callToAction {
    align-items: center;
    background:url("../img/call-to-action-bg-wine.webp") center center no-repeat #8c182d;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover; 
	}
    
.callToAction h2, #signupFrom h2 {
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:2em;
	margin:0 0 .25em 0;
	font-weight:400;
	line-height:90%;
	}
    
.callToAction p {
    padding:0 0 1em 0;
	}
    
.callToAction li {
    padding:5%;    
	}
    
.callRight {
    background:url("../img/call-to-action-bg-blue.webp") center center no-repeat #0f3e52;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover; 
    color:#fff;
	}
    
.callRight .wineBtn {
    margin:0;
	}
    
.callRight img {
	float:left;
    margin:0 2em 0 0;
    width:25%;
    max-width:150px;
	}
    
.callLeft {
    text-align: center;
    color:#fff;
    }
    
.callLeft .whiteBtn {
    margin:0;
    }
    
#signupFrom {
    padding:2.5%;
    }

.asterisk {
    color:#8C182D;
    }

.eblastSignUp input[type="text"], .eblastSignUp input[type="email"] {
	padding:1% 2%;
	border:none;
	border:#dbd8bd solid 1px; 
    width:96%;
    margin:0 0 .5em 0;
	}
    
.eblastSignUp input:focus { 
	border:solid 1px #eb6d24; 
	}
	
/* submit Btn styles */
	
.eblastSignUp input.submit {
	padding:0;
	height:auto;
	-webkit-transition: background 0.4s ease-in-out;
	-moz-transition: background 0.4s ease-in-out;
	-o-transition: background 0.4s ease-in-out;
	transition: background 0.4s ease-in-out;
	display:inline-block;
	padding:1.5% 2.5% 1.3% 2.5%;
	color:#fff;
	background:#8c182d;
	line-height:90%;
	text-decoration:none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size:1.75em;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    margin:.5em 0 1em 0;
    border:none;
	}
	
.eblastSignUp input.submit:hover {
	color:#ffffff;
	background:#0000000;
	}

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

.callToAction h2 {
    font-size:1.5em;
	}
    
.callToAction p, .callToAction a.whiteBtn, .callToAction a.wineBtn {
    font-size:90%;
	}
    
}

@media screen and (max-width: 1300px) {
    
.callToAction p {
    font-size:80%;
	}
    
}

@media screen and (max-width: 1100px) {
    
.twoColFiftyFull {
	display: grid;
    grid-template-columns: 1fr 1fr;
	}
    
.callToAction {
    display: grid;
    grid-template-columns: 1fr;
	} 
    
}
@media screen and (max-width: 800px) {
    
.callRight p {
	display:none;
	}
    
}


/* Regular Footer -----------------------------------*/

.site-footer, 
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  width: 100%;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 2200px;
  margin: 0 auto;
}

/* Columns */
.footer-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 40px;
  text-align: center;
}

.col-30 { flex: 0 0 30%; max-width: 30%; }
.col-40 { flex: 0 0 40%; max-width: 40%; }

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Background Colors */
.col-email {
	background:url(../img/topo-bg-wine.gif) #8c182d;
  	background-size: cover;
  	background-position: center;
	}   

.col-footer { 
	background:url(../img/topo-bg-hop-green.gif) #4a5b2d;
  	background-size: cover;
  	background-position: center;
	}   

.col-guide { 
	background:url(../img/topo-bg-blue.gif) #0f3e52;
  	background-size: cover;
  	background-position: center;
	}   

/* Text */
.footer-col h2 {
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
    text-transform: uppercase;
	font-size:2.5em;
	color:#fff;
	margin:0 0 .25em 0;
	font-weight:400;
	line-height:100%;
}

.footer-col p {
  font-size: 0.9rem;
  margin: 10px 0;
}

.footer-links {
  	font-size: 0.85rem;
  	margin: 0 0;
  	font-family: 'bebasneuepro-bold', Arial, sans-serif;text-transform: uppercase;
	font-size: 1.25em;
	line-height: 1.25;
	}

.footer-links a {
  color:rgba(255, 255, 255, 1.0);
	text-decoration:none;
	padding:0 .5em;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
  	text-decoration: none;
	}

.footer-links a:hover {
	color:rgba(255, 255, 255, 0.50);
	text-decoration:underline;
	}

.footerAddress {
	text-align:center;
	margin:0 0 2em 0;
	font-weight:bold;
	font-size:90%;
	font-size: 0.9rem;
  margin: 10px 0;
	}

.footerAddress a {
  color:rgba(255, 255, 255, 1.0);
	text-decoration:none;
	padding:0 .5em;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
  	text-decoration:underline;
	}

.footerAddress a:hover {
	color:rgba(255, 255, 255, .50);
	text-decoration:none;
	}

.copyRight {
	font-size:60%;
	color:rgba(255, 255, 255, .50);
    margin:0 0 1em 0;
	}	

.copyRight a {
  color:rgba(255, 255, 255, .50);
	text-decoration:none;
	padding:0 .5em;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
  	text-decoration: none;
	}

.copyRight a:hover {
	color:rgba(255, 255, 255, 1.0);
	text-decoration:underline;
	}

/* Images */
.footer-logo {
  max-width: 260px;
  margin-bottom: 15px;
}

.footer-guide {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col a.whiteBtn, .footer-col a.wineBtn {
    margin:0 0 0 0;
	}

/* Social Icons */
.social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  margin: .5em 0;
	padding:0 10px;
  transition: transform 0.3s ease;
	text-decoration:none;
}

.social-icons a:hover {
  transform: scale(.8);
}

.goog-logo-link {
	display:none;
	}
	
.goog-te-gadget {
	color:#000;
	}

.VIpgJd-ZVi9od-l4eHX-hSRGPd img {
	display:none;
	}


/* Responsive */
@media (max-width: 992px) {
.col-30, .col-40 {
	flex: 0 0 100%;
   	max-width: 100%;
  	}
	
.footer-col {
    text-align: center;
  	}
	
.footer-container {
    flex-direction: column; /* stack columns */
  	}
	
 /* Default stack order: col-30 (email), col-40 (footer), col-30 (guide) */
  /* Change order so 3rd column (guide) comes above the middle column (footer) */
.col-email { 
	order: 1; 
	}
.col-guide {
	order: 2; 
	} /* moves above footer */
.col-footer {
	order: 3; 
	}
	
.footer-logo {
	max-width: 180px;
	}
	
.footer-links {
    display: block;
  	}
	
}
  

/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 60px;
    max-width: 375px;
    background-color: #000;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: system-ui;
	z-index:9000;
}
#gdpr-cookie-message h4 {
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}
#gdpr-cookie-message h5 {
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: white;
    font-size: 15px;
    line-height: 1.5em;
	margin-bottom: 15px;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: left;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #8c182d;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: white;
    border-bottom-color: var(--red);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #8c182d;
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 0;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: #000;
    color: #fff;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: #8c182d;
    color: #fff;
	display:none;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}


