.section-1 {
	padding-top: 48px;
	padding-bottom: 48px;
	background-color: var(--light-gray);
	position: relative;
}
.section-1 .section-content {
	display: flex;
	flex-direction: row;
	gap: 25px;
}
.section-1 .section-content>* {
	width: 50%;
}
.section-1 .section-content .right {
	position: relative;
}
.section-1 .section-content .right .card {
	position: absolute;
	padding: 15px 25px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}
.section-1 .section-content .right .card>b {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}
.section-1 .section-content .right .card:first-child {
	top: 15px;
	left: 50px;
}
.section-1 .section-content .right .card:last-child {
	bottom: 15px;
	right: 100px;
}
.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--light-purple));
    opacity: 0.05;
    z-index: 0;
}
.hero-shape-1 {
    width: 320px;
    height: 320px;
    top: -15%;
    right: 5%;
}
.hero-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 40%;
}
.hero-shape-3 {
    width: 180px;
    height: 180px;
    top: 5%;
    left: 15%;
}
.section-2 {
	padding-top: 48px;
	padding-bottom: 48px;
	text-align: center;
}
.section-2 .section-content {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center;
}
.section-2 .section-content .left {
	width: 50%;
	text-align: left;
}
.section-2 .section-content .left {
	padding-right: 25px;
	text-align: justify;
}
.section-2 .section-content .left h3 {
	font-weight: 600!important;
	font-size: 22px;
	margin-bottom: 10px;
}
.section-2 .section-content .left p {
	margin-bottom: 35px;
}
.section-2 .section-content .right {
	padding-left: 25px;
	text-align: left;
	border-left: 1px solid var(--border-gray);
}
.section-2 .right .timeline {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.section-2 .right .timeline .timeline-item {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: flex-start;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-gray);
}
.section-2 .right .timeline .timeline-header>span {
	padding: 15px;
	border-radius: 15px;
	background-color: var(--light-purple);
}
.section-2 .right .timeline .timeline-year {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin-top: 8px;
}
.section-2 .right .timeline .timeline-content h3 {
	font-size: 22px;
	font-weight: 600!important;
}
.section-3 {
	padding-top: 48px;
	padding-bottom: 48px;
	background-color: var(--light-gray);
}
.section-3 .section-content {
	display: flex;
	flex-direction: row;
	gap: 25px;
}
.section-3 .section-content>* {
	width: 50%;
	background-color: var(--white);
	box-shadow: var(--shadow);
	padding: 25px;
}
.section-3 .section-content .card {
	flex-direction: column;
	align-items: center;
}
.section-3 .section-content .card>span {
	background-color: var(--light-blue);
	margin-bottom: 25px;
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	border-radius: 15px;
}
.section-3 .section-content .card>p {
	text-align: justify;
}
.section-4 {
	padding-top: 48px;
	padding-bottom: 48px;
	text-align: center;
}
.section-4 .section-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.section-4 .card {
	box-shadow: var(--shadow);
	padding: 25px;
}
.section-4 .card>span {
	margin-left: auto;
	margin-right: auto;
	background-color: var(--light-purple);
	padding: 15px;
	border-radius: 15px;
}