@charset "UTF-8";

:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #0d6efd;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-primary-rgb: 13, 110, 253;
	--bs-secondary-rgb: 108, 117, 125;
	--bs-success-rgb: 25, 135, 84;
	--bs-info-rgb: 13, 202, 240;
	--bs-warning-rgb: 255, 193, 7;
	--bs-danger-rgb: 220, 53, 69;
	--bs-light-rgb: 248, 249, 250;
	--bs-dark-rgb: 33, 37, 41;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: Avenir, "Helvetica Neue", Arial, sans-serif;
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 0.825rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff
}

*,
::after,
::before {
	box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
	:root {
		scroll-behavior: smooth
	}
}

body {
	margin: 0;
	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
	background-color: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}

h4,
h5 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2
}

h4 {
	font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
	h4 {
		font-size: 1.5rem
	}
}

h5 {
	font-size: 1.25rem
}

p {
	margin-top: 0;
	margin-bottom: 1rem
}

a {
	color: #0d6efd;
	text-decoration: underline
}

a:hover {
	color: #0a58ca
}

img {
	vertical-align: middle
}

button:focus:not(:focus-visible) {
	outline: 0
}

input {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
	cursor: pointer
}

::-moz-focus-inner {
	padding: 0;
	border-style: none
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
	padding: 0
}

::-webkit-inner-spin-button {
	height: auto
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: textfield
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
	padding: 0
}

::-webkit-file-upload-button {
	font: inherit
}

::file-selector-button {
	font: inherit
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

.container {
	width: 100%;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	margin-right: auto;
	margin-left: auto
}

@media (min-width:576px) {
	.container {
		max-width: 540px
	}
}

@media (min-width:768px) {
	.container {
		max-width: 720px
	}
}

@media (min-width:992px) {
	.container {
		max-width: 960px
	}
}

@media (min-width:1200px) {
	.container {
		max-width: 1140px
	}
}

@media (min-width:1400px) {
	.container {
		max-width: 1200px
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y)
}

.col {
	flex: 1 0 0%
}

.col-auto {
	flex: 0 0 auto;
	width: auto
}

.col-12 {
	flex: 0 0 auto;
	width: 100%
}

.g-0 {
	--bs-gutter-x: 0
}

.g-0 {
	--bs-gutter-y: 0
}

.g-1 {
	--bs-gutter-x: 0.25rem
}

.g-1 {
	--bs-gutter-y: 0.25rem
}

@media (min-width:576px) {
	.col-sm {
		flex: 1 0 0%
	}

	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333333%
	}
}

@media (min-width:992px) {
	.col-lg-auto {
		flex: 0 0 auto;
		width: auto
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%
	}
}

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.form-control {
		transition: none
	}
}

.form-control[type=file]:not(:disabled):not([readonly]) {
	cursor: pointer
}

.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-control::-webkit-date-and-time-value {
	height: 1.5em
}

.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control:disabled {
	background-color: #e9ecef;
	opacity: 1
}

