/* STANDARD PAGE LIST */

section.std-page-list {
	padding:0 5% 90px;
	margin: 0;
	background: var(--white-color);
}

section.std-page-list .max-width{
	
}

section.std-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin:0 -1%;
	justify-content: center;
}

section.std-page-list .page-list-item:before {
	position: absolute;
	content:'';
	border: 1px solid var(--second-color);
	margin: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	z-index: 31;
}

section.std-page-list .page-list-item{
	position:relative;
	width:31.333%;
	margin:1%;
	overflow:hidden;
}
section.std-page-list .page-list-item .image{
	height:0;
	padding-bottom:100%;
}
section.std-page-list .page-list-item .image:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(34, 43, 49, 0.45);
	transition: all 0.3s;
	z-index: 10;
}

section.std-page-list .page-list-item .image img{
	display:block;
	width:100%;
	height:auto;
}

section.std-page-list .page-list-item .info{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	text-align:center;
	padding:20px 35px;
	width:100%;
	z-index:20;
}
section.std-page-list .page-list-item .info h4{
	text-transform: capitalize;
	  font-weight: 500;
	  color: #fff;
	  font-size: 2.3em;
	  line-height: 1em;
	  font-family: var(--second-font);
}
section.std-page-list .page-list-item .info p{
	color: #fff;
	font-size: 1em;
	margin: 0;
	font-weight: 500;
	text-transform: none;
	line-height: 1.4em;
	margin-top: 5px;
}

section.std-page-list .page-list-item a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	z-index:32;
}

section.std-page-list .page-list-item:hover .image:before{
	 background-color:rgba(0,0,0,0.5); 
}
@media screen and (max-width:960px){
	section.std-page-list .page-list-item{
		width:48%;
	}
	
	section.std-page-list .page-list-item .info h4 {
		font-size: 1.8em;
	}
}

@media screen and (max-width:450px){ 
	section.std-page-list .page-list-item{
		width:98%;
	}
	
	section.std-page-list .page-list-item .info h4 {
		font-size: 2.3em;
	}
}
@media screen and (max-width:@max-width-blog){
	section.std-page-list .page-list-item{
		width:98%;
	}
	
	section.std-page-list .page-list-item .image{
		padding-bottom:50%;
		overflow:hidden;
	}
	
	section.std-page-list .page-list-item .info p{
		display:none;
	}
}
/* BLOG PAGE LIST */

section.blog-page-list{
	padding:0 5%;
	margin:45px 0;
}
section.blog-page-list .max-width{
	max-width:@max-width;
	margin:0 auto;
	
}
section.blog-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin: 0 -2%;
}

section.blog-page-list .blog-page-list-item{
	position:relative;
	width:29.333%;
	margin:2%;
}

.blog-page-list-item .image{
	position:relative;
}

.blog-page-list-item .image a:before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:rgb(34, 43, 49);
	transition:all 0.3s;
	position: absolute;
	top: 0;
	left: 0;
	opacity:0;
}
.blog-page-list-item .image a{
	display:block;
	position:relative;
}

.blog-page-list-item .image a:after{
	content:'\f0c1';
	font-family:'Font Awesome 5 Pro';
	position:absolute;
	top:50%;
	left:50%;
	color:#fff;
	z-index:10;
	font-size:2em;
	transform:translate(-50%,-100px);
	opacity:0;
	transition:all 0.3s;
}

.blog-page-list-item .image img{
	width:100%;
	height:auto;
	display:block;
}

.blog-page-list-item .info{
	padding:20px 0 30px 0;
}

.blog-page-list-item .info h4{
	font-weight:700;
	margin:0;
	font-size:1.375em;
	line-height:1em;
}

.blog-page-list-item .info h4 a{
	transition:all 0.3s;
}

.blog-page-list-item .info p{
	font-size:0.875em;
}

.blog-page-list-item .info p.author, section.title-block p.author{
	display:flex;
	font-size:11px;
	align-items: center;
	font-weight:500;
	margin: 0 0 15px 0;
	cursor: default;
}
.blog-page-list-item .info p.topic{
	margin: 0;
	text-transform: uppercase;
	font-size: 0.75em;
	font-weight: 500;
	color: #fff;
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 3px 8px;
	background: var(--third-color);
}

.blog-page-list-item .info p.author span, section.title-block p.author span{
	font-weight:400;
}

.blog-page-list-item .info p.author img, section.title-block p.author img, p.author img.u-avatar{
	width:24px;
	height:24px;
	display:block;
	border-radius:50%;
	margin-right:8px;
}


.blog-page-list-item:hover .info h4 a{
	color:var(--third-color);
}

.blog-page-list-item:hover .image a:before{
	opacity:0.5;
}

