/*********************
START: APPROACH
*********************/

.approach--content {
    display: flex;
    padding-block-end: 4rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(126, 139, 150, 0.5);
}

.approach--content h2 {
    width: 25%;
	font-weight: 600;
    font-family: var(--font-family-Poppins);
}

.approach--content .top-text-services {
    width: 70%;
    font-weight: 500;
    line-height: var(--line-height150);
}

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


/*********************
START: SERVICES
*********************/

.services ul{
    padding-inline: 1rem;
}
.services ul li:not(:last-child) {
    border-bottom: 1px solid rgba(126, 139, 150, 0.5);
}

.services ul li {
    list-style: decimal;
    color: #A48A58;
    padding-block: 4rem;
}

.services ul li h3 {
    color: #A48A58;
    width: 100%;
    font-weight: 500;
    text-align: left;
    margin-block-end: 2rem;
}

.services ul li .services--content>picture img {
    border-radius: var(--border-radius10);
    width: 100%;
    height: auto;
}

.services ul li .services--content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services ul li .services--content>div,
.services ul li .services--content>picture {
    width: 49%;
}

.services ul li .services--content>div {
    padding-inline-end: 3rem;
}

.services ul li .services--content>div p {
    margin-block-start: 1.25rem;
    color: var(--baseDark-color);
}

/*********************
END: SERVICES
*********************/

/*********************
START: DEDICATED
*********************/
.dedicated--content {
    display: flex;
    padding-block-start: 4rem;
    justify-content: space-between;
    border-top: 1px solid rgba(126, 139, 150, 0.5);
}

.dedicated--content h3 {
    width: 25%;
	font-weight: 600;
    font-family: var(--font-family-Poppins);
}

.dedicated--content > div {
    width: 70%;
}

.dedicated--content > div > p {
    font-weight: 400;
    line-height: var(--line-height150);
    margin-block-end: 3rem;
}

/*********************
END: DEDICATED
*********************/

@media screen and (min-width: 1440px) {
    .approach--content h2, 
    .dedicated--content h3 {
        font-size: var(--text-6xl);
    }

    .approach--content .top-text-services,
    .services ul li h3 {
        font-size: var(--text-2xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .approach--content h2, 
    .dedicated--content h3 {
        font-size: var(--text-5xl);
    }

    .approach--content .top-text-services, 
    .services ul li h3 {
        font-size: var(--text-xl);
    }
}

@media screen and (max-width: 1319px) {
    .approach--content h2, 
    .dedicated--content h3 {
        font-size: var(--text-5xl);
    }

    .approach--content .top-text-services, 
    .services ul li h3 {
        font-size: var(--text-xl);
    }
}

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

@media screen and (max-width: 992px) {
    .approach--content h2 {
        width: 30%;
        font-size: var(--text-4xl);
    }

    .dedicated--content h3{
        font-size: var(--text-4xl);
    }

    .approach--content .top-text-services {
        width: 65%;
    }

    .services ul li .services--content>div {
        padding-inline-end: 0;
    }

}

@media screen and (max-width: 768px) {
    .approach--content {
        flex-direction: column;
        align-items: flex-start;
    }

    .approach--content h2,
    .approach--content .top-text-services {
        width: 100%;
    }

    .approach--content h2 {
        margin-block-end: 1rem;
    }

    .services ul li {
        padding-block: 2rem;
    }

    .services ul li .services--content{
        flex-direction: column-reverse;
    }

    .services ul li .services--content>div{
        width: 100%;
        margin-block-start: 2rem;
    }

    .services ul li .services--content>picture{
        width: 70%;
    }
	
	.dedicated--content{
		flex-direction: column;
	}
	
	.dedicated--content > * {
    	width: 100% !important;
	}
	
	.dedicated--content > div {
		margin-block-start: 2rem;
	}
}

@media screen and (max-width: 576px) {
    .approach--content .top-text-services {
        font-size: var(--text-base);
    }

    .services ul li .services--content>picture{
        width: 80%;
    }
}

@media screen and (max-width: 425px) {
    .services ul li .services--content>picture{
        width: 90%;
    }
}

@media screen and (max-width: 375px) {
    .services ul li .services--content>picture{
        width: 100%;
    }
}