/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.connect-fudkit-section .filled {
	margin: 0 auto;
	margin-top: 20px;
}

.connect-fudkit-section .cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.connect-fudkit-section .card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 8px;
	transition: none;
	border-radius: 20px;
}

.connect-fudkit-section .card:nth-child(odd) {
	background-color: var(--blue-100);
}

.connect-fudkit-section .card:nth-child(even) {
	background-color: var(--blue-1000);
}

.connect-fudkit-section .card .text {
	display: flex;
	flex-direction: column;
	gap: inherit;
}

.connect-fudkit-section .card .text .title-container {
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.connect-fudkit-section .card .text .title-container .icon {
	line-height: 1.1;
	margin: auto 0;
}

.connect-fudkit-section .card:nth-child(odd) .text .title-container .icon {
	content: url('../../assets/images/icons/star-red.svg');
}

.connect-fudkit-section .card:nth-child(even) .text .title-container .icon {
	content: url('../../assets/images/icons/star.svg');
}

.connect-fudkit-section .card:nth-child(odd) .text .title-container .title {
	color: var(--red);
}

.connect-fudkit-section .card:nth-child(even) .text .title-container .title {
	color: white;
}

.connect-fudkit-section .card .text .list {
	margin-left: 22px;
}

.connect-fudkit-section .card .description {
	font-size: 14px;
}

.connect-fudkit-section .card:nth-child(odd) .text .description {
	color: var(--blue-1000);
}

.connect-fudkit-section .card:nth-child(even) .text .description {
	color: white;
}

.connect-fudkit-section .glow {
	width: 75%;
	height: 50%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}

@media (min-width: 768px) {
	.connect-fudkit-section .cards {
		flex-direction: row;
	}

	.connect-fudkit-section .card:nth-child(odd) {
		width: 55%;
	}

	.connect-fudkit-section .card:nth-child(even) {
		width: 45%;
	}
}
@media (min-width: 1440px) {
	.connect-fudkit-section .card {
		padding: 40px 30px;
		gap: 20px;
	}

	.connect-fudkit-section .card .text .title-container {
		gap: 10px;
	}

	.connect-fudkit-section .card .text .title-container .title {
		font-size: 32px;
	}

	.connect-fudkit-section .card .description {
		font-size: 20px;
	}
}
