.solution-video {
    position: relative;
    height: 730px; 
    background-size: cover;
	background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.video-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
	justify-content: space-between;
}

.play-trigger {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(244, 244, 244, 0.9);
    border: none;
    cursor: pointer;
	padding: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 5px;
}

.play-trigger:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #000;
	transition: all 0.5s ease;
}

.play-trigger:hover:after {
    transform: scale(1.2);
}

.video-text {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
	max-width: 573px;
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 80%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.close-video {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

@media (min-width: 1441px){
	.solution-video {
		padding-bottom: 139px;
		align-items: end;
	}
}

@media (max-width: 767px){
	.solution-video {
		height: auto;
		aspect-ratio: 390 / 198;
	}
	.video-content-wrapper {
		justify-content: center;
	}
	.play-trigger {
		width: 50px;
		height: 50px;
	}
	.play-trigger::after {
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		border-left: 11px solid #000;
	}
	.video-text {
		padding-top: 30px;
		font-size: 15px;
		line-height: 22px;
		font-weight: 500;
		padding-bottom: 31px;
		max-width: 100%;
		background-color: #F6F6F6;
	}
	.video-container {
		width: 100%;
	}
	.close-video {
		right: 10px;
	}
}