:root {
	--accentColor2: #FB413A;
}

body {
	background-color: #E5E5E5;
}

.button {
	background: linear-gradient(90deg, #5B3DF6 -10.15%, #873EC2 38.77%, #FB413A 142.64%);
}

/* HOME PAGE SLIDER starts here */
#slider .slides {
	position: relative;
}
#slider .slides .slide {
	position: relative;
	background-color: rgba(0,0,0,0.9);
}
#slider .slides .slide .banner {
	position: relative;
}
#slider .slides .slide .banner:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
	z-index: 1;
}
#slider .slides .slide .banner img {
	width: 100%;
	height: clamp(400px, 60vh, 800px);
	object-fit: cover;
	background-color: #E6E6E6;
}
#slider .slides .slide .banner.no-banner img {
	max-height: 80vh;
}
#slider .slides .slide .content {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
	z-index: 2;
}
#slider .slides .slide .content .wrapper {
	display: flex;
    align-items: flex-end;
}
#slider .slides .slide .content .logo {
	display: inline-block;
	margin-bottom: 20px;
}
#slider .slides .slide .content .logo img {
	height: 80px;
	object-fit: contain;
}
#slider .slides .slide .content .details {
	color: #FFF;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#slider .slides .slide .content .details .title {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 8px;
	display: inline-block;
}

#slider .slides .owl-dots {
	text-align: center;
	position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: none;
}
#slider .slides .owl-dots .owl-dot {
	background-color: #cdc7d7;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	margin: 0 4px;
}
#slider .slides .owl-dots .owl-dot.active {
	background-color: var(--accentColor2);
	width: 24px;
}
#slider .slides .owl-nav button {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 84px;
	width: 10%;
	height: calc(100% - 100px);
	color: #FFF;
	opacity: 0.5;
	transition: opacity .15s ease;
}
#slider .slides .owl-nav button.owl-next {
	left: auto;
	right: 0;
}
#slider .slides .owl-nav button:hover {
	opacity: 1;
}
/* HOME PAGE SLIDER ends here */


/* HOME PAGE OFFERS starts here */
#offers .offers {
	padding-top: 70px;
    margin: 0 -15px -30px;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#offers .offers .offer-item {
	flex: 0 0 calc(25% - 30px);
	margin: 0 15px 90px 15px;
	border-radius: 12px;
	background-color: #FFF;
	box-shadow: 0px 2px 4px -2px rgb(24 39 75 / 12%), 0px 4px 4px -2px rgb(24 39 75 / 8%);
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid #D8EAF1;
}
#offers .offers .offer-item .banner img {
	border-radius: 8px 8px 0 0;
	width: 100%;
	height: 150px;
	object-fit: cover;
	background-color: #E6E6E6;
}
#offers .offers .offer-item .content {
	padding: 0 18px 46px;
	text-align: center;
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#offers .offers .offer-item .content .logo {
	margin-top: -50px;
	margin-bottom: 20px;
	position: relative;
}
#offers .offers .offer-item .content .logo img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	background-color: whitesmoke;
	border-radius: 50%;
	box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 20%);
}
#offers .offers .offer-item .content .logo .badge {
	position: absolute;
	top: 12px;
	left: 12px;
	transform: translate(-50%, -50%);
}
#offers .offers .offer-item .content .logo .badge span {
	background: red;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 10px;
	white-space: nowrap;
	transform: rotate(-45deg);
	display: inline-block;
	animation: stretch 1.5s ease-out 0s alternate infinite none running;
}
@keyframes stretch {
	0% { transform: scale(1) rotate(-45deg); }
	100% { transform: scale(1.2) rotate(-45deg); }
}
#offers .offers .offer-item .content .details .bolt-date-div {
	font-size: 14px;
	color: #969AB0;
	margin-bottom: 8px;
	display: flex;
    align-items: center;
    justify-content: center;
}
#offers .offers .offer-item .content .details .bolt-date-div .bolt-icon {
	background-image: url(../img/bolt-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
#offers .offers .offer-item .content .details .title {
	font-weight: bold;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 21px;
	display: block;
	word-break: break-word;
}
#offers .offers .offer-item .content .details .subtitle {
	line-height: 21px;
	word-break: break-word;
}
#offers .offers .offer-item .content .offer-action {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(50%);
	width: 100%;
}

/* HOME PAGE OFFERS ends here */
