@charset "UTF-8";

*{
	box-sizing: border-box;
}

#menu_main{
	top:0;
}

.menu_link, .menu_item {
    color: #85754e;
}
#menu_logo{
	filter:brightness(1);
}


#menu_btn svg path{
	fill:#85754e;
}

.font_italic {
    font-family: 'NyghtItalic';
}
.font_light {
    font-family: 'NyghtLight';
}
.font_medium {
    font-family: 'FR Demi';
}


.section_title{
	position: relative;
	font-size: 3rem;
	line-height: 3rem;
}
.section_title:after{
	content: '';
	position: absolute;
	bottom: -20px;
	width: 86px;
	height: 1px;
	background-color: #85754e;
	left: calc(50% - 43px);
}

.outQuart{
	transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
}
.inOutQuart{
	transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
}

.gold_btn{
	position: relative;
	display: inline-block;
	border: 1px solid #85754e;
	color: #85754e;
	border-radius: 3px;
	font-family: 'FR Demi';
}
.gold_btn a, .gold_btn span{
	color: #85754e;
	padding: 8px 45px;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
}
.gold_btn.filled{
	background-color: #85754e;
	color: #fff;
}
.gold_btn.filled a, .gold_btn.filled span{
	color: #fff;
}

.pagination ul{
	position: relative;
	display: flex;
	list-style: none;
	gap:2vw;
	justify-content: center;
	padding: 0;
	margin: 0;
}
.pagination ul a{
	text-decoration: none;
	color: #85754e;
	display: inline-block;
}
.pagination ul a.active{
	pointer-events: none;
	color: #fff;
	width: 30px;
	height: 30px;
	background-color: #85754e;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}


@media(max-width:768px){
	.section_title {
	    position: relative;
	    font-size: 2rem;
	    line-height: 2rem;
	}
}


/* NEWS */


/* news */
#news{
	margin-bottom: 100px;
}

.news_colums{
	position: relative;
	padding: 0 7vw;
}

.news_colums .section_title{
	margin-bottom: 0vh;
}

.news_colums .columns_container{
	position: relative;
	display: flex;
	gap:4vw;
}
.news_colums .columns_container .column{
	width: 25%;
}

.news{
	position: relative;
	width: 100%;
	overflow: hidden;
	transform: scale(1);
	box-shadow: 0 10px 30px rgba(0,0,0,0);
}
.news:hover{
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.news .image{
	width: 100%;
	aspect-ratio:2/3.5;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.news .title{
	position: relative;
	padding: 25px 0px;
	text-transform: uppercase;
	font-size: 1.2rem;
	line-height: 1.2rem;
	z-index: 1;
}
.news:hover .title{
	opacity: 0;
}

.news .image img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.news .info{
	position: absolute;
	left: 0;
	height: 0%;
	bottom: 0%;
	z-index: 2;
	text-align: center;
	overflow: hidden;
	display: flex;
    align-items: flex-end;
}
.news:hover .info{
	height: 60%;
}
.news .info .info_container{
	position: relative;
	padding: 40px 20px;
	background-color: #fff;
	transform: translateY(-10px);

}
.news:hover .info .info_container{
	transform: translateY(0px);
}

.news .info .title{
	opacity: 1;
	padding: 0;
}
.news .info .title h3{
	font-size: 1.2rem;
	line-height: 1.3rem;
	text-transform: uppercase;
	margin: 0 0 15px;
}
.news .info .excertp{
	font-size: 1rem;
	line-height: 1rem;
	margin-bottom: 10px;
}
.news .info .button{
	text-align: center;
	padding: 20px 0;
}

.news_colums .more_container{
	position: relative;
	text-align: center;
	margin-top: 5vh;
	margin-bottom: 10vh;
}

@media(max-width:1200px){
	.news_colums .columns_container{
		flex-wrap: wrap;
	}
	.news_colums .columns_container .column{
		width: 45%;
	}
	.news .image {
    	aspect-ratio: 2 / 3;
    }
}

@media(max-width:768px){
	.news_colums .columns_container{
		gap:0;
	}
	.news_colums .columns_container .column{
		width: 100%;
		margin-bottom: 8vw;
	}
	.news .info{
		display: none;
	}
	.news:hover{
		transform: scale(1);
		box-shadow: 0 0px 0px rgba(0,0,0,0);
	}
	.news:hover .title {
    	opacity: 1;
	}
}



/*
#news{
	position: relative;
	padding: 0 7vw;
}
#news .section_title:after{
	left: 0;
}

#news .columns_container{
	position: relative;
	display: flex;
	gap:4vw;
	margin-bottom: 10vh;
}

#news .columns_container .column{
	width: 25%;
}
*/
.news_categories{
	position: relative;
	padding: 10vh 0 5vh;
}


.news_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;
}
.news_categories ul a{
	text-decoration: none;
	color: #b1b1b1;
}
.news_categories ul a.active, .news_categories ul a:hover{
	color: #85754e;
}


#news_hero{
	position: relative;
	width: 100%;
	height: 100vh;
}
#news_hero .columns_container{
	display: flex;
	height: 100%;
}

#news_hero .columns_container .column{
	width: 50%;
}
#news_hero .columns_container .left{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:5vh;
	padding: 2vw 5vw;
	position: relative;
}

#news_hero .columns_container .left:after{
	content: '';
	position: absolute;
	bottom: 5vh;
	width: 35%;
	left: 5vw;
	height: 1px;
	background-color: #85754e;
}

#news_hero .columns_container .left .subtitle{
	font-size: 1.5rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
#news_hero .columns_container .left .cta{
	margin-top: 20px;
}

#news_hero .columns_container .right{
	position: relative;
	height: 100%;
}
#news_hero .columns_container .right .image{
	width: 100%;
	height: 100%;
	padding-top: 80px;
}
#news_hero .columns_container .right .image img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}

#news_hero .section_title:after{
	display: none;
}

.news_colums .section_title:after{
	left: 0;
}

@media(max-width:1400px){
	#news_hero .columns_container .left .section_title{
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
}

@media(max-width:992px){
	#news_hero .columns_container .left .section_title{
		font-size: 2rem;
		line-height: 2rem;
	}
	#news_hero .columns_container .left .subtitle{
		font-size: 1.2rem;
		line-height: 1.2rem;
	}
}

@media(max-width:768px){
	#news_hero .columns_container{
		flex-direction: column;
	}
	#news_hero .columns_container .column {
    	width: 100%;
	}
	#news_hero .columns_container .left {	    
	    gap: 0vh;
		padding: 90px 5vw 0;
    }
    #news_hero .columns_container .left:after{
	    display: none;
    }
}

