/*********************
START: HERO ABOUT
*********************/
.heroAbout {
	min-height: 100vh;
    padding-block: 10rem;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.heroAbout:before{
	position: absolute;
	content:"";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

.heroAbout h1{
	position: relative;
}

.heroAbout p.indexText {
    width: 70%;
	position: relative;
    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: 7.5rem;
}

.approach--content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
	flex-direction: column-reverse;
    row-gap: 2rem;
}

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

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

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

.approach--list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.approach--list ul li {
	margin: 8px;
	flex-basis: calc(25% - 16px);
    padding: 1.5rem;
	display: flex;
	min-height: 390px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius-16);
    background-color: var(--gray-secondary);
}

.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;
	}
	
	.approach--list ul li {
		flex-basis: calc(33.33% - 16px);
	}
}

@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%;
    }
	
	.approach--list ul li {
		min-height: 250px;
		flex-basis: calc(50% - 16px);
	}
}

@media screen and (max-width: 576px) {
	.approach--list ul li {
		flex-basis: calc(100% - 16px);
	}
}

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

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

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