.site {
    background: var(--global-palette9);
}

.intro-image-wrapper > img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 5px;
}

.small-header {
	font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--global-palette3);
	margin: 0;
}

.intro-container {
	display: flex;
	gap: 6rem;
}

.intro-image-wrapper {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-content-wrapper {
	width: 50%;
}


.individual-approach {
	border-top: 1.5px solid var(--global-palette7, #EDF2F7);
	padding-top: 30px;
	margin-top: 30px;
}

.benefits-section__container {
	background-color: var(--global-palette8);
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 40px;
	padding-right: 40px;
	display: flex;
    flex-direction: row;
	border-radius: 5px;
	margin-top: 60px;
	margin-bottom: 60px;
	min-height: 400px;
	gap: 50px;
}

.benefits-section__left-wrapper {
	width: 50%;
}

.benefits-section__right-wrapper {
	width: 50%;
}


@media screen and (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        gap: 2rem;
    }
	
	.intro-image-wrapper {
    	width: 100%;
	}
	
	.intro-content-wrapper {
		width: 100%;
	}
	
	.benefits-section__left-wrapper {
		width: 100%;
	}

	.benefits-section__right-wrapper {
		width: 100%;
	}
	
	.benefits-section__container {
		flex-direction: column;
		gap: 10px;
	}
	
}