/* page zone start*/
.page__img {
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: cover;
	height: 930px;
}
.page__content {
	background-color: white;
	padding: 65px 80px;
	flex: 0 0 90%;
	min-height: 490px;
	box-sizing: border-box;
}
.page__container {
	display: flex;
	height: auto;
	margin-top: -360px;
}
.page__grayside {
	flex: 0 0 10%;
	min-height: calc(100% - 360px);
	margin-top: 360px;
	background-color: #f6f6f6;
}
.breadcrumbs {
	font-size: 14px;
}
.breadcrumbs__link {
	color: #12398a;
}
.breadcrumbs__item {
	color: black;
	display: inline;
}
.page__content h1 {
	margin: 60px 0px;
}


@media screen and (max-width:1400px) and (min-width:1101px) {
	.page__img {
		height: 690px;
	}
	.page__grayside {
		flex: 0 0 10%;
		margin-top: 130px;
	}
	.page__container {
		margin-top: -130px;
	}
	.page__content {
		min-height: 360px;
	}

}

@media screen and (max-width:1100px) and (min-width:801px) {
	.page__img {
		height: 470px;
	}
	.page__container {
		margin-top: 0px;
	}
	.page__content {
		min-height: 130px;
		flex: 0 0 100%;
	}
	.page__grayside {
		flex: 0 0 0;
		display: none;
	}
}

@media screen and (max-width:800px) {
	.page__img {
		height: 360px;
	}
	.page__container {
		margin-top: 0px;
	}
	.page__content {
		min-height: 130px;
		flex: 0 0 100%;
	}
	.page__grayside {
		flex: 0 0 0;
		display: none;
	}
}
/* page zone end*/
.news__sections {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	grid-template-rows: auto;
	grid-auto-rows: auto;
	grid-auto-flow: row;
	justify-content: space-around;
	grid-gap: 60px;
}
.news__section {
	background-color: white;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #f6f6f6;
}
.news__section__img {
	height: 240px;
	flex: 0 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.news__section__text a {
	color: #12398a;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s ease;
}
.news__section__text p {
	color: #12398a;
	font-size: 16px;
	font-weight: 400;
}
.news__section__text {
	padding: 35px;
	margin-bottom: auto;
}
.news__section__text a:hover {
	color: #ff6f00;
}

@media screen and (max-width:1100px) {
	.news__sections {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}