.form-control::-webkit-file-upload-button {
	padding: .375rem .75rem;
	margin: -.375rem -.75rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control::file-selector-button {
	padding: .375rem .75rem;
	margin: -.375rem -.75rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.form-control::-webkit-file-upload-button {
		-webkit-transition: none;
		transition: none
	}

	.form-control::file-selector-button {
		transition: none
	}
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
	background-color: #dde0e3
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
	padding: .375rem .75rem;
	margin: -.375rem -.75rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.form-control::-webkit-file-upload-button {
		-webkit-transition: none;
		transition: none
	}
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
	background-color: #dde0e3
}

.form-control-sm {
	min-height: calc(1.5em + .5rem + 2px);
	padding: .25rem .5rem;
	font-size: .875rem;
	border-radius: .2rem
}

.form-control-sm::-webkit-file-upload-button {
	padding: .25rem .5rem;
	margin: -.25rem -.5rem;
	-webkit-margin-end: .5rem;
	margin-inline-end: .5rem
}

.form-control-sm::file-selector-button {
	padding: .25rem .5rem;
	margin: -.25rem -.5rem;
	-webkit-margin-end: .5rem;
	margin-inline-end: .5rem
}

.form-control-sm::-webkit-file-upload-button {
	padding: .25rem .5rem;
	margin: -.25rem -.5rem;
	-webkit-margin-end: .5rem;
	margin-inline-end: .5rem
}

.form-control-lg::file-selector-button {
	padding: .5rem 1rem;
	margin: -.5rem -1rem;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem
}

.form-control-color:not(:disabled):not([readonly]) {
	cursor: pointer
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.btn {
		transition: none
	}
}

.btn:hover {
	color: #212529
}

.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.btn:disabled {
	pointer-events: none;
	opacity: .65
}

.btn-group, .btn-links {
	position: relative;
	display: inline-flex;
	vertical-align: middle
}

.btn-group>.btn, .btn-links>.btn {
	position: relative;
	flex: 1 1 auto
}

.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
	z-index: 1
}

.btn-links>.btn:active,
.btn-links>.btn:focus,
.btn-links>.btn:hover {
	z-index: 1
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem
}

.card-title {
	margin-bottom: .5rem
}

.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: .25rem
}

.list-group-item-action {
	width: 100%;
	color: #495057;
	text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
	z-index: 1;
	color: #495057;
	text-decoration: none
}

.list-group-item-action:active {
	color: #212529;
	background-color: #e9ecef
}

.list-group-item {
	position: relative;
	display: block;
	padding: .5rem 1rem;
	color: #212529;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, .125)
}

.list-group-item:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit
}

.list-group-item:last-child {
	border-bottom-right-radius: inherit;
	border-bottom-left-radius: inherit
}

.list-group-item:disabled {
	color: #c757d;
	pointer-events: none;
	background-color: #fff
}

.list-group-item+.list-group-item {
	border-top-width: 0
}

.carousel {
	position: relative
}

.carousel.pointer-event {
	touch-action: pan-y
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden
}

.carousel-inner::after {
	display: block;
	clear: both;
	content: ""
}

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.carousel-item {
		transition: none
	}
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
	display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
	transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
	transform: translateX(-100%)
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
	z-index: 1;
	opacity: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
	z-index: 0;
	opacity: 0;
	transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {

	.carousel-fade .active.carousel-item-end,
	.carousel-fade .active.carousel-item-start {
		transition: none
	}
}

.carousel-control-next,
.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: 0 0;
	border: 0;
	opacity: .5;
	transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {

	.carousel-control-next,
	.carousel-control-prev {
		transition: none
	}
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: .9
}

.carousel-control-prev {
	left: 0
}

.carousel-control-next {
	right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% 100%
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: 15%;
	margin-bottom: 1rem;
	margin-left: 15%;
	list-style: none
}

.carousel-indicators [data-bs-target] {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	padding: 0;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	border: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: .5;
	transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
	.carousel-indicators [data-bs-target] {
		transition: none
	}
}

.carousel-indicators .active {
	opacity: 1
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 1.25rem;
	left: 15%;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
	filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
	background-color: #000
}

.carousel-dark .carousel-caption {
	color: #000
}

.sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important
}

.d-block {
	display: block !important
}

.d-flex {
	display: flex !important
}

.d-none {
	display: none !important
}

.border-0 {
	border: 0 !important
}

.w-100 {
	width: 100% !important
}

.justify-content-start {
	justify-content: flex-start !important
}

.justify-content-center {
	justify-content: center !important
}

.justify-content-between {
	justify-content: space-between !important
}

.align-items-center {
	align-items: center !important
}

.m-0 {
	margin: 0 !important
}

.mb-0 {
	margin-bottom: 0 !important
}

.ms-2 {
	margin-left: .5rem !important
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important
}

.px-2 {
	padding-right: .5rem !important;
	padding-left: .5rem !important
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important
}

