/*!
Theme Name: Whello
Theme URI: http://underscores.me/
Author: Whello Developer
Author URI: https://whello.id
Description: Whello Theme standard
Version: 2.0.0
Tested up to: 8.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: whello
Tags: 

This theme, like WordPress, is icensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Play Chickens';
    src: url('assets/fonts/PlayChickens/PlayChickens.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





:root {
	--height-wpadminbar: 0px;
	--container: 1280px;
	--height-header: 72px;
	--offset-top: 20px;
	--sticky-offset: -webkit-calc(var(--height-header) + var(--offset-top) + var(--height-wpadminbar));
	--sticky-offset: -moz-calc(var(--height-header) + var(--offset-top) + var(--height-wpadminbar));
	--sticky-offset: calc(var(--height-header) + var(--offset-top) + var(--height-wpadminbar));

	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 16px;
	--text-md: 18px;
	--text-lg: 20px;
	--text-xl: 24px;
	--text-2xl: 27px;
	--text-3xl: 36px;
	--text-4xl: 40px;
	--text-5xl: 48px;
	--text-6xl: 56px;

	--lineheight-xs: 1;
	--lineheight-s: 1.2;
	--lineheight: 1.5;
	--lineheight-m: 1.625;
	--lineheight-l: 1.75;
	--lineheight-xl: 2;
	--lineheight-xxl: 2.5;

	--suffix-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	--fontfamily-sans: 'Poppins', var(--suffix-family);
	--fontfamily-playChickens: 'Play Chickens', var(--suffix-family);

	--padding-container: -webkit-calc((100% - var(--container)) / 2);

	--padding-container: -moz-calc((100% - var(--container)) / 2);

	--padding-container: calc((100% - var(--container)) / 2);
	--padding-field: 10px 16px;
	--padding-button: 16px 23px;

	--rounded-xs: 2px;
	--rounded-sm: 4px;
	--rounded: 6px;
	--rounded-md: 10px;
	--rounded-lg: 16px;
	--rounded-xl: 24px;
	--rounded-full: 999999px;

	--transparent: rgba(0, 0, 0, 0);
	--white: #fff;
	--black: #000;
	--blue: #38bdf8;
	--red: #ef4444;
	--yellow: #fbbf24;
	--green: #34d399;
	--light-green: #C8D8B7;
	--purple: #18003A;
	--purple-20: rgba(24, 0, 58, 0.2);
	--purple-8: rgba(24, 0, 58, 0.08);
	--purple-5: rgba(24, 0, 58, 0.05);
	--light-purple: #7679D3;
	--light-purple-secondary: #C6BFC2;
	--orange: #f97316;
	--light-orange: #FFA55C;
	--gray-300: #f2eFe4;
	--light-gray: #C8D8B7;
	--gray: #9ca3af;
	--gray-700: #4b5563;

	--shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);

	--listing-column: 3;
	--listing-gap: 24px;
	--listing-gap-bottom: var(--listing-gap);

	--duration: .3s;
	--transition: background-color var(--duration), border-color var(--duration), color var(--duration), fill var(--duration), stroke var(--duration), opacity var(--duration), visibility var(--duration), box-shadow var(--duration), -webkit-box-shadow var(--duration), transform var(--duration), -webkit-transform var(--duration), filter var(--duration), backdrop-filter var(--duration);
}


@media all and (max-width: 1299px) {
	html:root {
		--height-wpadminbar: 0px;
		--height-header: 72px;
		--container: 100%;
		--padding-container: 24px;
	}

	#wpadminbar {
		display: none;
	}
}

@media all and (max-width: 900px) {
	html:root {
		--text-xl: 22px;
		--text-2xl: 24px;
		--text-3xl: 28px;
		--text-4xl: 30px;
		--text-5xl: 32px;
		--text-6xl: 40px;
	}
}

* {
	margin: 0;
	padding: 0;
	outline: 0;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	text-shadow: var(--transparent) 0 0 1px;
	vertical-align: baseline;
	background-clip: border-box;
	word-break: break-word;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

*:focus,
*:active,
*:visited,
*:hover {
	outline: 0;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background-color: var(--black);
}

::selection {
	color: var(--white);
	text-shadow: none;
	background-color: var(--black);
}



/* STYLE SCREEN READERS */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	word-wrap: normal !important;
	overflow: hidden;
}

.screen-reader-text:focus {
	top: 5px;
	left: 5px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	   -moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--black);
	line-height: normal;
	text-decoration: none;
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	background-color: var(--white);
}

body {
	margin: 0;
	font-family: var(--fontfamily-sans);
	color: var(--black);
	-moz-block-height: normal;
	line-height: var(--lineheight);
	font-size: var(--text-base);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: var(--transparent);
	word-break: break-word;
	background-color: var(--white);
}

html[lang] {
	width: 100%;
	overflow-x: hidden;
	margin-top: var(--height-wpadminbar) !important;
}

/* html.prevent-default {
	overflow: hidden;
} */

.container {
	width: -webkit-calc(100% - 48px);
	width: -moz-calc(100% - 48px);
	width: calc(100% - 48px);
	max-width: var(--container);
	margin: 0 auto;
}

