.top-content {
	line-height: 1.35;
}

.top-content ul, .page-content ul {
	margin-left: 20px;
}

.products-slider-section {
	padding: 85px 0;
}

.products-slider-section .btn-wrap .btn {
    height: 62px;
    font-size: 18px;
    padding: 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.row2, .row4 {
	display: grid;
} 

.row2 {
    gap: 75px;
    grid-template-columns: repeat(2,1fr);
	margin: 60px 0;
}

.row4 {
    gap: 35px;
    grid-template-columns: repeat(4,1fr);
	margin-bottom: 80px;
}



.project-img {
	display: block;
}

.project-img img {
	box-shadow: 0px 0px 6px 3px rgba(94, 189, 11, 0.5);
	border-radius: 5px;	
}


.img-title {
	color: var(--black);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	margin-top: 22px;
}

.page-content .container {
	display: grid;
	grid-template-columns: auto 45.67%;
	gap: 34px;
}
.page-content-left {
	line-height: 1.35;	
}
.page-content-title {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 30px;
	text-transform: uppercase;
}

.page-content-title:before {
	content: '';
	width: 100%;
	display: block;
	position: absolute;
	height: 2px;
	background: var(--green);
	bottom: 15px;
}

.gallery {
    gap: 22px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    margin: 0;
}
.gallery a img {
    box-shadow: none;
    border-radius: 5px;
}

@media screen and (max-width: 1500px) {
	.page-content-left, .top-content  {
		font-size: 16px;
	}
	.img-title {
		font-size: 16px;
		margin-top: 15px;
	}
	.page-content-title {
		font-size: 16px;
	}
	.row2 {
		gap: 45px;
		margin: 50px 0;
	}	
	.row4 {
		gap: 25px;
		margin-bottom: 60px;
	}
}


@media screen and (max-width: 991px) {
	.page-content .container {
		grid-template-columns: auto;
	}
	.gallery {
		gap: 12px;
		grid-template-columns: repeat(3,1fr);
	}
}

@media screen and (max-width: 767px) {

	.products-slider-section .btn-wrap .btn {
		font-size: 16px;
		padding: 0 25px;
		margin-top: 30px;
	}
	.row2 {
		gap: 25px;
		margin: 40px 0;
	}	
	.row4 {
		gap: 25px;
		grid-template-columns: repeat(2,1fr);
		margin-bottom: 40px;
	}
	.gallery {
		gap: 25px;
		grid-template-columns: repeat(1,1fr);
	}

}