.docs__catalogs {
    font-size: 1.125rem;
    color: #37363B;
	margin: 0 -15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

@media (max-width: 1199.98px) {
	.docs__catalogs {
		margin: 0 -10px;
	}
}


.docs__catalogs .docs__item__title {
	color: #000;
	font-size: 1rem;
	font-weight: 600;
}

.docs__catalogs .docs__item__title:hover {
text-decoration: none;
}

.docs__catalogs .docs__item__desc {
	font-size: 0.75rem;
}


@media (min-width: 1199.98px) {
	/*.l-page_about_catalogs .l-main__container {
		max-width: 1789px !important;
		width: 100% !important;
	}*/

	.l-page_about_catalogs .l-main__head {
		width: 100%;
	}
}


.l-page_about_catalogs .l-main__head {
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 3rem;
}
/*
.l-page_about_catalogs .l-main__head .container {
	padding-left: 15px;
	padding-right: 15px;
	max-width: 1789px !important;
}

.l-page_about_catalogs .l-main__head > .container {
	margin-left: auto !important;
	margin-right: auto !important;
}*/


.docs__item_col{
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 15px 30px 15px;
}

@media (max-width: 1199.98px) {
	.docs__item_col {
		padding: 0 10px 20px 10px;
	}
}

@media (max-width: 991.98px) {
	.docs__item_col {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575.98px) {
	.docs__item_col {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


.docs__item_new{
	height: 429px;
	background: #F2F6FD;
	display: block;
	overflow: hidden;
	text-decoration: none;
	position: relative;
}
.docs__item_new:hover {
	text-decoration: none;
}

.docs__item_top_new{
	width: 100%;
	height: 290px;
	display:flex;
	flex-direction: column;
	align-items: center;
	z-index: 0;
}

.docs__item_top_new a{
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.docs__item_top_new img{
	height: 290px;
	/*max-height: 100%;*/
	mix-blend-mode: darken;
}

.docs__item_bottom_new{
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 5%;
}

.docs__item_bottom_new .docs__item__title_new {
	font-size: 16px;
	font-weight: 700;
	color: black;
	text-transform: uppercase;
}


@media(max-width: 1520px){
	.docs__item_new{
		height: 390px;
	}
	.docs__item_top_new{
		height: 251px;
	}

	.docs__item_top_new img{
		height: 251px;
		/*max-height: 100%;*/
	}
}

@media(max-width: 1330px){
	.docs__item_new{
		height: 330px;
	}
	.docs__item_top_new{
		height: 201px;
	}
	.docs__item_top_new img{
		height: 201px;
		/*max-height: 100%;*/
	}
}


/*@media(max-width: 1120px){
	.docs__item_bottom_new a{
		font-size: 14px;
	}
}

@media(max-width: 1100px){
	.docs__item_bottom_new a{
		font-size: 12px;
	}
}*/

/*@media(max-width: 1000px){
	.docs__item_bottom_new a{
		font-size: 14px;
	}

	.docs__item_new{
		max-width: 47%;
		min-width: 47%;
	}

	.docs__catalogs_text_new{
		width: 80%;
		max-width: 80%;
	}

}*/


.docs__item__pdf_new{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 53px;
	height: 53px;
	background: #182E78;
	z-index: 1;
	color: white;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 991.98px) {
	.docs__item__pdf_new {
		width: 43px;
		height: 43px;
		font-size: 14px;
	}
}

.docs__item_new:hover .docs__item__pdf_new{
	background: #e24c3f;
}



@keyframes itIsScale {
	0% {
		transform:scale(1);
	}

	25% {
		transform:scale(1.04);
	}

	50% {
		transform:scale(1.08);
	}

	75% {
		transform:scale(1.12);
	}

	100% {
		transform:scale(1.16);
	}
}

@keyframes itIsScaleOut {

	0% {
		transform:scale(1.16);
	}

	25% {
		transform:scale(1.12);
	}

	50% {
		transform:scale(1.08);
	}

	75% {
		transform:scale(1.04);
	}

	100% {
		transform:scale(1);
	}
}

@keyframes itIsColorChange {

	0% {
		background: #182E78;
	}

	100% {
		background:#e24c3f;
	}
}

@keyframes itIsColorChangeOut {

	0% {
		background:#e24c3f;
	}

	100% {
		background:#182E78;
	}
}

.docs__item_new:hover .docs__item_top_new img{
	animation-name: itIsScale;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}

.docs__item_new .docs__item_top_new img{
	animation-name: itIsScaleOut;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}


.docs__item_new:hover .docs__item__pdf_new{
	animation-name: itIsColorChange;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}

.docs__item_new .docs__item__pdf_new{
	animation-name: itIsColorChangeOut;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}

/*
.docs__item_new .docs__item_top_new img{
	animation-name: itIsScaleOut;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
}

 */

/*@media(max-width: 768px){
	.docs__item_bottom_new a{
		font-size: 16px;
	}

	.docs__item_new{
		max-width: 99%;
		min-width: 99%;
		height: 352px;
	}

	.docs__item_top_new{
		height: 240px;
		min-height: 240px;
		max-height: 240px;
	}

	.docs__item_top_new img{
		height: 240px;
		!*max-height: 100%;*!
	}

	.docs__catalogs_text_new{
		display: none;
	}

}*/


.docs__catalogs_text_new{
	max-width: 50%;
	font-weight: 300;
	font-size: 16px;
	color: #707070;
	margin-bottom: 40px;
}


@media(max-width: 1199.98px){
	.docs__catalogs_text_new{
		width: 100%;
		max-width: 100%;
	}
}

.docs__catalogs_info_text_1_new{
	font-size: 26px;
	font-weight: 600;
	color: white;
}

.docs__catalogs_info_text_2_new{
	font-size: 50px;
	font-weight: 600;
	color: white;
	padding-bottom: 15px;
}

.docs__catalogs_info_text_3_ul_new {
	margin: 0;
	padding: 0 0 0 17px;
}
.docs__catalogs_info_text_3_ul_new li::marker{
	color: #C9C9C9;
	font-size: 1.2em;
}

.docs__catalogs_info_text_3_ul_new li{
	color: #C9C9C9;
	font-size: 16px;
	font-weight: 400;
}


.docs__catalogs_info_col {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 15px 30px 15px;
}

.docs__catalogs_info_col.width-full-1 {
	flex: 0 0 25%;
	max-width: 25%;
}
.docs__catalogs_info_col.width-full-2 {
	flex: 0 0 50%;
	max-width: 50%;
}
.docs__catalogs_info_col.width-full-3 {
	flex: 0 0 75%;
	max-width: 75%;
}
.docs__catalogs_info_col.width-full-4 {
	flex: 0 0 100%;
	max-width: 100%;
}


.docs__catalogs_info_new{
	background: #1F2972;
	margin: 0;
	height: 100%;
	min-height: 429px;
}

@media(max-width: 1520px){
	.docs__catalogs_info_new{
		min-height: 390px;
	}
}

@media(max-width: 1330px){
	.docs__catalogs_info_new{
		min-height: 330px;
	}
}


.docs__catalogs_info_inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_new {
	padding: 15px 54px;
}
.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_new {
	padding: 15px 108px;
}
.docs__catalogs_info_col.width-full-3 .docs__catalogs_info_new {
	padding: 15px 15%;
}
.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_new {
	padding: 15px 9%;
}

.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_inner {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_left {
	padding-right: 15px;
}


.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_text_1_new {
	font-size: 18px;
	font-weight: 600;
}
.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_text_2_new {
	font-size: 34px;
	font-weight: 600;
}
.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_text_3_ul_new li {
	font-size: 12px;
	line-height: 130%;
}

.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_text_3_ul_new li {
	font-size: 14px;
	line-height: 130%;
}

.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_text_2_new {
	padding-bottom: 0;
}


@media(max-width: 1350px){
	.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_new {
		padding: 15px 15px;
	}
	.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_new {
		padding: 15px 30px;
	}
	.docs__catalogs_info_col.width-full-3 .docs__catalogs_info_new {
		padding: 15px 80px;
	}
	.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_new {
		padding: 15px 100px;
	}
}


@media (max-width: 1199.98px) {
	.docs__catalogs_info_col {
		padding: 0 10px 20px 10px;
	}

	.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_new {
		padding: 15px 15px;
	}
	.docs__catalogs_info_col.width-full-3 .docs__catalogs_info_new {
		padding: 15px 30px;
	}
	.docs__catalogs_info_col.width-full-4 .docs__catalogs_info_new {
		padding: 15px 100px;
	}

	.docs__catalogs_info_col.width-full-1 .docs__catalogs_info_text_2_new {
		font-size: 26px;
	}
	.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_text_2_new {
		font-size: 38px;
		padding-bottom: 0;
	}
	.docs__catalogs_info_col.width-full-3 .docs__catalogs_info_text_2_new {
		font-size: 38px;
		padding-bottom: 0;
	}

	.docs__catalogs_info_col.width-full-2 .docs__catalogs_info_text_1_new {
		font-size: 22px;
	}
	.docs__catalogs_info_col.width-full-3 .docs__catalogs_info_text_1_new {
		font-size: 24px;
	}

	.docs__catalogs_info_col.width-full-3  .docs__catalogs_info_text_3_ul_new li {
		font-size: 14px;
	}
}

@media (max-width: 991.98px) {
	.docs__catalogs_info_col.width-mobile-1 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.docs__catalogs_info_col.width-mobile-2 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_new {
		padding: 15px 15px;
	}
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_new {
		padding: 15px 30px;
	}


	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_1_new {
		font-size: 18px;
	}
	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_2_new {
		font-size: 26px;
	}
	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_3_ul_new li {
		font-size: 12px;
		line-height: 130%;
	}

	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_2_new {
		font-size: 38px;
		padding-bottom: 0;
	}
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_1_new {
		font-size: 22px;
	}
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_3_ul_new li {
		font-size: 14px;
		line-height: 130%;
	}
}


@media (max-width: 575.98px) {
	.docs__catalogs_info_col.width-mobile-1, .docs__catalogs_info_col.width-mobile-2 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_new,
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_new {
		padding: 15px 15px;
	}

	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_1_new,
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_1_new {
		font-size: 18px;
	}
	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_2_new,
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_2_new {
		font-size: 26px;
	}
	.docs__catalogs_info_col.width-mobile-1 .docs__catalogs_info_text_3_ul_new li,
	.docs__catalogs_info_col.width-mobile-2 .docs__catalogs_info_text_3_ul_new li {
		font-size: 12px;
		line-height: 130%;
	}
}



/*@media(max-width: 1330px){
	.docs__catalogs_info_text_1_new{
		font-size: 18px;
		font-weight: 600;
		color: white;
	}

	.docs__catalogs_info_text_2_new{
		font-size: 32px;
		font-weight: 600;
		color: white;
	}

	.docs__catalogs_info_text_3_ul_new li{
		color: #C9C9C9;
		font-size: 12px;
	}
}*/

