.partners-section {
	margin: 50px 0;
	text-align: center;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 30px;
	justify-items: center;
}

.partner-logo {
	width: 120px;
	height: 120px;
	background: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px #00e474;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	border: 2px solid #007fdc;
}

.partner-logo img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.partner-logo:hover {
	transform: scale(1.1);
	box-shadow: 0 0 20px #00e474;
}

.partner-logo_1 {
	width: 120px;
	height: 120px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px #00e474;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	border: 2px solid #007fdc;
}

.partner-logo_1 img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.partner-logo_1:hover {
	transform: scale(1.1);
	box-shadow: 0 0 20px #00e474;
}

.contact-container_1 {
	max-width: 800px;
	margin:0 auto 50px auto;
	padding: 20px;
	background: #fafafa;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-container_1 h1 {
	font-size: 32px;
	text-align: center;
	color: #333;
	margin-bottom: 20px;
}

.contact-container_1 p {
	font-size: 16px;
	color: #636363;
	text-align: center;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 15px;
	}

	.partner-logo {
		width: 100px;
		height: 100px;
	}
	
	.partner-logo_1 {
		width: 100px;
		height: 100px;
	}
  .contact-container_1 h1 {
		font-size: 24px;
	}
}