.blog-page-list-item:hover .image a:after{
	opacity:1;
	transform:translate(-50%,-50%);
}
@media screen and (max-width:760px){
	section.blog-page-list .blog-page-list-item{
		width:46%;
	}
}
@media screen and (max-width:540px){
	section.blog-page-list .blog-page-list-item{
		width:96%;
	}
}
/* BLOG LIST SHARING */
div.list-sharing{
	display:flex;
	overflow:hidden;
	justify-content: flex-end;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	padding-bottom:3px;
}
div.list-sharing-icon{
	width: 24px;
	height: 24px;
	background: transparent;
	text-align: right;
	line-height: 24px;
	position:relative;
	z-index:10;
	cursor:pointer;
}
div.list-socials{
	display:flex;
	transform: translateX(100%);
	opacity:0;
	transition:all 0.6s;
}
div.list-sharing.viewing div.list-socials{
	transform: translateX(0);
	opacity:1;
}
a.socials-item{
	display:block;
	width:24px;
	height:24px;
	text-align:center;
	line-height:24px;
	transition:all 0.3s;
	font-size:15px;
}

a.socials-item:hover{
}

/* rooms page list */


.home-room-list .rooms-page-list { 
	background: var(--main-color);
	position: relative;
	  padding: 45px 5% 0;
	  z-index: 10;
}

.rooms-page-list {
	width: 100%;
	position: relative;
	background: var(--white-color);
	padding: 25px 5% 90px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.rooms-page-list .page-list-title {
	margin: 0 0 30px 0;
}

.rooms-page-list .max-width {
	max-width:1200px;
	width: 100%;
	position: relative;
}

.rooms-page-list .wrapper {
	display: flex;
	gap: 20px;
	position: relative;
	justify-content: center;
}

.rooms-page-list .page-list-item {
	width: 25%;
	position: relative;

}

.rooms-page-list .page-list-item .image {
	display: flex;
}

.rooms-page-list .page-list-item .image img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}

.rooms-page-list .page-list-item .info {
	background:#ffffff;
	padding: 20px;
	text-align: left;
}

.rooms-page-list .page-list-item .info h4 {
	font-family: var(--main-font);
	font-size: 1.25em;
	font-weight: 600;
}

.rooms-page-list .pink-button {
	width: 100%;
	  text-align: center;
}

.rooms-page-list .page-list-item .info p {
	margin: 0;
}

@media screen and (max-width: 1070px) {
	
	
	.rooms-page-list .wrapper { 
		flex-wrap:wrap;
	}
	.rooms-page-list .page-list-item {
		width: 48%;
		margin-bottom: 20px;
	}
	
	
}

@media screen and (max-width: 800px){
	
	
	.rooms-page-list .page-list-item .info p {
		font-size: 1.15em;
	}
}

@media screen and (max-width: 550px) {
	
	.rooms-page-list .page-list-item .info p {
		font-size: 1.25em;
	}

	.rooms-page-list .page-list-item {
		margin-bottom: 30px ;
		width: 98%;
		}
}

/* activity list */

.activities-page-list {
	width: 100%;
	position: relative;
	background: var(--white-color);
	padding: 25px 5% 90px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.activities-page-list .max-width {
	display: flex;
	justify-content: center;
}

.activities-page-list .max-width .wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1%;
}

.activities-page-list .page-list-item {
	width: 31%;
	position: relative;
	text-align: left;
	display: flex;
	  flex-direction: column;
	  background: #fff;
	  
	  padding-bottom: 65px;
}

.activities-page-list .page-list-item h3 {
	text-transform: capitalize;
	line-height: 1.1em;
	font-size: 1.75em;
}

.activities-page-list .page-list-item .image {
	width: 100%;
	position: relative;
	display: flex;

}

.activities-page-list .activity-location {
	position: absolute;
	background: var(--third-color);
	padding: 12px 20px;
	top: 0;
	bottom: auto;
	left: 20px;
	font-size: 1em;
	font-weight: 500;
	color: var(--white-color);
	width: fit-content;
}

.activities-page-list .page-list-item .image img {
	width: 100%;
	height: auto;
}

.activities-page-list .page-list-item  .info {
	padding: 30px;
	background: #fff;
	display: flex;
	  flex-direction: column;
	  align-self: stretch;
}

.activities-page-list .info .pink-button {
  width: calc(100% - 60px);
	position: absolute;
	bottom: 30px;
	display: block;
	text-align: center;
}

.activities-page-list > .pink-button {
	width: fit-content;
	margin: 65px 0 0 0;
}

.activities-page-list .page-list-item h4 {
	font-family: var(--main-font);
	font-size: 1.125em;
	font-weight: 600;
	margin: 0 0 10px 0 ;
}

.activities-page-list .description {
	font-size: 1em;
	line-height: 1.4em;
	margin: 0;
}
.activities-page-list .page-list-item .price {
	font-size: 1.125em;
	font-weight: 600;
	margin: 10px 0 0 0;
}

@media screen and (max-width: 1024px){ 
	.activities-page-list .page-list-item {
		width: 48%;
	}
}

@media screen and (max-width: 750px){ 
	.activities-page-list .page-list-item {
		width: 100%;
		margin: 0 0 40px;
	}
}