/*!
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: 'Rubik';
	src: local('Rubik-Light'), local('Rubik-Light'),
		url('assets/fonts/Rubik-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

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

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

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

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


@font-face {
	font-family: 'Thunder';
	src: local('Thunder-BoldLC'), local('Thunder-BoldLC'),
		url('assets/fonts/Thunder-BoldLC.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

:root {
	--height-wpadminbar: 0px;
	--container: 1120px;
	--container-large: 1720px;
	--height-header: 50px;
	--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: 20px;
	--text-lg: 26px;
	--text-xl: 68px;
	--text-2xl: 82px;
	--text-3xl: 92px;
	--text-4xl: 140px;

	--suffix-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	--fontfamily-rubik: 'Rubik', var(--suffix-family);
	--fontfamily-thunder: 'Thunder', 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-container-large: -webkit-calc((100% - var(--container-large)) / 2);
	--padding-container-large: -moz-calc((100% - var(--container-large)) / 2);
	--padding-container-large: calc((100% - var(--container-large)) / 2);
	--padding-field: 15px 0px;
	--padding-button: 16px 32px;

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

	--transparent: rgba(0, 0, 0, 0);
	--white: #fff;
	--white-40: rgba(255, 255, 255, 0.4);
	--white-80: rgba(255, 255, 255, 0.8);
	--black: #000;
	--black-10: rgba(0, 0, 0, 0.10);
	--black-20: rgba(0, 0, 0, 0.20);
	--black-40: rgba(0, 0, 0, 0.40);
	--black-60: rgba(0, 0, 0, 0.60);
	--black-80: rgba(0, 0, 0, 0.80);
	--blue: #38bdf8;
	--blue-sky: #009CB4;
	--red: #E9425C;
	--red-90: rgb(233 66 92 / 90%);
	--pink: #DF024F;
	--pink-85: rgba(223, 2, 79, 0.85);
	--yellow: #fbbf24;
	--green: #34d399;
	--purple: #3D2683;
	--orange: #f97316;
	--gray-300: #e5e7eb;
	--gray: #9ca3af;
	--gray-700: #4b5563;

	--main-body: #FCFCFC;

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

	--duration: 500ms;
	--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) {

	:root {
		--container: 100%;
		--padding-container: 24px;
		--height-header: 60px;

		--text-lg: 22px;
		--text-xl: 40px;
		--text-2xl: 50px;
		--text-3xl: 70px;
		--text-4xl: 90px;
	}
}


@media all and (max-width: 600px) {

	:root {
		--text-lg: 18px;

		--text-xl: 40px;
		--text-2xl: 40px;
		--text-3xl: 54px;
		--text-4xl: 62px;
	}
}

* {
	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-rubik);
	color: var(--black);
	-moz-block-height: normal;
	line-height: 1.5;
	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(--main-body);
}

html {
	overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

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

html.prevent-default {
	overflow: hidden;
}

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;
}

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

*+h2:not(:first-of-type),
*+h3:not(:first-of-type),
*+h4:not(:first-of-type) {
	margin-top: 40px;
}

*+h5:not(:first-of-type),
*+h6:not(:first-of-type) {
	margin-top: 24px;
}

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 {
	font-family: var(--fontfamily-thunder);
	font-weight: 700;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
	margin-bottom: 20px;
}

h5,
h6 {
	font-family: var(--fontfamily-rubik);
	font-weight: 600;
}

h1 {
	font-size: var(--text-4xl);
	margin-bottom: 12px;
}

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

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(--black);
}

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

strong,
b {
	font-weight: 700;
}

img {
	position: relative;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	overflow: hidden;
}

@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: 0px;
	padding-bottom: 16px;
	border: 0px;
	border-bottom: solid 1px var(--black-40);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-family: var(--fontfamily-thunder);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--black);
	caret-color: var(--pink);
	word-break: normal;
	background-color: var(--main-body);
	-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;
	color: var(--pink);
}

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;
	-webkit-flex-basis: 20px;
	-ms-flex-preferred-size: 20px;
	flex-basis: 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/uploads/2023/07/ion_checkmark-sharp.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-rubik);
	font-size: var(--text-base);
	-webkit-appearance: button;
	overflow: visible;
}

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(--pink);
}

.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(--black);
	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(--pink);
	background-color: var(--transparent);
}



/* LISTING STYLE */
.listing,
.listing .thumbnail-item,
.listing .thumbnail-item .image-wrapper {
	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;
	overflow: hidden;
}

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

