/*********************
START: HERO ABOUT
*********************/
.heroAbout {
    padding-block: 10rem;
}

.heroAbout p.indexText {
    width: 70%;
    margin-block: 2.5rem 2rem;
}

.heroAbout picture img {
	height: auto;
    aspect-ratio: 1360 / 500;
    object-fit: cover;
    width: 100%;
    margin-block-end: 2rem;
    border-radius: var(--border-radius-4);
}

/*********************
END: HERO ABOUT
*********************/



/*********************
START: APPROACH
*********************/
.approach {
    margin-block-end: 10rem;
}

.approach--content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.approach--list {
    width: 50%;
}

.approach--text {
    width: 45%;
}

.approach--text h2 {
    margin-block-end: 2rem;
}

.approach--list ul li {
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-6);
    background-color: var(--bg-green);
}

.approach--list ul li:not(:last-child){
    margin-block-end: 1.25rem;
}

.approach--list ul li h3 {
    margin-block-end: 1rem;
	font-weight: 500;
}

.approach--list ul li p{
	color: var(--gray-contrast-secondary);
}

/*********************
END: APPROACH
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1320px) and (max-width: 1439px) {}

@media screen and (max-width: 1319px) {}

@media screen and (max-width: 1200px) {
	.heroAbout {
		padding-block: 8rem;
	}
	
    .heroAbout p.indexText{
        width: 100%;
    }
}


@media screen and (max-width: 992px) {
	.heroAbout {
		padding-block: 6rem;
	}
}

@media screen and (max-width: 768px) {
	.heroAbout {
		padding-block: 4rem;
	}
	
    .approach--content{
        flex-direction: column-reverse;
        row-gap: 2rem;
    }

    .approach--text,
    .approach--list{
        width: 100%;
    }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 425px) {}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/