/* ========== STYLES DE BASE ========== */

.title-service {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
	font-size: 45px;
	font-weight: 600;
}

.title-service:hover {
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-thickness: 1px;
	text-decoration-color: #DB09A9;
}

.title-service.active {
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-thickness: 1px;
	transform: translateX(5px);
	text-decoration-color: #DB09A9;
}

.img-service {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.service {
	cursor: pointer;
	position: relative;
}

.desc-service {
	display: none;
	margin-top: 10px;
	padding-left: 20px;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 300;
	color: white;
	width: 850px;
	transform: translateX(5px);
}

.main-service {
	height: 800px;
	padding: 0% 15%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(0,0,0,0.7);
	gap: 40px;
	position: relative;
	z-index: 5;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.7s ease;
	z-index: 1;
}

.bg-video.active-video {
	opacity: 1;
}

/* ========== BREAKPOINTS ========== */

@media (max-width: 1999px) {
	.title-service {
		font-size: 35px;
	}

	.desc-service {
		font-size: 14px;
		width: 650px;
	}

	.main-service {
		height: 600px;
		gap: 20px;
	}
}

@media (max-width: 1368px) {
	.main-service {
		height: 650px;
		padding: 0% 10%;
	}
	.title-service {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.main-service {
		padding: 0% 8%;
		gap: unset !important;
	}

	.title-service {
		font-size: 20px;
	}

	.desc-service {
		width: 300px;
		padding-left: 0px !important;
	}
}