.listing .listing-item {
	cursor: pointer;
}

.listing .wpb_column {
	float: none;
}

.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;
}

.listitem-wrapper {
	position: relative;
}

.listitem-wrapper .link-absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}

.listitem-wrapper a,
.listitem-wrapper button {
	position: relative;
	z-index: 2;
}

@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 .excerpt-listing,
.listing .excerpt-listing p,
.listing .title-listing,
.listing .content-item p,
.listing .wpb_text_column * {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}



/* 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;
}

.whbutton-wrapper button {
	padding: 0px;
}

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

.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;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.cta-whbutton .label-cta {
	color: inherit;
	font-weight: 500;
	line-height: 1;
}

.cta-whbutton .icon-cta,
.whbutton-icon .cta-whbutton::after {
	display: inline-block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	-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: 28px;
	min-width: 28px;
	height: 28px;
	min-height: 28px;
}

.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: 30px;
}

.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: 30px;
}

.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: 12px;
}

.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--red .cta-whbutton {
	color: var(--red);
}

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

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

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

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

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

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

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

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

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

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

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

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

.whbutton-outline--black .cta-whbutton:hover {
	background-color: var(--black);
	color: var(--white);
}

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

.whbutton-outline--white .cta-whbutton:hover {
	background-color: var(--white);
	color: var(--black);
}

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

.whbutton-outline--red .cta-whbutton:hover {
	background-color: var(--red);
	color: var(--white);
}

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

.whbutton-outline--red .cta-whbutton:hover {
	background-color: var(--pink);
	color: var(--white);
}

.whbutton-wrapper.whbutton-align--inline:not(:last-child) {
	margin: 0px 32px 16px 0px;
}

[class*="whbutton-fill"].whbutton-icon .cta-whbutton,
[class*="whbutton-outline"].whbutton-icon .cta-whbutton {
	padding-top: 18px;
	padding-bottom: 18px;
}




/* VC ACCORDION */
.vc_tta-accordion .vc_tta-panel {
	padding: 25px 0px 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.40);
}

.vc_tta-accordion .vc_tta-panel-title>a {
	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;
}

.vc_tta-accordion .vc_tta-panel-title {
	margin-bottom: 0;
}


.vc_tta-accordion .vc_active .vc_tta-panel-body {
	padding-top: 16px;
	padding-bottom: 30px;
}

/* .vc_tta-accordion .vc_tta-panel:not(.vc_active) .vc_tta-panel-body {
	display: none;
} */


.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
	height: auto !important;
	max-height: 0;
	-webkit-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-moz-transition: all 600ms ease-out;
	transition: all 600ms ease-out;
	overflow: hidden;
}

.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-body {
	max-height: 1000px;
	-webkit-transition: all 600ms ease-in;
	-o-transition: all 600ms ease-in;
	-moz-transition: all 600ms ease-in;
	transition: all 600ms ease-in;
}

