.banner-block {
	max-width: 970px;
	margin: 0 auto;
}
	.banner-text-and-img {
		display: grid;
		grid-template-columns: auto 370px;
		grid-gap: 30px;
	}
	.banner-text-and-text {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
		grid-gap: 30px;
	}
		.banner__col {
			background: #EFEFEF;
			padding: 32px;
		}
			.banner-block__col-ttl {
				font: 600 24px/1.2 Inter;
				margin-bottom: 16px;
			}
			.banner-block__col-txt {
				font: 400 16px/1.5 Inter;
			}
				.banner-block__col-txt a {
					color: #000;
				}
			.banner-block__col-url-wrap {
				display: flex;
				align-items: center;
				gap: 8px;
				margin-top: 48px;
			}
				.banner-block__col-url {
					font: 500 18px/1.4 Inter;
					color: #24DD63;
					text-decoration: none;
				}
				.banner-block__col-url-ico {
					width: 100%;
					max-width: 24px;
					height: 100%;
					max-height: 24px;
				}
		.banner-img {
			display: block;
			width: 100%;
			max-width: 370px;
			height: 100%;
			object-fit: cover;
		}
@media(max-width:991px) {
	.banner-text-and-img {
		grid-template-columns: 1fr;
	}
	.banner-img {
		max-width: 100%;
	}
}