.py-1 {
	padding-top: .25rem !important;
	padding-bottom: .25rem !important
}

.py-2 {
	padding-top: .5rem !important;
	padding-bottom: .5rem !important
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important
}

.pt-2 {
	padding-top: .5rem !important
}

.pb-2 {
	padding-bottom: .5rem !important
}

.text-center {
	text-align: center !important
}

.text-uppercase {
	text-transform: uppercase !important
}

.text-white {
	--bs-text-opacity: 1;
	color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.bg-transparent {
	--bs-bg-opacity: 1;
	background-color: transparent !important
}

.rounded-1 {
	border-radius: .2rem !important
}

@media (min-width:992px) {
	.d-lg-block {
		display: block !important
	}

	.d-lg-flex {
		display: flex !important
	}

	.d-lg-none {
		display: none !important
	}

	.justify-content-lg-between {
		justify-content: space-between !important
	}

	.mb-lg-0 {
		margin-bottom: 0 !important
	}
	
	.px-lg-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}
	
	.px-lg-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-lg-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-lg-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.py-lg-2 {
		padding-top: .5rem !important;
		padding-bottom: .5rem !important
	}

	.py-lg-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important
	}
}

@font-face {
	font-display: block;
	font-family: bootstrap-icons;
	src: url(../../unpkg.com/bootstrap-icons%401.11.3/font/fonts/bootstrap-icons.woff2) format("woff2"), url(https://unpkg.com/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff) format("woff")
}

.bi::before,
[class*=" bi-"]::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.bi-chat-dots-fill::before {
	content: "\f249"
}

.bi-chevron-left::before {
	content: "\f284"
}

.bi-chevron-right::before {
	content: "\f285"
}

.bi-person-plus-fill::before {
	content: "\f4dc"
}

.bi-volume-up-fill::before {
	content: "\f610"
}

@media (min-width: 992px) {
	.sliders-i2 {
		  display: grid;
		  grid-gap: .5rem;
		  grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sliders-i2 .banner-slider {
		  grid-column: 1 / 3;
		  overflow: hidden;
		  border-radius: 5px;
		  width: 100%;
		  transform: translateX(0);
		  padding-bottom: 0 !important;
	}
		
	.sliders-i3 {
		  display: grid;
		  grid-gap: .5rem;
		  grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.sliders-i3 .banner-slider {
		  grid-column: 1 / 3;
		  overflow: hidden;
		  border-radius: 5px;
		  width: 100%;
		  transform: translateX(0);
		  padding-bottom: 0 !important;
	}
	.sliders-i3 .banner-right {
		  grid-row: span 2;
		  position: relative;
		  width: 100%;
		  height: 100%;
		  overflow: hidden;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  border-radius: 5px;
	}
	.sliders-i3 .banner-right .banner-right-img {
		  width:100%;
	}
}
	
.sliders-i2 .banner-slider {
	  padding-bottom: .5rem;
}
.sliders-i2 .banner-slider .sliders-dots {
	  position: absolute;
	  display: block;
	  width: 100%;
	  padding: 0;
	  margin: 0;
	  list-style: none;
	  text-align: center;
	  z-index:2;
}
.sliders-i2 .home__teaser {
	  display: grid;
	  grid-gap: .5rem;
	  padding: .5rem 0;
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	  grid-column: 1 / 3;
	  padding: 0;
}

.sliders-i2 .home__teaser2 {
	  display: grid;
	  grid-gap: .5rem;
	  padding: .5rem 0;
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	  grid-column: 1 / 3;
	  padding: 0;
}
	
.sliders-i3 .banner-slider {
	  padding-bottom: .5rem;
}
.sliders-i3 .banner-slider .sliders-dots {
	  position: absolute;
	  display: block;
	  width: 100%;
	  padding: 0;
	  margin: 0;
	  list-style: none;
	  text-align: center;
	  z-index:2;
}
.sliders-i3 .home__teaser {
	  display: grid;
	  grid-gap: .5rem;
	  padding: .5rem 0;
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	  grid-column: 1 / 3;
	  padding: 0;
}
	
.home{
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
}

.MobileMenu{
    width: 75%;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	background: 0 0;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit
}

.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.no-js .owl-carousel {
	display: block
}

.owl-carousel .animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
	max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(https://cdn.1pg.in/polapola88.com/owl.video.play.html) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}

a {
	color: #fff;
	text-decoration: none
}

a:hover {
	color: #040c2d
}

.color-1 {
	background-color: #000;
}

.color-2 {
	background: #2f2f2f;
}

.color-3 {
	background: #444
}

.web-logo {
	width: 100%;
	max-width: 150px
}

.card-game {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem
}

.card-prediksi {
	display: block;
    position: relative;
    min-height: 100px;
    width: calc((100% -(5px* 3* 2)) / 3);
    margin: 5px;
    padding: 0;
    background: #e98f02;
    border-radius: 10px;
    position: relative;
}

i.icon {
	color: #fff;
	font-size: 20px;
	line-height: 1
}

.bi-chat-dots-fill {
	margin-right: .5rem
}

.btn-lc {
	font-size: .875rem;
	font-weight: 700;
	background: #7cb342;
	color: #fff
}

.btn-lc:hover {
	background: #6fa03b;
	color: #fff
}

.btn-regis {
	font-size: .875rem;
	font-weight: 700;
	background: #ff8f00;
	color: #fff
}

.btn-regis:hover {
	background: #e68100;
	color: #fff
}

.btn-rtp {
	font-size: .875rem;
	font-weight: 700;
	background: #8e24aa;
	color: #fff
}

.btn-rtp:hover {
	background: #7c2095;
	color: #fff
}

.btn-prediksi {
	font-size: .875rem;
	font-weight: 700;
	background: #ff8f00;
	color: #fff
}

.btn-prediksi:hover {
	background: #e68100;
	color: #fff
}

.btn-buktijp {
	font-size: .875rem;
	font-weight: 700;
	background: #7cb342;
	color: #fff
}

.btn-buktijp:hover {
	background: #6fa03b;
	color: #fff
}

.mr-n1 {
	margin-right: -1rem
}

.list-group-item .provider-thumbnail {
	display: block;
	margin: 0;
	width: 2rem;
	height: 2rem
}

.list-group-item span {
	margin-left: .5rem;
	font-weight: 700
}

.list-group-item a:hover {
	color: #ffffff
}

.list-group-item {
	background: #2f2f2f;
	border-bottom: 1px solid #2f2f2f
}

.list-group-item-action:focus,
.list-group-item-action:hover {
	background-color: #2f2f2f
}

.list-group-item-action.active a span {
	color: #ff8f00
}



.card.card-game {
	display: block;
	position: relative;
	min-height: 100px;
	width: calc((100% - (5px * 3 * 2))/ 3);
	margin: 5px;
	padding: 5px;
	background: #e98f02;
	border-radius: 10px;
	position: relative
}

.card.card-prediksi {
	display: block;
	position: relative;
	min-height: 100px;
	width: calc((100% - (5px * 3 * 2))/ 3);
	margin: 5px;
	padding: 0;
	border:unset;
	background: #e98f02;
	border-radius: 10px;
	position: relative
}

.card.card-game .game-link, .card.card-prediksi .pasaran-link {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 120px;
	width: auto;
	height: auto
}

.card.card-game .game-item-img, .card.card-prediksi .pasaran-item-img {
	transition: all .5s ease 0s
}

.card.card-game:hover .game-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9
}

.card.card-game:hover .game-item-img, .card.card-prediksi:hover .pasaran-item-img {
	transform: scale(1.15) rotate(0);
	filter: brightness(50%)
}

.card-game span {
	color: #000;
	text-transform: capitalize;
	width: 90%;
	margin: 3px auto;
	font-weight: 700;
	text-align: center;
	font-size: 10.4px;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 6px
}

.card-prediksi span {
	color: #000;
	text-transform: capitalize;
	width: 90%;
	padding: 5px;
	margin: 3px auto;
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 6px
}

.jam {
	color: #fff;
	background: rgba(0,0,0,.8);
	border-radius: 10px;
	font-weight: 700;
	text-align: center;
	padding: 2.5px 5px 5px 5px
}

.pola {
	color: #fff;
	border-radius: 5px
}

.jam h5 {
	font-size: .8em;
	font-weight: 700;
	width: 85%;
	margin: 3px auto;
	padding: 2px
}

.jamgacor {
	border-radius: 5px
}

.jam .jamgacor h5 {
	border-bottom: none
}

.pola1 {
	border-top: 1px solid #fff;
	padding-top: 8px
}

.pola p {
	margin-bottom: .1rem;
	font-size: .8em
}

.btn-game {
	padding: 3px 8px;
	color: #fff;
	background: linear-gradient(to bottom, #f9be00 0%, #e2a324 50%, #f9be00 100%);
	border-radius: 2px;
	font-weight: 700;
	font-size: 12px
}

.btn-game:hover {
	background-color: #6d0f0a;
	color: #fff
}

.btn-group span {
	font-weight: 700;
	width: 73px
}

.btn-links span {
	font-weight: 700;
}

.owl-item {
	text-align: center
}

.owl-item .active span {
	color: #ffffff;
	font-weight: 700
}

.owl-item span {
	width: 100%;
	font-weight: 500;
	text-align: center;
	font-size: .625rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #fff
}

.owl-dots {
	display: none
}

input#search {
	width: 100%;
	outline: 0;
	border: 0;
	background-color: rgba(0,0,0,.8);
	color: #fff;
	font-size: .775rem;
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: color .2s ease, border-color .2s ease
}

.card-provider {
	position: relative;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,.6);
	border-radius: 50%;
	flex: 1 1 auto;
	margin: 0 auto
}

.card-provider.active {
	background-color: rgb(0, 0, 0);
}

.card-provider img {
	width: 100%
}

.card-title {
	text-align: center
}

.card-deck {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch
}

.card-buktijp {
	display: grid;
    grid-gap: .75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buktijp-item {
	position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
	cursor:pointer;
	background: #444;
}

.buktijp-item img{
	width: 100%;
	height: auto;
	min-height: 215px;
	max-height: 215px;
    border-radius: 5px;
	transition: all .5s ease 0s
}

.buktijp-item:hover img {
	transform: scale(1.15) rotate(0);
	filter: brightness(50%)
}


.buktijp-item div.caption{
	display:flex;
	justify-content: center;
	position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    color: #000;
    font-weight: 700;
    background: rgb(233,143,2);
	text-transform: uppercase;
    width: 100%;
	padding: 5px;
}

.buktijp-item div.caption span{
	text-transform: uppercase;
	overflow: hidden;
    white-space: nowrap;
}

.article-buktijp{
	font-size: .75rem;
    overflow: hidden;
    border-radius: 5px;
    background-color: #2f2f2f;
}

.article-buktijp img{
	width: 100%;
}

.article-buktijp-content{
	padding: 1rem 2.5rem;
    margin: 0 auto;
	color: #fff;
}

.article-buktijp h2{
	padding: .25rem;
    text-align: center;
    text-transform: uppercase;
	font-size: 1.5rem;
	color: #fff;
	margin:0;
	border-bottom: solid 1px #000;
}

.article-buktijp-content img{
	width:100%;
}

.article-buktijp-content p{
	margin: .25rem 0;
	font-size: .875rem;
}

.article-buktijp-content table{
	width: 100%;
    border: none;
    margin: 0 auto;
    text-align: center;
    border-collapse: collapse;
}

@media (max-width:576px) {
	.card-prediksi span{
		font-size: 13px;
	}
	.buktijp-item img{
		min-height: 135px;
		max-height: 135px;
	}
	.card-buktijp {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.article-buktijp-content{
		padding: .5rem;
	}
}

.game-item, .pasaran-item {
	background: rgba(0,0,0,.8);
	height: 0;
	position: relative;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 10px 10px 0 0
}

.game-item-img, .pasaran-item-img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity .2s ease
}

.carousel-game {
	background: linear-gradient(to right, #444444 0, #2f2f2f 100%);
	border-radius: 3px
}

.carousel-game .col {
	flex: 0 0 0%;
	height: auto
}

#owl-game {
	flex: 1 0 auto;
	width: 50%;
	margin: 0 auto
}

.animate-charcter {
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	margin: 5px
}

.percent {
	height: 16px;
	display: flex;
	overflow: hidden;
	line-height: 0;
	font-size: .5rem;
	background-color: rgba(0,0,0,.8);
	border-radius: 0 0 10px 10px;
	position: relative;
	z-index: 1
}

.percent p {
	z-index: 15;
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 12px;
	font-weight: 700;
	transform: translateY(8px);
	color: #fff;
	text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000
}

.percent-bar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	transition: width .6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	z-index: 10
}

.yellow {
	position: relative;
	background-color: #debc01
}

.green {
	position: relative;
	background-color: #0eb700
}

.red {
	position: relative;
	background-color: #b12c55
}

.shine {
	position: relative
}

.green:after,
.red:after,
.yellow:after {
	content: "";
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	-webkit-animation: animate-shine 2s ease-out infinite;
	-moz-animation: animate-shine 2s ease-out infinite
}

@-webkit-keyframes animate-shine {
	0% {
		opacity: 0;
		width: 0
	}

	50% {
		opacity: .5
	}

	100% {
		opacity: 0;
		width: 95%
	}
}

@-moz-keyframes animate-shine {
	0% {
		opacity: 0;
		width: 0
	}

	50% {
		opacity: .5
	}

	100% {
		opacity: 0;
		width: 95%
	}
}

.footer-text {
	background: rgba(0,0,0,.8);
	border-top: 2px solid #e98f02
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadeinBottom .5s;
	animation: fadeinBottom .5s
}

#snackbar {
	visibility: hidden;
	min-width: 250px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	position: fixed;
	z-index: 999;
	right: 50%;
	transform: translate(50%, 0);
	bottom: 0;
	font-size: 17px;
	display: none !important;
}

.frame-snackbar {
	background-color: #970f09;
	padding: 12px 36px;
	border-radius: 8px 8px 0 0;
	-webkit-box-shadow: 0 0 5px 2px #000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
	box-shadow: 0 0 5px 2px #000, 5px 5px 15px 5px rgb(0 0 0 / 0%)
}

@-webkit-keyframes fadeinBottom {
	from {
		bottom: -20px;
		opacity: 0
	}

	to {
		bottom: 0;
		opacity: 1
	}
}

@keyframes fadeinBottom {
	from {
		bottom: -20px;
		opacity: 0
	}

	to {
		bottom: 0;
		opacity: 1
	}
}

@media (min-width:576px) {
	.text-xs-left {
		text-align: left
	}

	.card.card-game {
		flex: 0 0 auto;
		width: calc((100% - (5px * 5 * 2))/ 5)
	}
	
	.card.card-prediksi {
		flex: 0 0 auto;
		width: calc((100% - (5px * 4 * 2))/ 4)
	}
}

@media (max-width:576px) {
	.pola p {
		margin-bottom: .1rem;
		font-size: .7em
	}

	.btn-regis, .btn-lc, .btn-rtp, .btn-prediksi, .btn-buktijp {
		font-size: 11.5px
	}

	.btn-group span {
		font-weight: 700;
		width: 60px
	}
	
	.btn-links span {
		font-weight: 700;
	}

	#snackbar {
		width: 100%;
		font-size: 12px
	}
}