.approch_sec {
    padding: 80px 0;
    background: linear-gradient(to bottom left, hsl(217 91% 60% / .05), hsl(217 91% 60% / .1));
    position: relative;
}
.max-w-3xl{
	max-width: 767px;
}
.site_content h2{
    color: #282c34;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.site_content p{
        color: #6b7b94;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.site_content.text_lg p{
    font-size: 20px;
    line-height: 33px;
}
.site_content p:last-of-type{
	margin-bottom: 0 !important;
}
.approch_grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
	max-width: 1024px;
	margin: 48px auto 0;
}
.grid_card {
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgb(255 255 255 / 25%), 0 4px 6px -4px rgb(82 82 82 / 26%);
    border: 1px solid #f1f1f1;
	    text-align: center;
	transition: 0.3s all;
}
.grid_card:hover {
    box-shadow: 0 20px 25px -5px rgb(255 255 255 / 25%), 0 8px 10px -6px rgb(82 82 82 / 26%);
}
.grid_card ._icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(217 91% 60%), hsl(217 76% 70%));
    border-radius: 100px;
}
.grid_card ._icon svg {
    width: 20px;
    height: 20px;
    color: #fff !important;
}
.grid_card h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #282c34;
    margin: 16px 0;
}
.grid_card h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #282c34;
    margin: 12px 0;
}
.grid_card p{
	color: #6b7b94;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
	margin:0;
}
.team_sec {
    padding: 80px 0;
    background: #fff;
    position: relative;
}
.team_grid{
	display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
	max-width: 1024px;
	margin: 32px auto;
}
.team_grid .grid_card p{
    font-size: 14px;
    line-height: 20px;
}

@media (max-width:991px){
	.team_grid,
	.approch_grid {
		grid-template-columns: repeat(2, minmax(0px, 1fr));
	}
	.site_content.text_lg p {
		font-size: 18px;
		line-height: 29px;
	}
}

@media (max-width:767px){
	
	.site_content h2 {
		font-size: 37px;
		margin-bottom: 16px;
	}
	.team_grid,
	.approch_grid {
		grid-template-columns: repeat(1, minmax(0px, 1fr));
	}
}