:root {
	--theme-color: #dfbd4e;
	--theme-color2: #3843c1;
	--title-color: #080809;
	--body-color: #363739;
	--smoke-color: #f7f7f7;
	--smoke-color2: #f6f6f6;
	--black-color: #000000;
	--black-color2: #080e1c;
	--gray-color: #bdbdbd;
	--white-color: #ffffff;
	--light-color: #bdbdbd;
	--yellow-color: #ffb539;
	--success-color: #28a745;
	--error-color: #dc3545;
	--th-border-color: #cdcdcd;
	--th-border-color2: #e6e6e6;
	--title-font: "Poppins", "Battambang", sans-serif;
	--body-font: "Roboto", sans-serif;
	--style-font: "Lobster", cursive;
	--icon-font: "Font Awesome 6 Pro";
	--main-container: 1290px;
	--container-gutters: 24px;
	--section-space: 120px;
	--section-space-mobile: 80px;
	--section-title-space: 60px;
	--ripple-ani-duration: 5s;
	--th-body-background: #ffffff;
	--font-size-sub-title: 27px;
	--main-gradient-color: radial-gradient(circle, #feb302, #eed900, #f8c600, #ffd205, #ecd700);
	--secondary-gradient-color: radial-gradient(circle, #feb302, #f8c600, #eed900, #ecd700, #ffd205);
}

.product-offer-main {
	position: relative;
	overflow: hidden;
	height: 430px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.product-offer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 70, 77, 0.5);
    z-index: 2;
    filter: blur(6px);
}

.product-offer-main img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.product-offer-main:hover img {
	transform: scale(1.01) rotate(1deg);
}

.product-offer-main .offer-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(61, 70, 77, 0.5);
	z-index: 1;
}

.product-offer-main .style-video {
	position: absolute;
	z-index: 3;
    bottom: 50%;
    transform: translateY(50%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.product-offer-main .style-video i {
	background: #ffffff4f;
	color: var(--theme-color);
}

.product-offer-main .style-video .btn-title {
	font-size: 18px;
	font-weight: 400;
	color: var(--white-color);
	margin-bottom: 0;
}

.product-offer-main .style-video:hover i {
	color: var(--white-color);
	background: var(--theme-color);
}

.play-btn {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.play-btn > i {
	display: inline-block;
	width: var(--icon-size, 56px);
	height: var(--icon-size, 56px);
	line-height: var(--icon-size, 56px);
	text-align: center;
	background-color: var(--white-color);
	color: var(--theme-color);
	font-size: var(--icon-font-size, 1.4em);
	border-radius: 50%;
	z-index: 1;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

.play-btn:after,
.play-btn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	z-index: -1;
	border-radius: 50%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

.play-btn:after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
	background-color: var(--theme-color);
	color: var(--white-color);
}

.play-btn:after,
.play-btn:before {
	-webkit-animation-duration: var(--ripple-ani-duration);
	animation-duration: var(--ripple-ani-duration);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ripple;
	animation-name: ripple;
}

@-webkit-keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
	30% {
		opacity: 0.4;
	}
	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}

@keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
	30% {
		opacity: 0.4;
	}
	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}
