/* SERVICES PAGE LIST */
section.services-page-list{
	padding:45px 5%;
	margin:0;
	background:var(--dark-blue-color-lighter);
	/*clip-path:polygon(0 0, calc(50% - 30px) 0, 50% 20px, calc(50% + 30px) 0, 100% 0, 100% 100%, 0 100%);*/
	position:relative;
}
section.services-page-list:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 60px;
	height: 20px;
	background: #f2f2f2;
	transform:translateX(-50%);
	clip-path:polygon(0 0, 100% 0, 50% 100%);
}
section.services-page-list h2{
	color:#fff;
	text-align:center;
	text-transform:uppercase;
	font-weight:500;
}

section.services-page-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin: 0 -1%;
}
section.services-page-list .page-list-item{
	position:relative;
	width:31.333%;
	margin:1%;
	text-align:center;
	padding:20px;
	transition:all 0.3s;
	border-radius:8px;
}
section.services-page-list .page-list-item:hover{
	background:var(--dark-blue-color);
}

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

section.services-page-list .page-icon{
	width:90px;
	height:90px;
	background:var(--dark-blue-color-lighter);
	color:#fff;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0 auto 20px auto;
	position:relative;
	box-shadow:var(--outer-glow);
	
}
section.services-page-list .page-icon.outlined:before{
	border:4px solid transparent;
	border-radius:50%;
}
section.services-page-list .page-icon svg{
	fill: #eef7fd;
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 0 6px #9d85ff);
	mix-blend-mode: hard-light;
}

section.services-page-list .page-list-item h4{
	text-transform:uppercase;
	font-weight:500;
	color:#fff;
	font-size:1.25em;
	line-height:1.2em;
}
section.services-page-list .page-list-item p{
	font-weight: 400;
	text-transform: uppercase;
	color: var(--light-blue-text-color);
	margin: 0;
	line-height:1.2em;
}
section.services-page-list a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}

@media screen and (max-width:960px){
	section.services-page-list .page-list-item h4{
		font-size:1em;
	}
	section.services-page-list .page-list-item p{
		font-size:0.875em;
	}
}
@media screen and (max-width:800px){
	section.services-page-list .page-list-item{
		width:48%;
		padding:10px;
	}
	
}
@media screen and (max-width:540px){
	section.services-page-list .page-list-item h4{
		font-size:0.875em;
	}
	section.services-page-list .page-list-item p{
		font-size:0.75em;
		font-weight:500;
	}
}
/* STANDARD PAGE LIST */

section.std-page-list{
	padding:0 5%;
	margin:45px 0;
}

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{
	position:relative;
	width:31.333%;
	margin:1%;
}
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.59);
	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:65%;
	transform:translateY(-50%);
	text-align:center;
	padding:20px;
	width:100%;
	z-index:20;
}
section.std-page-list .page-list-item .info h4{
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	font-size: 1.5em;
	line-height: 1em;
}
section.std-page-list .page-list-item .info p{
	color: #fff;
	font-size: 0.875em;
	margin: 0;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2em;
	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:30;
}

section.std-page-list .page-list-item:hover .image:before{
	 background-color:rgba(0,0,0,0.7); 
}
@media screen and (max-width:960px){
	section.std-page-list .page-list-item{
		width:48%;
	}
}
@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;
	}
}
@media screen and (max-width:640px){
	section.std-page-list .page-list-item .info h4{
		font-size:1.125em;
	}
	section.std-page-list .page-list-item .info p{
		font-size:0.75em;
	}
	section.std-page-list .page-list-item .info{
		top:50%;
	}
}
/* BLOG PAGE LIST */

section.blog-page-list{
	padding:45px 5%;
	margin: 0;
	background: var(--blue-gradient);
}
section.blog-page-list .max-width{
	max-width:@max-width;
	margin:0 auto;
	
}
section.blog-page-list h2{
	color:#fff;
	text-align:center;
}
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{
	color:#fff;
	transition:all 0.3s;
}

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

.blog-page-list-item .info p.author, section.title-block p.author{
	display:flex;
	font-size:11px;
	align-items: center;
	color:#fff;
	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;
	color: #fff;
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 3px 8px;
	background: #000;
}

.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:#fff;
}

.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{
}