.key-resources {
	background: var(--bg-color);
	position: relative;
}

.key-resources:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	background: transparent var(--bg-image) no-repeat center right / cover;
}

.key-resources .container {
	max-width: 1190px;
	margin: 0 auto;
	width: 90%;
	padding: 80px 0;
	position: relative;
	z-index: 1;
}

.key-resources .col-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 57px;
}

.key-resources .col-wrapper .col {
	width: 100%;
}

.key-resources .col-wrapper .col.left {
	max-width: 260px;
}

.key-resources .col-wrapper .col.right {
	max-width: 900px;
}

.key-resources .title {
	font: normal var(--f-bold) 2.63rem / 1.1 var(--font-sans);
	color: var(--heading-color);
}

.key-resources .col.left>.content {
	font: normal var(--f-light) 1.13rem / 1.3 var(--font-sans);
	color: var(--content-color);
	margin-bottom: 40px;
}

.key-resources .col.left .content p {
	margin-bottom: 0;
}

.key-resources .btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	border: none;
	font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
	color: var(--content-color);
	width: max-content;
	text-decoration: none;
	box-shadow: none;
}

.key-resources .btn svg {
	color: var(--btn-bg-color);
	transition: var(--transition);
}

.key-resources .btn:hover svg {
	transform: rotate(90deg);
}

.key-resources-wrapper .slick-slide {
	margin: 0 15px;
}

.key-resources-wrapper .rs_card {
	background: var(--white);
	padding: 24px 24px 54px;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	align-self: stretch;
	gap: 20px;
	width: 100%;
	box-shadow: none !important;
	position: relative;
}

.key-resources-wrapper .rs_card .rs_card-content {
	width: 100%;
}

.key-resources-wrapper .rs_card .rs_thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	overflow: hidden;
	width: 100%;
	height: 126px;
}

.key-resources-wrapper .rs_card .rs_thumb .rs_thumb-img {
    width: auto;
    height: 100%;
    border-radius: 15px;
}

.key-resources-wrapper .rs_card .rs_card-category {
	font: normal var(--f-bold) 0.875rem/1 var(--font-sans);
	color: var(--label-color);
	text-transform: uppercase;
	letter-spacing: .82px;
	margin-bottom: 0;
}

.key-resources-wrapper .rs_card .rs_card-title {
	font: normal var(--f-medium) 1.13rem / 1.1 var(--font-sans);
	color: var(--secondary-color);
	margin-bottom: 12px;
	transition: var(--transition);
}

.key-resources-wrapper .rs_card:hover .rs_card-title {
	color: var(--primary-color);
}

.key-resources-wrapper .rs_card .rs_card-excerpt {
	font: normal var(--f-light) .88rem / 1.3 var(--font-sans);
	color: var(--content-color);
	margin-bottom: 12px;
}

.key-resources-wrapper .rs_card:hover .rs_card-excerpt {
	color: var(--content-color) !important;
}

.key-resources-wrapper .rs_card .rs_card-download {
	font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
	color: var(--content-color);
	letter-spacing: .11px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	position: absolute;
	left: 24px;
	bottom: 30px;
}

.key-resources-wrapper .rs_card .rs_card-download svg {
	color: var(--btn-bg-color);
	transition: var(--transition);
}

.key-resources-wrapper .rs_card:hover .rs_card-download svg {
	transform: rotate(90deg);
}

.key-resources-nav .slick-arrow svg {
	width: 14px;
}

.key-resources-nav .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 2px solid var(--label-color);
	border-radius: 50%;
	height: 30px;
	width: 30px;
	padding: 0;
	margin: 0;
}

.key-resources-nav .slick-arrow.kr-prev {
	transform: scaleX(-1);
}

.key-resources-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	margin-top: 46px;
}

@media screen and (min-width: 651px) {
	.key-resources-wrapper {
		margin: 0 -15px;
	}
}

@media screen and (max-width: 1280px) {
	.key-resources .col-wrapper {
		flex-direction: column;
	}

	.key-resources .col-wrapper .col {
		max-width: 100% !important;
	}

	.key-resources-nav {
		margin-top: 26px;
	}
}

@media screen and (max-width: 1024px) {
	.key-resources .container {
		padding: 70px 0;
	}

	.key-resources .col-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.key-resources .col-wrapper .col {
		width: 100%;
	}

	.key-resources .title {
		font: normal var(--f-bold) 2.38rem / 1.1 var(--font-sans);
	}

	.key-resources .col.left>.content {
		font: normal var(--f-medium) 1.38rem / 1.3 var(--font-sans);
		margin-bottom: 20px;
	}

	.key-resources .col-wrapper .col.full-width {
		max-width: 100%;
	}
}

@media screen and (max-width: 991px) {
	.key-resources-nav {
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	.key-resources .container {
		padding: 40px 0;
	}

	.key-resources .col-wrapper .col {
		width: 100%;
	}

	.key-resources .title {
		font: normal var(--f-bold) 2rem / 1.1 var(--font-sans);
	}

	.key-resources .col.left>.content {
		font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans);
	}

	.key-resources-nav {
		justify-content: center;
		gap: 20px;
	}
}

@media screen and (max-width: 650px) {
	.key-resources-wrapper .slick-slide {
		margin: 0 5px;
	}
	.key-resources-wrapper .rs_card .rs_thumb{
		max-width: 100%;
		height: auto;
	}
}