.news-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.news-box {border-radius: 40px;}
.news-box__info {display:flex;justify-content:space-between;align-items:center;width:100%;}
.news-box__info span {opacity: .5;text-align:right;}
.news-box__image.smaller {
	padding-bottom: 27.36%;
}
.news-box__image.smaller img {object-fit: contain;}
@media (max-width: 992px) {
	.news-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 576px) {
	.news-list {
		grid-gap: 24px;
	}
}

.portfolio-two__item {

}
.image-list-outer,
.image-list {
	width: 100%;
	position: relative;
}
.image-list-outer {
	/* overflow: hidden; */
}
.image-list-wrapper {
	position: relative;
	padding-top: var(--paddingImage, 100%);
	margin: 0px auto;
	text-align: center;
	zoom: 1;
	display: block;
}
.image-list__link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.image-list-wrapper img {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	pointer-events: none;
}

/*gallery in list*/
.section-gallery-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0px;
	right: 0px;
	flex-direction: row !important;
	z-index: 2;
}
.section-gallery-wrapper__item {
	flex-grow: 1;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	/* background-color: #fff; */
	/* margin-bottom: -4px; */
}
.section-gallery-wrapper__item-nav {
	display: block;
	position: relative;
	margin: 0 1px;
	height: 100%;
}
.section-gallery-wrapper__item_hidden {
	display: none;
}
.section-gallery-wrapper__item img {
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	left: 0px;
	right: 0px;
	border-radius: 4px;

	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}
.section-gallery-wrapper__item.active img {
	opacity: 1;
}

.section-gallery-nav {
	position: absolute;
	bottom: 10px;
	left: 0px;
	right: 0px;
	text-align: center;
	z-index: 2;
}
.section-gallery-nav__item {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	background: #3D6FB6;
}
.section-gallery-nav__item:not(.active) {
	cursor: pointer;
	background: #9e9e9e;
}

.ratio--horizontal {
	--paddingImage:66%;
}
.ratio--vertical {
	--paddingImage:150%;
}