mark {
	padding: 2px 5px;
	color: inherit;
	background-color: var(--black);
}

article,
aside,
details,
figcaption,
figure,
label,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
	width: 100%;
}

p:empty {
	display: none;
}

p+p,
p+table,
p+ol,
p+ul,
table+p,
table+table,
table+ol,
table+ul,
ol+p,
ol+table,
ol+ol,
ol+ul,
ul+p,
ul+table,
ul+ol,
ul+ul {
	margin-top: 16px;
}

ol,
ul {
	padding-left: 24px;
	margin: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin-top: 10px;
}

li {
	width: 100%;
}

li+li {
	margin-top: 10px;
}

ul {
	list-style: outside disc;
}

ol {
	list-style: outside decimal;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	cursor: hand;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

a * {
	cursor: pointer;
	cursor: hand;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wpb_text_column.text-large {
	font-family: var(--fontfamily-playChickens);
	line-height: var(--lineheight-s);
	font-weight: 400;
	color: var(--purple);
}

h1,
h2 {
	margin-bottom: 24px;
}

h3,
h4 {
	margin-bottom: 20px;
}

h5,
h6 {
	margin-bottom: 16px;
}

h1 {
	font-size: var(--text-6xl);
}

.wpb_text_column.text-large *,
h2 {
	font-size: var(--text-5xl);
}

h3 {
	font-size: var(--text-2xl);
}

h4 {
	font-size: var(--text-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-md);
}

p a,
ul a,
ol a,
table a {
	color: var(--blue);
}

p a:hover,
ul a:hover,
ol a:hover,
table a:hover {
	color: inherit;
}

strong,
b {
	font-weight: 700;
}

img {
	position: relative;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	overflow: hidden;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

@media all and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
	img {
		-webkit-mask-image: -webkit-radial-gradient(var(--white), var(--black));
	}
}

img[src*="jpg"],
img[src*="jpeg"] {
	background-color: var(--black);
}

::-webkit-input-placeholder {
	color: var(--black);
	opacity: 1;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
	color: var(--black);
	opacity: 1;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="month"],
input[type="range"] {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

input[type="file"]::-ms-value,
input[type="file"]::-ms-browse {
	display: none;
}

button {
	background-color: var(--transparent);
}

input,
textarea,
select {
	width: 100%;
	padding: var(--padding-field);
	border: solid 1px var(--black);
	-webkit-border-radius: var(--rounded-sm);
	   -moz-border-radius: var(--rounded-sm);
	        border-radius: var(--rounded-sm);
	font-family: var(--fontfamily-sans);
	font-size: var(--text-base);
	color: var(--black);
	caret-color: var(--black);
	word-break: normal;
	background: var(--transparent) -webkit-calc(100% - 20px) center/12px no-repeat;
	background: var(--transparent) -moz-calc(100% - 20px) center/12px no-repeat;
	background: var(--transparent) calc(100% - 20px) center/12px no-repeat;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

select {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	padding-right: 36px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	word-wrap: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: var(--white) url(/wp-content/themes/whello/assets/images/icon-arrow-chevrongrey-down.svg) -webkit-calc(100% - 16px) center/16px no-repeat;
	background: var(--white) url(/wp-content/themes/whello/assets/images/icon-arrow-chevrongrey-down.svg) -moz-calc(100% - 16px) center/16px no-repeat;
	background: var(--white) url(/wp-content/themes/whello/assets/images/icon-arrow-chevrongrey-down.svg) calc(100% - 16px) center/16px no-repeat;
	overflow: hidden;
}

select::-ms-expand {
	display: none;
}

select option {
	color: var(--black);
	background-color: var(--white);
}

select option[disabled] {
	display: none;
}

textarea {
	height: 200px;
	resize: none;
	overflow: auto;
}

textarea::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 2px;
	        border-radius: 2px;
	background-color: var(--black);
}

textarea::-webkit-scrollbar {
	width: 7px;
	background-color: var(--black);
}

textarea::-webkit-scrollbar-thumb {
	-webkit-border-radius: 2px;
	        border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: var(--black);
}

input:active,
input:focus,
input:hover,
textarea:active,
textarea:focus,
textarea:hover,
select:active,
select:focus,
select:hover {
	border-color: var(--black);
	outline: none;
}

input[type="search"]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

input[type="search"]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-clear-button {
	cursor: pointer;
	opacity: 0;
}

input[type="range"] {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

input[type="range"]:active {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

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

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

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

input[type="date"] {
	background: url(assets/images/icon-calendar-grey.svg) -webkit-calc(100% - 24px) center/24px 26px no-repeat;
	background: url(assets/images/icon-calendar-grey.svg) -moz-calc(100% - 24px) center/24px 26px no-repeat;
	background: url(assets/images/icon-calendar-grey.svg) calc(100% - 24px) center/24px 26px no-repeat;
}

input[type="radio"],
input[type="checkbox"] {
	display: inline-block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	padding: 0;
	border: 1px solid var(--black);
	line-height: normal;
	background: var(--white) center/14px 10px no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

input[type="checkbox"] {
	-webkit-border-radius: var(--rounded-none);
	   -moz-border-radius: var(--rounded-none);
	        border-radius: var(--rounded-none);
}

input[type="checkbox"]:checked {
	background-image: url(/wp-content/themes/whello/assets/images/icon-checkmark-darkgrey.svg);
}

input[type="checkbox"]:hover,
input[type="checkbox"]:checked {
	border-color: var(--black);
}

input[type="radio"] {
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
	-webkit-transition: border-color var(--transition);
	-o-transition: border-color var(--transition);
	-moz-transition: border-color var(--transition);
	transition: border-color var(--transition);
}

input[type="radio"]:checked {
	border-width: 6px;
	border-color: var(--black);
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	border: 0;
	padding: var(--padding-button);
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
	font-family: var(--fontfamily-sans);
	font-size: var(--text-base);
	-webkit-appearance: button;
	overflow: visible;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

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

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="color"] {
	-webkit-appearance: initial;
	   -moz-appearance: initial;
	        appearance: initial;
}

button,
select {
	text-transform: none;
}

fieldset {
	min-width: 0;
	border: 0;
}

progress {
	vertical-align: baseline;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
}

th,
td {
	padding: 6px;
	border: 1px solid var(--gray-700);
	vertical-align: middle;
}

audio,
video {
	display: -moz-inline-stack;
	display: inline-block;
	display: inline;
	zoom: 1;
	vertical-align: top;
}

hr {
	height: 0;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
	overflow: visible;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

dd {
	margin-left: 0;
}

pre,
code,
kbd,
samp {
	font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

[hidden] {
	display: none !important;
}

abbr[title] {
	border-bottom: 0;
	text-decoration: none;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}



/* WORDPRESS RESET & PLUGIN STANDARD WHELLO */
.wpb_wrapper .wpb_content_element {
	margin-bottom: 0;
}

body>.site {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	min-height: 100vh;
}

body>.site>.site-main {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	   -moz-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
}

.vc_row>.wpb_column.vc_column_container>.vc_column-inner,
.wpb_row.vc_row.vc_row-has-fill>.wpb_column.vc_column_container>.vc_column-inner,
.wpb_row.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner {
	padding-top: 0;
}

.prevent-scroll {
	overflow: hidden;
}

.vc_row.vc_row-has-fill {
	background: center/cover no-repeat;
}

.post-views {
	display: none !important;
}



/* PAGINATION STYLE */
.pagination,
.tw-pagination,
.woocommerce-pagination .page-numbers {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	width: 100%;
	margin-top: 40px;
	margin-bottom: -10px;
}

.woocommerce-pagination .page-numbers li,
.tw-pagination li {
	width: auto;
	margin-left: 0;
	margin-bottom: 10px;
	list-style: none;
}

.tw-pagination .next,
.tw-pagination .prev {
	display: none;
}

.pagination .page-numbers.current,
.tw-pagination .page.current,
.woocommerce-pagination .page-numbers .page-numbers.current {
	color: var(--white);
	background-color: var(--yellow);
}

.pagination .page-numbers,
.tw-pagination .page,
.woocommerce-pagination .page-numbers .page-numbers {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	font-size: 18px;
	color: var(--yellow);
	background-color: var(--transparent);
	-webkit-transition: .3s;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}

.pagination .page-numbers:not(:last-child),
.tw-pagination .page:not(:last-child),
.woocommerce-pagination .page-numbers li:not(:last-child) {
	margin-right: 10px;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
	width: 30px;
	padding-bottom: 6px;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	font-size: 30px;
	line-height: 1;
}

.pagination .page-numbers.next:hover,
.pagination .page-numbers.prev:hover,
.woocommerce-pagination .page-numbers .next:hover,
.woocommerce-pagination .page-numbers .prev:hover {
	color: var(--yellow);
	background-color: var(--transparent);
}



/* LISTING STYLE */
.listing {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	width: auto;
	min-width: 100%;
	margin: 0 -webkit-calc((var(--listing-gap) / 2) * -1) -webkit-calc(var(--listing-gap-bottom) * -1);
	margin: 0 -moz-calc((var(--listing-gap) / 2) * -1) -moz-calc(var(--listing-gap-bottom) * -1);
	margin: 0 calc((var(--listing-gap) / 2) * -1) calc(var(--listing-gap-bottom) * -1);
}

.listing .listing-item,
.listing .wpb_column {
	position: relative;
}

.listing>.listing-item {
	width: -webkit-calc(100% / var(--listing-column));
	width: -moz-calc(100% / var(--listing-column));
	width: calc(100% / var(--listing-column));
	padding: 0 -webkit-calc(var(--listing-gap) / 2);
	padding: 0 -moz-calc(var(--listing-gap) / 2);
	padding: 0 calc(var(--listing-gap) / 2);
	margin-bottom: var(--listing-gap-bottom);
}

.listing .listitem-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.listing a.listitem-wrapper {
	cursor: pointer;
}

.listing .wpb_column {
	float: none;
}

.listing .thumbnail-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	overflow: hidden;
}

.listing li {
	list-style: none;
	margin-left: 0;
}

.vc_row.listing,
.vc_row.listing .vc_inner {
	margin: 0;
}

.vc_row.listing:before,
.vc_row.listing:after,
.vc_row.listing .vc_column-inner:before,
.vc_row.listing .vc_column-inner:after,
.vc_row.listing .vc_inner:before,
.vc_row.listing .vc_inner:after {
	display: none;
}

.vc_row.listing .wpb_column {
	float: none;
}

.vc_row.listing .wpb_column>.vc_column-inner {
	padding: 0;
}

.listing.slick-slider {
	width: -webkit-calc(100% + var(--listing-gap));
	width: -moz-calc(100% + var(--listing-gap));
	width: calc(100% + var(--listing-gap));
	margin: 0 -webkit-calc((var(--listing-gap) / 2) * -1);
	margin: 0 -moz-calc((var(--listing-gap) / 2) * -1);
	margin: 0 calc((var(--listing-gap) / 2) * -1);
	overflow: hidden;
}

.listing.slick-slider .slick-list {
	overflow: visible;
}

.listing.slick-slider .slick-track {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.listing.slick-slider .slick-slide {
	height: auto;
}

.listing.slick-slider .listing-item.slick-slide {
	padding-left: -webkit-calc(var(--listing-gap) / 2);
	padding-left: -moz-calc(var(--listing-gap) / 2);
	padding-left: calc(var(--listing-gap) / 2);
	padding-right: -webkit-calc(var(--listing-gap) / 2);
	padding-right: -moz-calc(var(--listing-gap) / 2);
	padding-right: calc(var(--listing-gap) / 2);
}

@media all and (max-width: 1299px) {
	.listing.slick-slider {
		--listing-gap: var(--padding-container);
	}

	.listing.slick-slider {
		width: -webkit-calc(100% + (var(--padding-container) * 2));
		width: -moz-calc(100% + (var(--padding-container) * 2));
		width: calc(100% + (var(--padding-container) * 2));
		margin-right: -webkit-calc(var(--padding-container) * -1);
		margin-right: -moz-calc(var(--padding-container) * -1);
		margin-right: calc(var(--padding-container) * -1);
		margin-left: -webkit-calc(var(--padding-container) * -1);
		margin-left: -moz-calc(var(--padding-container) * -1);
		margin-left: calc(var(--padding-container) * -1);
		padding-right: -webkit-calc(var(--padding-container) - (var(--listing-gap) / 2));
		padding-right: -moz-calc(var(--padding-container) - (var(--listing-gap) / 2));
		padding-right: calc(var(--padding-container) - (var(--listing-gap) / 2));
		padding-left: -webkit-calc(var(--padding-container) - (var(--listing-gap) / 2));
		padding-left: -moz-calc(var(--padding-container) - (var(--listing-gap) / 2));
		padding-left: calc(var(--padding-container) - (var(--listing-gap) / 2));
	}
}

.whfilter-overview .listing {
	margin-bottom: 0;
}

@media all and (min-width: 0\0) and (min-resolution: +72dpi) {
	.listing {
		width: -webkit-calc(100% + 1px);
		width: -moz-calc(100% + 1px);
		width: calc(100% + 1px);
	}
}

.vc_row.listing {
	width: 100%;
	margin: 0;
}

.vc_row.listing .vc_column-inner {
	padding: 0;
}

.site .listing[class*="lists-"] .listing-item:last-child,
.site .listing[class*="lists-"] .wpb_column:last-child {
	margin-right: 0;
}

.listing .title-listing {
	font-size: var(--text-xl);
}

.listing .title-listing,
.listing .content-item p,
.listing .excerpt-listing,
.listing .wpb_text_column * {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}



/* RESET BUTTON / CTA */
.whbutton-wrapper {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.whbutton-wrapper:not(.whbutton-align--inline) {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.whbutton-wrapper.whbutton-align--left {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	   -moz-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.whbutton-wrapper.whbutton-align--center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.whbutton-wrapper.whbutton-align--right {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	   -moz-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

[class*="whbutton-fill"] .cta-whbutton,
[class*="whbutton-outline"] .cta-whbutton {
	padding: var(--padding-button);
	border: 1px solid var(--transparent);
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
}

.cta-whbutton {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-align: left;
}

.cta-whbutton .label-cta {
	color: inherit;
	font-weight: 700;
	line-height: var(--lineheight-s);
	font-size: var(--text-md);
}

.cta-whbutton .icon-cta,
.whbutton-icon .cta-whbutton::after {
	display: inline-block;
	width: 24px;
	min-width: 24px;
	height: 24px;
	min-height: 24px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.cta-whbutton .icon-cta {
	-o-object-fit: contain;
	object-fit: contain;
}

.whbutton-icon:not() .cta-whbutton::after {
	background: center/contain no-repeat;
}

/* DEFAULT SIZE ICON CIRCLE */
.whbutton-wrapper[class*="-circle"] .cta-whbutton .icon-cta {
	width: 36px;
	min-width: 36px;
	height: 36px;
	min-height: 36px;
}

.cta-whbutton .icon-cta--hover {
	position: absolute;
	top: 50%;
	z-index: 2;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

[class*="whbutton-animate-"] .cta-whbutton .icon-cta--hover {
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.whbutton-icon-left .cta-whbutton .icon-cta--hover {
	left: 0;
}

[class*="whbutton-fill"].whbutton-icon-left .cta-whbutton .icon-cta--hover,
[class*="whbutton-outline"].whbutton-icon-left .cta-whbutton .icon-cta--hover {
	left: 16px;
}

.whbutton-icon-right .cta-whbutton .icon-cta--hover {
	right: 0;
}

[class*="whbutton-fill"].whbutton-icon-right .cta-whbutton .icon-cta--hover,
[class*="whbutton-outline"].whbutton-icon-right .cta-whbutton .icon-cta--hover {
	right: 16px;
}

.cta-whbutton:hover .icon-cta--hover {
	opacity: 1;
}

.cta-whbutton .icon-cta--hover,
.cta-whbutton:hover .icon-cta--hover~.icon-cta--default {
	opacity: 0;
}

.whbutton-icon-left .cta-whbutton .icon-cta,
.whbutton-icon-right .cta-whbutton .label-cta,
.whbutton-icon-left .cta-whbutton::after {
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	   -moz-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-right: 16px;
}

.whbutton-animate-left .cta-whbutton:hover .icon-cta,
.whbutton-animate-left .cta-whbutton:hover::after {
	-webkit-transform: translateX(-3px);
	   -moz-transform: translateX(-3px);
	    -ms-transform: translateX(-3px);
	     -o-transform: translateX(-3px);
	        transform: translateX(-3px);
}

.whbutton-animate-right .cta-whbutton:hover .icon-cta,
.whbutton-animate-right .cta-whbutton:hover::after {
	-webkit-transform: translateX(3px);
	   -moz-transform: translateX(3px);
	    -ms-transform: translateX(3px);
	     -o-transform: translateX(3px);
	        transform: translateX(3px);
}

.whbutton-animate-top .cta-whbutton:hover .icon-cta,
.whbutton-animate-top .cta-whbutton:hover::after {
	-webkit-transform: translateY(-3px);
	   -moz-transform: translateY(-3px);
	    -ms-transform: translateY(-3px);
	     -o-transform: translateY(-3px);
	        transform: translateY(-3px);
}

.whbutton-animate-bottom .cta-whbutton:hover .icon-cta,
.whbutton-animate-bottom .cta-whbutton:hover::after {
	-webkit-transform: translateY(3px);
	   -moz-transform: translateY(3px);
	    -ms-transform: translateY(3px);
	     -o-transform: translateY(3px);
	        transform: translateY(3px);
}

.whbutton-animate-left .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translate(-3px, -50%);
	   -moz-transform: translate(-3px, -50%);
	    -ms-transform: translate(-3px, -50%);
	     -o-transform: translate(-3px, -50%);
	        transform: translate(-3px, -50%);
}

.whbutton-animate-right .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translate(3px, -50%);
	   -moz-transform: translate(3px, -50%);
	    -ms-transform: translate(3px, -50%);
	     -o-transform: translate(3px, -50%);
	        transform: translate(3px, -50%);
}

.whbutton-animate-top .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translateY(-webkit-calc(-50% - 3px));
	   -moz-transform: translateY(-moz-calc(-50% - 3px));
	    -ms-transform: translateY(calc(-50% - 3px));
	     -o-transform: translateY(calc(-50% - 3px));
	        transform: translateY(calc(-50% - 3px));
}

.whbutton-animate-bottom .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translateY(-webkit-calc(-50% + 3px));
	   -moz-transform: translateY(-moz-calc(-50% + 3px));
	    -ms-transform: translateY(calc(-50% + 3px));
	     -o-transform: translateY(calc(-50% + 3px));
	        transform: translateY(calc(-50% + 3px));
}

.whbutton-color--black .cta-whbutton {
	color: var(--black);
}

.whbutton-color--white .cta-whbutton {
	color: var(--white);
}

.whbutton-color--purple .cta-whbutton {
	color: var(--purple);
}

.whbutton-color--light-purple .cta-whbutton {
	color: var(--light-purple);
}

.whbutton-color--light-orange .cta-whbutton {
	color: var(--light-orange);
}

.whbutton-color--light-green .cta-whbutton {
	color: var(--light-green);
}

.whbutton-color--light-gray .cta-whbutton {
	color: var(--purple-8);
}

.whbutton-colorhvr--black .cta-whbutton:hover {
	color: var(--black);
}

.whbutton-colorhvr--white .cta-whbutton:hover {
	color: var(--white);
}

.whbutton-colorhvr--purple .cta-whbutton:hover {
	color: var(--purple);
}

.whbutton-colorhvr--light-purple .cta-whbutton:hover {
	color: var(--light-purple);
}

.whbutton-colorhvr--light-orange .cta-whbutton:hover {
	color: var(--light-orange);
}

.whbutton-colorhvr--light-green .cta-whbutton:hover {
	color: var(--light-green);
}

.whbutton-colorhvr--light-gray .cta-whbutton:hover {
	color: var(--purple-8);
}

.whbutton-fill--black .cta-whbutton {
	background-color: var(--black);
	border-color: var(--black);
}

.whbutton-fill--white .cta-whbutton {
	background-color: var(--white);
	border-color: var(--white);
}

.whbutton-fill--purple .cta-whbutton:hover {
	background-color: var(--purple);
	border-color: var(--purple);
}

.whbutton-fill--light-purple .cta-whbutton {
	background-color: var(--light-purple);
	border-color: var(--light-purple);
}

.whbutton-fill--light-orange .cta-whbutton {
	background-color: var(--light-orange);
	border-color: var(--light-orange);
}

.whbutton-fill--light-green .cta-whbutton {
	background-color: var(--light-green);
	border-color: var(--light-green);
}

.whbutton-fill--light-gray .cta-whbutton {
	background-color: var(--purple-8);
}

.whbutton-outline--black .cta-whbutton {
	border-color: var(--black);
}

.whbutton-outline--white .cta-whbutton {
	border-color: var(--white);
}

.whbutton-outline--purple .cta-whbutton {
	border-color: var(--purple);
}

.whbutton-outline--light-purple .cta-whbutton {
	border-color: var(--light-purple);
}

.whbutton-outline--light-orange .cta-whbutton {
	border-color: var(--light-purple);
}

.whbutton-outline--light-green .cta-whbutton {
	border-color: var(--light-green);
}

.whbutton-outline--light-gray .cta-whbutton {
	border-color: var(--purple-8);
}

/*Select2 ReadOnly Start*/
select[readonly].select2-hidden-accessible + .select2-container {
	pointer-events: none;
	-ms-touch-action: none;
	    touch-action: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
	background: transparent;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow, select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
	display: none;
}


/*Select2 ReadOnly End*/
.logo-groups {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
}

.logo-groups .logo-group-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.logo-groups .image-logo-group {
	width: auto;
}

.logo-groups .image-logo-group,
.logo-groups .image-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.logo-label-wrapper:not(.slider) .logo-group-item:hover {
    -webkit-transform: translateY(-3px);
       -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
         -o-transform: translateY(-3px);
            transform: translateY(-3px);
}

.color-black-900 * {
	color: var(--gray-900);
}

/* -----------------------------
		STYLING GENERAL
-------------------------------*/
.flex,
.row-flex,
.vc_row.row-flex,
.vc_row.vc_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.vc_row.row-flex:before,
.vc_row.row-flex:after,
.vc_row.vc_inner:before,
.vc_row.vc_inner:after {
    display: none;
}

.vc_section.overflow-visible,
.vc_row.overflow-visible {
    overflow: visible !important;
}

.vc_section {
    padding-top: 0 !important;
	margin: 0;
	padding: 0;
}

.vc_section[data-vc-full-width]:not(.section-no-padding) {
	margin-left: -12px;
	margin-right: -12px;
}

.vc_section[data-vc-full-width].section-no-padding > .vc_row {
	margin-left: 0;
	margin-right: 0
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.text-white *:not(span) {
    color: var(--white) !important;
}

.text-black *:not(span) {
    color: var(--black) !important;
}

.color-purple {
	color: var(--purple);
}

.wpb_text_column.subtitle p:first-of-type {
	font-weight: 600;
	margin-bottom: 16px;
}

.wpb_text_column.subtitle.text-md p:first-of-type {
	font-size: var(--text-base);
}


/* font-size */
.text-xs {
	font-size: var(--text-xs);
}

.text-sm {
	font-size: var(--text-sm);
}

.text-base {
	font-size: var(--text-base);
}

.text-md {
	font-size: var(--text-md);
}

/* font-weight text */
.fw-regular {
	font-weight: 400;
}

.fw-medium {
	font-weight: 500;
}

.fw-semi-bold {
	font-weight: 600;
}

.fw-bold {
	font-weight: 700;
}

.fw-extra-bold {
	font-weight: 800;
}

.fw-extra-black {
	font-weight: 900;
}


/* wpb_column auto */
.vc_row.row-auto-column>.wpb_column {
	width: auto;
}

.vc_row.row-button-double {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: -24px;
}

.vc_row.row-button-double > .wpb_column {
	width: auto;
}

.vc_row.row-button-double > .wpb_column:first-of-type > .vc_column-inner {
	padding-right: 20px;
}

.vc_row.row-button-double > .wpb_column > .vc_column-inner {
	padding-bottom: 24px;
}

.z-index-minus {
	position: relative;
	z-index: -1;
}



/* scale hovered */
.wpb_single_image.hovered-scale img {
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.wpb_single_image.hovered-scale:hover img,
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded:hover img {
	-webkit-transform: scale(1.04);
	   -moz-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	     -o-transform: scale(1.04);
	        transform: scale(1.04);
}

/* rounded */
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, 
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
	overflow: hidden;
	-webkit-border-radius: var(--rounded-lg);
	   -moz-border-radius: var(--rounded-lg);
	        border-radius: var(--rounded-lg);	
}

.vc_row.card-bg-image {
	margin: 0;
	overflow: hidden;
}


.vc_row.row-col-same-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
}

.vc_row.row-col-same-height>.wpb_column {
	min-height: 100%;
}

.vc_row.row-col-same-height>.wpb_column>.vc_column-inner,
.vc_row.row-col-same-height>.wpb_column>.vc_column-inner>.wpb_wrapper {
	height: 100%;
}

.vc_section.vc_section-has-fill {
	background-repeat: no-repeat !important;
	-webkit-background-size: cover !important;
	   -moz-background-size: cover !important;
	     -o-background-size: cover !important;
	        background-size: cover !important;
}


/* ROW BUTTON */
.vc_row.row-button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: -15px;
}

.vc_row.row-button > .wpb_column {
	width: auto;
	position: relative;
	z-index: 1;
}

.vc_row.row-button > .wpb_column > .vc_column-inner {
	padding-bottom: 15px;
	padding-left: 12px;
	padding-right: 12px;
}

.vc_row.row-button.button-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.wpb_single_image.scale-hover:hover img,
.vc_section>.vc_row:hover .wpb_single_image.scale-hover-row img,
.vc_section>.vc_row:hover .wpb_single_image.media-square  .vc_single_image-wrapper img {
    -webkit-transform: scale(1.04);
       -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
         -o-transform: scale(1.04);
            transform: scale(1.04);
}

/* ICONS*/
.icons {
	display: inline-block;
	background: var(--transparent) center/contain no-repeat;
}

/* RESET STYLE SLICK */
.slick-slider {
	--position-arrow: 12px;
	--size-arrow: 64px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
}

.slick-slider .slick-slide {
	float: none;
	opacity: 1;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.slick-slider .slick-track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	   -moz-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.slick-slider .slick-dots {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	margin-top: 32px;
	padding: 0;
	margin-bottom: 1px;
}

.slick-slider .slick-dots li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	margin-top: 0;
}

.slick-slider .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

.slick-slider .slick-dots button {
	position: relative;
	width: 8px;
	height: 8px;
	background-color: var(--light-purple-secondary);
	font-size: 0;
	padding: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
	border: 1px solid transparent;
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
}

.slick-slider .slick-dots .slick-active button {
	background-color: var(--light-purple);
}

.section-purple .slick-slider .slick-dots .slick-active button {
	background-color: var(--white);
}

.slick-slider .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: var(--size-arrow);
	height: var(--size-arrow);
	padding: 0;
	font-size: 0;
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	 -ms-transform: translateY(-50%);
	  -o-transform: translateY(-50%);
	     transform: translateY(-50%);
	background: var(--purple-20) center/32px no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9427 23.0573L15.0573 24.9426L6.11467 15.9999L15.0573 7.05725L16.9427 8.94258L11.2187 14.6666H24V17.3333H11.2187L16.9427 23.0573Z' fill='white'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
}

.slick-slider:not(.listing-review) .slick-arrow:hover {
	background-color: var(--purple);
}

.slick-slider .slick-arrow.slick-disabled {
	opacity: 0;
}

.slick-slider.slick-dotted .slick-arrow {
	top: -webkit-calc(50% - 20px);
	top: -moz-calc(50% - 20px);
	top: calc(50% - 20px);
}

.slick-slider .slick-prev.slick-arrow {
	left: var(--position-arrow);
}

.slick-slider .slick-next.slick-arrow {
	right: var(--position-arrow);
}

.slick-slider.listing-review .slick-prev.slick-arrow,
.slick-slider:not(.listing-review) .slick-next.slick-arrow {
	-webkit-transform: translateY(-50%) scale(-1);
	   -moz-transform: translateY(-50%) scale(-1);
	    -ms-transform: translateY(-50%) scale(-1);
	     -o-transform: translateY(-50%) scale(-1);
	        transform: translateY(-50%) scale(-1);
}

/* margin */
.mb-0 {
	margin-bottom: 0 !important;
}

/* ----------------------------------
 	STYLING LINK HOVER UNDERLAND
 ----------------------------------- */
.link-underline-hover p a:after,
.link-underline-hover li a:after {
    content: "";
    border-bottom: 1px solid var(--transparent);
    border-color: inherit;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform var(--duration) cubic-bezier(.65, .05, .36, 1);
    transition: -webkit-transform var(--duration) cubic-bezier(.65, .05, .36, 1);
    -o-transition: -o-transform var(--duration) cubic-bezier(.65, .05, .36, 1);
    -moz-transition: transform var(--duration) cubic-bezier(.65, .05, .36, 1), -moz-transform var(--duration) cubic-bezier(.65, .05, .36, 1);
    transition: transform var(--duration) cubic-bezier(.65, .05, .36, 1);
    transition: transform var(--duration) cubic-bezier(.65, .05, .36, 1), -webkit-transform var(--duration) cubic-bezier(.65, .05, .36, 1), -moz-transform var(--duration) cubic-bezier(.65, .05, .36, 1), -o-transform var(--duration) cubic-bezier(.65, .05, .36, 1);
}

.link-underline-hover p a:hover:after,
.link-underline-hover li a:hover:after {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.link-underline-hover p a,
.link-underline-hover li a {
    position: relative;
    color: inherit;
}

.link-underline-hover li a:hover {
    color: inherit;
}

/* breadcrumb ---------------------- */
.site-breadcrumbs {
    font-size: var(--text-sm);
	padding: 33px 0px 16px;
    position: relative;
    z-index: 2;
    color: var(--bg-color);
	width: 100%;
	font-weight: 600;
}

.site-breadcrumbs i,
.site-breadcrumbs a,
.site-breadcrumbs a.home {
	font-weight: 400;
	color: var(--gray-900);
}

.site-breadcrumbs .current-item,
.site-breadcrumbs span.current-item,
.site-breadcrumbs a:hover {
	color: var(--bg-color);
}

.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)) span {
    font-size: 0;
}

.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)) span:after {
    content: '...';
    font-size: var(--text-sm);
	display: inline-block;
	height: 22px;
}

.site-breadcrumbs i {
    display: inline-block;
    margin: 0 4px;
    font-style: normal;
}

.site-breadcrumbs .breadcrumb-wrapper>i:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)),
.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)):not(:nth-last-of-type(3)) {
    display: none;
}

/* counter */
.vc_row.row-counter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.col-counter.wpb_column >.vc_column-inner,
.col-counter.wpb_column >.vc_column-inner>.wpb_wrapper {
	height: 100%;
}

.col-counter.wpb_column >.vc_column-inner>.wpb_wrapper {
	padding: 20px;
	background-color: rgba(178,172,143, 0.16);
	overflow: hidden;
	-webkit-border-radius: var(--rounded-lg);
	   -moz-border-radius: var(--rounded-lg);
	        border-radius: var(--rounded-lg);
	height: 100%;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: var(--lineheight-s);
}

.col-counter.wpb_column .countup-figure {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-family: var(--fontfamily-playChickens);
	color: var(--light-purple);
	font-size: var(--text-4xl);
	margin-bottom: 8px;
	gap: 2px;
}

.col-counter.wpb_column .wh-countup {
	font-size: var(--text-sm);
	font-weight: 500;
}

.vc_row.row-counter {
	margin-bottom: -24px;
}

.col-counter.wpb_column {
	margin-bottom: 24px;
}

/* General styles for all marquee texts */
.marquee-logo {
    position: relative;
    overflow: hidden;
}

.marquee-logo:before,
.marquee-logo:after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 1;
    width: 40px;
    height: 100%;
}

.marquee-logo:before {
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(31.36%, #E5E2D3));
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    left: 0;
}

.marquee-logo:after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(31.36%, #E5E2D3));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    background: linear-gradient(-270deg, rgba(255, 255, 255, 0) 0%, #E5E2D3 31.36%);
    right: 0;
}

.marquee-logo-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 80px;
    gap: 80px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: marquee-move-text linear infinite;
       -moz-animation: marquee-move-text linear infinite;
         -o-animation: marquee-move-text linear infinite;
            animation: marquee-move-text linear infinite;
}

.marquee-logo .marquee-logo-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.marquee-logo .marquee-logo-item img {
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

@-webkit-keyframes marquee-move-text {
    to {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-moz-keyframes marquee-move-text {
    to {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-o-keyframes marquee-move-text {
    to {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes marquee-move-text {
    to {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.vc_tta-container {
	margin-bottom: 0 !important;
}

.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 48px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	padding: 4px;
	background-color: var(--gray-300);
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
}

.vc_tta.vc_general .vc_tta-tab.vc_active>a::after, 
.vc_tta.vc_general .vc_tta-tab.vc_active>a::before {
	display: none !important;
}

.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list .vc_tta-tab {
	width: auto;
	margin: 0;
}

body .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels,
body .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
	background-color: var(--transparent);
	border: none;
}

body .vc_tta.vc_general .vc_tta-tab>a {
	border: none;
	padding: 8px 24px;
	-webkit-border-radius: var(--rounded-full);
	   -moz-border-radius: var(--rounded-full);
	        border-radius: var(--rounded-full);
	-webkit-border-bottom-left-radius: var(--rounded-full) !important;
	   -moz-border-radius-bottomleft: var(--rounded-full) !important;
	        border-bottom-left-radius: var(--rounded-full) !important;
    -webkit-border-bottom-right-radius: var(--rounded-full) !important;
       -moz-border-radius-bottomright: var(--rounded-full) !important;
            border-bottom-right-radius: var(--rounded-full) !important;
}

body .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab.vc_active>a {
	background-color: var(--white);
	color: var(--purple);
	font-weight: 700;
}

body .vc_tta.vc_general .vc_tta-tab:not(.vc_active)>a:hover {
	background-color: var(--transparent);
}

body .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab>a {
	background-color: var(--transparent);
	color: var(--black);
}

body .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
	padding: 0;
}

.vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container, .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top.vc_tta-style-modern .vc_tta-tabs-container {
	margin: 0;
}

.vc_row.row-column-link > .wpb_column {
	cursor: pointer;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading,
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading{
	border: none;
}
