.about-section {
	color: #ffffff;
	padding: 100px 100px 200px;
	background-color: #373637;
}

.about-section .container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.about-title-wrapper {
	margin-bottom: 70px;
}

.pre-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;

	font-weight: 400;
	font-style: Regular;
	font-size: 15px;

	line-height: 100%;
	letter-spacing: 0%;

	color: #5acafa;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}

.title-with-line {
	display: flex;
	align-items: flex-end;
	gap: 60px;
}

.section-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;

	font-weight: 400;
	font-style: Regular;
	font-size: 64px;

	line-height: 100%;
	letter-spacing: 0%;

	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	white-space: nowrap;
	line-height: 0.8;
}

.title-divider {
	border: none;
	height: 2px;
	background-color: #5acafa;
	flex-grow: 1;
	margin: 0;
	opacity: 1;
}

.about-content-grid {
	display: flex;
	align-items: flex-start;
	gap: 160px;
}

.about-content-col {
	flex: 1;
	max-width: 850px;
}

.about-content-col p {
	font-family: 'Bebas Neue', sans-serif;

	font-weight: 400;
	font-style: Regular;
	font-size: 24px;

	line-height: 100%;
	letter-spacing: 0%;

	text-align: justify;

	margin-bottom: 25px;
	color: #e0e0e0;
}

.btn-outline-gray {
	display: inline-block;
	margin-top: 130px;
	padding: 18px 40px;
	font-family: 'Bebas Neue Cyrillic', sans-serif;

	font-weight: 400;
	font-style: Regular;
	font-size: 32px;

	line-height: 100%;
	letter-spacing: 0%;

	text-transform: uppercase;
	text-decoration: none;
	color: #5acafa;
	border: 2px solid #5acafa;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.btn-outline-gray:hover {
	background-color: #5acafa;
	color: #000000;
}

.about-images-col {
	flex: 1;
	position: relative;
	height: 560px;
}

.about-images-col img {
	position: absolute;
	object-fit: cover;
}

.about-img-1 {
	width: 320px;
	height: auto;
	z-index: 2;
	top: 90px;
	left: 30px;
}

.about-img-2 {
	width: 350px;
	height: auto;
	z-index: 1;
	top: 0;
	right: 150px;
}

@media (max-width: 1024px) {
	.about-section {
		padding: 80px 20px;
	}

	.about-title-wrapper {
		margin-bottom: 40px;
	}

	.title-with-line {
		gap: 20px;
	}

	.section-title {
		font-size: 48px;
	}

	.about-content-grid {
		flex-direction: column;
		gap: 50px;
	}

	.about-content-col {
		max-width: 100%;
		order: 2;
	}

	.btn-outline-gray {
		margin-top: 30px;
	}

	.about-images-col {
		order: 1;
		width: 100%;
		height: auto;
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.about-images-col img {
		position: static;
		width: 100%;
		height: 300px;
		object-fit: cover;
		border: none !important;
		box-shadow: none;
	}

	.about-img-1,
	.about-img-2 {
		width: 100%;
		height: 300px;
		top: auto;
		left: auto;
		right: auto;
	}
}

@media (max-width: 768px) {
	.about-section {
		padding: 60px 20px;
	}
	.title-with-line {
		gap: 10px;
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 36px;
	}

	.about-content-col p {
		font-size: 18px;
	}

	.btn-outline-gray {
		margin-top: 20px;
		width: 100%;
		text-align: center;
	}

	.about-images-col img,
	.about-img-1,
	.about-img-2 {
		height: 250px;
	}
}

@media (max-width: 480px) {
	.about-images-col {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.about-images-col img,
	.about-img-1,
	.about-img-2 {
		height: 220px;
	}
}