.vc_tta-accordion .vc_tta-panel-title .vc_tta-controls-icon {
	display: inline-block;
	width: 48px;
	height: 48px;
	-webkit-flex-basis: 48px;
	-ms-flex-preferred-size: 48px;
	flex-basis: 48px;
	background: url(/wp-content/uploads/2023/07/icon-accordion-plus.svg) center/contain no-repeat;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.vc_tta-accordion .vc_active .vc_tta-panel-title .vc_tta-controls-icon {
	background-image: url(/wp-content/uploads/2023/07/icon-accordion-min.svg);
}

.vc_tta-accordion .vc_tta-panel-title .vc_tta-title-text {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}





/* WH GALLERY */
.wg-wrapper {
	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;
	margin-left: -16px;
	margin-right: -16px;
}

.wg-wrapper.wg-position-top {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.wg-wrapper.wg-position-bottom {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.wg-wrapper.wg-position-middle {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wg-wrapper .wg-item {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
	margin-bottom: 30px;
}

.wg-wrapper.wg-col-10 .wg-item {
	width: 10%;
}

.wg-wrapper.wg-col-9 .wg-item {
	width: 11.111%;
}

.wg-wrapper.wg-col-8 .wg-item {
	width: 12.5%;
}

.wg-wrapper.wg-col-7 .wg-item {
	width: 14.285%;
}

.wg-wrapper.wg-col-6 .wg-item {
	width: 16.667%;
}

.wg-wrapper.wg-col-5 .wg-item {
	width: 20%;
}

.wg-wrapper.wg-col-4 .wg-item {
	width: 25%;
}

.wg-wrapper.wg-col-3 .wg-item {
	width: 33.333%;
}

.wg-wrapper.wg-col-2 .wg-item {
	width: 50%;
}

.wg-wrapper.wg-col-1 .wg-item {
	width: 100%;

}

.wg-wrapper .wg-item--wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.wg-wrapper.wg-type-slider:not(.slick-initialized) {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	overflow-y: hidden;
	overflow-x: scroll;
}


.wg-wrapper.slick-slider .wg-item {
	margin-bottom: 0;
}

.wg-wrapper.no-gap {
	margin-left: 0;
	margin-right: 0;
}

.wg-wrapper.no-gap .wg-item {
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;
}

.wg-wrapper.logo-partners .wg-item--wrapper {
	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;
	height: 182px;
	padding: 14px;
	-webkit-border-radius: var(--rounded-lg);
	-moz-border-radius: var(--rounded-lg);
	border-radius: var(--rounded-lg);
	background-color: var(--white);
}

.wg-wrapper.logo-partners .wg-item--wrapper img {
	width: auto;
	height: auto;
	/* 	max-width: 228px;
	min-width: 115px;
	max-height: 80px;
	min-height: 18px; */
	-o-object-fit: contain;
	object-fit: contain;
}

.wg-wrapper.gallery-community .wg-item--wrapper {
	height: 502px;
}

.wg-wrapper.slick-slider.logo-partners .slick-list {
	overflow: visible;
}

.wg-wrapper.slick-slider .slick-slide {
	cursor: pointer;
}

.wg-wrapper .wg-item--wrapper {
	position: relative;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(var(--white), var(--black));
	background-color: var(--purple);
}

.wg-wrapper .wg-item--wrapper img {
	width: 100%;
	height: 100%;
}

.wg-wrapper .wg-item--wrapper .wg-video-player {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.wg-wrapper .wg-item--wrapper .wg-video-player .plyr {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.wg-wrapper.slick-slider .slick-list {
	overflow: visible;
}


/* WH GALLERY RESPONSIVE */
@media all and (min-width: 601px) and (max-width: 1299px) {
	.wg-wrapper.wg-col-tablet-10 .wg-item {
		width: 10%;
	}

	.wg-wrapper.wg-col-tablet-9 .wg-item {
		width: 11.111%;
	}

	.wg-wrapper.wg-col-tablet-8 .wg-item {
		width: 12.5%;
	}

	.wg-wrapper.wg-col-tablet-7 .wg-item {
		width: 14.285%;
	}

	.wg-wrapper.wg-col-tablet-6 .wg-item {
		width: 16.667%;
	}

	.wg-wrapper.wg-col-tablet-5 .wg-item {
		width: 20%;
	}

	.wg-wrapper.wg-col-tablet-4 .wg-item {
		width: 25%;
	}

	.wg-wrapper.wg-col-tablet-3 .wg-item {
		width: 33.333%;
	}

	.wg-wrapper.wg-col-tablet-2 .wg-item {
		width: 50%;
	}

	.wg-wrapper.wg-col-tablet-1 .wg-item {
		width: 100%;
	}
}


@media all and (max-width: 600px) {
	.wg-wrapper.wg-col-mobile-10 .wg-item {
		width: 10%;
	}

	.wg-wrapper.wg-col-mobile-9 .wg-item {
		width: 11.111%;
	}

	.wg-wrapper.wg-col-mobile-8 .wg-item {
		width: 12.5%;
	}

	.wg-wrapper.wg-col-mobile-7 .wg-item {
		width: 14.285%;
	}

	.wg-wrapper.wg-col-mobile-6 .wg-item {
		width: 16.667%;
	}

	.wg-wrapper.wg-col-mobile-5 .wg-item {
		width: 20%;
	}

	.wg-wrapper.wg-col-mobile-4 .wg-item {
		width: 25%;
	}

	.wg-wrapper.wg-col-mobile-3 .wg-item {
		width: 33.333%;
	}

	.wg-wrapper.wg-col-mobile-2 .wg-item {
		width: 50%;
	}

	.wg-wrapper.wg-col-mobile-1 .wg-item {
		width: 100%;
	}
}





/* SLICK RESET */
.slick-slider {
	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;
}

.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: 10px;
	padding: 0;
}

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

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

.slick-slider .slick-dots button {
	width: 10px;
	height: 10px;
	border: 1px solid #c2d1d9;
	background-color: rgba(0, 0, 0, 0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 0;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-moz-transition: .2s;
	transition: .2s;
}

.slick-slider .slick-dots button:hover {
	border-color: #424b5a;
}

.slick-dots .slick-active button {
	background-color: #424b5a;
	border-color: #424b5a;
}

.slick-slider .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	font-size: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0;
	-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: rgba(0, 0, 0, 0) center/contain no-repeat;
}

.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 {
	background-image: url(/wp-content/uploads/2023/07/icon-arrow-circle-red-left.svg);
}

.slick-slider .slick-next.slick-arrow {
	background-image: url(/wp-content/uploads/2023/07/icon-arrow-circle-red-right.svg);
}

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




/* STYLE LOGO LABEL IMAGE GALLERY */
.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;
	margin-bottom: -20px;
}

.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;
	margin-bottom: 20px;
}

.logo-label-wrapper img {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

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

.logo-groups .logo-group-item:not(:last-child) {
	margin-right: 8px;
}

.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.logo-sosmed img {
	width: 40px;
	height: 40px;
	-o-object-fit: contain;
	object-fit: contain;
}

.logo-label-wrapper.logo-sosmed .logo-group-item:not(:last-child) {
	margin-right: 12px;
}




/* BREADCRUMBS STYLE */
.site-breadcrumbs {
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: var(--black-60);
	margin-top: 32px;
}

.site-breadcrumbs a,
.site-breadcrumbs {
	font-weight: normal;
}

.site-breadcrumbs span>span,
.site-breadcrumbs span.current-item {
	color: var(--black);
}

.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: 14px;
}

.site-breadcrumbs i {
	display: inline-block;
	margin: 0 5px;
}

.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;
}



/* WH COUNTER */
.wh-counter .title-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-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0px;
}

.wh-counter.position-symbol-left .title-counter .counter-symbol {
	margin-right: 2px;
}

.wh-counter.position-symbol-right .title-counter .counter-symbol {
	margin-left: 2px;
}

.wh-counter.position-symbol-left .title-counter .counter-symbol {
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-moz-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}


/* LIST BULLET */
[class*="list-bullet"] ul,
[class*="list-bullet"] ol {
	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;
	padding-left: 0;
	margin: 0;
}

[class*="list-bullet"] li {
	position: relative;
	padding-left: 32px;
	list-style: none;
	margin: 0px;
	text-align: left;
}

[class*="list-bullet"] li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: center/contain no-repeat rgba(0, 0, 0, 0);
}

