@charset "UTF-8";

.page-template-temp_getaways.page_1 .menu_link {
    color: #fff;
}
#menu_logo{
	filter: brightness(1);
}
#menu_logo.page_1 {
    filter: brightness(4.5);
}


*{
	box-sizing: border-box;
}
.menu_link, .menu_item .submenu .submenu_item a {
    color: #85754e;
}





/* GETAWAYS */
#getaways{
	position: relative;
	padding: 0 7vw;
	margin-bottom: 100px;
}
#getaways .section_title{
	text-align: center;
}

#getaways .columns_container{
	position: relative;
	display: flex;
	gap:2vw;
	margin-bottom: 10vh;
	margin-top: 10vh;
	flex-wrap: wrap;
}

#getaways .columns_container .column{
	width: calc(50% - 1vw);
}
#getaways .columns_container .column .getaway{
	position: relative;
	overflow: hidden;
}


.getaways_categories{
	position: relative;
	padding: 10vh 0 5vh;
}


.getaways_categories ul{
	position: relative;
	display: flex;
	list-style: none;
	gap:2vw;
	justify-content: flex-start;
	padding: 0 0 15px;
    margin: 0;
    border-bottom: 1px solid #b1b1b1;
}
.getaways_categories ul a{
	text-decoration: none;
	color: #b1b1b1;
}
.getaways_categories ul a.active, .getaways_categories ul a:hover{
	color: #85754e;
}


.getaway .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit:cover;
    z-index: 0;
    background-color: #b1b1b1;
}
.getaway .bg img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit:cover;
}

.getaway .image{
	position: relative;
	width: 100%;
	height: max(45vw, 500px);
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 5vw;
}
.getaway .image img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit:cover;
}

.getaway .image:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+70&0.57+0,0+70 */
   background: radial-gradient(ellipse at center,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.getaway .title{
	position: absolute;
    z-index: 2;
    top: 0;
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

@media(max-width:1700px){
	.getaway .title{
		font-size: max(4vw,2.5rem);
		line-height: max(4vw,2.5rem);
	}
}
