/* Hero section */

.hero {
	background-size: cover;
	position: relative;
	padding: 20% 0;
}

.hero .hero_wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    background: #fff;
    padding: 70px;
}

.hero .hero_wrap h1 {
    font-size: 48px;
    font-weight: normal;
    max-width: 75%;
}

.hero .hero_wrap p {
	font-size: 18px;
	line-height: 26px;
}



/* Services */

.services {
	padding: 100px 0 0;
}

.services .services_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

.services .services_list .service_image {
	grid-template-columns: minmax(0, 50px) minmax(0, 1fr);
    display: grid;
}

.services .services_list .service_image img {
	width: 100%;
	display: block;
}

.services .services_list .service_image .service_number {
	min-width: 50px;
	background: #9ACBF4;
	text-align: center;
	padding-top: 20px;
	color: #fff;
}

.services .services_list .description p {
	font-size: 18px;
	line-height: 26px;
}


/* Industries */

.industries ul li h3 {
    background: #F6F7F8;
    padding: 130px 20px 20px;
    margin-top: 0;
}

/* Team */

.people .heading {
	padding-top: 50px;
}

.people {
    background: url(../images/team.avif);
    background-size: cover;
    margin-top: 150px;
    padding-bottom: 130px;
    background-position: center;
}

.people .people-list {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin-top: 45px;
}

.people .people-list .people-item {
	margin-bottom: 50px;
}

.people .people-list .team-member-position {
	color: #333;
    font-size: 15px;
    display: inline-block;
    margin-top: 3px;
}


@media only screen and (max-width: 1600px) {
	.hero .hero_wrap h1 {
	    font-size: 40px;
	    max-width: 90%;
	}
	.hero .hero_wrap p {
	    font-size: 16px;
	}
	.services .services_list .description p {
	    font-size: 16px;
	}
	.practice_areas {
    	padding: 50px 0;
	}
	.practice_areas ul li h3, 
	.industries ul li h3, .people ul li h3 {
	    font-size: 16px;
	}
	.people {
	    margin-top: 50px;
	    padding-bottom: 50px;
	}
	.insights .insights-description p br {
		display: none;
	}

}


@media only screen and (max-width: 1200px) {
	.hero .hero_wrap {
		padding: 40px;
	}
}


@media only screen and (max-width: 992px) {
	.hero .hero_wrap {
        padding: 40px 20px 40px 40px;
    }
	.hero .hero_wrap h1 {
        font-size: 33px;
    }
    .hero .hero_wrap p br {
    	display: none;
    }
    .services .services_list .service_image {
	    grid-template-columns: minmax(0, 40px) minmax(0, 1fr);
	}
	.services .services_list .service_image .service_number {
		min-width: 40px;
	}
	.insights {
	    padding: 50px 0;
	}
}

@media only screen and (max-width: 768px) {
	.hero {
		height: 600px;
	}
	.hero .hero_wrap h1 {
	    font-size: 30px;
	}
	.hero .hero_wrap {
        padding: 30px;
        right: 0;
        width: 95%;
    }
    .services {
    	padding: 50px 0 0;
	}
	.services .services_list {
	    grid-template-columns: repeat(1, 1fr);
	    grid-gap: 20px;
	}
	.practice_areas .splide__arrows, .industries .splide__arrows, .insights .splide__arrows, .about_people .splide__arrows {
		top: -65px;
	}
	.people .people-list {
	    grid-template-columns: repeat(2, 1fr);
	}
	.people .people-list .people-item {
    	margin-bottom: 20px;
	}

	.industries ul li h3 {
	    height: 30px;
	    padding: 90px 20px 50px;
	}

	.practice_areas ul li h3, .industries ul li h3, .people ul li h3 {
		font-size: 15px;
	}
	.insights .splide__arrows {
    	top: 0;
  	}


}