[class*="list-bullet"] li:not(:last-child) {
	margin-bottom: 16px;
}

.list-bullet-checkmark-circle-red li:before {
	background-image: url(/wp-content/uploads/2023/07/icon-checkmark-circle-red.svg);
}

.list-bullet-chevron-circle-red li:before {
	background-image: url(/wp-content/uploads/2023/07/list-bullet-chevron-circle-red.svg);
}



/* ICON & TEXT */
.icon-text-wrapper {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-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;
}

.icon-text-wrapper:not(:last-child) {
	margin: 0 16px 16px 0;
}

.icon-text-wrapper .col-icontext {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.icon-text-wrapper.icon-size--small .col-icontext {
	width: 24px;
	height: 24px;
}

.icon-text-wrapper.icon-size--medium .col-icontext {
	width: 40px;
	height: 40px;
}

.icon-text-wrapper.icon-size--large .col-icontext {
	width: 80px;
	height: 80px;
}

.icon-text-wrapper .col-content-icontext {
	padding-left: 16px;
}

.icon-text-wrapper.icon-position--right .col-content-icontext {
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-moz-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
	padding-left: 0;
	padding-right: 16px;
}

.icon-text-wrapper .col-content-icontext p {
	margin: 0;
}

.icon-text-wrapper.alignment--left,
.icon-text-wrapper.alignment--center,
.icon-text-wrapper.alignment--right {
	width: 100%;
}

.icon-text-wrapper.alignment--center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.icon-text-wrapper.alignment--right {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.icon-text-wrapper.alignment--left {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

/* ICON BORDER */
.icon-text-wrapper.icon-border {
	width: 100%;
	padding: 24px 0px;
	border-bottom: 1px solid var(--black-10);
	margin: 0px;
}

.icon-text-wrapper.icon-border:last-child {
	border-bottom: 0px;
}

.icon-text-wrapper.icon-border .col-icontext {
	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;
	border: 2px solid var(--black);
	-webkit-border-radius: var(--rounded-full);
	-moz-border-radius: var(--rounded-full);
	border-radius: var(--rounded-full);
	background-color: var(--transparent);
}

.icon-text-wrapper.icon-border:hover .col-icontext {
	border-color: var(--pink);
	background-color: var(--pink);
}

.icon-text-wrapper.icon-border .col-icontext img {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.icon-text-wrapper.icon-border:hover .col-icontext img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.icon-text-wrapper.icon-border .col-content-icontext {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.icon-text-wrapper.icon-border .col-content-icontext h4 {
	font-size: 34px;
	color: var(--black-20);
	margin-bottom: 4px;
}

.icon-text-wrapper.icon-border .col-content-icontext h3 {
	margin-bottom: 0;
}

.icon-text-wrapper.icon-border:hover .col-content-icontext h2:first-of-type,
.icon-text-wrapper.icon-border:hover .col-content-icontext h3:first-of-type {
	color: var(--pink);
}

.icon-text-wrapper.icon-border .col-content-icontext h2 {
	margin-bottom: 0px;
}

.icon-text-wrapper.icon-border:hover .col-content-icontext h2:first-of-type+h3 {
	color: inherit;
}

.icon-text-wrapper.icon-border.large {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}



/* TOP-BAR */
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-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;
	min-height: 115px;
	padding-top: 32px;
	padding-bottom: 32px;
	background-color: var(--purple);
	color: var(--white);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
	overflow: hidden;
}

.top-bar.sticky-down {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}

.top-bar>.container {
	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;
}

.top-bar .topbar-content,
.top-bar .topbar-button {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
}

/* .top-bar .topbar-content {
	width: 45%;
}

.top-bar .topbar-button{
	width: 55%;
} */

.top-bar h3 {
	font-size: 42px;
	margin-bottom: 0px;
}

.top-bar .btn-secondary-topbar {
	margin-right: -14px;
}

.top-bar .whbutton-wrapper.whbutton-align--inline:not(:last-child) {
	margin-right: 24px;
}

.top-bar li h4 {
	font-size: 32px;
	margin-bottom: 0;
}

.top-bar li {
	width: auto;
}

.top-bar li:not(:last-child) {
	margin: 0;
	margin-right: 32px;
}

.top-bar ul {
	margin-top: 16px;
}


/* LOADING ANIMATION */
.whfilter-overview .ajaxloading {
	position: fixed;
	z-index: 14;
}

.whfilter-overview .ajaxloading {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: wait;
	font-size: 0;
	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;
	background-color: rgba(255, 255, 255, .8);
}

.whfilter-overview .ajaxloading:before {
	content: " ";
	display: block;
	min-width: 80px;
	min-height: 80px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='267px' height='267px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'><circle cx='50' cy='50' r='32' stroke-width='8' stroke='%233A3A3A' stroke-dasharray='50.26548245743669 50.26548245743669' fill='none' stroke-linecap='round'>  <animateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1s' keyTimes='0;1' values='0 50 50;360 50 50'></animateTransform></circle></svg>") center/contain no-repeat;
}



/* SHAREPOST */
ul.share-post {
	padding: 0;
	list-style: none;
}

ul.share-post li.share-item img {
	width: 24px;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

ul.share-post li.share-item img:hover {
	-webkit-transform: translateX(3px);
	-moz-transform: translateX(3px);
	-ms-transform: translateX(3px);
	-o-transform: translateX(3px);
	transform: translateX(3px);
}




/* GRAVITY FORM RESET */
.gform_wrapper ul,
.gform_wrapper ol {
	list-style: none;
	padding-left: 0;
}

.gform_wrapper form {
	padding: 10px;
	margin: -10px;
	overflow: hidden;
}

.gform_fields {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-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;
}

.gform_fields .gfield {
	width: 100%;
	margin-bottom: 30px;
}

.gfield .gfield_label {
	line-height: 1.2;
	font-weight: 400;
	margin-bottom: 12px;
	color: #404040;
}

.gfield_checkbox {
	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: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.gfield_radio li,
.gfield_checkbox li {
	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-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;
}

.gfield_radio label,
.gfield_checkbox label {
	display: inline-block;
	width: auto;
	margin-left: 10px;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.gfield_radio label a,
.gfield_checkbox label a {
	color: var(--red);
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice {
	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;
	width: 100%;
}

.gfield_checkbox .gchoice:not(:last-child),
.gfield_radio .gchoice:not(:last-child) {
	margin-bottom: 10px;
}

.gfield.hidden_label .gfield_label,
.gfield .gfield_description.validation_message {
	display: none;
}

.gfield.gfield--type-checkbox .gfield_description.validation_message {
	display: block;
	margin-top: 12px;
	color: var(--red);
	border-left: 3px solid var(--red);
	padding-left: 10px;
	margin: 20px 0;
}

.cv-field.gfield_error .ginput_container {
	border-bottom: 1px solid var(--red);
}

.cv-field.gfield_error .validation_message {
	display: block;
	margin-top: 10px;
	color: var(--red);
	border-left: 3px solid var(--red);
	padding-left: 10px;
	margin: 20px 0;
}



#validation_message_1_4 {
	display: block;
	font-size: 14px;
	color: var(--red);
	font-weight: bolder;
}

.gfield input.LV_invalid_field,
.gfield select.LV_invalid_field,
.gfield textarea.LV_invalid_field,
.gfield.gfield_error input[aria-invalid="true"],
.gfield.gfield_error input[type="checkbox"]:not(:checked) {
	border-color: var(--red);
	background-image: url(/wp-content/uploads/2023/07/icon-close-sharp.svg);
	background-position: right top;
	background-repeat: no-repeat;
}

.gfield.gfield_error input[type="checkbox"]:not(:checked) {
	background-image: none;
}

.gfield input.LV_valid_field,
.gfield select.LV_valid_field,
.gfield textarea.LV_valid_field {
	border-color: var(--green);
	background-image: url(/wp-content/uploads/2023/07/icon-checkmark-sharp.svg);
	background-position: right top;
	background-repeat: no-repeat;
}

.gform_wrapper .gform_footer {
	margin-top: 2px;
}

.gform_wrapper .gform_button.gform-button--width-full {
	width: 100%;
}

.gform_wrapper .validation_error {
	display: none;
}

.gfield_required_text {
	font-size: 0;
}

.gfield_required_text:after {
	content: '*';
	display: inline-block;
	margin-left: 2px;
	font-size: 16px;
	color: #404040;
}

.gform_wrapper .gform_button {
	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: 100%;
	padding: var(--padding-button);
	padding-right: 24px;
	border: 2px solid var(--red);
	-webkit-border-radius: var(--rounded);
	-moz-border-radius: var(--rounded);
	border-radius: var(--rounded);
	background-color: var(--red);
	margin-left: auto;
	color: var(--white);
	text-align: left;
	font-weight: 500;
	line-height: 1;
	text-transform: none;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.gform_wrapper .gform_button:hover {
	background-color: var(--pink);
	border-color: var(--pink);
}

.gform_fileupload_rules {
	display: none;
}

.ginput_container.ginput_container_fileupload {
	position: relative;
	width: 100%;
	padding: 0px;
	padding-bottom: 16px;
	border: 0px;
	border-bottom: solid 1px var(--black-40);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-family: var(--fontfamily-thunder);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--black);
	caret-color: var(--pink);
	word-break: normal;
	background-color: var(--main-body);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.ginput_container.ginput_container_fileupload input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.ginput_container.ginput_container_fileupload .value-file:not(:last-child) {
	display: none;
}

.gform_validation_errors {
	display: none;
}

.gform_fields .gfield.gfield--width-half {
	max-width: -webkit-calc(50% - (16px / 2));
    max-width: -moz-calc(50% - (16px / 2));
    max-width: calc(50% - (16px / 2));
}

.gform_confirmation_message a {
	font-family: var(--fontfamily-rubik);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: var(--padding-button);
	border: 2px solid var(--transparent);
	-webkit-border-radius: var(--rounded);
	-moz-border-radius: var(--rounded);
	border-radius: var(--rounded);
	font-weight: 500;
	line-height: 1;
	color: var(--white);
	background-color: var(--red);
}

.gform_confirmation_message a:hover {
	background-color: var(--pink);
}

.gfield--type-fileupload .gform-ul-reset .gfield_description {
	font-size: 18px;
	color: var(--pink);
}

.gfield--type-fileupload .gform-ul-reset .gfield_description {
	font-size: 18px;
	color: var(--pink);
}

.gfield--type-fileupload .ginput_preview .gfield_fileupload_percent {
	font-weight: 500;
	color: var(--red);
}

.gfield--type-fileupload .ginput_preview {
	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;
	gap: 15px;
	margin-top: 20px;
}

.gfield--type-fileupload .ginput_preview button.gform_delete_file {
	padding: 0;
}

.gform_fields .gform_hidden {
	margin: 0;
}

.gfield--type-fileupload .gform-ul-reset {
	margin-top: 10px;
}

.gfield--type-fileupload .gform_drop_area .gform_button_select_files {
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.gfield--type-fileupload .gform-ul-reset {
	margin-top: 10px;
}

.gfield--type-fileupload .gform_drop_area {
	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;
}

.gform_footer .gform_ajax_spinner {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: inline-block;
	width: 20px;
	height: 20px;
}

.gform_footer {
	position: relative;
}



/* CUSTOM POPUP MAKER */
.pum-theme-popup-skyscrapers-themes .pum-container .pum-close {
	font-size: 16px;
	opacity: .4;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.pum-theme-popup-skyscrapers-themes .pum-container .pum-close:hover {
	opacity: 1;
}




/* VC TTA TABS */
.vc_tta-container>p {
	margin-bottom: 30px;
}

.vc_tta-tabs ul.vc_tta-tabs-list {
	padding-left: 0px;
}

.vc_tta-tabs .vc_tta-panel-heading {
	display: none;
}

.vc_tta-tabs .vc_tta-panel:not(.vc_active) {
	display: none;
}

.vc_tta-tabs ul.vc_tta-tabs-list li {
	margin-top: 0px;
}

.vc_tta-tabs .vc_row.row-sidebar-kickstart {
	max-width: 288px;
	margin-left: auto;
}

.vc_tta-tabs .vc_tta-panel-body>.vc_row>.wpb_column.vc_col-sm-4:last-child {
	position: -webkit-sticky;
	position: sticky;
	top: 20%;
}

.vc_tta-tabs ul.vc_tta-tabs-list .slick-list {
	padding: 20px;
	margin: -20px;
}




/* PATTERN LINE */
[class*=pattern-line-] {
	position: relative;
}

[class*=pattern-line-]:before {
	content: '';
	position: absolute;
	display: inline-block !important;
	width: 100%;
	height: 100%;
	background: url() center/cover no-repeat;
	pointer-events: none;
}

/* .pattern-line-starter:before {
	right: 74px;
	bottom: -50px;
	max-width: 755px;
	max-height: 472px;
	background-image: url(/wp-content/uploads/2023/07/icon-line-5.svg);
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
} */





/* TEXT HIGHLIGHT ROTATE */
.text-highlight-rotate img {
	width: auto;
}

.text-highlight-rotate h4 {
	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: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	font-size: 28px;
	width: 100%;
	max-width: 270px;
}

.text-highlight-rotate h4 strong {
	-webkit-transform: rotate(-4.879deg);
	-moz-transform: rotate(-4.879deg);
	-ms-transform: rotate(-4.879deg);
	-o-transform: rotate(-4.879deg);
	transform: rotate(-4.879deg);
}

.vc_row.text-highlight-rotate>.wpb_column>.vc_column-inner>.wpb_wrapper {
	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;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}





/* BEFORE LOAD SLICK */
.meta-radio-group:not(.slick-initialized),
.wg-wrapper.wg-type-slider:not(.slick-initialized),
.listing-card-slider:not(.slick-initialized) {
	overflow: hidden;
	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 nowrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}

.meta-radio-group:not(.slick-initialized) label,
.wg-wrapper.wg-type-slider:not(.slick-initialized) .wg-item,
.listing-card-slider:not(.slick-initialized) .listing-item {
	opacity: 0.5;
}

.listing-card-slider:not(.slick-initialized) .listing-item {
	min-width: 100%;
}

.wg-wrapper.wg-type-slider:not(.slick-initialized) .wg-item {
	min-width: 50%;
}

.meta-radio-group:not(.slick-initialized)::-webkit-scrollbar-button,
.meta-radio-group:not(.slick-initialized)::-webkit-scrollbar,
.wg-wrapper.wg-type-slider:not(.slick-initialized)::-webkit-scrollbar-button,
.wg-wrapper.wg-type-slider:not(.slick-initialized)::-webkit-scrollbar,
.listing-card-slider:not(.slick-initialized)::-webkit-scrollbar-button,
.listing-card-slider:not(.slick-initialized)::-webkit-scrollbar {
	width: 1px;
	height: 1px;
}

@media all and (max-width: 600px) {
	.meta-radio-group:not(.slick-initialized) label {
		min-width: 40%;
	}

}


/* Cookie Notice Style */
#cookie-notice {
	background: rgb(51 51 51 / 80%) !important;
}

#cookie-notice #cn-notice-buttons .cn-button {
	font-family: var(--fontfamily-rubik);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: var(--padding-button);
	border: 2px solid var(--transparent);
	-webkit-border-radius: var(--rounded);
	-moz-border-radius: var(--rounded);
	border-radius: var(--rounded);
	font-weight: 500;
	line-height: 1;
	color: var(--white);
	background-color: var(--red) !important;
}

#cookie-notice #cn-notice-buttons .cn-button:hover {
	background-color: var(--pink) !important;
	border-color: var(--pink);
}





/* LINE ANIMATION */
.line-animation.to-the-left {
	text-align: right;
}

.line-animation.to-the-center {
	text-align: center;
}

.line-animation.to-the-left svg {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}

.vc_row.row-offset-video {
	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-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px;
}

.vc_row.row-offset-video:before,
.vc_row.row-offset-video:after {
	display: none;
}

@media all and (max-width: 900px) {

	.wpb_raw_code.line-animation-right,
	.wpb_raw_code.line-animation-left {
		margin: 0px !important;
	}
}



/* LINE SVG */
.line-svg.align-right {
	text-align: right;
}

.line-svg.align-center {
	text-align: center;
}

.line-svg svg path {
	stroke-dasharray: 1000;
}

.line-svg.dash-active svg path {
	-webkit-animation: dash 1.25s linear alternate;
	-moz-animation: dash 1.25s linear alternate;
	-o-animation: dash 1.25s linear alternate;
	animation: dash 1.25s linear alternate;
}

.line-svg.dash_right svg {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}

.line-svg {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 250ms ease;
	-o-transition: 250ms ease;
	-moz-transition: 250ms ease;
	transition: 250ms ease;
}

.line-svg.dash-active {
	opacity: 1;
	visibility: visible;
}

@-webkit-keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@-moz-keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@-o-keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}

	to {
		stroke-dashoffset: 0;
	}
}


@media all and (min-width: 901px) {
	.wpb_raw_code.line-svg.show-mobile {
		display: none !important;
	}
}


@media all and (max-width: 900px) {

	.wpb_raw_code.line-svg {
		display: none !important;
	}

	.wpb_raw_code.line-svg.show-mobile {
		display: block !important;
	}
}








/* NICE SELECT JS */
div.nice-select {
	width: 100%;
	padding: 0px;
    padding-bottom: 16px;
	padding-right: 65px;
	font-family: var(--fontfamily-thunder);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
	height: auto;
	line-height: 1;
	border: 0px;
	border-bottom: solid 1px var(--black-40);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5' fill='none'%3E%3Cpath d='M0 0L5 5L10 0H0Z' fill='black'/%3E%3C/svg%3E") right 6px/10px 5px no-repeat;
	white-space: normal;
}

div.nice-select:after {
	display: none;
}

div.nice-select .list {
	width: 100%;
	max-height: 340px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 16px;
	background-color: #fff !important;
}

div.nice-select .list .option {
	padding: 16px 24px 10px;
	margin-bottom: 0;
	line-height: 1.625;
	min-height: auto;
	font-size: 20px;
}

div.nice-select .list .option.selected {
	font-weight: inherit;
}

div.nice-select .option:hover,
div.nice-select .option.focus,
div.nice-select .option.selected.focus {
	background-color: #e9e9e9;
}