/*trainingCenterBlock*/
.trainingCenterBlock{
	background: #fff;
	padding-bottom: 95px;
}


.wrapTC{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 20px;
}
.nucTC{
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: var(--standartRadius);
	background: url(images/nucTCDecBg.svg) no-repeat center 20% ,linear-gradient(135deg,#9598A7,#BFC3B9);
}
.nucTC .txtBlock{
	position: absolute;
	left: 35px;
	top: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.nucTC .type{
	color: #DDDFE3;
	line-height: 1;
	margin-bottom: 10px;
	font-size: 21px;
}
.nucTC .btnImg{
	position: absolute;
	left: 35px;
	bottom: 30px;
}
.nucTC .name{
	font-size: 30px;
	color: #fff;
	font-weight: 350;
	text-transform: uppercase;
	max-width: 170px;
}
.nucTC{
	grid-row-start: span 2;
}
.nucTC > img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.nucTC.smallTC{
	grid-row-start: span 1;
}
.nucTC.smallTC .btnImg{
	left: auto;
	right: 35px;
}

/*End trainingCenterBlock*/


@media screen and (max-width:1699px){
.nucTC .txtBlock{
	left: 20px;
	top: 20px;
}
.nucTC .type{
	margin-bottom: 5px;
	font-size: 20px;
}
.nucTC .name {
  font-size: 26px;
}
.nucTC .btnImg{
	left: 20px;
	bottom: 20px;
}
.nucTC .btnImg img{
	width: 40px;
}
.trainingCenterBlock{
	padding-bottom: 55px;
}
}

@media screen and (max-width:1199px){
.nucTC .btnImg{
	bottom: 5px;
}
.nucTC.smallTC .btnImg{
	right: 20px;
}
}


@media screen and (max-width:991px){
.wrapTC {
  grid-template-columns: repeat(2,1fr);
}

}

@media screen and (max-width:400px){
.wrapTC {
  grid-template-columns: repeat(1,1fr);
}
}