.action_baner__section{
	margin-bottom: 128px;
	width: 100%;
}
.action_baner__wrap{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.action_baner__texts{
	width: 100%;
	max-width: 50%;
	padding-left: calc((100% - 1312px) / 2);
	margin-right: 64px;
}
.action_baner__texts h1{
	margin-bottom: 56px;
}
.action_baner__details{
	margin-bottom: 8px;
}
.action_baner__details *{
	font-size: 16px;
	line-height: 24px;
}
.action_baner__text{
	margin-top: 24px;
	position: relative;
}
.action_baner__text p{
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 180px;
	transition: all .3s;
}
.action_baner__text p.opened{
	max-height: 500px;
}
.action_baner__text .read_more{
	padding: 8px 0;
	text-align: left;
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	color: var(--orange);
	/*background: linear-gradient(0deg, rgba(250,250,250,1) 70%, 
		rgba(250,250,250, 0.5) 35%,
		rgba(250,250,250,0) 100%);*/
	-webkit-box-shadow: 0px -26px 17px 5px rgba(250, 250, 250, 0.75);
	-moz-box-shadow: 0px -26px 17px 5px rgba(250, 250, 250, 0.75);
	box-shadow: 0px -26px 17px 5px rgba(250, 250, 250, 0.75);
	background-color: #fafafa;
}
.action_baner__text .read_more::after{
	content: '';
	border-left: 2px solid var(--orange);
	border-bottom: 2px solid var(--orange);
	display: block;
	width: 5px;
	height: 5px;
	position: absolute;
	left: 150px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s;
}
.read_more:hover::after{
	transform: translateY(0) rotate(-45deg);
}
.read_more.expanded{
	top: 100%;
	bottom: unset;
	box-shadow: none;
}
.read_more.expanded::after{
	transform: translateY(0) rotate(135deg);
}
.action_baner__image{
	width: 100%;
	height: inherit;
	border-radius: 16px 0 0 16px;
	object-fit: cover;
	aspect-ratio: 92 / 100;
}

.tiles_grid__section{
	margin-bottom: 180px;
}
.tiles_grid__section h1{
	margin-bottom: 24px;
}
.tiles_grid__section .container > .text{
	margin-bottom: 140px;
	max-width: 600px;
}
.tiles_grid__wraper{
	margin-bottom: 64px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tiles_grid__post{
	width: 100%;
	max-width: 24%;
}
.tiles_grid__post:nth-child(n + 3),
.tiles_grid__post:nth-child(n + 4){
	transform: translateY(-100px);
}
.tiles_grid__post img{
	width: 100%;
	object-fit: cover;
	margin-bottom: 16px;
}
.tiles_grid__post:nth-child(2n + 1) img{
	aspect-ratio: 1 / 1;
}
.tiles_grid__post:nth-child(2n) img{
	aspect-ratio: 7 / 10;
}
.tiles_grid__post h3{
	margin-bottom: 8px;
	transition: all .3s;
	width: calc(100% - 56px);
	position: relative;
}
.tiles_grid__post h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 8px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 11px;
    left: calc(100% + 6px);
    transform: translate(-24px, -50%) rotate(180deg);
    opacity: 0;
    transition: all .3s;
}
.tiles_grid__post:hover h3::after {
    transform: translate(0, -50%) rotate(180deg);
    opacity: 1;
}
.tiles_grid__post .text{
	margin-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	-webkit-box-orient: vertical;
}
.tiles_grid__post__caption{
	font-weight: 600;
	transition: all .3s;
}
.tiles_grid__post:hover h3,
.tiles_grid__post:hover .tiles_grid__post__caption{
	color: var(--orange);
}
.pagination_posts{
	margin: auto;
	text-align: center;
	position: relative;
	width: fit-content;
}
.page-numbers{
	font-family: Montserrat;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 110%;
	padding: 10px;
	display: inline-flex;
	align-items: center;
}
.page-numbers.next,
.page-numbers.prev{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
}
.page-numbers.next{
	left: calc(100%);
}
.page-numbers.prev{
	right: calc(100%);
}
.page-numbers.current,
.page-numbers:hover{
	color: var(--orange);
}
.pagin_arrow{
	display: inline-block;
	margin: 10px;
	width: 50px;
	height: 10px;
	background-image: url(../img/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.next .pagin_arrow{
	transform: rotate(180deg);
}

@media screen and (max-width:  920px){
	.action_baner__section{
		margin-bottom: 40px;
	}
	.action_baner__wrap{
		flex-wrap: wrap;
	}
	.action_baner__text .read_more{
		font-weight: 500;
	}
	.action_baner__texts{
		max-width: 100%;
		margin-right: 0;
		padding: 0 24px;
	}
	.action_baner__image{
		max-width: 100%;
		order: -1;
		height: auto;
		border-radius: 0;
		margin-bottom: 32px;
		aspect-ratio:  unset;
	}
	.action_baner__texts h1{
		margin-bottom: 24px;
	}
	.action_baner__details *{
		font-size: 14px
	}

	.tiles_grid__section{
		margin-bottom: 104px;
	}
	.tiles_grid__section .container > .text{
		margin-bottom: 32px;
	}
	.tiles_grid__post{
		max-width: 48%;
		margin-bottom: 56px;
	}
	.tiles_grid__post:nth-child(n + 3), 
	.tiles_grid__post:nth-child(n + 4){
		transform: translateY(0);
	}
	.tiles_grid__post:nth-child(2n + 1) img,
	.tiles_grid__post:nth-child(2n) img{
		aspect-ratio: 8 / 10;
	}
	.tiles_grid__post .text{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2; 
		-webkit-box-orient: vertical;
	}
	.tiles_grid__post__caption{
		font-size: 14px;
	}
	.tiles__post .text{
		overflow: hidden;
	   text-overflow: ellipsis;
	   display: -webkit-box;
	   -webkit-line-clamp: 2; /* number of lines to show */
	   -webkit-box-orient: vertical;
	}
}

@media screen and (min-width: 992px){
	.main-wrapper{
		margin-top: 48px;
	}
}