@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');

* {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	text-decoration: none;
	color: inherit;
}

input,
button {
	outline: none;
	border: none;
	background: none;
	color: inherit;
}

button {
	cursor: pointer;
}

body {
	background: #121212;
	color: #fff;
	font-family: 'Titillium Web', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

.container {
	width: 90%;
	margin: 0 auto;
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
}

.btn-primary {
	background: linear-gradient(to right, #ca1ebd 0%, #9482ff 100%);
}

.text-glow {
	color: #9482ff;
	text-shadow: rgba(149, 130, 255, 0.9) 0px 0px 14px;
}

.with-gradient-type-1 {
	position: relative;
}

.with-gradient-type-1::before {
	content: '';
	display: block;

	position: absolute;

	top: 0;
	right: 0;

	width: 644px;
	height: 644px;

	background: linear-gradient(90deg, rgba(202, 30, 189, 0.7) 0%, rgba(148, 130, 255, 0.7) 100%);

	filter: blur(100px);

	transform: rotate(145.04deg);
}


.listing .ribbon {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Owl carousel */
.owl-prev,
.owl-next {
	position: absolute;
	top: 30%;
	display: block !important;
	height: 100px;
	width: 50px;
}

.owl-prev {
	left: -40px;
	background: linear-gradient(to right, #9482ff 0%, #34495e 100%) !important;
}

.owl-next {
	right: -40px;
	background: linear-gradient(to left, #9482ff 0%, #34495e 100%) !important;
}

.owl-prev i,
.owl-next i {
	transform: scale(2);
}

.owl-prev:hover,
.owl-next:hover {
	/* background: none !important; */
}

.slick-arrow {
	height: 100px;
	width: 50px;
	z-index: 1000;
}

.slick-prev {
	left: -40px;
	background: linear-gradient(to right, #9482ff 0%, #34495e 100%) !important;
}

.slick-next {
	right: -40px;
	background: linear-gradient(to left, #9482ff 0%, #34495e 100%) !important;
}

.slick-prev:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f053';  /* chevron-left */
	font-size: 30px;
}

.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f054';  /* chevron-right */
	font-size: 30px;
}